@keyframes waveSwing {
  0%   { transform: translate(0, 0) scale(1)}
  25%  { transform: translate(-5%, 5%) scale(1.1)}
  50%  { transform: translate(-10%, 0) scale(1.05)}
  75%  { transform: translate(-5%, -5%) scale(1.1)}
  100% { transform: translate(0, 0) scale(1)}
}

@keyframes dropShadow {
  0%   {filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.0))}
  25%  {filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2))}
  50%  {filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.2))}
  75%  {filter: drop-shadow(0px 0px 4px rgba(0, 0, 0, 0.2))}
  100% {filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.0))}
}

:root {
    --white: #fff;
    --black: #141414;
    --font-c1: #32325d;
    --accent-color: #FF6B00;
    --h1-title: 64px;
    --h2-title: 50px;
    --h1-text: 24px;
    --h2-text: 24px;
    --h3-text: 20px;
    --case-title: 40px;
    --case-text: 22px;
}

@media (max-width: 1440px){
    :root{
        --h1-title: 60px;
        --h1-text: 22px;
        --h2-text: 22px;
        --h2-title: 42px;
        --h3-text: 18px;
    }
}

@media (max-width: 1230px){
    :root{
        --h1-title: 55px;
        --h2-title: 38px;
        --h2-text: 18px;
        --h3-text: 16px;
        --case-title: 32px;
        --case-text: 18px;
    }
}

@media (max-width: 964px){
    :root{
        --h1-text: 20px;
        --h1-title: 50px;
        --h2-title: 34px;
    }
}

@media (max-width: 730px){
    :root{
        --h1-title: 36px;
        --h2-title: 28px;
        --h2-text: 16px;
        --case-title: 28px;
    }
}

@media (max-width: 450px){
    :root{
        --h1-title: 30px;
        --h1-text: 18px;
    }
}

body{
    /* overflow: hidden; */
    transition: background .3s linear;
}

.title-h1{ 
    font-size: var(--h1-title);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
}
.title-h2{ 
    font-size: var(--h2-title);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}
.title-case{
    font-size: var(--case-title);
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
}
.text-case{
    font-size: var(--case-text);
    line-height: 1;
    font-weight: 500;
}
.text-h1{ 
    font-size: var(--h1-text);
    font-weight: 400;
    line-height: 1;
    color: var(--white);
}
.text-h2{ 
    font-size: var(--h2-text);
    font-weight: 400;
    line-height: 1.2;
    color: var(--theme-dark-text);
}
.text-h3{ 
    font-size: var(--h3-text);
    font-weight: 500;
    line-height: 1.2;
    color: var(--theme-dark-text);
}
.suptitle{
    font-size: 30px;
    color: var(--btn-color-1);
    font-weight: 600;
    margin-bottom: 20px;
}

.section{
    padding-top: 100px;
}
.section-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.section-bg::before,
.section-bg::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.section-bg::after{
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
}

.running-line {
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 60px;
    z-index: 5;
}

.running-line__track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform;
    height: 100%;
}

.running-line__item{
    height: 100%;
    margin-left: 70px;
    display: flex;
    align-items: center;
}

.running-line__item img {
    display: block;
    pointer-events: none;
    max-height: 100%;
}
@media (max-width: 1440px){
    .suptitle{
        font-size: 28px;
    }
}
@media (max-width: 1230px){
    .section{
        padding-top: 60px;
    }
}

@media (max-width: 450px){
    .suptitle{
        font-size: 24px;
    }
}


/* БЛОК ИНТРО */

.intro__subtitle{
    font-weight: 600;
    line-height: 1.1;
    margin-top: 20px;
}

.section-intro-platform {
    background: url(../images/platform_bg.png) center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 70px;
}

.platform-intro__content {
    margin-top: 140px;
}

@media (max-width: 964px){
    .intro__subtitle{
        line-height: 1.3;
    }
}   

@media (max-width: 450px){
    .intro__subtitle br{
        display: none;
    }
    .intro__subtitle{
        max-width: 380px;
    }
    .platform-intro__content {
        margin-top: 290px;
    }
}

/* БЛОК СО СТРЕЛКАМИ */

.platform-arrows-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 78px;
}

.platform-arrow-content{
    max-width: 210px;
}

.platform-arrow-content.arrow-item-3{
    max-width: 252px;
}

.platform-arrow {
    padding: 30px;
    height: 154px;
    max-width: 345px;
    width: 100%;
    border: 2px solid #FFFFFF1A;
    border-radius: 40px;
    backdrop-filter: blur(5px);
    background-color: rgba(226, 226, 226, 0.2);
    opacity: 0;
    transform: translateX(-20%);
    transition: .4s ease-in-out;
    overflow: hidden;
}

.platform-arrow.show{
    opacity: 1;
    transform: translateX(0);
}

.platform-arrow-title {
    color: #fff;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
}

.platform-arrow-subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.platform-arrow-subtitle span{
    text-wrap: nowrap;
}

.platform-intro-buttons {
    display: flex;
    margin-top: 40px;
    gap: 20px;
}

/* arrow anim */

.arrow-parent{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
    font-size: 0;
    transition: .7s .3s ease-in-out;
}

.arrow-parent svg{
    width: 100%;
}

.arrow-item{
    transition: .7s .3s ease-in-out;
}

.arrow-item.arrow-1{
    opacity: 40%;
}

.arrow-item.arrow-2{
    opacity: 20%;
}

.arrow-item.arrow-3{
    transform: translate(30%, 30%) scale(0.4);
    opacity: 0;
}

.platform-arrow.show .arrow-parent{
    transform: translate(30px, -50%);
}

.platform-arrow.show .arrow-item.arrow-1{
    transform: translate(30%, 30%) scale(0.4);
    opacity: 0;
}

.platform-arrow.show .arrow-item.arrow-2{
    opacity: 40%;
}

