* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
    font-weight: 400;
}

body {
    /*background-image: linear-gradient(180deg, #FFF7E7 0%, #FFF1DC 100%);*/
    color: #11111D;
    scroll-behavior: smooth;
}

body::-webkit-scrollbar {
    display: none;
}

.container {
    position: relative;
    max-width: 77.0833vw;
    display: flex;
    margin: auto;
}

.line-elem {
    margin: auto;
    width: 57.2917vw;
    height: 1px;
    background: linear-gradient(90deg, rgba(229, 228, 228, 0.3) 0%, rgb(249 92 25) 50%, rgba(229, 228, 228, 0.3) 100%);
}

/* HEADER */
#header {
    width: 100vw;
    height: 2.3438vw;
    padding: 0 3.125vw;
    position: fixed;
    top: 1.5625vw;
    left: 0;
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

#header .burger-icon {
    display: none;
}

#header .logo-elem {
    width: 6.9792vw;
    height: 100%;
    display: flex;
    align-items: center;
}

#header .logo-elem img {
    width: 100%;
    height: 100%;
}

#header .menu-items {
    min-width: 22.1875vw;
    width: max-content;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0.5208vw 1.0417vw;
    gap: 1.0417vw;
    background: #F95C19;
    border-radius: 1.5625vw;
    justify-content: center;
    margin-bottom: 0;
}

#header .menu-items .m-elem {
    width: max-content;
    background-color: transparent;
    position: relative;
    height: 1.3021vw;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
}

#header .menu-items .m-elem:before {
    content: "";
    width: 0;
    height: 0.0521vw;
    background-color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .5s ease;
}

#header .menu-items .m-elem.active:before,
#header .menu-items .m-elem:hover:before {
    width: 100%;
}

#header .menu-items .m-elem .m-link {
    background-color: transparent;
    width: max-content;
    height: 100%;
    font-size: 0.9375vw;
    line-height: 1.25vw;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    transition: .5s ease;
}

.new-btn-orange {
    width: 5.9896vw;
    height: 2.3438vw;
    padding: 0;
    border-radius: 1.5625vw;
    outline: none;
    color: #FFFEFE;
    background-color: #F95C19;
    border: 0.0521vw solid #F95C19;
    font-size: 1.0416vw;
    cursor: pointer;
    transition: .3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new-btn-orange:hover {
    background-color: transparent;
    color: #F95C19;
}

.btn-orange {
    width: max-content;
    padding: 0.3125vw 0.625vw;
    border-radius: 1.5625vw;
    outline: none;
    color: #FFFEFE;
    background-color: #F95C19;
    border: 0.0521vw solid #F95C19;
    font-weight: 400;
    font-size: 1.0416vw;
    margin-top: 0.5208vw;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.btn-orange:hover {
    background-color: transparent;
    color: #F95C19;
}

.mobile-menu .menu-items li a {
    color: black;
}

.mobile-menu {
    display: none;
}

.btn-profile {
    width: 40px;
    border-radius: 5.2083vw;
    height: 40px;
    overflow: hidden;
}

.btn-profile img {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    /* HEADER */
    #header {
        height: 7.8125vw;
        padding: 0 2.6041vw;
    }

    #header .navbar-logo img {
        width: 14.9739vw;
    }

    #header .burger-icon {
        display: flex;
        width: 3.3854vw;
        height: 2.3437vw;
    }

    #header .burger-icon svg {
        width: 100%;
        height: 100%;
    }

    #header .mb-item {
        display: flex;
    }

    #header .mb-item .btn-login {
        padding: 0.651vw 1.3021vw;
        font-size: 1.9531vw;
        margin-top: 0;
    }

    #header .menu-items {
        display: none;
    }

    .mobile-menu {
        position: fixed;
        left: -100vw;
        top: 0;
        width: 100vw;
        background-color: #fff6e5;
        height: 100vh;
        z-index: 999999999999;
        transition: .5s ease-in-out;
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu .close-mb-menu {
        display: flex;
        justify-content: end;
        width: 100%;
        height: 6.5104vw;
        padding: 1.3021vw;
    }

    .mobile-menu .close-mb-menu .close-mb-button {
        width: 4.6041vw;
        height: 4.6041vw;
    }

    .mobile-menu .menu-items {
        display: flex;
        flex-direction: column;
        gap: 2.6041vw;
        padding-left: 2.6041vw;
        list-style: none;
    }

    .mobile-menu .menu-items li a {
        font-size: 3.2552vw;
        font-weight: 600;
    }

    .container {
        max-width: 94.7916vw;
        width: 100%;
    }
}

@media (max-width: 576px) {
    #header {
        top: 0;
        background: #fff6e5;
    }

    #header .menu-items {
        display: none;
    }

    #header .logo-elem {
        width: 95px;
        height: max-content;
    }

    .new-btn-orange {
        width: 50px;
        height: 21px;
        border-radius: 8px;
        border: 1px solid #F95C19;
        font-size: 13px;
    }

    /* HEADER */
    #header {
        height: 10.4165vw;
        padding: 0 3.4721vw;
    }

    #header .navbar-logo img {
        width: 19.9648vw;
    }

    #header .burger-icon {
        display: flex;
        width: 4.5138vw;
        height: 3.1249vw;
    }

    #header .burger-icon svg {
        width: 100%;
        height: 100%;
    }

    #header .mb-item {
        display: flex;
    }

    #header .mb-item .btn-profile {
        width: 5.2084vw;
        height: 5.2084vw;
        border-radius: 100%;
        overflow: hidden;
    }

    #header .mb-item .btn-profile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #header .mb-item .btn-login {
        padding: 0.868vw 1.7361vw;
        font-size: 2.6041vw;
        margin-top: 0;
    }

    #header .menu-items {
        display: none;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        left: -100vw;
        top: 0;
        width: 100vw;
        background-color: #fff6e5;
        height: 100vh;
        z-index: 999999999999;
        transition: .5s ease-in-out;
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu .close-mb-menu {
        display: flex;
        justify-content: end;
        width: 100%;
        height: 8.6805vw;
        padding: 1.7361vw;
    }

    .mobile-menu .close-mb-menu .close-mb-button {
        width: 4.6041vw;
        height: 4.6041vw;
    }

    .mobile-menu .menu-items {
        display: flex;
        flex-direction: column;
        gap: 3.4722vw;
        padding-left: 3.4722vw;
        list-style: none;
    }

    .mobile-menu .menu-items li a {
        font-size: 4.3402vw;
        font-weight: 600;
    }

    .for-registration {
        padding: 0 11px 50px;
    }

    .for-registration .wrapper-content {
        width: calc(100vw - 22px);
        border-bottom: none;
        flex-direction: column-reverse;
    }

    .for-registration .wrapper-content .left-part {
        width: 100%;
    }

    .for-registration .wrapper-content .left-part .r-title {
        font-size: 32px;
    }

    .for-registration .wrapper-content .left-part .r-desc {
        font-size: 16px;
    }

    .for-registration .wrapper-content .left-part .inp-group input {
        font-size: 15px;
        height: 50px;
        border-radius: 12px;
        border: 1px solid #F95C19;
        padding-left: 10px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .for-registration .wrapper-content .left-part .inp-group .btn-orange {
        height: 50px;
        border-radius: 12px;
        border: 1px solid #F95C19;
        font-size: 15px;
        padding: 10px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .for-registration .wrapper-content .right-part {
        width: 100%;
        padding: 50px;
    }
}