html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #334155;
    background: #FFFFFF;
}
.container {
    width: 100%;
    max-width: 1320px;
    padding-right: 64px;
    padding-left: 64px;
    margin-right: auto;
    margin-left: auto;
}
@media (max-width: 767px) {
    .container {
        padding-right: 24px;
        padding-left: 24px;
    }
}
section {
    padding: 128px 0;
    overflow: hidden;
}
@media (max-width: 1200px) {
    section {
        padding: 80px 0;
    }
}
@media (max-width: 767px) {
    section {
        padding: 80px 0;
    }
}

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

/*Titles*/
.display {
    font-size: 50px;
    font-weight: 800;
    line-height: 69.12px;
    letter-spacing: -0.3px;
    color: #000;
}
.heading-1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 48.3px;
    letter-spacing: -0.42px;
    color: #000;
}
.heading-1 span {
    color: #FFE036;
}
@media (max-width: 1200px) {
    .display {
        font-size: 40px;
        line-height: 48px;
    }
    .heading-1 {
        font-size: 32px;
        line-height: 48.3px;
    }
}
@media (max-width: 767px) {
    .display {
        font-size: 30px;
        line-height: 40px;
    }
    .heading-1 {
        font-size: 30px;
        line-height: 40px;
    }
}

/* Buttons */
.btn {
    width: fit-content;
    min-width: 192px;
    min-height: 53px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 900;
    line-height: 22.5px;
    text-decoration: none;
    text-align: center;
    border-radius: 40px;
    padding: 15px 23px;
    cursor: pointer;
    transition: all .3s;
}
.btn--primary {
    color: #fff;
    background: #000;
}
.btn--primary:hover {
    background: #FFE036;
    color: #000;
}
.btn--primary:focus, .btn--primary:active {
    background: #FFE036;
    color: #000;
}
.btn--secondary {
    color: #fff;
    background: transparent;
    border: 3px solid #FFE036;
}
.btn--secondary:hover {
    background: #FFE036;
    color: #000;
}
.btn--secondary:focus, .btn--secondary:active {
    background: #FFE036;
    color: #000;
}

/*@media (max-width: 767px) {*/
/*    .btn {*/
/*        min-width: 150px;*/
/*        min-height: 49px;*/
/*    }*/
/*}*/

/* Header */
.header {
    /*position: fixed;*/
    position: sticky;
    top: 0;
    width: 100%;
    background: #000;
    border-bottom: 2px solid #FFFFFF1A;
    box-shadow: 0px 4px 4px 0px #00000040;
    z-index: 10;
}
.header.menu-open {
    height: 100vh;
    overflow-y: auto;
    background: #000;
}
.header__wrap {
    width: 100%;
    max-width: 1320px;
    padding-top: 23px;
    padding-bottom: 23px;
    padding-right: 64px;
    padding-left: 64px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
}
@media (max-width: 1200px) {
    .header__wrap {
        flex-direction: column;
        align-items: inherit;
        gap: 32px;
    }
}
@media (max-width: 767px) {
    .header__wrap {
        padding-left: 32px;
        padding-right: 32px;
    }
}
.header__logo-img {
    display: block;
    max-width: 175px;
}
@media (max-width: 1200px) {
    .header__logo-img {
        max-width: 155px;
    }
}
@media (max-width: 1200px) {
    .header__nav {
        display: none;
        flex: 1 0 0;
    }
}
.header__nav-list {
    display: flex;
    gap: 28px;
    list-style: none;
    padding: 0;
    margin: 0;
}
@media (max-width: 1200px) {
    .header__nav-list {
        flex-direction: column;
        gap: 0;
    }
}
.header__nav-link,
.header__nav-span,
.header__dropdown-link {
    font-size: 13px;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
@media (max-width: 1200px) {
    .header__nav-link,
    .header__nav-span,
    .header__dropdown-link {
        display: block;
        font-size: 16px;
        padding: 18px 0;
    }
}
.header__nav-link:hover,
.header__nav-span:hover,
.header__dropdown-link:hover,
.header__nav-link.active,
.header__nav-span.active,
.header__dropdown-link.active,
.header__nav-link.open,
.header__nav-span.open,
.header__dropdown-link.open {
    color: #FFE036;
}
.header__burger,
.header__cross {
    display: none;
    position: absolute;
    top: 36px;
    right: 43px;
    cursor: pointer;
}
@media (max-width: 1200px) {
    .header__burger {
        display: block;
    }
}
@media (max-width: 767px) {
    .header__burger,
    .header__cross {
        right: 24px;
    }
}
.header__btn {
    display: none;
    position: absolute;
    top: 27px;
    right: 77px;
    min-width: 136px;
    min-height: 40px;
    border: 1px solid #ADB5BD;
    font-weight: 500;
    font-size: 14px;
    border-radius: 20px;
    padding: 6px 20px;
}
@media (max-width: 1200px) {
    .header__btn {
        display: flex;
    }
}
@media (max-width: 767px) {
    .header__btn {
        display: none;
    }
}
.header.menu-open .header__nav,
.header.menu-open .header__cross {
    display: block;
}
.header.menu-open .header__btn-wrap {
    display: flex;
}
.header.menu-open .header__burger {
    display: none;
}


/* Hero */
.hero {
    background: #fff;
    padding: 112px 0;
}

.hero__title {
    max-width: 90%;
    text-align: center;
    margin: auto;
    margin-bottom: 50px;
}

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

.hero__content {
    width: 50%;
    padding-right: 75px;
}

.hero__subtitle {
    font-size: 42px;
    font-weight: 600;
    line-height: 45px;
    color: #F59E0B;
    margin-bottom: 31px;
}

.hero__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #000;
    margin-bottom: 40px;
}