.platform-arrow.show .arrow-item.arrow-3{
    opacity: 20%;
    transform: translate(0) scale(1);
}

@media (max-width: 1440px){
    .platform-arrow-title{
        font-size: 20px;
    }
    .platform-arrows-container{
        gap: 20px;
    }
    .platform-arrow{
        padding: 20px;
        height: 140px;
        border-radius: 30px;
    }
    .platform-arrow-3 .platform-arrow-subtitle{
        max-width: 190px;
    }
}

@media (max-width: 1230px){
    .platform-arrows-container{
        grid-template-columns: repeat(2, 1fr);
        margin-top: 120px;
    }
    .platform-arrow{
        padding: 35px 32px;
        border-radius: 40px;
        max-width: 100%;
    }
    .platform-arrow.show .arrow-parent {
        transform: translate(20px, -50%);
    }
    .platform-arrow-3 .platform-arrow-subtitle{
        max-width: 100%;
    }
    .platform-arrow-content {
        max-width: 330px;
    }
    .platform-arrow-content.arrow-item-3 {
        max-width: 360px;
    }
}

@media (max-width: 964px){
    .platform-arrow-title{
        font-size: 18px;
        margin-bottom: 12px;
    }
    .platform-arrow-subtitle{
        font-size: 14px;
    }
    .platform-arrow{
        padding: 30px 32px;
    }
    .section-intro-platform{
        padding-bottom: 60px;
    }
    .platform-arrow.show .arrow-parent {
        transform: translate(30px, -50%);
    }
    .platform-arrow-content.arrow-item-3,
    .platform-arrow-content {
        max-width: 220px;
    }
    .platform-arrow-content.arrow-item-4{
        max-width: 180px;
    }
    .platform-arrows-container{
        margin-top: 70px;
    }
}   

@media (max-width: 640px){
    .platform-arrows-container{
        grid-template-columns: 1fr;
    }
    .platform-arrow-content.arrow-item-3,
    .platform-arrow-content.arrow-item-4,
    .platform-arrow-content{
        max-width: 390px;
    }
    .platform-intro-buttons{
        flex-direction: column;
    }
}

@media (max-width: 450px){
    .platform-arrow{
        padding: 35px 32px 30px;
    }
    .section-intro-platform{
        background: url(../images/platform_bg-mob.png) center #8CA0EC;
        background-repeat: no-repeat;
        background-size: cover;
        min-height: 1310px;
        padding-top: 90px;
    }
    .platform-arrow-content.arrow-item-3,
    .platform-arrow-content.arrow-item-4,
    .platform-arrow-content{
        max-width: 240px;
    }
    .platform-arrows-container{
        margin-top: 30px;
    }
}

/* БЛОК СО СТАТИСТИКОЙ */

.statistics-section {
    position: relative;
}

