@import"https://fonts.googleapis.com/css2?family=Mulish:wght@400;900&family=Unbounded:wght@300;400;500;600;700;800&display=swap";* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

body {
    min-width: 320px;
    font: 1.389vw/normal "Unbounded",sans-serif;
    background: #ececec;
    color: #282b3f;
    padding-top: 5vw
}

body.b-hidden {
    overflow: hidden
}

@media(max-width: 768px) {
    body {
        font-size:16px;
        padding-top: 90px
    }
}

p,ul,ol {
    margin-bottom: 1.389vw
}

@media(max-width: 768px) {
    p,ul,ol {
        margin-bottom:18px
    }
}

h1,h2,h3,h4,h5,h6 {
    margin-bottom: 1.389vw
}

@media(max-width: 768px) {
    h1,h2,h3,h4,h5,h6 {
        margin-bottom:18px
    }
}

img {
    max-width: 100%;
    max-height: 100%
}

.container {
    max-width: 95.833vw;
    width: 100%;
    margin: 0 auto;
    padding: 0 0
}

@media(max-width: 768px) {
    .container {
        padding:0 16px;
        max-width: 100%
    }
}

.btn {
    display: inline-flex;
    height: 4.653vw;
    align-items: center;
    justify-content: center;
    border-radius: 1.528vw;
    background: #ffd600;
    border: 1px solid #ffd600;
    padding: 0 2.778vw;
    font-size: 1.528vw;
    text-decoration: none;
    color: #000;
    transition: all .5s ease
}

@media(max-width: 768px) {
    .btn {
        height:62px;
        max-width: 336px;
        width: 100%;
        display: flex;
        margin: 0 auto;
        font-size: 18px;
        border-radius: 22px
    }
}

.btn:hover {
    background: rgba(0,0,0,0);
    color: #ffd600
}

.btn-white {
    border-radius: 3.958vw;
    background: #fff;
    border-color: #fff;
    color: #0029ff;
    padding: 0 3.472vw;
    font-weight: 600
}

@media(max-width: 768px) {
    .btn-white {
        border-radius:57px;
        padding: 0 30px
    }
}

.btn-white:hover {
    color: #fff
}

input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0
}

span.btn-white:hover {
    background: #fff;
    border-color: #fff;
    color: #0029ff
}

.header {
    top: .694vw;
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 9
}

@media(max-width: 768px) {
    .header {
        top:16px
    }
}

.header__wrap {
    border-radius: 4.167vw;
    border: 1px solid #e9e9e9;
    background: rgba(255,255,255,.8);
    -webkit-backdrop-filter: blur(9.5px);
    backdrop-filter: blur(9.5px);
    padding: .694vw 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

@media(max-width: 768px) {
    .header__wrap {
        justify-content:space-between;
        padding: 15px 26px;
        border-radius: 60px
    }
}

.header__logo {
    display: flex;
    margin: 0 3.819vw;
    width: 7.431vw
}

@media(max-width: 768px) {
    .header__logo {
        margin:0;
        width: 100%;
        max-width: 85px
    }
}

.header__logo img {
    display: flex
}

@media(max-width: 768px) {
    .header__menu {
        display:none
    }
}

.header__menu ul {
    list-style: none;
    margin: 0;
    display: flex;
    align-items: center
}

.header__menu ul>li {
    position: relative
}

.header__menu ul>li:not(:last-child) {
    margin-right: 2.361vw
}

.header__menu ul>li.active>a {
    color: #0029ff
}

.header__menu ul>li.active>a:after {
    background: url("../images/arrow-hover.svg") center/contain !important
}

.header__menu ul>li.menu-item-has-children>a:after {
    content: "";
    display: block;
    width: 1.667vw;
    min-width: 1.667vw;
    height: 1.667vw;
    margin-left: .347vw;
    background: url("../images/menu-arrow.svg") center/contain;
    transition: all .5s ease
}

.header__menu ul>li.active .sub-menu {
    opacity: 1;
    visibility: visible
}

.header__menu ul>li>a {
    color: #282b3f;
    font-size: .972vw;
    text-decoration: none;
    transition: color .5s ease;
    display: inline-flex;
    align-items: center
}

.header__menu .sub-menu {
    position: absolute;
    width: 18.125vw;
    top: 100%;
    right: 0;
    display: block;
    z-index: 3;
    border-radius: 5px;
    padding-top: 2.083vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease
}

.header__menu .sub-menu:before {
    content: "";
    position: absolute;
    right: .694vw;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 .66vw .972vw .66vw;
    border-color: rgba(0,0,0,0) rgba(0,0,0,0) #fff rgba(0,0,0,0);
    bottom: calc(100% - 2.1vw)
}

.header__menu .sub-menu li {
    background: #fff;
    padding-bottom: .417vw
}

.header__menu .sub-menu li:nth-child(1) {
    padding-top: 1.042vw;
    border-radius: 5px 5px 0 0
}

.header__menu .sub-menu li:not(:last-child) {
    margin: 0;
    border-bottom: 1px solid #e8e8e8
}

.header__menu .sub-menu li:not(:first-child) {
    padding-top: .417vw
}

.header__menu .sub-menu li:last-child a {
    border-radius: 0 0 5px 5px
}

.header__menu .sub-menu li a {
    padding: 0 1.042vw;
    display: block
}

.header__menu .sub-menu li a:after {
    display: none !important
}

.header__youtube {
    position: absolute;
    right: 2.083vw;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.486vw;
    height: 3.264vw;
    border-radius: 3.125vw;
    background: #f0f0f0
}

@media(max-width: 768px) {
    .header__youtube {
        display:none
    }
}

.header__youtube img {
    display: flex;
    width: 2.986vw
}

.header__open-menu {
    display: none
}

@media(max-width: 768px) {
    .header__open-menu {
        display:flex
    }
}

.footer {
    padding: 1.111vw 0;
    background: #242424
}

@media(max-width: 768px) {
    .footer {
        padding:17px 0
    }
}

.footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between
}