.hero__btn {}

.hero__media {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.hero__img {
    max-width: 412px;
}

.page-services .hero__img {
    max-width: 505px;
}

@media (max-width: 1200px) {
    .hero {
        padding: 70px 0;
    }
    .hero__wrap {
        flex-direction: column;
    }
    .hero__content {
        width: 100%;
        padding-right: 0;
    }
    .hero__title {
        max-width: 95%;
        margin-bottom: 20px;
    }
    .hero__subtitle {
        max-width: 650px;
        font-size: 30px;
        line-height: 42px;
        text-align: center;
        margin: auto;
        margin-bottom: 20px;
    }
    .hero__description {
        max-width: 620px;
        color: #334155;
        line-height: 28px;
        text-align: center;
        margin: auto;
        margin-bottom: 50px;
    }
    .hero__btn {
        margin: auto;
    }
    .hero__media {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 0;
    }
    .hero__img {
        max-width: 455px;
    }
    .page-services .hero__img {
        max-width: 693px;
    }
}
@media (max-width: 767px) {
    .hero {}
    .hero__title {
        max-width: 100%;
        letter-spacing: -1.3px;
    }
    .hero__subtitle {
        font-size: 28px;
        line-height: 32px;
    }
    .hero__img {
        max-width: 85%;
    }
    .page-services .hero__img {
        max-width: 100%;
    }
}


/* About */
.about {
    background: #fff;
    padding-top: 123px;
    padding-bottom: 144px;
}

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

.about__wrap:not(:last-child) {
    margin-bottom: 56px;
}

.about__content {
    width: 50%;
    max-width: 512px;
}

.about__title {
    margin-bottom: 30px;
}

.about__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #000;
    margin-bottom: 30px;
}

.about__btn {}