.statistics-blocks {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.statistics-block {
    padding: 40px 30px 27px 40px;
    width: 33%;
    border-radius: 40px;
    background-color: #fff;
    z-index: 2;
}

.statistics-blocks__animation {
    width: 94px;
    height: 50px;
    min-width: 94px;
    min-height: 50px;
    border-radius: 25px;
    background-color: #E9E1F9;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.statistics-blocks__animation img{
    width: 110%;
    transition: .5s linear;
}

.statistics-block:hover .statistics-blocks__animation img {
    animation: waveSwing 5s linear infinite;
}

.statistics-block-1 .statistics-blocks__animation > img{
    animation-delay: 0.1s;
}
.statistics-block-2 .statistics-blocks__animation > img{
    animation-delay: 0.9s;
}
.statistics-block-3 .statistics-blocks__animation > img{
    animation-delay: 0.5s;
}


.statistics-blocks__title {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}

.statistics-blocks__subtitle {
    max-width: 350px;
}
.statistics-blocks__subtitle span{
    text-wrap: nowrap;
}

.platform-statistics__bg{
    height: 210%;
}

.platform-statistics__bg::before{
    box-shadow: 0px 320px 250px 70px #f8f9ff inset, 
                0px -200px 150px 0px #f8f9ff inset
    
}

.platform-statistics__bg::after{
    width: 65%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #f8f9ff;
    box-shadow: 0px 0px 130px 150px #f8f9ff;
}

@media (max-width: 1440px){
    .statistics-block{
        min-height: 280px;
        padding: 30px 35px;
    }
}

@media (max-width: 1230px){
    .statistics-blocks{
        gap: 10px;
    }
    .statistics-block{
        padding: 20px;
        min-height: 245px;
    }
}

@media (max-width: 964px){
    .statistics-blocks{
        flex-direction: column;
    }
    .statistics-block{
        min-height: 150px;
        width: 100%;
        padding: 20px 30px 20px 20px;
        display: flex;
        align-items: center;
    }
    .statistics-blocks__animation{
        margin: 0 0 0 -20px;
        transform: rotate(90deg);
    }
    .statistics-blocks__subtitle{
        max-width: 100%;
    }
}   

@media (max-width: 450px){
   .platform-statistics__bg {
        height: 130%;
        top: 150px;
        left: 80px;
    }
    .platform-statistics__bg::after {
        width: 15%;
    }
}

/* БЛОК CORE */

.core {
    padding: 70px;
    margin-bottom: 30px;
    margin-top: 100px;
    box-shadow: inset 0 0 0 2px #EFA1FB;
    border-radius: 50px;
    background: url(../images/core-bg.png) #ff78db center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 524px;
}

.core__logo{
    width: 130px;
}

.core__logo > img{
    width: 100%;
}

.core__title {
    margin-top: 40px;
    color: #fff;
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    max-width: 890px;
}
.core__title span{
    text-wrap: nowrap;
}
.core__description {
    margin: 20px 0 40px 0;
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    font-weight: 400;
    max-width: 890px;
}

.core__btn {
    display: block;
    background-color: #fff;
    color: #F93790;
    font-size: 20px;
    font-weight: 600;
    padding: 13px 40px;
    max-width: 220px;
    border-radius: 50px;
}

@media (max-width: 1440px){
    .core{
        padding: 70px 40px;
    }
    .core__title{
        font-size: 46px;
        max-width: 670px;
        line-height: 1.2;
    }
    .core__description{
        font-size: 22px;
        max-width: 800px;
    }
}

@media (max-width: 1230px){
    .core{
        margin-top: 60px;
        border-radius: 40px;
        min-height: 470px;
    }
    .core__title{
        font-size: 38px;
    }
    .core__description{
        font-size: 18px;
        max-width: 600px;
        line-height: 1.2;
    }
}

@media (max-width: 964px){
    .core{
        padding: 55px 20px;
        border-radius: 35px;
        min-height: 420px;
        background-position-x: -750px;
        background-size: 230%;
    }
    .core__logo{
        width: 100px;
    }
    .core__title{
        font-size: 34px;
        max-width: 600px;
    }
    .core__description{
        font-size: 16px;
        max-width: 590px;
    }
}

@media (max-width: 730px){
    .core{
        background-position-x: 70%;
        background-size: cover;
    }
}

@media (max-width: 450px){
    .core{
        padding: 30px 16px;
        margin-bottom: 60px;
    }
    .core__title{
        font-size: 28px;
    }
    .core__description{
        font-size: 16px;
    }
    .core__btn{
        max-width: 100%;
        text-align: center;
    }
    
}

/* БЛОК РЕШЕНИЙ */

.section-desicions {
    position: relative;
    z-index: 1;
}

.desicions_text {
    margin-top: 25px;
    max-width: 600px;
}

.decisions-wrapper{
    position: relative;
}

.decisions-dsp-blocks {
    display: flex;
    margin: 60px 0;
}

.decisions-dsp-block {
    display: flex;
    max-width: 660px;
    align-items: center;
}

.decisions-dsp-block__description {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.decisions-dsp-block__title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
}

.decisions-dsp-block__image {
    margin-right: 20px;
    height: 120px;
}

.decisions-dsp-block__image img {
    height: 100%;
}

.decisions-dsp-block__subtitle {
    font-size: 24px;
    color: #787A81;
    font-weight: 500;
}

.decisions-dsp-block__subtitle span{
    text-wrap: nowrap;
}

.platfotm-decisions__title {
    font-size: 30px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 20px;
}

.platform__more-btn {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.platform__more-btn::after{
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url('data:image/svg+xml;utf8,<svg width="22" height="19" viewBox="0 0 22 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.8023 0.5L21.8024 9.5L12.8023 18.5H8.48235L15.9223 11.06H0.652344V7.94H15.9223L8.48235 0.5H12.8023Z" fill="rgb(97, 3, 172)"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.platform__more-btn-text {
    display: block;
    padding-bottom: 1px;
    border-bottom: 1px solid #6103AC;
    color: #6103AC;
    font-size: 20px;
    font-weight: 600;
    margin-right: 5px;
}

.platfotm-decisions__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(36, 1fr);
    gap: 20px;
    height: 1425px;
}

.platform-decisions__item{
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 0px 2px var(--white) inset;
    background-color: rgba(255,255,255, 0.4);
    padding: 40px;
    border-radius: 50px;
    height: 100%;
    justify-content: start;
    overflow: hidden;
    z-index: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .6s ease, transform .6s ease;
}

.platform-decisions__item.show {
  opacity: 1;
  transform: translateY(0);
}

.platform-decisions__item img{
    z-index: -1;
}

.platform-decisions__item-1 { grid-area: 1 / 1 / 18 / 3; }
.platform-decisions__item-2 { grid-area: 1 / 3 / 11 / 5; }
.platform-decisions__item-3 { grid-area: 11 / 3 / 18 / 5; }
.platform-decisions__item-4 { grid-area: 1 / 5 / 9 / 7; }
.platform-decisions__item-5 { grid-area: 9 / 5 / 18 / 7; }
.platform-decisions__item-6 { grid-area: 18 / 1 / 27 / 3; }
.platform-decisions__item-7 { grid-area: 18 / 3 / 27 / 5; }
.platform-decisions__item-8 { grid-area: 18 / 5 / 27 / 7; }
.platform-decisions__item-9 { grid-area: 27 / 1 / 36 / 3; }
.platform-decisions__item-10 { grid-area: 27 / 3 / 36 / 5; }
.platform-decisions__item-11 { grid-area: 27 / 5 / 36 / 7; }

.platform-decisions-item-1__text {
    color: #fff;
    font-size: 20px;
    margin-bottom: 40px;
}

.platform-decisions__item-1 {
    background-color: #E9E1F9;
    padding-top: 375px;
}

.platform-decisions__item-1-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.platform-decisions__item-2-img {
    position: absolute;
    bottom: -245px;
    right: -180px;
    width: 135%;
    transform: rotate(60deg);
    z-index: -1;
}

.platform-decisions__item-6-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 95%;
    z-index: -1;
}

.platform-decisions__item-8 {
    background-color: #E9E1F9;
}

.platform-decisions__item-8-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    z-index: -1;
}

.platform-decisions__item-10 {
    background-color: #E9E1F9;
}

.platform-decisions__item-10-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    z-index: -1;
}

.paltform-decisions-button img {
    position: relative;
    height: 22px;
    width: 22px;
    margin-left: 10px;
}

.paltform-decisions-button {
    display: flex;
    align-items: center;
    background-color: #fff;
    width: 300px;
    height: 54px;
    color:#141414;
    font-size: 26px;
    font-weight: 600;
}

.platform-decisions__bg::before{
    box-shadow: 0px 0px 100px 100px #F8F9FF inset
}

.platform-decisions__bg-item-1 {
    width: 800px;
    right: -50px;
    top: -410px;
    z-index: -2;
}

.platform-decisions__bg-item-2 {
    width: 600px;
    height: 300px;
    right: 0px;
    top: -400px;
    z-index: -3;
}