@media(max-width: 768px) {
    .footer .container {
        display:block
    }
}

.footer__left,.footer__right {
    color: #797979;
    font-weight: 300;
    line-height: 200%;
    font-size: .694vw;
    margin: 0
}

@media(max-width: 768px) {
    .footer__left,.footer__right {
        text-align:center;
        font-size: 10px
    }
}

@media(max-width: 768px) {
    .footer__left {
        margin-bottom:6px
    }
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible
}

.mobile-menu__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5)
}

.mobile-menu__content {
    background: #fff;
    width: 100%;
    padding: 91px 23px 35px;
    border-radius: 20px 20px 0px 0px;
    position: relative;
    transform: translateY(100%);
    transition: transform .5s ease
}

.mobile-menu__content.active {
    transform: translateY(0)
}

.mobile-menu__content .line {
    width: 92px;
    height: 4px;
    border-radius: 11px;
    background: #cfcfcf;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%)
}

.mobile-menu__content .close {
    position: absolute;
    top: 25px;
    right: 25px
}

.mobile-menu__menu {
    margin-bottom: 33px
}

.mobile-menu__menu ul {
    list-style: none;
    margin: 0
}

.mobile-menu__menu ul li:not(:last-child) {
    margin-bottom: 25px
}

.mobile-menu__menu ul li.menu-item-has-children>a:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url("../images/menu-arrow.svg") center/contain
}

.mobile-menu__menu ul li .sub-menu {
    display: none;
    margin-top: 25px
}

.mobile-menu__menu ul li .sub-menu li {
    padding-left: 15px
}

.mobile-menu__menu ul li .sub-menu li:not(:last-child) {
    margin-bottom: 20px
}

.mobile-menu__menu ul a {
    color: #282b3f;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mobile-menu__socials {
    display: flex;
    margin: 0;
    align-items: center;
    list-style: none;
    justify-content: space-between
}

.mobile-menu__socials li {
    width: calc(50% - 4px)
}

.mobile-menu__socials li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 57px;
    text-decoration: none;
    border-radius: 45px;
    background: #f0f0f0;
    font-size: 14px;
    color: #282b3f
}

.mobile-menu__socials li a img {
    margin-right: 6px
}

.head {
    margin-top: 2.292vw;
    margin-bottom: 13.889vw
}

@media(max-width: 768px) {
    .head {
        margin-top:21px;
        margin-bottom: 88px
    }
}

.head__background {
    background: #fff;
    border-radius: 1.875vw;
    position: relative;
    padding-left: 2.083vw
}

@media(max-width: 768px) {
    .head__background {
        padding-left:11px;
        padding-right: 11px;
        overflow: hidden;
        border-radius: 20px
    }
}

.head__wrap {
    position: relative;
    z-index: 1;
    padding-top: 6.458vw;
    padding-bottom: 9.236vw
}

@media(max-width: 768px) {
    .head__wrap {
        padding-top:37px;
        padding-bottom: 9px
    }
}

.head__title {
    max-width: 41.389vw;
    font-size: 4.028vw;
    margin-bottom: 1.25vw
}

@media(max-width: 768px) {
    .head__title {
        max-width:100%;
        font-size: 38px;
        margin-bottom: 36px
    }
}

.head__title span {
    color: #0029ff
}

.head__descr {
    margin-bottom: 4.653vw;
    width: 26.736vw;
    font-weight: 300;
    font-size: 1.528vw
}

@media(max-width: 768px) {
    .head__descr {
        font-size:18px;
        margin-bottom: 36px;
        width: 100%
    }
}

.head__bg {
    position: absolute;
    right: .625vw;
    bottom: .764vw;
    width: 65.208vw
}

@media(max-width: 768px) {
    .head__bg {
        width:570px;
        position: relative;
        right: auto;
        bottom: auto;
        max-width: inherit;
        margin-top: 84px
    }
}

.info {
    margin-bottom: 11.111vw
}

@media(max-width: 768px) {
    .info {
        margin-bottom:50px
    }
}

.info .container {
    display: flex;
    justify-content: space-between
}

@media(max-width: 768px) {
    .info .container {
        display:block
    }
}