.about__media {
    width: 50%;
    max-width: 505px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__img {}

@media (max-width: 1200px) {
    .about {
        padding-top: 83px;
        padding-bottom: 50px;
    }
    .about__wrap {
        flex-direction: column;
    }
    .about__wrap:nth-child(2) {
        flex-direction: column-reverse;
    }
    .about__wrap:not(:last-child) {
        margin-bottom: 100px;
    }
    .about__content {
        width: 100%;
        max-width: 100%;
    }
    .about__title {
        text-align: center;
    }
    .about__description {
        max-width: 625px;
        text-align: center;
        margin: auto;
        margin-bottom: 50px;
    }
    .about__btn {
        margin: auto;
        margin-bottom: 50px;
    }
    .about__media {
        width: 100%;
        max-width: 100%;
    }
    .about__img {
        max-width: 623px;
    }
}
@media (max-width: 767px) {
    .about {
        padding-top: 50px;
    }
    .about__wrap:not(:last-child) {
        margin-bottom: 50px;
    }
    .about__title {
        margin-bottom: 20px;
    }
    .about__description {
        margin-bottom: 30px;
    }
    .about__btn {
        margin-bottom: 30px;
    }
}


/* Why */
.why {
    background: #fff;
    padding-top: 70px;
    padding-bottom: 70px;
}

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

.why__content {
    width: 50%;
    max-width: 512px;
}

.why__title {
    margin-bottom: 30px;
}

.why__description {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: #000;
}

.why__media {
    width: 50%;
    max-width: 575px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why__img {}

@media (max-width: 1200px) {
    .why__wrap {
        flex-direction: column;
    }
    .why__content {
        width: 100%;
        max-width: 100%;
    }
    .why__title {
        text-align: center;
    }
    .why__description {
        max-width: 625px;
        text-align: center;
        margin: auto;
        margin-bottom: 50px;
    }
    .why__media {
        width: 100%;
        max-width: 100%;
    }
    .why__img {
        max-width: 623px;
    }
}
@media (max-width: 767px) {
    .why {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .why__title {
        margin-bottom: 20px;
    }
    .why__description {
        margin-bottom: 30px;
    }
}


/* Principles */
.principles {
    background-color: #000;
    padding: 100px 0;
}

.principles__wrap {
    display: flex;
    align-items: center;
}

.principles__media {
    width: 50%;
}

.principles__content {
    width: 50%;
    padding-left: 7.5%;
}

.principles__title {
    color: #fff;
    margin-bottom: 30px;
}

.principles__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.principles__list li {
    margin-bottom: 25px;
}

.principles__list h3 {
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 8px;
}

.principles__list p {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 25px;
}

.principles__img.mobile {
    display: none;
}

.principles__btn {
    margin-top: 35px;
}

@media (max-width: 1200px) {
    .principles__wrap {
        flex-direction: column;
    }

    .principles__media {
        display: none;
    }

    .principles__content {
        width: 100%;
        padding-left: 0;
    }

    .principles__title {
        text-align: center;
        margin-bottom: 55px;
    }

    .principles__list li {
        margin-bottom: 48px;
    }

    .principles__list h3 {
        text-align: center;
    }

    .principles__list p {
        text-align: center;
    }

    .principles__img.mobile {
        display: block;
        margin-bottom: 80px;
    }

    .principles__btn {
        margin: auto;
        margin-top: 68px;
    }
}
@media (max-width: 767px) {

}



/* Advantages */
.advantages {
    padding-top: 0;
    padding-bottom: 100px;
}

.advantages__title {
    text-align: center;
    margin-bottom: 20px;
}

.advantages__description {
    text-align: center;
    margin-bottom: 57px;
}

.advantages__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 36px 20px;
}

.advantages-card {
    width: calc(50% - 10px);
    min-height: 346px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0px 4px 4px 0px #0000001A;
    background: #FFF;
    padding: 30px 33px 33px 33px;
}
.advantages-card__img {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
}
.advantages-card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 22.5px;
    vertical-align: middle;
    color: #0F172A;
    margin-bottom: 20px;
}
.advantages-card__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 22.5px;
    color: #0F172A;
    margin-bottom: 20px;
}
.advantages-card__list {
    padding-left: 20px;
    margin: 0;
}
.advantages-card__list li {
    font-weight: 400;
    font-size: 15px;
    line-height: 22.5px;
    color: #0F172A;
}

@media (max-width: 1200px) {
    .advantages {
        padding-bottom: 70px;
    }
    .advantages__description {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 35px;
    }
    .advantages__wrap {
        gap: 30px;
    }
    .advantages-card {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .advantages {
        padding-bottom: 50px;
    }
}


/* Solutions */
.solutions {
    background-color: #E2E8F0;
    padding-top: 100px;
    padding-bottom: 100px;
}

.solutions__title {
    text-align: center;
    margin: auto;
    margin-bottom: 46px;
}

.solutions__description {
    max-width: 94%;
    text-align: center;
    margin: auto;
    margin-bottom: 75px;
}

.solutions__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.solutions-card {
    width: calc(50% - 12px);
    min-height: 222px;
    border-radius: 16px;
    box-shadow: 0px 4px 4px 0px #0000001A;
    background: #000;
    padding: 37px 33px 37px 33px;
}
.solutions-card>div {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 8px;
}
.solutions-card__img {
    width: 52px;
    height: 52px;
}
.solutions-card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 27px;
    color: #fff;
}
.solutions-card__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    color: #fff;
}