.platform-decisions__bg-item-3 {
    width: 1300px;
    right: 200px;
    top: 900px;
    z-index: -2;
}

@media (max-width: 1440px){
    .desicions_text{
        max-width: 100%;
        margin-top: 20px;
    }
    .decisions-dsp-blocks{
        margin: 40px 0 0;
        gap: 100px;
    }
    .decisions-dsp-block{
        max-width: 500px;
    }
    .decisions-dsp-block__title{
        font-size: 28px;
    }
    .decisions-dsp-block__image{
        height: 110px;
    }
    .decisions-dsp-block__subtitle{
        font-size: 22px;
    }
    .platfotm-decisions__title{
        font-size: 26px;
    }
    .platform-decisions__item{
        padding: 35px;
    }
    .platform-decisions__item-1{
        justify-content: flex-end;
    }
    .platfotm-decisions__list{
        height: 1210px;
    }
    .platform-decisions__item-1-img{
        top: -80px;
    }
    .platform-decisions__item-2-img{
        width: 130%;    
        bottom: -185px;
    }
    .platform-decisions__item-1 { grid-area: 1 / 1 / 15 / 3 }
    .platform-decisions__item-2 { grid-area: 1 / 3 / 12 / 5 }
    .platform-decisions__item-3 { grid-area: 12 / 3 / 20 / 5 }
    .platform-decisions__item-4 { grid-area: 1 / 5 / 8 / 7 }
    .platform-decisions__item-5 { grid-area: 8 / 5 / 18 / 7 }
    .platform-decisions__item-6 { grid-area: 15 / 1 / 26 / 3 }
    .platform-decisions__item-7 { grid-area: 20 / 3 / 27 / 5 }
    .platform-decisions__item-8 { grid-area: 18 / 5 / 28 / 7 }
    .platform-decisions__item-9 { grid-area: 26 / 1 / 36 / 3 }
    .platform-decisions__item-11 { grid-area: 28 / 5 / 36 / 7 }
}

@media (max-width: 1230px){
    .decisions-dsp-block__title{
        font-size: 24px;
        margin-bottom: 18px;
    }
    .decisions-dsp-block__subtitle{
        font-size: 18px;
        max-width: 300px;
    }
    .decisions-dsp-block__image {
        height: 85px;
    }
    .decisions-dsp-blocks{
        margin-top: 30px;
        gap: 80px;
    }
    .platfotm-decisions__list{
        height: 1100px;
        gap: 10px;
    }
    .platform-decisions__item{
        padding: 35px 25px;
        border-radius: 40px;
    }
    .platfotm-decisions__title{
        font-size: 22px;
    }
    .platform-decisions__item-8-img{
        width: 100%;
        right: -110px;
    }
    .platform-decisions__item-1 { grid-area: 1 / 1 / 17 / 3 }
    .platform-decisions__item-2 { grid-area: 1 / 3 / 14 / 5 }
    .platform-decisions__item-3 { grid-area: 14 / 3 / 22 / 5 }
    .platform-decisions__item-6 { grid-area: 17 / 1 / 29 / 3 }
    .platform-decisions__item-7 { grid-area: 22 / 3 / 29 / 5 }
    .platform-decisions__item-9 { grid-area: 29 / 1 / 37 / 3 }
    .platform-decisions__item-10 { grid-area: 29 / 3 / 37 / 5 }
    .platform-decisions__item-11 { grid-area: 28 / 5 / 37 / 7 }

    .platform-decisions__item-1-img {
        top: -10px;
    }
    .platform-decisions__item-2-img {
        width: 180%;
        bottom: -195px;
        right: -260px;
    }
}

@media (max-width: 964px){
    .decisions-dsp-block__image{
        height: 60px;
    }
    .decisions-dsp-block__title{
        font-size: 20px;
        margin-bottom: 12px;
    }
    .decisions-dsp-block__subtitle{
        font-size: 16px;
    }
    .decisions-dsp-blocks{
        gap: 20px;
        justify-content: space-between;
    }
    .decisions-dsp-block{
        max-width: 350px;
    }
    .decisions-dsp-block-1 .decisions-dsp-block__subtitle{
        max-width: 220px;
    }
    .platfotm-decisions__list{
        height: 970px;
    }
    .platfotm-decisions__title{
        font-size: 18px;
        margin-bottom: 10px;
    }
    .platform-decisions__subtitle{
        font-size: 14px;
    }
    .platform__more-btn-text{
        font-size: 16px;
    }
    .platform-decisions__item{
        padding: 20px 18px 35px;
    }
    .platform-decisions__item-1 { grid-area: 1 / 1 / 18 / 3 }
    .platform-decisions__item-2 { grid-area: 1 / 3 / 13 / 5 }
    .platform-decisions__item-3 { grid-area: 13 / 3 / 21 / 5 }
    .platform-decisions__item-6 { grid-area: 18 / 1 / 29 / 3 }
    .platform-decisions__item-7 { grid-area: 21 / 3 / 28 / 5 }
    .platform-decisions__item-8 { grid-area: 18 / 5 / 29 / 7 }
    .platform-decisions__item-10 { grid-area: 28 / 3 / 37 / 5 }
    .platform-decisions__item-11 { grid-area: 29 / 5 / 37 / 7 }

    .platform-decisions__item-1-img{
        width: 110%;
    }
    .platform-decisions__item-2-img {
        bottom: -130px;
        right: -200px;
    }
    .platform-decisions__item-6-img{
        width: 150%;
        transform: rotate(15deg);
        right: -40px;
        bottom: -20px;
    }
    .platform-decisions__item-8-img {
        width: 120%;
        right: -80px;
    }
    .platform-decisions__item-10-img{
        width: 140%;
        right: -40px;
    }
}

