@font-face {
    font-family: 'Clash Display';
    src: url('../fonts/ClashDisplay-Variable.ttf') format('truetype');
    font-style: normal;
}
@font-face {
    font-family: 'Syne';
    src: url('../fonts/Syne-Bold.ttf') format('truetype');
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

:root {
    /*--Background-primary: #FFF;*/
    /*--Background-secondary: #FCFCFC;*/
    /*--Background-tertiary: #F8F8F8;*/
    /*--Background-brand-soft: #FAF8FF;*/
    /*--Background-brand: #802EFF;*/
    /*--Background-brand-dark: #3A1573;*/
    --Text-primary: #000;
    --Text-brand: #802EFF;
    --Text-secondary: #656565;



}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: var(--Text-secondary);
    background: #FFFFFF;
}
.container {
    width: 100%;
    max-width: 1440px;
    padding-right: 120px;
    padding-left: 120px;
    margin-right: auto;
    margin-left: auto;
}
@media (max-width: 1024px) {
    .container {
        padding-right: 32px;
        padding-left: 32px;
    }
}
@media (max-width: 640px) {
    .container {
        padding-right: 16px;
        padding-left: 16px;
    }
}
.section {
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.display {
    font-family: 'Clash Display', sans-serif;
    font-size: 64px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -1.5px;
    color: var(--Text-primary);
}
.heading-1 {
    font-family: 'Clash Display', sans-serif;
    font-size: 56px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -1.5px;
    color: var(--Text-primary);
}
.heading-2 {
    font-family: 'Clash Display', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -1px;
    color: var(--Text-primary);
}
.heading-3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -1px;
    color: var(--Text-primary);
}
.heading-6 {
    font-family: 'Clash Display', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    color: var(--Text-primary);
}

@media (max-width: 1024px) {
    .display {
        font-size: 56px;
    }
    .heading-1 {
        font-size: 48px;
    }
    .heading-2 {
        font-size: 44px;
    }
    .heading-3 {
        font-size: 32px;
    }
    .heading-6 {
        font-size: 18px;
    }

}

@media (max-width: 640px) {
    .display {
        font-size: 40px;
    }
    .heading-1 {
        font-size: 40px;
    }
    .heading-2 {
        font-size: 32px;
    }
    .heading-3 {
        font-size: 28px;
    }
}

.btn-primary {
    width: fit-content;
    min-width: 153px;
    min-height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    text-decoration: none;
    text-align: center;
    border: none;
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
    color: #FFFFFF;
    background: var(--Text-brand);
    outline-color: rgba(73, 26, 145, 0.32);
    transition: all 300ms ease-out;
}
.btn-primary:hover {
    background: #491A91;
}
.btn-primary:active,
.btn-primary:focus-visible {
    background: #491A91;
    outline: 4px solid rgba(73, 26, 145, 0.32);
    outline-offset: 0;
}

.btn-secondary {
    width: fit-content;
    min-width: 158px;
    min-height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    padding: 8px 16px;
    cursor: pointer;
    color: #000;
    background: #fff;
    outline-color: rgba(255, 255, 255, 0.32);
    transition: all 300ms ease-out;
}
.btn-secondary:hover {
    color: #000;
    background: #fff;
}

.btn-secondary:active,
.btn-secondary:focus {
    color: #000;
    background: #fff;
    outline-offset: 0;
    outline: 4px solid rgba(255, 255, 255, 0.32);
}


/*============ header start ============*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: #fff;
}
.header__bg {}
.header__wrap {
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    margin: auto;
}
.header .logo {
    width: 100%;
    height: auto;
    max-width: 153px;
}
.header__btn {
    min-width: 99px;
    min-height: 44px;
    font-size: 13px;
    line-height: 14px;
}

.menu ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
    color: #000;
    padding: 4px 16px;
    transition: all 300ms ease-out;
}
.menu a:hover {
    color: #3A1573;
    background: #FAF8FF;
    border-radius: 50px;
}
.menu a.active {
    color: #802EFF;
    background: #FAF8FF;
    border-radius: 50px;
}
.menu-icon {
    display: none;
}

@media (max-width: 1024px) {
    .header .logo {
        max-width: 137px;
    }
}

@media (max-width: 708px) {
    .menu a {
        padding: 4px 10px;
    }
}

@media (max-width: 640px) {
    .header__wrap {
        padding: 8px 16px;
    }
    .header .logo {
        max-width: 130px;
    }
    .menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #FFF;
        box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.04);
        padding: 8px;
    }
    .menu.active {
        display: block;
    }
    .menu ul {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu li,
    .menu a {
        width: 100%;
    }
    .menu a {
        padding: 12px 16px;
    }
    .menu a.active {
        border-radius: 8px;
    }
    .menu-icon {
        display: flex;
        align-items: center;
    }
    .menu-icon rect {
        transition: transform 300ms ease-out, fill 300ms ease-out;
    }
    .menu-icon.active rect:nth-of-type(1){
        transform: translateY(4px);
    }
    .menu-icon.active rect:nth-of-type(2){
        opacity: 0;
    }
}
/*============ header end ============*/