@media (max-width: 1200px) {
    .solutions {}
    .solutions__title {

    }
    .solutions__description {
        max-width: 100%;
    }
    .solutions__wrap {
        flex-direction: column;
    }
    .solutions-card {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .solutions-card {
        min-height: 357px;
        padding: 32px;
    }
    .solutions-card>div {
        flex-direction: column;
        align-items: inherit;
        gap: 18px;
        margin-bottom: 24px;
    }
}


/* Partner */
.partner {
    padding: 100px 0;
}

.partner__title {
    color: #0F172A;
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
}

.partner__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #334155;
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
}

.partner__img {
    max-width: 629px;
    z-index: -1;
    position: relative;
    margin: auto;
    margin-bottom: -55px;
}

.slick-track {
    display: flex;
}
.slick-slide {
    height: auto;
    margin: 0 12px;
}
.slick-list {
    margin: 0 -12px;
    padding-bottom: 50px;
}
.slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.slick-dots li {
    font-size: 0;
    line-height: 0;
    margin: 0;
    width: auto;
    height: auto;
}
.slick-dots li button {
    font-size: 0;
    padding: 0;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 999px;
    background: #E9ECEF;
    cursor: pointer;
    transition: all .3s ease;
}
.slick-dots li button::before {
    display: none;
}
.slick-dots li.slick-active button {
    width: 38px;
    background: #0F172A;
}
.partner-slide {
    display: flex!important;
    gap: 24px;
}
.partner-card {
    flex: 1 0 0;
    min-height: 250px;
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0px 4px 4px 0px #0000001A;
    padding: 22px 32px;
}
.partner-card__img {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
}
.partner-card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 22.5px;
    color: #0F172A;
    margin-bottom: 20px;
}
.partner-card__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 22.5px;
    color: #0F172A;
}

@media (max-width: 1200px) {
    .partner {
        padding: 70px 0;
    }
    .partner-slide {
        flex-direction: column;
        gap: 20px;
    }
    .partner-card {
        flex: inherit;
    }
}

@media (max-width: 767px) {
    .partner__title {
        max-width: 250px;
        margin-bottom: 16px;
    }
    .partner__description {
        max-width: 250px;
    }
    .partner-card {
        /*min-height: 300px;*/
    }
    .partner__img {
        margin-bottom: 0;
    }
}



/* Guides */
.guides {
    background-color: #F8F9FA;
    padding-top: 100px;
    padding-bottom: 100px;
}

.guides__title {
    text-align: center;
    margin: auto;
    margin-bottom: 20px;
}

.guides__description {
    text-align: center;
    margin-bottom: 57px;
}

.guides-slide {
    display: flex!important;
    gap: 24px;
}

.guides-card {
    flex: 1 0 0;
    min-height: 250px;
    background-color: #fff;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0px 4px 4px 0px #0000001A;
    padding: 22px 32px;
}
.guides-card__img {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
}
.guides-card__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 22.5px;
    color: #0F172A;
    margin-bottom: 20px;
}
.guides-card__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 22.5px;
    color: #0F172A;
}

@media (max-width: 1200px) {
    .guides {
        padding: 70px 0;
    }
    .guides-slide {
        flex-direction: column;
        gap: 20px;
    }
    .guides-card {
        flex: inherit;
    }
}

@media (max-width: 767px) {
    .guides__title {
        max-width: 250px;
    }
    .guides__description {
        margin-bottom: 30px;
    }
    .guides-card {
        /*min-height: 300px;*/
    }
}


/* Connect */
.connect {
    background-color: #F8F9FA;
    padding: 100px 0;
}

.connect__title {
    text-align: center;
    margin: auto;
    margin-bottom: 25px;
}

.connect__description {
    max-width: 79%;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    margin: auto;
    margin-bottom: 25px;
}

.connect__mail {
    display: flex;
    width: fit-content;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;

    color: #1D4ED8;
    text-align: center;
    transition: all .3s;
    margin: auto;
}

.connect__mail:hover {
    color: #FFE036;
}