@media (max-width: 700px){
    .platfotm-decisions__list{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(40, 1fr);
        height: 1340px;
    }
    .platform-decisions__item-2-img{
        bottom: -190px;
    }
    .platform-decisions__item-1 { grid-area: 1 / 1 / 14 / 2 }
    .platform-decisions__item-2 { grid-area: 1 / 2 / 11 / 3 }
    .platform-decisions__item-3 { grid-area: 11 / 2 / 17 / 3 }
    .platform-decisions__item-4 { grid-area: 35 / 2 / 30 / 3 }
    .platform-decisions__item-5 { grid-area: 35 / 2 / 42 / 3 }
    .platform-decisions__item-6 { grid-area: 14 / 1 / 22 / 2 }
    .platform-decisions__item-7 { grid-area: 17 / 2 / 23 / 3 }
    .platform-decisions__item-8 { grid-area: 27 / 1 / 36 / 2 }
    .platform-decisions__item-9 { grid-area: 22 / 1 / 27 / 2 }
    .platform-decisions__item-10 { grid-area: 23 / 2 / 30 / 3 }
    .platform-decisions__item-11 { grid-area: 36 / 1 / 42 / 2 }
}

@media (max-width: 620px){
    .decisions-dsp-blocks{
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 450px){
   .platfotm-decisions__list{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(40, 1fr);
        height: 1340px;
   }
   .platform-decisions__item{
        padding: 15px 12px 30px;
        border-radius: 30px;
        box-shadow: 0px 0px 0px 1px var(--white) inset;
   }
   .platfotm-decisions__title{
        font-size: 16px;
   }
   .platform-decisions__subtitle{
        font-size: 12px;
   }
   .platform-decisions__item-2-img{
        width: 200%;
        bottom: -140px;
        right: -170px;
   }
    .platform-decisions__item-8-img {
        width: 150%;
    }
}

@media (max-width: 376px){ 
    .platfotm-decisions__list{
        height: 1500px;
    }
}

/* БЛОК КОПАЙЛОТ */

.copilot {
    margin-top: 70px;
    background: url(../images/copilot-bg.png) #005AFF center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 4;
    padding-top: 71px;
    padding-bottom: 104px;
}

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

.copilot__first_block {
    max-width: 577px;
    margin-right: 153px;
}

.copilot__first_block > img{
    width: 150px; 
    margin-bottom: 40px;
}

.copilot__title {
    color: #fff;
    font-weight: 600;
    font-size: 50px;
    margin-bottom: 20px;
}

.copilot__subtitle {
    color: #fff;
    font-weight: 500;
    font-size: 24px;
    margin-bottom: 40px;
}

.copilot__item{
    margin-bottom: 20px;
    border-radius: 30px;
    background-color: rgba(255,255,255, 0.1);
    backdrop-filter: blur(60px);
    box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.1) inset;
    padding: 35px 70px 35px 90px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30%);
    transition: .2s linear;
}

.copilot__item.show{
    opacity: 1;
    transform: translateY(0);
}

.copilot__item-img{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
    max-width: 75px;
}

.copilot__item-2-img{max-width: 85px;}

.copilot__item-text {
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
}

.btn_copilot {
    max-width: 222px;
    background-color: #fff;
    color: #005AFF;
}

.btn_copilot:hover {
    background-color: #005AFF;
    color: #fff;
    border: 1px solid #fff;
}

@media (max-width: 1440px){
    .copilot__title{
        font-size: 46px;
    }
    .copilot__subtitle{
        font-size: 22px;
        max-width: 500px;
    }
}

@media (max-width: 1230px){
    .copilot{
        margin-top: 60px;
        padding: 50px 0;
        background-position: 0 100%;
    }
    .copilot__general{
        justify-content: space-between;
    }
    .copilot__item-text{
        font-size: 18px;
    }
    .copilot__item{
        padding: 30px 30px 30px 90px;
        margin: 0;
        min-height: 140px;
        display: flex;
        align-items: center;
    }
    .copilot__first_block{
        max-width: 400px;
        margin: 0;
    }
    .copilot__first_block > img{
        width: 126px;
    }
    .copilot__title{
        font-size: 38px;
    }
    .copilot__subtitle{
        font-size: 18px;
    }
    .copilot__second_block{
        max-width: 440px;
        width: 100%;
    }
    .analytics__list{
        display: grid;
        gap: 20px;
    }
}

@media (max-width: 964px){
    .copilot{
        padding: 50px 0 95px;
    }
    .copilot__title{
        font-size: 34px;
    }
    .copilot__subtitle{
        font-size: 16px;
    }
    .copilot__second_block{
        max-width: 350px;
    }
    .copilot__item{
        min-height: 125px;
        padding-right: 20px;
    }
    .copilot__item-text{
        font-size: 16px;
    }
    .copilot__subtitle{
        max-width: 330px;
    }
}

@media (max-width: 730px){
    .copilot__general{
        flex-direction: column;
        gap: 40px;
        align-items: baseline;
    }
    .copilot__second_block {
        max-width: 450px;
        align-self: center;
    }
}

@media (max-width: 450px){
   .copilot{
        padding: 45px 0;
   }
   .copilot__title{
        font-size: 28px;
   }
}

/* БЛОК СОТРУДНИЧЕСТВО */

.cooperation{
    position: relative;
}

.cooperation__blocks {
    margin: 60px 0;
    display: flex;
}

.cooperation__btn{
    max-width: 242px;
}

.cooperation__block {
    display: flex;
    margin-right: 110px;
}

.cooperation-block__description {
    margin-left: 20px;
    max-width: 340px;
    margin-top: 10px;
}

.cooperation_title{
    margin-bottom: 20px;
}

.cooperation-block__image img {
    height: 121px;
}

.cooperation__title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cooperation__subtitle {
    font-size: 20px;
    color: #000;
    font-weight: 500;
}

.platform-cooperation__bg{
    height: 150%;
}

.platform-cooperation__bg::before{
    box-shadow: 0px 100px 250px 70px #f8f9ff inset, 
                0px -200px 150px 0px #f8f9ff inset
}