/*============ section-banner start ============*/
.section-banner {
    background: #fff url("../img/hero_bg-desktop.jpg") right bottom / auto no-repeat;
    min-height: 668px;
    display: flex;
    align-items: center;
    border-radius: 24px;
    padding-top: 128px;
    padding-bottom: 128px;
    margin-left: 32px;
    margin-right: 32px;
    margin-top: 69px;
}
.banner__text-block {
    max-width: 690px;
}
.banner__title {
    margin-bottom: 16px;
}
.banner__title span {
    color: var(--Text-brand);
}
.banner__text {
    font-size: 18px;
    margin-bottom: 32px;
}
.banner__btn {
    min-width: 146px;
}

@media (min-width: 1025px) {
    .section-banner .container {
        max-width: 1376px;
        padding-left: 88px;
        padding-right: 88px;
    }
}

@media (max-width: 1024px) {
    .section-banner {
        background: #802EFF url("../img/hero_bg-tablet.jpg") 50% bottom / cover no-repeat;
        min-height: 900px;
        padding-top: 112px;
        padding-bottom: 112px;
    }
    .banner__text-block {
        text-align: center;
    }
    .banner__btn {
        margin: auto;
    }
}

@media (max-width: 640px) {
    .section-banner {
        background: #802EFF url("../img/hero_bg-mobile.jpg") 50% bottom / cover no-repeat;
        min-height: 640px;
        padding-top: 96px;
        padding-bottom: 96px;
        margin-left: 16px;
        margin-right: 16px;
    }
    .banner__text {
        font-size: 16px;
    }
}
/*============ section-banner end ============*/