.info__item {
    width: calc(50% - 1.389vw);
    border-radius: 1.389vw;
    background: linear-gradient(180deg, #3D3D3D 0%, #000 100%);
    color: #fff;
    padding-left: 1.389vw;
    padding-right: 1.389vw;
    padding-bottom: 2.778vw;
    display: flex;
    flex-direction: column;
    min-height: 18.75vw
}

.info__item:nth-child(1) {
    padding-top: 2.083vw
}

.info__item:nth-child(2) {
    padding-top: 2.639vw
}

@media(max-width: 768px) {
    .info__item {
        width:100%;
        border-radius: 16px;
        padding: 20px 16px !important;
        min-height: 1px
    }

    .info__item:not(:last-child) {
        margin-bottom: 18px
    }
}

.info__title {
    flex: 1;
    line-height: 134.375%;
    font-weight: 400;
    font-size: 2.222vw
}

@media(max-width: 768px) {
    .info__title {
        line-height:26.5px;
        font-size: 22px;
        margin-bottom: 10px
    }
}

.info__title span {
    color: #ffd600
}

.info__text {
    flex: 1;
    font-weight: 300
}

@media(max-width: 768px) {
    .info__text {
        font-size:14px;
        line-height: 28px;
        margin-bottom: 20px
    }
}

.info__descr {
    margin: 0;
    font-weight: 300;
    line-height: 155.556%;
    font-size: 1.25vw
}

@media(max-width: 768px) {
    .info__descr {
        font-size:14px;
        line-height: 28px
    }
}

.info__link {
    display: flex;
    margin-left: 1.528vw;
    background: url("../images/btn-wa.svg") center center/contain no-repeat;
    width: 25.833vw;
    height: 4.167vw;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding-left: 4.792vw;
    font-size: 1.528vw;
    color: #282b3f
}

@media(max-width: 768px) {
    .info__link {
        max-width:318px;
        width: 100%;
        height: 60px;
        margin: 0 auto;
        font-size: 18px;
        justify-content: center;
        padding-left: 0;
        padding-right: 80px
    }
}

.work {
    margin-bottom: 16.667vw
}

@media(max-width: 768px) {
    .work {
        margin-bottom:200px
    }
}

.work .container {
    display: flex;
    justify-content: space-between
}

@media(max-width: 768px) {
    .work .container {
        display:block
    }
}

.work__left {
    width: 54.167vw;
    background: url("../images/work-bg.png") center/cover;
    border-radius: 2.083vw;
    color: #fff;
    padding: 2.083vw 2.083vw 4.167vw
}

@media(max-width: 768px) {
    .work__left {
        width:auto;
        border-radius: 30px;
        padding: 39px 19px;
        margin: 0 -16px 50px
    }
}

.work__left .btn {
    margin-top: 1.736vw
}

@media(max-width: 768px) {
    .work__left .btn {
        margin-top:32px
    }
}

.work__right {
    width: 38.472vw
}

@media(max-width: 768px) {
    .work__right {
        width:100%
    }
}

.work__title {
    font-weight: 600;
    font-size: 3.333vw;
    margin-bottom: 2.014vw
}

@media(max-width: 768px) {
    .work__title {
        font-size:30px;
        margin-bottom: 39px
    }
}

.work__descr h1,.work__descr h2,.work__descr h3,.work__descr h4,.work__descr h5,.work__descr h6 {
    font-weight: 500;
    font-size: 1.528vw;
    margin-bottom: .972vw
}

@media(max-width: 768px) {
    .work__descr h1,.work__descr h2,.work__descr h3,.work__descr h4,.work__descr h5,.work__descr h6 {
        font-size:20px;
        margin-bottom: 18px
    }
}

.work__descr p {
    margin-bottom: 3.125vw;
    font-weight: 300
}

@media(max-width: 768px) {
    .work__descr p {
        margin-bottom:18px
    }
}

.work__heading {
    font-weight: 600;
    font-size: 3.333vw;
    margin-bottom: 1.528vw
}

@media(max-width: 768px) {
    .work__heading {
        font-size:38px;
        margin-bottom: 22px
    }
}


.check {
    display: flex;
}

@media(max-width: 768px) {
    .check {
        display: flex;
        flex-flow: column wrap;
    }
}

.track__code__input {
    border-radius: 1.528vw;
    border: 1px solid #e9e9e9;
    padding: 0 1.528vw;
    color: #282b3f;
    margin-right: 1.528vw;
    font-size: 1.928vw;
}

@media(max-width: 768px) {
    .track__code__input {
        border-radius: 1.528vw;
        border: 1px solid #e9e9e9;
        padding: 0 1.528vw;
        color: #282b3f;
        margin-right: 10px;
        margin-left: 10px;
        margin-bottom: 30px;
        font-size: 5vw;
        height: 50px;
    }
}

.track__code__input:focus {
    border-color: #000;
    animation-duration: 1s;
    
}

.nm {
    margin-top: 30px;
}

.center {
    width:100%;
    display: flex;
    justify-content: center;
}