.platform-cooperation__bg::after{
    width: 65%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #f8f9ff;
    box-shadow: 0px 0px 130px 150px #f8f9ff;
}

@media (max-width: 1440px){
    .cooperation__subtitle{
        font-size: 18px;
    }
}

@media (max-width: 1230px){
    .cooperation_text{
        font-size: 20px;
        max-width: 710px;
    }
    .cooperation__title{
        font-size: 36px;
    }
    .cooperation__subtitle{
        font-size: 16px;
    }
    .cooperation-block__image img{
        height: 118px;
    }
    .cooperation__blocks{
        gap: 20px;
        margin: 50px 0;
    }
    .cooperation__block{
        margin: 0;
        width: 50%;
        gap: 20px;
        align-items: center;
    }
    .cooperation-block__description{
        margin: 0;
    }
}

@media (max-width: 964px){
    .cooperation_text{
        font-size: 16px;
        max-width: 440px;
    }
    .cooperation-block__image img{
        height: 88px;
    }
    .cooperation__title{
        font-size: 32px;
    }
    .cooperation__subtitle{
        font-size: 16px;
        line-height: 1.2;
    }
    .cooperation__blocks{
        justify-content: space-between;
    }
    .cooperation__block-2{
        max-width: 300px;
    }
    .platform-cooperation__bg::after{
        width: 50%;
    }
}   

@media (max-width: 680px){
   .cooperation__blocks{
        flex-direction: column;
   }
   .cooperation__block{
        width: 100%;
        max-width: 100%;
   }
}

@media (max-width: 450px){
   .cooperation__title{
        font-size: 28px;
   }
   .cooperation__block-2 {
        max-width: 300px;
    }
    .cooperation__btn{
        max-width: 100%;
        width: 100%;
    }
    .platform-cooperation__bg::after{
        width: 40%;
    }
    .platform-cooperation__bg::before{
        box-shadow: 0px 380px 80px 0px #f8f9ff inset, 
                0px -200px 150px 0px #f8f9ff inset;
    }
}

/* кейсы */

.casebook{
    overflow: hidden;
    position: relative;
    z-index: 4;
}
.casebook .title-h2{
    margin-bottom: 40px;
}
.swiper.casebook__wrapper{
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
    padding-left: 240px;
}
.casebook__logo{
    position: absolute;
    top: 50px;
    left: 60px;
}
.casebook__logo img {
    width: 100%;
    height: 45px;
}
.casebook__case{
    position: relative;
    color: var(--white);
    padding: 52px 60px 60px;
    min-height: 400px;
    border-radius: 50px;
    background-size: cover;     
    display: flex;
    align-items: end;
    justify-content: space-between;
    overflow: hidden;
}

.casebook__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.casebook__bg img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.casebook__case.swiper-slide{
    display: flex;
    width: 950px;
}
.casebook__box{
    position: relative;
    width: 100%;
}
.casebook__text-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.casebook__tag{
    display: inline-block;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 8px 20px;
    background-color: rgba(255,255,255,0.2);
    line-height: 1;
    border-radius: 50px;
}
.casebook__title{
    margin-bottom: 20px;
}
.casebook__link{
    position: relative;
    left: -30px;
    font-weight: 500;
    line-height: 1;
    border-bottom: 2px solid var(--white);
    font-size: var(--button-size);
}
.casebook__link::before{
    content: "";
    display: inline-block;
    width: 22px;
    height: 19px;
    background-image: url('data:image/svg+xml;utf8,<svg width="22" height="19" viewBox="0 0 22 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.8023 0.5L21.8024 9.5L12.8023 18.5H8.48235L15.9223 11.06H0.652344V7.94H15.9223L8.48235 0.5H12.8023Z" fill="white"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translate(0, -50%);
    transition: .2s linear;
}
.casebook__link:hover::before{
    transform: translate(20%, -50%);
}

.casebook__slider-btns{
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 70px;
    height: 40px;
    margin-top: 10px;
}

.casebook__slider-btn.swiper-button-prev,
.casebook__slider-btn.swiper-button-next{
    width: 50%;
    margin: 0;
    top: 0;
    opacity: 0.6;
}

.casebook__slider-btn.swiper-button-prev:hover,
.casebook__slider-btn.swiper-button-next:hover{
    opacity: 1;
}

.casebook__slider-btn.swiper-button-next:after, 
.casebook__slider-btn.swiper-button-prev:after{
    font-size: 23px;
    color: var(--black);
    font-weight: 700;
}

@media (max-width: 1440px){
    .swiper.casebook__wrapper{
        width: 1680px;
    }
}

@media (max-width: 1230px){
    .swiper.casebook__wrapper{
        width: 1425px;
    }
    .casebook__case{
        padding: 48px 35px;
        border-radius: 40px;
    }
    .casebook__title{
        line-height: 1.2;
    }
    .casebook__tag{
        margin-bottom: 30px;
    }
    .casebook__logo{
        left: 35px;
    }
}

@media (max-width: 964px){
    .swiper.casebook__wrapper{
        width: 1200px;
    }
    .casebook__case{
        min-height: 346px;
        padding: 25px 25px 40px
    }
    .casebook__logo{
        top: 25px;
        left: 25px;
    }
}

@media (max-width: 730px){ 
   .swiper.casebook__wrapper {
        width: 100%;
        padding-left: 0;
        left: 0;
        transform: none;
        margin-bottom: 0;
    }
    .casebook__case{
        padding: 20px 20px 30px;
        border-radius: 30px;
    }
    .casebook__text-box{
        flex-direction: column;
        align-items: baseline;
        gap: 12px;
    }
    .casebook__link{
        left: 0;
        font-size: 18px;
    }
    .casebook__link::before{
        width: 18px;
        height: 18px;
        right: -25px;
    }
    .casebook__title{
        margin-bottom: 10px;
    }
    .casebook .title-h2{
        margin-bottom: 20px;
    }
    .casebook__slider-btns{
        display: flex;
    }
}

@media (max-width: 450px) {
    .casebook__bg{
        width: 170%;
    }
    .casebook__tag{
        margin-bottom: 20px;
        font-size: 18px;
    }
}

/* partners */

.partners{
    position: relative;
    background-color: #F8F9FF;
    z-index: 1;
}

.partners__line{
    filter: grayscale(1);
    opacity: 0.5;
}

.partners__line .running-line__item{
    margin-left: 100px;
}


@media (max-width: 1230px){
    .partners__line{
        min-height: 50px;
    }
    .partners__line .running-line__item{
        margin-left: 80px;
    }
}

@media (max-width: 964px){
    .partners__line{
        min-height: 40px;
    }
    .partners__line .running-line__item{
        margin-left: 70px;
    }
}

@media (max-width: 450px) {
    .partners__line{
        opacity: 0.2;
    }
}

/* academy */

.academy{
    position: relative;
}

.academy .container{
    overflow: hidden;
}

.academy__wrapper{
    display: flex;
    gap: 60px;
    position: relative;
    align-items: center;
}
.academy__list{
    max-width: 660px;
    width: 100%;
}
.academy__bg{
    overflow: hidden;
    height: 300%;
    transition: .2s linear;
}
.academy__bg.hide{
    opacity: 0.5;
}
.academy__bg::before{
    box-shadow: 0px 60px 100px -50px #F8F9FF inset,
                0px 210px 130px 0px #F8F9FF inset;
}
.academy__bg::after{
    box-shadow: 0px 0px 300px 230px #F8F9FF;
    left: unset;
    right: 10%;
    width: 30%;
    top: 20%;
    z-index: 6;
}
.academy__bg-item{
    position: relative;
}
.acadey-gradient{
    top: -120px;
    z-index: -1;
}
.academy__box{
    max-width: 660px;
    z-index: 1;
    display: flex;
    flex-direction: column;
}
.academy__event{
    width: 100%;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--white);
    height: 348px;
}