/*============ section-services start ============*/
.section-services {
    background: url("../img/services_bg.png") 50% bottom / 1440px auto no-repeat;
    padding-top: 128px;
    padding-bottom: 128px;
}
.services__text-block {
    max-width: 730px;
    margin: auto;
}
.services__title {
    text-align: center;
    margin-bottom: 16px;
}
.services__text {
    text-align: center;
    margin-bottom: 64px;
}
.tabs {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 0 32px 16px 32px;
    margin-bottom: 48px;
}
.tab {
    font-size: 14px;
    font-weight: 700;
    line-height: 150%;
    white-space: nowrap;
    background: #F8F8F8;
    border-radius: 50px;
    cursor: pointer;
    padding: 8px 24px;
    transition: all 300ms ease-out;
}
.tab[data-tab="tab1"]:hover {
    color: var(--Text-brand);
    background: #FAF8FF;
}
.tab[data-tab="tab2"]:hover {
    color: #55C9A6;
    background: #F2FBF9;
}
.tab[data-tab="tab3"]:hover {
    color: #FF746A;
    background: #FFF9F8;
}
.tab[data-tab="tab1"].active {
    color: #fff;
    background: var(--Text-brand);
}
.tab[data-tab="tab2"].active {
    color: #fff;
    background: #55C9A6;
}
.tab[data-tab="tab3"].active {
    color: #fff;
    background: #FF746A;
}
.tab-content {
    display: none;
}
.tab-content.active {
    display: block;
}
.carousel-wrap {
    position: relative;
    overflow: hidden;
}
.carousel-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 119px;
    height: 100%;
    background: #ffffff;
    z-index: 1;
}
.carousel-wrap:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 119px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    z-index: 1;
}
.slick-track {
    display: flex;
}
.slick-slide {
    height: auto;
    margin: 0 12px;
}
.slick-list {
    overflow: visible;
    margin: 0 -12px;
}
.slick-dots {
    display: flex;
    justify-content: center;
    gap: 16px;
    list-style: none;
    padding-left: 0;
    padding-top: 48px;
    padding-bottom: 18px;
    margin: 0;
}
.slick-dots button {
    font-size: 0;
    line-height: 0;
    border: none;
    cursor: pointer;
    display: block;
    width: 8px;
    height: 8px;
    background: #e0dae9;
    border-radius: 50%;
    padding: 0;
    transition: all 300ms;
}
.slick-dots button:hover,
.slick-dots .slick-active button {
    background-color: #3A1573;
}
.slick-prev, .slick-next {
    font-size: 0;
    position: absolute;
    bottom: 0;
    width: 44px;
    height: 44px;
    background-color: #FFF;
    border: 1px solid #E6E6E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms;
    cursor: pointer;
    z-index: 1;
}
.slick-prev {
    right: 60px;
}
.slick-next {
    right: 0;
}
.slick-prev::before, .slick-next::before {
    content: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNNC4wMDEgMTJMMjAgMTJNNC4wMDEgMTJMMTAgNkw0LjAwMSAxMkwxMCAxOCIgc3Ryb2tlPSIjM0ExNTczIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=');
    transition: all 300ms;
}
.slick-next::before {
    content: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMjAgMTJMNCAxMkwyMCAxMkwxNCAxOE0yMCAxMkwxNCA2IiBzdHJva2U9IiMzQTE1NzMiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==');
}
.slick-prev:hover, .slick-next:hover {
    border: 1px solid #3A1573;
}
.slick-prev:active, .slick-next:active {
    border: 1px solid #3A1573;
    background: #3A1573;
    box-shadow: 0px 0px 0px 3px rgba(58, 21, 115, 0.32);
}
.slick-prev:active::before, .slick-next:active::before {
    filter: invert(60%) sepia(17%) saturate(180%) hue-rotate(217deg) brightness(130%) contrast(94%);
}
.service {
    display: flex!important;
    flex-direction: column;
    min-height: 240px;
    border-radius: 16px;
    padding: 32px;
}
#tab1 .service {
    background: #FAF8FF;
}
#tab2 .service {
    background: #F2FBF9;
}
#tab3 .service {
    background: #FFF9F8;
}
.service__icon {
    display: flex;
    width: 56px;
    height: 56px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: #FFF;
    margin-bottom: 16px;
}
.service__title {
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .section-services {
        padding-top: 112px;
        padding-bottom: 112px;
    }
    .services__text {
        margin-bottom: 56px;
    }
    .tabs {
        margin-bottom: 40px;
    }
    .carousel-wrap:before,
    .carousel-wrap:after {
        width: 30px;
    }
    .slick-slide {
        margin: 0 10px;
    }
    .slick-list {
        padding-right: 322px;
    }
}

@media (max-width: 748px) {
    .tabs {
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
    }
}

@media (max-width: 640px) {
    .section-services {
        padding-top: 96px;
        padding-bottom: 96px;
    }
    .services__text {
        margin-bottom: 48px;
    }
    .tabs {
        padding: 0 16px 16px 16px;
        margin-bottom: 32px;
    }
    .carousel-wrap:before,
    .carousel-wrap:after {
        width: 0;
    }
    .slick-slide {
        margin: 0 8px;
    }
    .slick-list {
        padding-right: 32px;
    }
    .slick-dots {
        padding-top: 32px;
        padding-bottom: 0;
    }
    .slick-prev, .slick-next {
        display: none!important;
    }
}
/*============ section-services end ============*/

/*============ section-stats start ============*/
.section-stats {
    background: url("../img/stats_bg-desktop.jpg") 50% / 1440px auto no-repeat;
    padding-bottom: 128px;
}
.stats__title {
    text-align: center;
    margin-bottom: 64px;
}
.stats__list {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
}
.stats__item {
    width: 33.33%;
    text-align: center;
    border: 1px solid transparent;
    padding: 32px;
}
.stats__item:nth-child(1),
.stats__item:nth-child(2) {
    border-right: 1px solid #EBEBEB;
}
.stats__item h3 {
    color: #3A1573;
    margin-bottom: 4px;
}

@media (max-width: 1024px) {
    .section-stats {
        background: url("../img/stats_bg-tablet.jpg") 50% / cover no-repeat;
        padding-bottom: 112px;
    }
    .stats__title {
        margin-bottom: 56px;
    }
}