.connect__wrap {
    display: flex;
    flex-direction: column;
    gap: 86px;
}

/*.connect__text {*/
/*    flex: 1 0 0;*/
/*}*/

.connect__form-inner {
    width: 100%;
    max-width: 630px;
    position: relative;
    margin: auto;
}
.connect__form {}
.connect__form-row {
    display: flex;
    column-gap: 26px;
}
.connect__form-group {
    position: relative;
    flex: 1 0 0;
    margin-bottom: 19px;
}
.connect__form-label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #212529;
    margin-bottom: 4px;
}
.connect__form label.error {
    color: #E94235;
    font-size: 12px;
    line-height: 1.2;
    margin-top: 4px;
}
.connect__form-control {
    display: block;
    width: 100%;
    color: #0F172A;
    font-size: 14px;
    line-height: 20px;
    border: 1px solid #DEE2E6;
    border-radius: 8px;
    background: #FFF;
    outline: none;
    padding: 8px 16px;
    transition: all 0.3s ease;
}
.connect__form-control.error {
    border: 1px solid #E94235;
}
.connect__form-control--textarea {
    min-height: 156px;
    resize: none;
}
.connect__form-btn {
    border: none;
    margin-top: 27px;
}

.connect__form-success {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid #FFE036;
    border-radius: 16px;
    z-index: 1;
    padding: 32px;
}
.connect__form-success h3 {
    color: #0F172A;
    text-align: center;
    font-size: 24px;
    line-height: 1.5;
}
.connect__form-success p {
    color: #334155;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .connect {
        padding-top: 50px;
        padding-bottom: 64px;
    }

    .connect__wrap {
        max-width: 95%;
        flex-direction: column;
        gap: 40px;
        margin: auto;
    }

    .connect__title {
        max-width: 300px;
    }

    .connect__description {
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 767px) {
    .connect__form-group {
        margin-bottom: 12px;
    }
    .connect__form-row {
        flex-direction: column;
    }
    .connect__form-btn {
        min-width: 100%;
        margin-top: 40px;
    }
}


/* Contact */
.contact {
    background: url("../img/contact-desktop.png") center bottom / cover no-repeat, #fc8205;
    padding-top: 145px;
    padding-bottom: 93px;
}

.contact__title {
    color: #FFF;
    margin-bottom: 44px;
}

.contact__description {
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #FFF;
}

.contact__wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 86px;
}

.contact__text {
    flex: 1 0 0;
}

.contact__form-inner {
    flex: 1 0 0;
    position: relative;
}
.contact__form {}
.contact__form-row {
    display: flex;
    column-gap: 26px;
}
.contact__form-group {
    position: relative;
    flex: 1 0 0;
    margin-bottom: 19px;
}
.contact__form-label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #FFF;
    margin-bottom: 4px;
}
.contact__form label.error {
    color: #E94235;
    font-size: 12px;
    line-height: 1.2;
    margin-top: 4px;
}
.contact__form-control {
    display: block;
    width: 100%;
    color: #0F172A;
    font-size: 14px;
    line-height: 20px;
    border: 1px solid #DEE2E6;
    border-radius: 8px;
    background: #FFF;
    outline: none;
    padding: 8px 16px;
    transition: all 0.3s ease;
}
.contact__form-control.error {
    border: 1px solid #E94235;
}
.contact__form-control--textarea {
    min-height: 120px;
    resize: none;
}
.contact__form-btn {
    border: none;
    margin-top: 27px;
}