.academy__event-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.academy__event-bg img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: 0.7;
}

.academy__event-decor{
    position: absolute;
    transform: rotate(30deg);
    top: -280px;
    left: -40px;
}

.academy__event-box{
    position: relative;
    z-index: 1;
}

.academy__event-title{
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 1.2;
}

.academy__event-subtitle{
    font-size: 18px;
    max-width: 480px;
    line-height: 1.2;
}

.academy__event-title span,
.academy__event-subtitle span{
    text-wrap: nowrap;
}

.academy__event-box.box-1{
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, min-content) 1fr;
}

.academy__event-item{
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #E7EDFC;
    border-radius: 50px;
}

.academy__event-item span{
    color: #688FF4;
    font-size: 20px;
    font-weight: 400;
}

.academy__event-item:nth-child(n + 2){
    margin-left: -8px;
}

.academy__event-item img{
    width: 100%;
}

/* .academy__event-logo{
    width: 122px;
}

.academy__event-logo img{
    width: 100%;
} */

.academy__event-list{
    display: flex;
    margin-left: 10px;
}

.academy__event-date{
    text-wrap: nowrap;
    margin-left: auto;
    font-size: 40px;
    font-weight: 400;
}

.academy__title{
    margin-bottom: 20px;
}
.academy__text .br-r{
    display: none;
}
.academy__text{
    margin-bottom: 40px;
}
.academy__tag{
    max-width: 214px;
    margin-bottom: 20px;
}

.academy__decor-elem {
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: -10px;
    left: 1250px;
    transform: rotate(-10deg);
    z-index: 1;
}

.academy__decor-elem img{
    width: 100%;
    height: auto;
}

.academy__tag img {
    width: 100%;
}
.academy__btns{
    display: flex;
    gap: 20px;
}

@media (max-width: 1440px){
    .academy__event-date{
        font-size: 30px;
    }
    .academy__wrapper{
        gap: 20px;
    }
    .academy__event{
        max-width: 590px;
    }
    .academy__text{
        margin-bottom: 20px;
    }
    .academy__btn{
        padding: 12px 25px;
    }
    .academy__decor-elem{
        bottom: 15px;
        right: 40px;
        left: unset;
        width: 80px;
        height: 80px;
    }
    .academy__list{
        max-width: fit-content;
        min-width: 570px;
    }
}

@media (max-width: 1230px){
    .academy__event {
        padding: 25px 20px;
    }
    .academy__event-title{
        font-size: 32px;
        font-weight: 500;
    }
    .academy__event-decor{
        width: 650px;
        top: -180px;
        left: -140px;
    }
    .academy__event-decor img{
        width: 100%;
    }
    .academy__text br{
        display: none;
    }
    .academy__text{
        max-width: 370px;
    }
    .academy__btns{
        gap: 10px;
    }
    .academy__btn{
        font-size: 16px;
        min-width: 228px;
        min-height: 54px;
        padding: 13px 20px;
    }
    .academy__bg{
        height: 400%;
    }
    .academy__decor-elem {
        bottom: 5px;
        left: 880px;
        width: 90px;
        height: 90px;
    }
    .academy__event-box.box-1{
        grid-template-columns: repeat(1, min-content) 1fr;
        grid-template-rows: max-content;
        height: 100%;
    }
    .academy__event-date{
        margin-left: 0;
        margin-top: auto;
        margin-bottom: 20px;
    }
    .academy__list{
        min-width: auto;
    }
}