@media (max-width: 640px) {
    .section-stats {
        padding-bottom: 96px;
    }
    .stats__title {
        margin-bottom: 48px;
    }
    .stats__list {
        flex-direction: column;
    }
    .stats__item {
        width: 100%;
    }
    .stats__item:nth-child(1),
    .stats__item:nth-child(2) {
        border-right: 1px solid transparent;
        border-bottom: 1px solid #EBEBEB;
    }
}

@media (max-width: 450px) {
    .section-stats {
        background: url("../img/stats_bg-mobile.jpg") 50% / cover no-repeat;
        padding-bottom: 96px;
    }
}
/*============ section-stats end ============*/

/*============ section-approach start ============*/
.section-approach {
    background: url("../img/approach_bg-desktop.jpg") right bottom / contain no-repeat;
    border-radius: 32px;
    padding-top: 96px;
    padding-bottom: 128px;
    margin-left: 32px;
    margin-right: 32px;
    margin-bottom: 64px;
}
.approach__title {
    text-align: center;
    margin-bottom: 16px;
}
.approach__text {
    max-width: 588px;
    text-align: center;
    margin: auto;
    margin-bottom: 35px;
}
.approach__wrap {
    position: relative;
}
.approach__wrap:before {
    content: '';
    position: absolute;
    bottom: 40%;
    left: 5%;
    width: 96px;
    height: 99px;
    background: url("../img/stars-v1.svg") center / contain no-repeat;
}
.approach__wrap:after {
    content: '';
    position: absolute;
    top: 3%;
    right: 3%;
    width: 128px;
    height: 123px;
    background: url("../img/stars-v2.svg") center / contain no-repeat;
}
.approach__img-block {
    margin-bottom: -208px;
}
.approach__img {
    width: 560px;
    height: 400px;
    margin: auto;
    /*background: #e0dae9;*/
    position: relative;
}
.approach__img-block {
    position: relative;
}
.approach__img-block:before {
    content: '';
    position: absolute;
    top: -99px;
    left: 50%;
    transform: translateX(-295px);
    width: calc(100vw - 50vw + 286px);
    height: 868px;
    background: url("../img/pie.png") top left / auto no-repeat;
}
.segment-label {
    color: #FFF;
    text-align: center;
    text-shadow: 0.586px 0.586px 0px #666;
    font-family: 'Syne', sans-serif;
    font-size: 17.579px;
    font-weight: 700;
    line-height: 150%;
    position: absolute;
    z-index: 2;
    cursor: default;
}
.segment1-label {
    top: 58px;
    left: 151px;
}
.segment2-label {
    top: 58px;
    right: 144px;
}
.segment3-label {
    top: 168px;
    right: 81px;
}
.segment4-label {
    top: 276px;
    right: 137px;
}
.segment5-label {
    top: 276px;
    left: 151px;
}
.segment6-label {
    top: 168px;
    left: 66px;
}
.segment {
    position: absolute;
}
.segment path {
    transition: all 300ms ease-out;
}
.segment1-bottom {
    top: 0;
    left: 56px;
}
.segment1-top {
    top: 0;
    left: 56px;
    z-index: 1;
}
.segment1-top:hover path,
.segment1-top.hovered path {
    fill: #83EBAC;
}
.segment2-bottom {
    top: 0;
    right: 57px;
}
.segment2-top {
    top: 0;
    right: 57px;
    z-index: 1;
}
.segment2-top:hover path,
.segment2-top.hovered path {
    fill: #A69AFF;
}
.segment3-bottom {
    top: 90px;
    right: 23px;
}
.segment3-top {
    top: 90px;
    right: 23px;
    z-index: 1;
}
.segment3-top:hover path,
.segment3-top.hovered path {
    fill: #FFA9A3;
}
.segment4-bottom {
    top: 216px;
    right: 57px;
}
.segment4-top {
    top: 216px;
    right: 57px;
    z-index: 1;
}
.segment4-top:hover path,
.segment4-top.hovered path {
    fill: #4ED6F2;
}
.segment5-bottom {
    top: 216px;
    left: 56px;
    z-index: 1;
}
.segment5-top {
    top: 216px;
    left: 56px;
    z-index: 2;
}
.segment5-top:hover path,
.segment5-top.hovered path {
    fill: #FFC987;
}
.segment6-bottom {
    top: 90px;
    left: 22px;
}
.segment6-top {
    top: 90px;
    left: 22px;
    z-index: 1;
}
.segment6-top:hover path,
.segment6-top.hovered path {
    fill: #86A8FF;
}

