    *::before,
    *::after {
        box-sizing: border-box;
    }

    body {
        background: #ffffff;
        font-family: 'Inter', sans-serif;
        color: #2e363e;
    }

    h1,
    h2,
    h3,
    p {
        margin-top: 0;
        margin-bottom: 0;
    }

    ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

    ol {
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 0;
        list-style: none;
    }

    a {
        text-decoration: none;
        color: currentColor;
    }

    button {
        cursor: pointer;
    }

    img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .container {
        max-width: 1440px;
        padding-left: 130px;
        padding-right: 130px;
        margin-left: auto;
        margin-right: auto;
    }

    /*&=============HEADER================================*/
    .header {
        padding-top: 50px;
    }

    .container-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 60px;
    }

    .header-navi {
        display: flex;
        align-items: center;
    }

    .header-logo {
        color: #5F0A61;
        font-family: Reem Kufi;
        font-size: 25px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        text-transform: uppercase;
        /* margin-right: 145px; */
    }

    .header-menu-list {
        display: flex;
        width: 562px;
        align-items: flex-start;
        gap: 40px;
        margin-top: 5px;
    }

    .header-menu-link {
        color: #2E363E;
        font-size: 18px;
        font-weight: 500;
        line-height: 150%;
    }


    .current:hover {
        color: #5F0A61;
    }

    .header-address-link {
        color: #5F0A61;
        text-align: right;
        font-size: 18px;
        font-weight: 700;
        line-height: 152%;
    }

    .header-address-link:hover {
        border-radius: 5px;
        border: 1px solid #5F0A61;
        background: #FFF;
    }