@media (max-width: 964px){
    .academy__wrapper{
        flex-direction: column-reverse;
    }
    .academy__event{
        max-width: 100%;
        padding-bottom: 48px;
    }
    .academy__event-decor {
        width: 1000px;
        top: -414px;
        left: -70px;
    }
    .academy__event-subtitle{
        max-width: 100%;
        font-size: 16px;
    }
    .academy__box{
        position: relative;
        max-width: 100%;
        width: 100%;
        padding-bottom: 30px;
    }
    .academy__btns{
        position: absolute;
        bottom: 30px;
        right: 0;
        flex-direction: column;
        width: 350px;
    }
    .academy__decor-elem{
        bottom: -10px;
        right: -30px;
        left: unset;
        transform: rotate(0);
    }
    .academy__bg{
        height: 300%;
    }
    .academy__bg::after{
        top: 15%;
        right: 30%;
        box-shadow: 0px 0px 300px 260px #F8F9FF;
    }
    .academy__list{
        max-width: 100%;
    }
}

@media (max-width: 730px){
    .academy__event-title,
    .academy__event-date{
        font-size: 28px;
    }
    .academy__event-subtitle{
        font-size: 18px;
        max-width: 400px;
    }
    .academy__text{
        margin-bottom: 25px;
    }
    .academy__btns{
        position: relative;
        bottom: 0;
        width: 100%;
    }
    .academy__text .br-r{
        display: block;
    }
}

@media (max-width: 450px){
    .academy__wrapper{
        flex-direction: column;
        gap: 40px;
    }
    .academy__event-title{
        font-size: 24px;
    }
    .academy__tag{
        max-width: 180px;
        margin-bottom: 10px;
    }
    .academy__title{
        margin-bottom: 10px;
        font-size: 30px;
    }
    .academy__event{
        padding: 20px;
        border-radius: 30px;
        gap: 0;
    }
    .academy__event-box.box-1{
        grid-template-columns: repeat(1, min-content) 1fr;
        grid-template-rows: max-content;
        height: 100%;
    }
    .academy__event-date{
        margin-left: 0;
        margin-top: auto;
        margin-bottom: 20px;
    }
    .academy__event-list{
        margin-right: 60px;
    }
    .academy__event-date{
        font-size: 20px;
    }
    .academy__event-decor {
        width: 950px;
        top: -320px;
        left: -290px;
    }
}

/* contact */

.contact{
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}
.contact__wrapper{
    position: relative;
    display: flex;
    align-items: center;
    padding: 90px 120px 70px 80px;
    border-radius: 50px;
    gap: 90px;
    min-height: 530px;
    background-color: #F8F9FF;
}
.contact__bg-item {
    top: -45%;
    right: -35%;
    z-index: -1;
}
.contact__text-block{
    max-width: 560px;
    width: 100%;
}
.contact__title{
    margin-bottom: 20px;
}
.contact__form-block{
    max-width: 590px;
    width: 100%;
}
.contact-form fieldset{
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-bottom: 40px;
}

.form__label{
    position: relative;
}

.form__field{
    width: 100%;
    font-size: 24px;
    color: var(--black);
    padding-bottom: 18px;
    border: 0;
    border-bottom: 1px solid var(--theme-dark-text);
    background-color: transparent;
}

.form__field::placeholder{
    color: #C3C3C3;
    line-height: 300;
}

.check__label{
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--theme-dark-text);
}

.check__input, 
.check__input:disabled {
    background-color: transparent;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.check__box{
    min-width: 30px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid var(--theme-dark-text);
    position: relative;
    margin-left: -15px;
}

.check__box::before{
    content: '';
    display: block;
    width: 80%;
    height: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 4px;
    background: url('../../images/home/svg/check-mark.svg') center var(--btn-color-1);
    background-repeat: no-repeat;
    background-size: 60%;
    transform: translate(-50%, -50%);
    transition: .1s ease-in-out;
    opacity: 0;
    box-shadow: 0px 0px 5px 0px var(--btn-color-1);
}

.check__input:checked + .check__box::before{
    opacity: 1;
}

.check__box-text{
    font-size: 16px;
    line-height: 1.2;
}

.check__box-text a{
    color: var(--btn-color-1);
}
.check__box-text a:hover {
    text-decoration: underline;
}


@media (max-width: 1440px) {
    .form__field{
        font-size: 20px;
    }
}

@media (max-width: 1230px) {
    .contact{
        padding-bottom: 60px;
    }
    .contact__wrapper {
        min-height: 860px;
        flex-direction: column;
        gap: 40px;
        padding: 140px 80px 80px;
        align-items: baseline;
        border-radius: 40px;
    }
    .check__box-text,
    .contact__text{
        font-size: 20px;
    }
    .contact-form fieldset{
        gap: 40px;
    }
    .form__send-btn{
        min-height: 54px;
    }
}

@media (max-width: 964px) {
    .contact__wrapper {
        min-height: 874px;
        padding: 118px 80px 80px;
    }
}

@media (max-width: 730px){
    .contact__wrapper{
        padding: 140px 40px 90px;
        flex-direction: column;
        align-items: baseline;
        gap: 50px;
        background-color: #fff;
    }
    .check__box{
        min-width: 30px;
        height: 30px;
    }
    .check__box-text{
        font-size: 16px;
    }
}

@media (max-width: 450px){
    .contact{
        padding-top: 40px;
    }
    .contact__wrapper{
        padding: 80px 20px 65px;
        min-height: 710px;
        border-radius: 30px;
        gap: 20px;
        justify-content: space-between;
    }
    .contact__text{
        font-size: 18px;
    }
    .check__box{
        min-width: 25px;
        height: 25px;
    }
    .check__box-text{
        font-size: 14px;
    }
    .form__send-btn{
        width: 100%;
    }
}

.form__error {
  position: absolute;
  bottom: -15px;
  left: 0;
  padding-top: 5px;
  font-size: 12px;
  color: red;
}

.footer-form__response {
    font-size: 16px;
    margin-top: 20px;
    display: none;
}

.footer-form.loading .footer-form__response {
  content: "";
  color: orange;
  border-color: orange;
  display: block;
}

.footer-form.success .footer-form__response {
  color: green;
  border-color: green;
  display: block;
}

.footer-form.failure .footer-form__response {
  color: red;
  border-color: red;
  display: block;
}