@media (max-width: 1240px) {
    .approach__wrap:before {
        left: -64px;
    }
    .approach__wrap:after {
        right: -90px;
    }
}

@media (max-width: 1024px) {
    .section-approach {
        background: url("../img/approach_bg-tablet.jpg") right bottom / contain no-repeat;
        padding-top: 80px;
    }
    .approach__wrap:before {
        bottom: 42%;
        left: -11px;
        width: 64px;
        height: 66px;
    }
    .approach__wrap:after {
        top: inherit;
        bottom: 52%;
        right: -16px;
        width: 96px;
        height: 92px;
    }
}

@media (max-width: 688px) {
    .section-approach {
        padding-bottom: 0;
        margin-bottom: 15%;
    }
    .approach__text-block {
        margin-bottom: 120px;
    }
    .approach__img {
        width: auto;
        height: 44vw;
    }
    .segment, .segment-label {
        display: none;
    }
    .approach__img-block {
        margin-bottom: 0;
    }
    .approach__img-block:before {
        top: -28%;
        left: -64px;
        transform: translateX(0);
        width: calc(100% + 127px);
        background: url(../img/pie.png) top left -34% / 125% no-repeat;
    }
}

@media (max-width: 640px) {
    .section-approach {
        background: url("../img/approach_bg-mobile.jpg") right bottom / contain no-repeat;
        padding-top: 64px;
        margin-left: 16px;
        margin-right: 16px;
    }
    .approach__img-block:before {
        top: -40%;
        left: -32px;
        transform: translateX(0);
        width: calc(100% + 63px);
        background: url(../img/pie.png) top left / 146% no-repeat;
    }
}

@media (max-width: 450px) {
    .approach__wrap:before {
        bottom: 26%;
        left: -8px;
        width: 48px;
        height: 49px;
    }
    .approach__wrap:after {
        bottom: 32%;
        right: -12px;
        width: 72px;
        height: 69px;
    }
}

@media (max-width: 307px) {
    .approach__wrap:before {
        bottom: 27%;
        left: -8px;
    }
    .approach__wrap:after {
        bottom: 30%;
        right: -12px;
    }
}
/*============ section-approach end ============*/

/*============ section-mission start ============*/
.section-mission {
    padding-top: 128px;
    padding-bottom: 128px;
}
.mission__title {
    text-align: center;
    margin-bottom: 16px;
}
.mission__text {
    max-width: 588px;
    text-align: center;
    margin: auto;
    margin-bottom: 64px;
}
.mission__list {
    display: grid;
    grid-template-columns: 57.5% 40.5%;
    grid-template-rows: auto auto;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.mission__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #F8F8F8;
    border-radius: 16px;
    padding: 24px;
    padding-top: 119px;
}
.mission__item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
.mission__item:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}
.mission__item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}
.mission__item:nth-child(1) {
    background: #faf9ff url("../img/innovation_bg-desktop.jpg") 50% top / contain no-repeat;
}
.mission__item:nth-child(2) {
    background: #faf9ff url("../img/expertise_bg-desktop.jpg") 50% top / contain no-repeat;
}
.mission__item:nth-child(3) {
    background: #faf9ff url("../img/reliability_bg-deskop.jpg") 50% top / contain no-repeat;
}
.mission__item h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 120%;
    color: #000;
    margin-bottom: 4px;
}