.contact__form-success {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #FFE036;
    border-radius: 16px;
    z-index: 1;
    padding: 32px;
}
.contact__form-success h3 {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    line-height: 1.5;
}
.contact__form-success p {
    color: #FFF;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .contact {
        background: url("../img/contact-tablet.png") center bottom / cover no-repeat, #fc8205;
        padding-top: 74px;
        padding-bottom: 74px;
    }

    .contact__wrap {
        max-width: 95%;
        flex-direction: column;
        gap: 60px;
        margin: auto;
    }

    .contact__title {
        margin: auto;
        margin-bottom: 30px;
        text-align: center;
    }

    .contact__description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .contact__form-btn {
        margin: auto;
        margin-top: 27px;
    }
}
@media (max-width: 767px) {
    .contact {
        background: url("../img/contact-mobile.png") center bottom / cover no-repeat, #fc8205;
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .contact__title {
        max-width: 250px;
        margin-bottom: 20px;
    }
    .contact__form-row {
        flex-direction: column;
    }
    .contact__form-btn {
        min-width: 100%;
        margin-top: 40px;
    }
}



/* Legal */
.legal {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #334155;
    padding-top: 200px;
    padding-bottom: 64px;
}
.legal__title {
    font-size: 42px;
    font-weight: 800;
    line-height: 48.3px;
    letter-spacing: -0.42px;
    color: #0F172A;
    text-align: center;
    margin-bottom: 40px;
}
.legal__content {
    margin-bottom: 56px;
}
.legal__h2 {
    font-size: 25px;
    font-weight: 700;
    line-height: 28px;
    color: #334155;
    text-align: center;
    margin-bottom: 30px;
}
.legal__description {}
.legal__description a {
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    color: #1D4ED8;
    cursor: pointer;
    transition: all .3s;
}
.legal__description a:hover,
.legal__description a:focus,
.legal__description a:active {
    color: #FFE036;
}
.legal__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.legal__list li {
    padding-left: 14px;
    position: relative;
}
.legal__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 3px;
    height: 3px;
    background-color: #334155;
    border-radius: 50%;
}
.legal__list--margin li {
    margin-bottom: 24px;
}
.legal__table-wrap {
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #8d8d8d transparent;
}
.legal__table-wrap table {
    width: 100%;
    min-width: 866px;
    table-layout: fixed;
    border-collapse: collapse;
}
.legal__table-wrap tr:not(:last-child) {
    border-bottom: 1px solid #E0E4EA;
}
.legal__table-wrap thead tr {
    border-bottom: 3px solid #E0E4EA;
}
.legal__table-wrap th,
.legal__table-wrap td {
    color: #334155;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    text-align: left;
    padding: 16px;
}
.legal__table-wrap th {
    font-weight: 800;
    padding: 16px;
}
.legal__table-wrap th:nth-child(1) {
    width: 180px;
}
.legal__table-wrap th:nth-child(2) {
    width: 180px;
}
.legal__table-wrap th:nth-child(3) {
    width: auto;
}

@media (max-width: 1200px) {
    .legal {
        padding: 90px 0;
    }
    .legal__title {
        font-size: 30px;
    }
    .legal__h2 {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    font-size: 14.4px;
    font-weight: 400;
    line-height: 24.48px;
    border-top: 5px solid #FFFFFF26;
    padding-top: 130px;
    padding-bottom: 64px;
}

.footer__logo-img {
    display: block;
    max-width: 190px;
    margin-bottom: 16px;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 57px;
}

.footer__left {
    width: 50%;
}

.footer__left p {
    max-width: 379px;
}

.footer__left p a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s;
}

.footer__left p a:hover {
    color: #FFE036;
}

.footer__right {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    gap: 72px;
}

.footer__col {
    /*flex: 1 1 0;*/
}

.footer__col h4 {
    color: #fff;
    font-weight: 900;
}

.footer__col a {
    display: block;
    color: #ADB5BD;
    text-decoration: none;
    transition: all .3s;
}

.footer__col a:hover {
    color: #FFE036;
}

.footer__copy {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
}

.footer__copy strong {
    text-transform: uppercase;
}

.footer__mobile {
    display: none;
}

@media (max-width: 1200px) {
    .footer {
        padding-top: 96px;
    }

    .footer__logo-img {
        margin: auto auto 42px;
    }

    .footer__container {
        flex-direction: column;
        margin-bottom: 64px;
    }

    .footer__left {
        width: 100%;
    }

    .footer__right {
        width: 100%;
        justify-content: space-between;
        gap: 38px;
        margin-top: 45px;
    }

    .footer__left p {
        max-width: inherit;
        text-align: center;
    }

    .footer__mail {
        display: block;
        text-align: center;
    }
}
@media (max-width: 767px) {
    .footer {
        padding-top: 48px;
        padding-bottom: 60px;
    }

    .footer__logo-img {
        margin: auto auto 20px;
    }

    .footer__right {
        flex-direction: column;
        align-items: center;
    }

    .footer__col h4,
    .footer__col a {
        text-align: center;
    }

    .footer__col {
        padding: 0;
    }
}