@media (max-width: 1024px) {
    .section-mission {
        padding-top: 112px;
        padding-bottom: 112px;
    }
    .mission__text {
        margin-bottom: 56px;
    }
    .mission__list {
        grid-template-columns: 48.2% 48.2%;
        grid-template-rows: 250px 200px;
    }
    .mission__item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    .mission__item:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    .mission__item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    .mission__item:nth-child(1) {
        background: #faf9ff url("../img/innovation_bg-tablet.jpg") top right / contain no-repeat;
    }
    .mission__item:nth-child(2) {
        background: #faf9ff url("../img/expertise_bg-tablet.jpg") top right / contain no-repeat;
    }
    .mission__item:nth-child(3) {
        background: #faf9ff url("../img/reliability_bg-tablet.jpg") top right / contain no-repeat;
    }
    .mission__item {
        padding-top: 125px;
    }
    .mission__item h3 {
        font-size: 22px;
    }
    .mission__item p {
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .section-mission {
        padding-top: 96px;
        padding-bottom: 96px;
    }
    .mission__text {
        margin-bottom: 48px;
    }
    .mission__list {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 32px;
    }
    .mission__item:nth-child(1),
    .mission__item:nth-child(2),
    .mission__item:nth-child(3) {
        min-height: 250px;
        grid-column: auto;
        grid-row: auto;
    }
    .mission__item:nth-child(1) {
        background: #faf9ff url("../img/innovation_bg-desktop.jpg") 50% top / contain no-repeat;
    }
    .mission__item:nth-child(2) {
        background: #faf9ff url("../img/expertise_bg-desktop.jpg") 50% top / contain no-repeat;
    }
    .mission__item:nth-child(3) {
        background: #faf9ff url("../img/reliability_bg-deskop.jpg") 50% top / contain no-repeat;
    }
    .mission__item {
        padding-top: 24px;
    }
    .mission__item h3 {
        font-size: 20px;
    }
}

@media (max-width: 440px) {
    .mission__item:nth-child(1),
    .mission__item:nth-child(2),
    .mission__item:nth-child(3) {
        min-height: 400px;
    }
    .mission__item:nth-child(1) {
        background: #faf9ff url("../img/innovation_bg-mobile.jpg") top left / cover no-repeat;
    }
    .mission__item:nth-child(2) {
        background: #faf9ff url("../img/expertise_bg-mobile.jpg") 50% top / cover no-repeat;
    }
    .mission__item:nth-child(3) {
        background: #faf9ff url("../img/reliability_bg-mobile.jpg") 50% top / cover no-repeat;
    }
}
/*============ section-mission end ============*/

/*============ section-contact start ============*/
.section-contact {
    border-top: 1px solid #F2F2F2;
    padding-top: 128px;
    padding-bottom: 48px;
}
.contact__wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 48px 64px;
    margin-bottom: 64px;
}
.contact__text-block {
    width: calc(50% - 32px);
}
.contact__form-block {
    width: calc(50% - 32px);
}
.contact__title {
    max-width: 486px;
    margin-bottom: 16px;
}
.contact__text {
    color: #000;
    margin-bottom: 8px;
}
.contact__email {
    color: var(--Text-brand);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
    transition: all 300ms ease-out;
}
.contact__email:hover {
    color: #3A1573;
}
.contact__image-block {
    min-height: 500px;
    border-radius: 16px;
    background: #faf9ff url("../img/map-desktop@2x.jpg") 50% / cover no-repeat;
    position: relative;
}
.contact__image-block a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.contact__form {}
.contact__form-group {
    display: flex;
    gap: 16px;
}
.contact__form-group .contact__form-label {
    width: calc(50% - 8px);
}
.contact__form-label {
    display: block;
    position: relative;
    margin-bottom: 16px;
}
.contact__form-control {
    display: block;
    width: 100%;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    color: #000;
    outline: none;
    padding: 17.5px;
    /*margin-bottom: 16px;*/
    transition: all 300ms ease-out;
}
.contact__form-control::placeholder {
    color: #656565;
}
textarea.contact__form-control {
    min-height: 130px;
    resize: none;
}
.contact__form-control:hover {
    border: 1px solid #3A1573;
}
.contact__form-control:hover::placeholder {
    color: #3A1573;
}
.contact__form-control:focus {
    background: #FAF8FF;
    border: 1px solid var(--Text-brand);
}
.contact__form-control:focus::placeholder {
    color: var(--Text-brand);
}
.contact__form-control.error {
    border: 1px solid #E33434;
}
.contact__form-control.error::placeholder {
    color: #E33434;
}
label.error {
    color: #E33434;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    /*position: absolute;*/
    /*bottom: -20px;*/
}
#file {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 55.4px;
    opacity: 0;
    cursor: pointer;
}
.custom-file-placeholder {
    display: block;
    width: 100%;
    height: 55.4px;
    color: #656565;
    line-height: 110%;
    border: 1px solid #E6E6E6;
    border-radius: 8px;
    padding: 17.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    cursor: pointer;
    transition: all 300ms ease-out;
}

.contact__form-label.file:hover .custom-file-placeholder {
    color: #3A1573;
    border: 1px solid #3A1573;

}
.custom-file-placeholder.error,
.contact__form-label.file:hover .custom-file-placeholder.error {
    color: #E33434;
    border: 1px solid #E33434;
}
.contact__form-btn {
    min-width: 148px;
    margin: auto;
}

@media (max-width: 1024px) {
    .section-contact {
        padding-top: 112px;
        padding-bottom: 40px;
    }
    .contact__wrap {
        flex-direction: column;
        margin-bottom: 56px;
    }
    .contact__text-block,
    .contact__form-block {
        width: 100%;
    }
    .contact__image-block {
        min-height: 350px;
        background: #faf9ff url("../img/map-tablet@2x.jpg") 50% / cover no-repeat;
    }
}

@media (max-width: 640px) {
    .section-contact {
        padding-top: 96px;
        padding-bottom: 32px;
    }
    .contact__wrap {
        gap: 32px;
        margin-bottom: 48px;
    }
    .contact__form-group {
        display: block;
    }
    .contact__form-group .contact__form-label {
        width: 100%;
    }
    .contact__image-block {
        min-height: 240px;
        background: #faf9ff url("../img/map-mobile@2x.jpg") 50% / cover no-repeat;
    }
}
/*============ section-contact end ============*/

/*============ modal start ============*/
.modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
.modal__window {
    background-color: #ffffff;
    margin: 32px 16px;
    padding: 48px;
    width: 500px;
    border-radius: 16px;
    animation-name: animatetop;
    animation-duration: 0.4s
}
@media (max-width: 640px) {
    .modal__window {
        padding: 48px 32px;
    }
}
@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}
.modal__text {
    font-size: 20px;
    font-weight: 500;
    color: #3A1573;
    text-align: center;
    margin-bottom: 16px;
}
.modal__btn {
    min-width: 100px;
    margin-left: auto;
    margin-right: auto;
}
/*============ modal end ============*/

/*============ section-404 start ============*/
.section-404 {
    display: flex;
    align-items: center;
    flex-grow: 1;
    background: url("../img/error_page_bg-desktop.jpg") left top / auto no-repeat;
    border-radius: 24px;
    padding-top: 128px;
    padding-bottom: 128px;
    margin-left: 32px;
    margin-right: 32px;
    margin-top: 70px;
}
.section-404 h1 {
    text-align: center;
    margin-bottom: 16px;
}
.section-404 p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 32px;
}
.section-404 .btn {
    margin: auto;
}

@media (max-width: 1024px) {
    .section-404 {
        background: url("../img/error_page_bg-tablet.jpg") top / cover no-repeat;
        padding-top: 112px;
        padding-bottom: 112px;
        margin-left: 32px;
        margin-right: 32px;
    }
}

@media (max-width: 640px) {
    .section-404 {
        background: url("../img/error_page_bg-mobile.jpg") top / cover no-repeat;
        padding-top: 96px;
        padding-bottom: 96px;
        margin-left: 16px;
        margin-right: 16px;
    }
    .section-404 p {
        font-size: 16px;
    }
}
/*============ section-404 end ============*/

/*============ footer start ============*/
.footer {
    font-size: 14px;
    line-height: 150%;
    border-top: 1px solid #F2F2F2;
    padding-top: 48px;
    padding-bottom: 48px;
}
.footer__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.footer__links {
    display: flex;
    justify-content: center;
    align-items: center;
    /*flex-wrap: wrap;*/
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__links a {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    color: #802EFF;
    text-decoration: none;
    transition: all 300ms ease-out;
}
.footer__links a:hover {
    color: #3A1573;
}
.footer__links .divider {
    width: 1px;
    height: 16px;
    background: #EBEBEB;
}
.footer__socials {
    display: flex;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__socials svg path {
    transition: all 300ms ease-out;
}
.footer__socials a:hover svg path {
    fill: #3A1573;
}

@media (min-width: 1025px) {
    .footer {
        border: none;
    }
}

@media (max-width: 1024px) {
    .footer {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .footer__wrap {
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer {
        text-align: center;
        padding-top: 32px;
        padding-bottom: 32px;
    }
}
/*============ footer end ============*/


