@keyframes swim {
    to {
        transform: translateX(-100%);
    }
}
@keyframes wave {
    50% {
        transform: translate(50%, -20%);
    }
    to {
        transform: translate(0, 0);
    }
}
@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}
@keyframes fillLists {
    from {
        opacity:.4
    }
    to { 
        opacity:1
    }
}

@keyframes foggy {
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    from {
        transform: rotate(var(--rotate-angle)) scale(1);
    }
    to {
        transform: rotate(var(--rotate-angle)) scale(1.05);
    }
}

@keyframes pulsePhone {
    from {
        transform: translateX(-50%) scale(1);
    }
    to {
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes waweDecor {
    from {
        transform: translateY(0) rotate(var(--rotate-angle));
    }
    to {
        transform: translateY(-15%) rotate(var(--rotate-angle));
    }
}

@keyframes slideIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
}

:root {
    --color-black-2: #0d0c0c;
    --color-black-13: #131313;
    --color-grey: #b6b6b6;
    --par-color-text: #aeaeae;
    --color-link: #9ad5ff;
		--accent: #FA3A7A;
    --main-bg-color: #181818;
}

ul,ol{
    list-style: none;
    font-size: 0;
}

li{
    font-size: 16px;
}

html,
body{
    font-family: Montserrat, Arial, Helvetica, sans-serif;
}

body .container{
    --container-width: 1600px;
    max-width: var(--container-width);
    margin: 0 auto;
}

@media (max-width: 1800px) {
    body .container {
        --container-width: 1280px;
        --container-padding: 20px;
        max-width: calc(var(--container-width) + var(--container-padding) * 2);
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }
}

@media (max-width: 380px) {
    body .container {
        --container-padding: 10px;
    }
}

#header.scroll, body {
    background-color: var(--main-bg-color);
}
.matte-bg::before{
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 30%);
}
.section{
    padding-top: 100px;
}
.section-title{
    color: var(--color-white);
    line-height: 1.2;
    font-weight: 700;
    font-size: 56px;
}
.section-subtitle{
    color: var(--color-white);
    line-height: 1.3;
    font-weight: 300;
    font-size: 36px;
    margin-top: 46px;
}
.section-subtext{
    font-size: 32px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-white);
}

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

.section-tag{
    display: inline-block;
    text-transform: uppercase;
    font-size: 32px;
    color: var(--color-2);
    font-weight: 700;
    line-height: 1;
    position: relative;
    padding-bottom: 42px;
    letter-spacing: 1px;
}

.section-tag::before{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 6px;
    bottom: 0;
    left: 0;
    background-color: var(--color-2);
    border-radius: 50px;
}
.section-bg{
    position: absolute;
    z-index: -10;
}
.char,
.decor{
    position: absolute;
    z-index: 1;
    font-size: 0;
}
.char > img,
.decor > img{
    width: 100%;
}
.slider-btns{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    display: none;
    cursor: pointer;
}
.slider-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
}
.slider-btn.btn-prev{
    left: 0;
}
.slider-btn.btn-next{
    right: 0;
}
.slider-btn::before,
.slider-btn::after{
   content: '';
   display: block;
   width: 100%;
   height: 4px;
   background-color: #fff;
   position: absolute;
   top: 50%;
   left: 50%;
   border-radius: 50px;
}

.slider-btn.btn-prev::before,
.slider-btn.btn-prev::after{
    transform-origin: left;
}

.slider-btn.btn-next::before,
.slider-btn.btn-next::after{
    transform-origin: right;
}

.slider-btn.btn-prev::before{transform: translate(-50%, -50%) rotate(45deg)}
.slider-btn.btn-prev::after{transform: translate(-50%, -50%) rotate(-45deg)}

.slider-btn.btn-next::before{transform: translate(-50%, -50%) rotate(45deg)}
.slider-btn.btn-next::after{transform: translate(-50%, -50%) rotate(-45deg)}

@media (max-width: 767px) {
    .slider-btns{
        display: block;
    }
}
.gradient-border::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    border-radius: inherit;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9213F5, #B888F8);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    padding: 3px;
}
@media (max-width: 1800px) {
    .section-title {
        font-size: 52px;
    }
    .section-subtitle{
        font-size: 32px;
        margin-top: 42px;
    }
}
@media (max-width: 1240px) {
    .section{
        padding-bottom: 80px;
    }
    .section-title {
        font-size: 36px;
    }
    .section-subtitle{
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .section-title {
        font-size: 26px;
    }
    .section-subtitle{
        font-size: 18px;
        margin-top: 30px;
    }
    .section-wrapper{
        flex-direction: column;
        align-items: baseline;
        gap: 30px;
    }
}
@media (max-width: 480px) {
    .section{
        padding-bottom: 60px;
    }
}
@media (max-width: 380px) {
    .section-title {
        font-size: 22px;
    }
    .section-subtitle{
        font-size: 16px;
    }
}
.section-1 {
    position: relative;
    padding-top: 244px;
    padding-bottom: 230px;
    z-index: 4;
}
.section-1__wrapper {
    display: flex;
    justify-content: space-between;
}
.section-1 .container .block-1 {
    display: flex;
    flex-direction: column;
    flex-basis: 46%;
    max-width: 816px;
    width: 100%;
}
.section-1 .container .section-1__bg{
    top: 0%;
    left: 50%;
    transform: translateX(-40%);
}

.section-1 .container .block-1 .title,
.section-1 .container .block-1 .title-second {
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
}

.section-1 .container .block-1 .title-second{
    margin-top: 10px;
    width: 100%;
    font-size: 64px;
}

.intro__btns > button{
    font-size: 24px;
    max-width: 416px;
    width: 100%;
    padding: 20px;
    margin-top: 50px;
    font-weight: 600;
}
.section-1 .container .block-1 .subtitle {
    width: 100%;
    max-width: 600px;
    font-size: 26px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    margin-bottom: 54px;
}

.section-1 .container .block-2{
    position: relative;
}

.section-1 .container .block-2 .metrics{
    position: relative;
    width: 680px;
    padding-top: 60%;
    border-radius: 17px;
}

.section-1 .container .block-2 .metrics::before{
    width: 103.5%;
    height: 105%;
    border-radius: 20px;
    border: 3px #fff solid;
}

.section-1 .container .block-2 .metrics > img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 17px;
}

.section-1 .container .block-2 .progress-arrow{
    position: absolute;
    top: 10%;
    left: -15%;
    width: 135%;
    height: 100%;
    opacity: 0;
    transform: translateX(15%);
    animation: foggy 1s cubic-bezier(0.18, 0.7, 0.57, 1.32) 0.3s forwards;
}

.section-1 .container .block-2 .progress-arrow > img{
    width: 100%;
}

.section-1 .container .block-2 .char-1 {
    --rotate-angle: 15deg;
    width: 10%;
    top: -10%;
    left: 24%;
    transform: rotate(var(--rotate-angle)) scale(1);
    animation: pulse 1s linear infinite alternate;
}

.section-1 .container .block-2 .char-2 {
    --rotate-angle: -22deg;
    width: 19.4%;
    top: 46%;
    left: -16%;
    transform: rotate(var(--rotate-angle)) scale(1);
    animation: pulse 1s linear infinite alternate;
}

.section-1 .container .block-2 .smartphone{
    position: absolute;
    z-index: 2;
    width: 30%;
    font-size: 0;
    top: 28%;
    left: 14%;
    transform: rotate(0) translateX(-50%);
    transition: 1s cubic-bezier(0.18, 0.7, 0.57, 1.32), opacity 0.5s linear;
    opacity: 0;
}

.section-1 .container .block-2 .smartphone.show{
    transform: rotate(10deg) translateX(0);
    opacity: 1;
}

.section-1 .container .block-2 .smartphone > img{
    width: 100%;
}

.section-1 .container .block-2 .smartphone__installs{
    position: absolute;
    top: 24%;
    left: 59%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background-color: rgba(23, 23, 23, 80%);
    border-radius: 8px;
    font-size: 43px;
    color: var(--color-1);
    line-height: 1;
    font-weight: 800;
    padding: 5% 7%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-1 .container .block-2 .smartphone__installs-text{
    text-transform: uppercase;
    font-weight: 900;
    font-size: 16px;
}

@media (max-width: 1800px) {
    .section-1 {
        padding-top: 205px;
        padding-bottom: 110px;
    }
    .section-1 .container .block-1 {
        max-width: 710px;
        flex-basis: 52%;
    }
    .section-1 .container .section-1__bg{
        top: -5%;
        transform: translateX(-50%);
    }
    .section-1 .container .block-1 .title {
        font-size: 64px;
    }
    .section-1 .container .block-1 .title-second{
        font-size: 54px;
        margin-top: 14px;   
    }
    .intro__btns > button{
        margin-top: 65px;
    }
    .section-1 .container .block-2{
        top: 35px;
    }
    .section-1 .container .block-2 .metrics{
        width: 448px;
    }
    .section-1 .container .block-2 .metrics > img{
        border-radius: 12px;
    }
    .section-1 .container .block-2 .metrics::before{
        border-radius: 14px;
        border: 2px solid #fff;
    }
    .section-1 .container .block-2 .progress-arrow{
        top: 6%;
    }
    .section-1 .container .block-2 .char-1{
        top: -7%;
    }
    .section-1 .container .block-2 .char-2{
        top: 32%;
    }
    .section-1 .container .block-2 .smartphone{
        top: 19%;
    }
    .section-1 .container .block-2 .smartphone__installs{
        font-size: 30px;
        border-radius: 7px;
    }
    .section-1 .container .block-2 .smartphone__installs-text{
        font-size: 10px;
        letter-spacing: 0;
    }
}

@media (max-width: 1240px) {
    .section-1 {
        padding-top: 150px;
        padding-bottom: 80px;
    }
    .section-1 .container .block-1 .title {
        font-size: 46px;
    }
    .section-1 .container .block-1 .title-second{
        margin-top: 40px;
        font-size: 42px;
    }
    .intro__btns > button{
        margin-top: 24px;
    }
    .section-1 .container .section-1__bg{
        top: 0%;
        transform: translateX(-50%);
        width: 140%;
    }
    .section-1__bg img{
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .section-1 .container .block-2 .metrics{
        width: 333px;
    }
    .section-1 .container .block-2 .smartphone__installs{
        font-size: 22px;
    }
    .section-1 .container .block-2 .smartphone__installs-text{
        font-size: 8px;
    }
    .section-1 .container .section-1__bg{
        width: 160%;
    }
}

@media (max-width: 767px) {
    .section-1{
        padding: 150px 0 180px;
    }
    .section-1__wrapper{
        flex-direction: column;
        gap: 50px;
    }
    .section-1 .container .block-2 .metrics{
        width: 100%;
    }
    .section-1 .container .block-2{
        width: 76%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .section-1{
        padding: 110px 0;
    }
    .section-1 .container .block-1 .title{
        font-size: 34px;
    }
    .section-1 .container .block-1 .title-second{
        font-size: 31px;
        margin-top: 25px;
    }
    .intro__btns > button{
        font-size: 17px;
        max-width: 300px;
        padding: 14px;
        margin-top: 30px;
    }
    .section-1__wrapper{
        gap: 25px;
    }
    .section-1 .container .block-2 .smartphone{
        top: 28%;
    }
    .section-1 .container .block-2 .smartphone__installs{
        font-size: 19px;
        border-radius: 4px;
    }
}

@media (max-width: 380px) {
    .section-1 .container .block-1 .title{
        font-size: 30px;
    }
    .section-1 .container .block-1 .title-second{
        font-size: 26px;
    }
    .section-1 .container .block-2{
        width: 84%;
    }
}

.section-2{
    position: relative;
}

.section-2__bg{
    top: -50%;
    left: 50%;
    transform: translateX(-25%);
}

.section-2 .container .section-2__wrapper .block-text{
    max-width: 730px;
}

.section-2 .container .section-2__wrapper .block-content{
    width: 39%;
    position: relative;
}

.section-2 .container .section-2__wrapper .block-content__console{
    position: relative;
    max-width: 100%;
    padding-top: 71%;
}
.section-2 .container .section-2__wrapper .block-content__console > img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.section-2 .container .section-2__wrapper .block-content__console::before{
    width: 102%;
    height: 103%;
    border-radius: 10px;
    border: 1px rgba(255, 255, 255, 60%) solid;
    background-color: rgba(255, 255, 255, 20%);
}

.block-content__console-part{
    position: absolute;
    overflow: hidden;
    border-radius: 13px;
    font-size: 0;
    width: 47%;
    padding-top: 14.3%;
    top: 14%;
    right: -5%;
    box-shadow: 0px 14px 40px rgba(0, 0, 0, 0%);
    transform: scale(.75) translate(0%, 0%);
    transition: 0.5s ease-in;
    transform-origin: left bottom;
}

.section-2 .block-content.show .block-content__console-part{
    transform: scale(1) translate(-2%, 8%);
    box-shadow: 0px 14px 40px rgba(0, 0, 0, 15%);
}
.block-content__console-part > img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-content__info-tag{
    position: absolute;
    bottom: 4%;
    left: -21%;
    width: 58.3%;
    background-color: rgba(23, 23, 23, 90%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 16px;
    border: 4px solid #383838;
    padding: 10px 10px 16px 10px;
    transform: scale(1);
}

.block-content__info-wrapper{
    display: flex;
    flex-direction: column;
    padding-left: 110px;
}

.block-content__info-stat{
    font-weight: 800;
    font-size: 42px;
    color: var(--color-2);
    line-height:normal;
}

.block-content__info-text{
    margin-top: 5px;
    line-height: 1.2;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-white);
}

.block-content__info-tag .char-1{
    --rotate-angle: -12deg;
    width: 22%;
    bottom: -16%;
    left: -8%;
    transform: rotate(var(--rotate-angle)) scale(1);
    animation: pulse 1s linear infinite alternate 1s;
}
.block-content__info-tag .char-2{
    --rotate-angle: 6.5deg;
    width: 12.3%;
    top: 18%;
    left: 13%;
    transform: rotate(var(--rotate-angle)) scale(1);
    animation: pulse 1s linear infinite alternate 0.5s;
}

@media (max-width: 1800px) {
    .section-2 .container .section-2__wrapper .block-text{
        max-width: 670px;
    }
    
    .section-2 .container .section-2__wrapper .block-content{
        width: 37%;
    }

    .section-2 .container .section-2__wrapper .block-content__console > img,
    .section-2 .container .section-2__wrapper .block-content__console::before{
        border-radius: 6px;
    }

    .section-2__bg{
        top: -50%;
        width: 70%;
    }
    .section-2__bg > img{
        width: 100%;
    }

    .section-2__subtitle{
        max-width: 580px;
        margin-top: 60px;
    }

    .block-content__console-part{
        border-radius: 8px;
    }

    .block-content__info-tag{
        border-radius: 12.5px;
        border: 3px solid #383838;
        padding: 8px 8px 15px 8px;
    }

    .block-content__info-wrapper{
        padding-left: 75px;
    }

    .block-content__info-stat{
        font-size: 33.5px;
    }

    .block-content__info-text{
        font-size: 10px;
        line-height: 1;
    }
}
@media (max-width: 1240px) {
    .section-2__subtitle{
        margin-top: 42px;
        max-width: 520px;
    }
    .block-content__info-stat{
        font-size: 24px;
    }
    .section-2__bg{
        width: 85%;
    }
}

@media (max-width: 1024px){
    .section-2 .container .section-2__wrapper .block-content{
        width: 32%;
    }
    .block-content__info-tag {
        border-radius: 10px;
        border: 2px solid #383838;
        padding: 4px 4px 10px 0px;
    }
    .block-content__info-wrapper{
        padding-left: 58px;
    }
    .block-content__info-text{
        font-size: 7px;
    }
    .section-2__bg{
        width: 75%;
        transform: translateX(-15%);
    }
}

@media (max-width: 767px){
    .section-2__subtitle{
        margin-top: 32px;
        max-width: 360px;
    }
    .section-2 .container .section-2__wrapper .block-content{
        width: 75%;
        align-self: end;
    }
    .block-content__info-stat {
        font-size: 24px;
    }
    .block-content__info-text {
        font-size: 8px;
    }
    .block-content__info-tag{
        width: 200px;
    } 
    .section-2__bg {
        width: 180%;
        transform: translateX(-50%);
        top: -10%;
    }
}

@media (max-width: 480px) {
    .section-2__subtitle{
        margin-top: 25px;
    }
    .block-content__info-stat{
        font-size: 22px;
    }
    .block-content__info-text{
        font-size: 7px;
    }
    .block-content__info-wrapper{
        padding-left: 54px;
    }
    .block-content__info-tag{
        width: 175px;
        padding: 3px 0px 8px 0px;
    }
}

.strategies{
    position: relative;
}
.strategies__bg{
    top: -20%;
    left: 50%;
    transform: translateX(-60%);
}
.strategies__subtitle{
    margin-top: 42px;
}
.strategies__text{
    max-width: 720px;
}
.strategies__content{
    max-width: 790px;
    width: 100%;
}
.strategies__list{
    display: grid;
    gap: 38px;
    width: 100%;
}
.strategies__item{
    position: relative;
    background-color: #1D1D1D;
    border-radius: 18px;
    padding: 32px 30px 32px 160px;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    height: 150px;
    transition: .2s linear;
    cursor: pointer;
}
.strategies__item:hover{
    transform: scale(1.05);
}
.strategies__item-picture{
    position: absolute;
    left: 5.5%;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    font-size: 0;
    width: 10%;
}
.strategies__item-picture > img{
    width: 100%;
}
.strategies__item-picture svg{
    width: 100%;
    height: 100%;
    overflow: visible;
}
.strategies__item-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    font-size: 0;
}
.strategies__item-title{
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
}
.strategies__item-text{
    font-size: 26px;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.2;
}

.strategies__item.media-ads{border-color: var(--color-2)}
.strategies__item.media-ads .strategies__item-title{color: var(--color-2)}

.strategies__item.brandformance{border-color: var(--color-29)}
.strategies__item.brandformance .strategies__item-title{color: var(--color-29)}

.strategies__item.user-acquisition{
    border-color: var(--color-1);
    padding: 18px 30px 18px 160px;
}
.strategies__item.user-acquisition .strategies__item-title{color: var(--color-1)}

.strategies__item.retargeting{border-color: var(--color-30)}
.strategies__item.retargeting .strategies__item-title{color: var(--color-30)}

@media (max-width: 1800px) {
    .strategies__content{
        max-width: 656px;
    }
    .strategies__bg{
        top: -35%;
        transform: translateX(-65%);
    }
    .strategies__list{
        gap: 24px;
    }
    .strategies__item{
        height: 126px;
        border-radius: 15px;
        padding: 25px 30px 20px 140px;
    }
    .strategies__item.user-acquisition{
        border-color: var(--color-1);
        padding: 15px 30px 15px 140px;
    }
    .strategies__item-title,
    .strategies__item-text{
        font-size: 24px;
    }
}

@media (max-width: 1240px){
    .strategies__bg{
        width: 100%;
        top: -20%;
    }
    .strategies__bg img{
        width: 100%;
    }
    .strategies__content{
        max-width: 430px;
    }
    .strategies__list{
        gap: 20px;
    }
    .strategies__text{
        max-width: 460px;
    }
    .strategies__item {
        height: 80px;
        border-radius: 10px;
        padding: 16px 30px 16px 87px;
    }
    .strategies__item.user-acquisition{
        padding: 10px 30px 10px 87px;
    }
    .strategies__item-title, .strategies__item-text {
        font-size: 16px;
    }
    .strategies__subtitle{
        margin-top: 32px;
    }
}

@media (max-width: 1024px){
    .strategies__wrapper{
        justify-content: space-between;
    }
    .strategies__bg{
        width: 120%;
    }
}

@media (max-width: 767px){
    .strategies__wrapper{
        align-items: normal;
        gap: 30px;
    }
    .strategies__bg{
        width: 200%;
        opacity: 0.3;
        top: -10%;
    }
    .strategies__title{
        margin-top: 20px;
    }
    .strategies__text {
        max-width: 400px;
    }

    .strategies__subtitle{
        font-size: 20px;
        margin-top: 20px;
    }
    .strategies__suptitle-tag{
        font-size: 16px;
        padding-bottom: 25px;
    }
    .strategies__content{
        align-self: center;
    }
}

@media (max-width: 480px){
    .strategies__text{
        max-width: 350px;
    }
    .strategies__title{
        margin-top: 0;
        font-size: 26px;
    }
    .strategies__subtitle{
        font-size: 18px;
        margin-top: 30px;
    }
    .strategies__item-title, 
    .strategies__item-text{
        font-size: 14px;
    }
    .strategies__item{
        padding: 15px 10px;
        padding-left: 20%;
    }
    .strategies__item.user-acquisition{
        padding: 10px 10px;
        padding-left: 20%;
    }
}

@media (max-width: 380px){
    .strategies__title{
        font-size: 22px;
    }
    .strategies__subtitle{
        font-size: 16px;
    }
    .strategies__item-title, .strategies__item-text{
        font-size: 12px;
    }
}

.advantages{
    position: relative;
}

.advantages__title{
    text-align: center;
    font-weight: 600;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.3;
}

.advantages__wrapper{
    width: 100%;
    margin-top: 70px;
}

.advantages__cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 56px;
}

.advantages__card-item{
    position: relative;
    background-color: rgba(255, 255, 255, 25%);
    border: 2.5px solid var(--color-white);
    border-radius: 17px;
    padding-top: 92%;
    padding-bottom: 13%;
    text-align: center;
}

.advantages__card-item.slideIn{
    animation: slideIn 0.7s forwards ease-out;
}

.advantages__card-title{
    font-size: 32px;
    line-height: 1;
    font-weight: 600;
    color: var(--color-white);
}

.advantages__card-subtitle{
    font-weight: 500;
    font-size: 26px;
    color: var(--color-2);
    max-width: 85%;
    margin: 30px auto 0;
    line-height: 1.3;
}

.advantages__interactive{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.advantages__card-item .char,
.advantages__card-item .decor{
    opacity: 0;
}

.advantages__card-item.show .char,
.advantages__card-item.show .decor{
    opacity: 1;
}

.advantages__card-item.full-transparency{
    background-color: rgba(251, 80, 59, 25%);
    border: 2.5px solid var(--color-30);
}

.advantages__card-item.zero-fraud{
    background-color: rgba(245, 19, 101, 26%);
    border: 2.5px solid var(--color-28);
}

.advantages__card-item.cutting-edge{
    background-color: rgba(252, 70, 111, 23%);
    border: 2.5px solid var(--color-1);
}

.advantages__card-item.full-transparency .char-1{
    --rotate-angle: -14deg;
    width: 10%;
    top: 18%;
    right: 30%;
    transform: rotate(var(--rotate-angle)) scale(1);
    animation: pulse 1s linear infinite alternate;
    transition: .5s ease-in-out .3s;
}

.advantages__card-item.full-transparency .char-2{
    --rotate-angle: 5deg;
    width: 14%;
    top: 20%;
    right: 8%;
    transform: rotate(var(--rotate-angle)) scale(1);
    animation: pulse 1s linear infinite alternate 1s;
    transition: .5s ease-in-out .7s;
}

.advantages__card-item.full-transparency .char-3{
    --rotate-angle: -8deg;
    width: 8%;
    top: 38%;
    right: 19%;
    transform: rotate(var(--rotate-angle)) scale(1);
    animation: pulse 1s linear infinite alternate .5s;
    transition: .5s ease-in-out .5s;
}

.advantages__card-item.zero-fraud .char-1{
    --rotate-angle: -8deg;
    width: 14%;
    top: 22%;
    right: 68%;
    transform: rotate(var(--rotate-angle)) scale(1);
    animation: pulse 1s linear infinite alternate 1s;
    transition: .5s ease-in-out .7s;
}

.advantages__card-item.zero-fraud .char-2{
    --rotate-angle: 10deg;
    width: 8%;
    top: 34%;
    right: 65%;
    transform: rotate(var(--rotate-angle)) scale(1);
    animation: pulse 1s linear infinite alternate;
    transition: .5s ease-in-out .3s;
}

.advantages__card-item.zero-fraud .char-3{
    --rotate-angle: -33deg;
    width: 11%;
    top: 44%;
    right: 68%;
    transform: rotate(var(--rotate-angle)) scale(1);
    animation: pulse 1s linear infinite alternate .5s;
    transition: .5s ease-in-out .5s;
}

.advantages__card-item.cutting-edge .decor-elem-1{
    --rotate-angle: -20deg;
    width: 15%;
    top: 26%;
    right: 70%;
    transform: rotate(var(--rotate-angle)) translateX(150%);
    transition: .5s ease-in-out .7s;
}

.advantages__card-item.cutting-edge .decor-elem-2{
    --rotate-angle: 20deg;
    width: 10%;
    top: 40%;
    right: 15%;
    transform: rotate(var(--rotate-angle)) translateX(-230%);
    transition: .5s ease-in-out .5s;
}

.cutting-edge.show .decor-elem-1{
    transform: rotate(var(--rotate-angle)) translateX(0);
    animation: waweDecor 1s linear infinite alternate 1.2s;
}

.cutting-edge.show .decor-elem-2{
    transform: rotate(var(--rotate-angle)) translateX(0);
    animation: waweDecor 1s linear infinite alternate 2s;
}

.advantages__interactive-phone{
    position: relative;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 48%;
    background-color: #000000;
    overflow: hidden;
    padding-top: 100%;
    border-radius: 20px;
    box-shadow: 0px 0px 0px 2px #fff inset;
    transition: .6s cubic-bezier(0.18, 0.7, 0.57, 1.32);
}

.cutting-edge.show .advantages__interactive-phone{
    transform: translateX(-50%) scale(1);
    animation: pulsePhone 2s linear infinite alternate 0.6s;
}

.advantages__interactive-phone > img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 92%;
    height: 95%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.advantages__slider-btn::after,
.advantages__slider-btn::before{
    background-color: var(--color-1);
}
@media (max-width: 1800px) {
    .advantages__title{
        max-width: 1000px;
    }
    .advantages__wrapper{
        margin-top: 50px;
    }
    .advantages__cards{
        gap: 40px;
    }
    .advantages__card-item{
        border-radius: 15px;
    }
    .advantages__card-item.full-transparency,
    .advantages__card-item.zero-fraud,
    .advantages__card-item.cutting-edge{
        border-width: 1.5px;
    }
    .advantages__card-title{
        font-size: 24px;
    }
    .advantages__card-subtitle{
        font-size: 22px;
        margin-top: 22px;
    }
    .advantages__interactive-phone{
        border-radius: 18px;
    }
}

@media (max-width: 1240px) {
    .advantages__title{
        max-width: 630px;
    }
    .advantages__cards{
        max-width: 910px;
        margin: 0 auto;
        gap: 20px;
    }
    .advantages__card-title{
        font-size: 16px;
    }
    .advantages__card-subtitle{
        font-size: 15px;
        margin-top: 15px;
    }
    .advantages__card-item{
        padding-top: 94%
    }
    .advantages__interactive-phone{
        border-radius: 12px;
    }
}

@media (max-width: 767px){
    .advantages__title{
        margin-bottom: 30px;
        max-width: 360px;
    }
    .advantages__wrapper{
        width: 55%;
        margin: 0 auto;
        overflow: hidden;
    }
    .advantages__slider-btns{
        width: 80%;
        top: 50%;
    }
    .advantages__cards{
        position: relative;
        grid-template-columns: repeat(auto-fill, 100%);
        grid-auto-flow: column;
        grid-auto-columns: 100%;
    }
    .advantages__card-title{
        font-size: 20px;
    }
    .advantages__interactive-phone{
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .advantages__wrapper{
        width: 67%;
    }
    .advantages__card-title{
        font-size: 16px;
    }
}

@media (max-width: 380px) {
    .advantages__card-title{
        font-size: 14px;
    }
    .advantages__card-subtitle{
        font-size: 12px;
    }
    .advantages__interactive-phone{
        border-radius: 8px;
    }
    .advantages__slider-btns{
        top: 53%;
    }
}

.mobile-anim{
    position: absolute;
    opacity: 0;
    z-index: 1;
    transition: 0.6s linear;
}

.advantages__card-item.show .mobile-anim{
    opacity: 1;
}
.full-transparency.show .mobile-anim {
    transform: translateX(0) rotate(-8deg);
}
.zero-fraud.show .mobile-anim {
    transform: translateY(0);
}

.mobile-anim::before{
    content: '';
    position: absolute;
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.mobile-anim-1 {
    width: 58%;
    height: 58%;
    top: 7%;
    left: 5%;
    transform: translateX(20%) rotate(-8deg);
}

.mobile-anim-1::before {
    top: 27%;
    right: -36%;
    width: 80%;
    height: 60%;
    background-image: url("data:image/svg+xml,%3Csvg width='432' height='432' viewBox='0 0 432 432' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.3'%3E%3Cg filter='url(%23filter0_b_1689_5126)'%3E%3Cpath d='M247.15 42.5732L289.288 106.107C292.447 110.87 290.979 117.307 286.067 120.229L155.478 197.918C137.63 208.173 99.8514 244.238 120.36 280.805C140.869 317.373 183.405 304.477 198.505 296.665L334.583 206.592C339.186 203.546 345.386 204.804 348.437 209.404L385.673 265.547C388.728 270.153 387.467 276.363 382.859 279.413L242.893 372.06C202.562 398.755 101.696 407.539 47.5188 323.406C-9.99187 234.097 52.9843 159.113 93.3154 132.418L233.297 39.7616C237.899 36.7152 244.099 37.9736 247.15 42.5732Z' fill='black'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_b_1689_5126' x='20.3914' y='34.0994' width='370.949' height='360.599' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeGaussianBlur in='BackgroundImageFix' stdDeviation='2'/%3E%3CfeComposite in2='SourceAlpha' operator='in' result='effect1_backgroundBlur_1689_5126'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_backgroundBlur_1689_5126' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
}

.mobile-anim-2{
    width: 70%;
    height: 70%;
    top: 0%;
    left: 40%;
    transform: translateY(10%);
}

.mobile-anim-2::before{
    top: 8%;
    right: 38%;
    width: 100%;
    height: 90%;
    background-image: url("data:image/svg+xml,%3Csvg width='564' height='564' viewBox='0 0 564 564' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.3'%3E%3Cpath d='M328.207 215.007C341.975 224.503 352.483 238.011 358.301 253.692C364.118 269.374 364.963 286.467 360.72 302.645C356.476 318.823 347.351 333.302 334.586 344.109C321.821 354.917 306.036 361.528 289.379 363.045C272.723 364.562 256.003 360.909 241.496 352.585C226.989 344.26 215.4 331.668 208.304 316.522C201.209 301.376 198.953 284.412 201.843 267.938C204.732 251.463 212.628 236.28 224.455 224.453' stroke='%23000000' stroke-width='17'/%3E%3Cpath d='M405.167 348.881C392.299 372.711 372.843 392.334 349.125 405.406C325.406 418.478 298.426 424.447 271.406 422.599C244.387 420.752 218.47 411.166 196.751 394.988C175.032 378.809 158.429 356.721 148.924 331.361C139.419 306.001 137.415 278.442 143.15 251.973C148.885 225.505 162.117 201.247 181.266 182.096C200.415 162.944 224.672 149.71 251.14 143.972C277.608 138.234 305.167 140.236 330.528 149.738' stroke='%23000000' stroke-width='17'/%3E%3Cpath d='M469.341 356.056C453.377 396.441 424.79 430.586 387.841 453.402C350.892 476.218 307.559 486.484 264.301 482.669C221.043 478.853 180.176 461.162 147.791 432.231C115.406 403.3 93.2371 364.678 84.5881 322.122C75.939 279.566 81.2731 235.355 99.7954 196.077C118.318 156.8 149.036 124.559 187.373 104.16C225.71 83.7618 269.612 76.2976 312.536 82.8802C355.46 89.4628 395.108 109.74 425.57 140.689' stroke='%23000000' stroke-width='17'/%3E%3Cpath d='M203 222.832L227.473 224.073L226.85 247.878' stroke='%23000000' stroke-width='13' stroke-linecap='round'/%3E%3Cpath d='M330.947 134.043L333.297 142.781L324.357 145.735' stroke='black' stroke-width='23' stroke-linecap='round'/%3E%3Cpath d='M434.158 126.917L480.417 135.696L422.135 133.364' stroke='black' stroke-width='23' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
}

.mobile-anim-3 {
    width: 60%;
    height: 50%;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-anim-3::before {
    top: 3%;
    right: 0%;
    width: 100%;
    height: 80%;
    background-image: url("data:image/svg+xml,%3Csvg width='325' height='325' viewBox='0 0 325 325' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='162.524' cy='162.113' r='111.873' stroke='black' stroke-opacity='0.25' stroke-width='22.6986'/%3E%3Ccircle cx='162.522' cy='162.113' r='112.988' stroke='black' stroke-width='1.36192' stroke-linecap='round' stroke-dasharray='5.9 5.9'/%3E%3Ccircle cx='162.318' cy='162.318' r='151.63' stroke='url(%23paint0_radial_14257_2371)' stroke-opacity='0.25' stroke-width='21.3777'/%3E%3Cdefs%3E%3CradialGradient id='paint0_radial_14257_2371' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(162.318 162.318) rotate(90) scale(162.318)'%3E%3Cstop/%3E%3Cstop offset='1'/%3E%3C/radialGradient%3E%3C/defs%3E%3C/svg%3E");
    z-index: -1;
}

@media (max-width: 1800px) {
    .mobile-anim-2{
        top: -1%;
    }
}

.cooperation__wrapper{
    position: relative;
    width: 100%;
    padding: 62px 45px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(193, 147, 255, 60%), rgba(143, 0, 255, 60%));
    text-align: center;
}

.cooperation__wrapper.gradient-border::before {
    background: linear-gradient(135deg, #9213F5, #B888F8);
    padding: 2px;
}

.cooperation__title{
    position: relative;
    line-height: 1;
    padding-bottom: 41px;
    letter-spacing: 1px;
}
.cooperation__title::before{
    content: '';
    position: absolute;
    display: block;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 200px;
    height: 5px;
    background-color: var(--color-white);
    border-radius: 50px;
}
.cooperation__subtitle{
    line-height: 1.2;
    max-width: 760px;
    margin: 32px auto 0;
}
.cooperation__subtext{
    margin-top: 30px;
}
.cooperation__list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 30px;
    margin-top: 74px;
    text-align: left;
}

.cooperation__item{
    position: relative;
    background-color: var(--color-white);
    border-radius: 17px;
    border: 2px solid #9213F5;
    height: 200px;
    padding: 40px 0 25px 168px;
}
.cooperation__item:nth-child(2){
    padding-left: 188px;
}

.cooperation__item-picture{
    position: absolute;
    left: 9%;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    font-size: 0;
    height: 32%;
}
.cooperation__item:nth-child(2) .cooperation__item-picture{
    left: 8%;
}
.cooperation__item-picture > img{
    height: 100%;
}

.cooperation__item-content{
    color: var(--main-bg-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.cooperation__item-title{
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.cooperation__item-text{
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
}

.cooperation__btn{
    max-width: 416px;
    width: 100%;
    margin: 0 auto;
    font-size: 24px;
    margin-top: 67px;
    font-weight: 600;
    height: 60px;
}

@media (max-width: 1800px) {
    .cooperation__wrapper{
        padding: 43px 34px;
    }
    .cooperation__wrapper::before{
        padding: 2px;
    }
    .cooperation__title{
        padding-bottom: 30px;
    }
    .cooperation__title::before{
        height: 4px;
        width: 160px;
    }
    .cooperation__subtitle{
        font-size: 26px;
        margin-top: 26px;
        max-width: 560px;
    }
    .cooperation__subtext{
        font-size: 24px;
        margin-top: 22px;
    }
    .cooperation__list{
        margin-top: 62px;
        gap: 15px;
    }
    .cooperation__item,
    .cooperation__item:nth-child(2){
        padding: 32px 0 22px 150px;
        border-radius: 15px;
        height: 160px;
    }
    .cooperation__item-title{
        font-size: 24px;
    }
    .cooperation__item-text{
        font-size: 24px;
    }
    .cooperation__btn{
        margin-top: 52px;
        font-size: 22px;
    }
}

@media (max-width: 1240px) {
    .cooperation__wrapper{
        padding: 35px 12px;
    }
    .cooperation__subtitle{
        font-size: 22px;
        max-width: 460px;
        margin-top: 16px;
    }
    .cooperation__list{
        margin-top: 50px;
    }
    .cooperation__item, .cooperation__item:nth-child(2){
        padding: 22px 0 22px 110px;
        border-radius: 10px;
        height: 116px;
    }
    .cooperation__item-title{
        font-size: 23px;
    }
    .cooperation__item-text{
        font-size: 16px;
    }
    .cooperation__item-content{
        max-width: 310px;
    }
    .cooperation__btn{
        margin-top: 48px;
    }
}

@media (max-width: 767px) {
    .cooperation__wrapper {
        padding: 30px 10px 60px;
        border-radius: 10px
    }
    .cooperation__subtitle{
        font-size: 18px;
        max-width: 400px;
    }
    .cooperation__subtext {
        font-size: 20px;
        margin-top: 5px;
    }
    .cooperation__list{
        max-width: 480px;
        margin: 40px auto 0;
        grid-template-columns: 1fr;
    }
    .cooperation__item:nth-child(2) .cooperation__item-picture{
        left: 7%;
    }
}

@media (max-width: 480px) {
    .cooperation__wrapper{
        padding: 62px 10px;
    }
    .cooperation__title{
        padding-bottom: 20px;
    }
    .cooperation__item, 
    .cooperation__item:nth-child(2){
        padding: 18px 10px;
        padding-left: 21%;
        height: 92px;
    }
    .cooperation__item-title{
        font-size: 16px;
    }
    .cooperation__item-text{
        font-size: 14px;
    }
    .cooperation__item-content{
        max-width: 272px;
    }
    .cooperation__item-picture{
        left: 8%;
    }
    .cooperation__item:nth-child(2) .cooperation__item-picture{
        left: 6%;
    }
    .cooperation__btn{
        font-size: 18px;
        margin-top: 40px;
        max-width: 320px;
        height: 50px;
    }
}

@media (max-width: 380px){
    .cooperation__wrapper{
        padding: 42px 10px;
    }
    .cooperation__subtitle{
        font-size: 16px;
    }
    .cooperation__item-title{
        font-size: 14px;
    }
    .cooperation__item-text{
        font-size: 12px;
    }
    .cooperation__item, 
    .cooperation__item:nth-child(2){
        height: 87px;
    }
    .cooperation__item:nth-child(2) .cooperation__item-picture{
        left: 5%;
    }
}

.section-clients {
    margin: 0 auto;
}
.container_clients {
    position: relative;
    padding: 84px 116px;
    background-color: #171717cc;
    display: flex;
    border-radius: 20px;
    margin-bottom: 115px;
}
.container_clients.gradient-border::before {
    background: linear-gradient(135deg, #CF58D0 0%, #F51365 55%, #FB503B 100%);
    padding: 2px;
}

.container_clients::after{
    content: '';
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #CF58D0 0%, #F51365 55%, #FB503B 100%);
    z-index: -1;
    width: 60%;
    filter: blur(200px);
    height: 40%;
}

.clients_info-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 38px;
}
.clients_info-subtitle {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
}
.clients_info {
    width: 645px;
    margin-right: 55px;
}
.clients_logos {
    display: flex;
}
.clients_logos img {
    width: 100%;
}

@media (max-width: 1800px){
    .clients_info-title{
        font-size: 54px;
    }
    .clients_info-subtitle{
        font-size: 26px;
    }
}


@media (max-width: 767px) {
    .container_clients{
        flex-direction: column;
        padding: 45px 25px;
        border-radius: 10px;
        margin-bottom: 60px;
    }
    .clients_info{
        margin-right: 0;
        text-align: center;
        width: 100%;
    }
    .clients_info-subtitle{
        max-width: 80%;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .container_clients{
        padding: 32px 20px 67px;
    }
    .clients_logos{
        margin-top: 25px;
    }
    .clients_info-title{
        font-size: 25px;
    }
    .clients_info-subtitle{
        font-size: 14px;
    }

}

.section-4 {
    position: relative;
    padding-bottom: 0;
}
.section-4__content {
    display: flex;
    border-radius: 20px;
    padding: 95px 40px;
    background-color: #FF0262;
    justify-content: space-between;
    position: relative;
}
.get-demo__img {
    position: absolute;
    bottom: 15%;
    left: 2%;
    max-width: 380px;
    width: 100%;
}
.get-demo__img img{
    width: 100%;
}
.section-4__content .block-1 {
    max-width: 790px;
}
.section-4__content .block-1 .title {
    color: var(--color-6);
    font-weight: 700;
    font-size: 60px;
    line-height: 66px;
}
.section-4__content .block-1 .subtitle {
    color: var(--color-6);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    margin-top: 24px;
    margin-bottom: 50px;
    max-width: 625px;
}
.section-4__content .block-2 {
    max-width: 680px;
}
.section-4__content .block-2 .form-req-demo {
    position: relative;
}
.section-4__content .block-2 .form-req-demo.show-response .form-req-demo__form {
    opacity: 0;
    visibility: hidden;
}
.section-4__content
    .block-2
    .form-req-demo.show-response
    .form-req-demo__response {
    opacity: 1;
    visibility: visible;
    transition: 0.3s linear 0.6s;
}
#header .container,
.section-4__content .block-2 .form-req-demo__form {
    transition: 0.6s linear;
}
.form-req-demo__form .input-cont {
    margin-bottom: 25px;
    position: relative;
}
.form-req-demo__form .input-cont.error::after {
    opacity: 1;
    visibility: visible;
    width: 100%;
}
.form-req-demo__form .input-cont.error .line {
    background-color: red;
}
.form-req-demo__form .input-cont::after {
    content: attr(data-error);
    display: inline-block;
    position: absolute;
    width: 0;
    color: var(--color-1);
    font-size: 14px;
    line-height: 1.4;
    bottom: 0;
    left: 0;
    transform: translateY(100%);
    opacity: 0;
    white-space: nowrap;
    visibility: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
    background-color: var(--color-7);
    transition: 0.3s linear;
}
.form-req-demo__form .input-cont label {
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 2;
    color: var(--color-6);
    cursor: pointer;
}
.form-req-demo__form .input-cont input {
    display: block;
    border: none;
    outline: none;
    border-radius: 10px;
    margin: 0;
    padding: 15px 35px;
    width: 100%;
    font-weight: 500;
    font-size: 18px;
    color: rgba(73, 73, 73, 0.7);
    background-color: #fff;
}
.form-req-demo__form .input-cont input::placeholder,
.input-cont-textarea textarea::placeholder {
    color: rgba(73, 73, 73, 0.7);
}
.section-4__content .block-2 form .input-cont input.invalid-value{
    box-shadow: 0 0 0 2px var(--color-8);
    color: var(--color-1);
}

.section-4__content .block-2 form .input-cont:has(span.input__error-message){
    position: relative;
}

.section-4__content .block-2 form .input-cont span.input__error-message{
    position: absolute;
    bottom: -25%;
    right: 0;
    font-size: 14px;
    color: inherit;
}
.form-req-demo__form .input-cont .line {
    position: relative;
    height: 2px;
    width: 100%;
    background-color: var(--color-6);
    transition: 0.3s linear;
}
#BEEFFECTIVE .block-text .text {
    margin-bottom: 47px;
}
.input-cont-textarea textarea {
    width: 100%;
    height: 55px;
    font-size: 18px;
    padding: 15px 35px;
    background-color: #fff;
    color: rgba(73, 73, 73, 0.7);
    border: none;
    border-radius: 10px;
    outline: 0;
    resize: vertical;
    max-height: 300px;
    min-height: 55px;
}
.form-req-demo__form .btn {
    margin-bottom: 28px;
    font-size: 24px;
    width: 370px;
    height: 60px;
    background-color: var(--color-10);
}
.form-req-demo__form .text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-6);
}
.form-req-demo__response {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 24px;
    font-weight: 500;
    color: var(--color-6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s linear;
}

@media (max-width: 1800px) {
    .section-4__content{
        padding: 105px 32px
    }
    .section-4__content .block-1{
        max-width: 600px;
    }
    .section-4__content .block-2{
        max-width: 555px;
    }
    .section-4__title{
        font-size: 46px;
    }
}

@media (max-width: 1240px) {
    .section-4__content{
        padding: 42px 22px
    }
    .section-4__title{
        font-size: 36px;
    }
    .section-4__content .block-1{
        max-width: 430px;
    }
    .get-demo__img {
        max-width: 300px;
        left: 0;
        bottom: 10%
    }
    .form-req-demo__form .input-cont label{
        font-size: 14px;
        margin-bottom: 5px;
    }
    .form-req-demo__form .input-cont{
        margin-bottom: 20px;
    }
    .form-req-demo__form .text{
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .section-4__content {
        padding: 3.2258064516vw 2.8225806452vw;
        flex-direction: column;
    }
    .get-demo__img{
        display: none;
    }
    .section-4__content .block-1{
        max-width: 600px;
    }
    .section-4__content .block-2{
        margin-top: 50px;
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .section-4__content .block-1{
        margin-right: 0;
    }
    .section-4__content{
        padding: 25px;
        border-radius: 15px;
    }
    .section-4__title{
        font-size: 26px;
    }
    .section-4__content .block-1 .subtitle{
        font-size: 16px;
    }
    .form-req-demo__form .btn {
        margin: 18px auto;
        font-size: 22px;
        width: 100%;
        height: 62px;
    }
}

@media (max-width: 480px) {
    .section-4__title{
        font-size: 24px;
        margin: 0;
    }
    .section-4__content .block-1 .subtitle{
        font-size: 10px;
        margin: 10px 0 20px;
    }
    .section-4__content{
        border-radius: 10px;
        padding: 25px 10px;
    }
    .form-req-demo__form .input-cont{
        margin-bottom: 15px;
    }
    .form-req-demo__form .input-cont input{
        font-size: 12px;
        margin: 5px 0 0 0;
        padding: 10px 15px;
        border-radius: 5px;
    }
    .form-req-demo__form .input-cont label{
        font-size: 10px;
    }
    .input-cont-textarea textarea{
        font-size: 12px;
        margin-top: 5px;
        padding: 10px 15px;
        border-radius: 5px;
        height: 80px;
    }
    .form-req-demo__form .btn {
        margin: 18px auto;
        font-size: 15px;
        width: 100%;
        height: 54px;
    }
    .form-req-demo__form .text{
        font-size: 8px;
    }
}

#header,
.video-about-container {
    position: fixed;
    top: 0;
    left: 0;
}
#header.scroll .container {
    padding-top: 10px;
    padding-bottom: 10px;
}

.header .nav-arrow path{
	transition: .3s;
}
@media (max-width: 1800px) {
    #header.scroll .container {
        padding-top: 17.2px;
        padding-bottom: 17.2px;
    }
}
@media (max-width: 768px) {
    #header.scroll .container {
        padding-top: 2.6041666667vw;
        padding-bottom: 2.6041666667vw;
    }
}
@media (max-width: 480px) {
    #header.scroll .container {
        padding-top: 4.5138888889vw;
        padding-bottom: 4.5138888889vw;
    }
}
html.overflow {
    overflow-y: hidden;
}
.video-about-container {
    z-index: 100;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.6s linear;
}
.video-about-container.show {
    visibility: visible;
    opacity: 1;
}
.video-about-container .video-about {
    position: relative;
    width: 80%;
    height: 80%;
}
@media (max-width: 768px) {
    .video-about-container .video-about {
        width: calc(100% - 3.90625vw);
    }
}
@media (max-width: 480px) {
    .video-about-container .video-about {
        width: calc(100% - 9.0277777778vw);
    }
}
.video-about-container .video-about__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    transform: translate(100%, -100%);
    cursor: pointer;
}
@media (max-width: 1800px) {
    .video-about-container .video-about__close {
        width: 43px;
        height: 43px;
    }
}
@media (max-width: 768px) {
    .video-about-container .video-about__close {
        width: 5.2083333333vw;
        height: 5.2083333333vw;
    }
}
@media (max-width: 480px) {
    .video-about-container .video-about__close {
        width: 7.5231481481vw;
        height: 7.5231481481vw;
    }
}
.video-about-container .video-about__close::after,
.video-about-container .video-about__close::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 2px;
    width: 100%;
    background-color: var(--color-1);
}
.video-about-container .video-about__close::after {
    transform: translate(-50%, -50%) rotate(45deg);
}
.video-about-container .video-about__close::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.main-content {
    max-width: 100vw;
    min-height: 100vh;
}
.main-content .block-text .title {
    margin-bottom: 30px;
    color: var(--color-6);
}
@media (max-width: 1800px) {
    .main-content .block-text .title {
        margin-bottom: 25.8px;
    }
    .main-content{
        overflow: hidden;
    }
}
@media (max-width: 768px) {
    .main-content .block-text .title {
        margin-bottom: 2.6041666667vw;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .main-content .block-text .title {
        margin-bottom: calc(100vw / 13.5);
        font-size: calc(100vw / 16);
    }
}
.main-content .block-text .subtitle {
    font-size: 24px;
    line-height: 2;
    font-weight: 700;
    color: #333333;
    text-align: left;
}
@media (max-width: 1800px) {
    .main-content .block-text .subtitle {
        font-size: 20.64px;
    }
}
@media (max-width: 768px) {
    .main-content .block-text .subtitle {
        margin-bottom: calc(100vw / 96);
        font-size: calc(100vw / 34.9);
        line-height: 1.3;
    }
}
@media (max-width: 480px) {
    .main-content .block-text .subtitle {
        margin-bottom: calc(100vw / 20);
        font-size: calc(100vw / 20);
        text-align: center;
    }
}
.main-content .block-text .text {
    font-size: 22px;
    color: #494949;
    line-height: 1.3;
    max-width: 600px;
}
@media (max-width: 1800px) {
    .main-content .block-text .text {
        font-size: 18.92px;
    }
}

@media (max-width: 768px) {
    .main-content .block-text .text {
        font-size: 2.0833333333vw;
    }
}
@media (max-width: 480px) {
    .main-content .block-text .text {
        font-size: 4.212962963vw;
    }
}

.video-block{
    position: relative;
    z-index: 5;
}

.video-block__wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    width: 100%;
    height: 760px;
    background-color: #333333;
    background-image: url('../images/home_page/video-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.video-block__wrap::before {
    width: 100.2%;
    height: 100.5%;
    background: linear-gradient(135deg, #F51365, #FB503B);
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: inherit;
    z-index: -1;
}

.video-block__wrap .yt-video{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: .2s linear;
}

.video-block__wrap.isPlaying .yt-video{
    z-index: 1;
    opacity: 1;
}

.video-block__button {
    border: none;
    background-color: transparent;
    cursor: pointer;
}

.video-block__button > img{
    max-width: 134px;
}

.video-block__text {
    font-size: 24px;
    line-height: 1.3;
    color: #F1F3F6;
    font-weight: 400;
    margin-top: 50px;
    font-family: Gilroy, Arial, Helvetica, sans-serif;
}

@media screen and (max-width: 1800px) {
    .video-block__wrap {
        height: 514px;
    }
    .video-block__button > img{
        max-width: 107px;
    }
    .video-block__text{
        margin-top: 30px;
    }
}
@media screen and (max-width: 1024px) {
    .video-block__wrap {
        height: 400px;
        border-radius: 10px;
    }
    .video-block__button > img{
        max-width: 75px;
    }
    .video-block__text{
        font-size: 16px;
        margin-top: 30px;
    }
}
@media screen and (max-width: 768px) {
    .video-block__wrap {
        padding: 14vw 0;
        height: auto;
    }
    .video-block__button img {
        width: 84px;
        height: 84px;
    }
}
@media screen and (max-width: 480px) {
    .video-block{
        padding-top: 50px;
    }
    .video-block__wrap{
        border-radius: 10px;
    }
    .video-block__wrap::before{
        width: 100.6%;
        height: 101.2%;
    }
}

@media screen and (max-width: 768px) {
    .video-block__text {
        font-size: calc(100vw / 48);
    }
}
@media screen and (max-width: 480px) {
    .video-block__text {
        margin-top: 25px;
        font-size: 12px
    }
}
.features {
    padding: 150px 0;
    background-color: #333333;
}
@media screen and (max-width: 768px) {
    .features {
        padding: calc(100vw / 6.4) 0;
    }
}
@media screen and (max-width: 480px) {
    .features {
        padding: calc(100vw / 5) 0;
    }
}
.features__title {
    margin-bottom: 33px;
    font-weight: 600;
    font-size: 60px;
    line-height: 1.1;
    text-align: center;
    color: #fff;
}
@media (max-width: 1800px) {
    .features__title {
        font-size: 68.8px;
    }
}

@media (max-width: 768px) {
    .features__title {
        font-size: 5.859375vw;
        line-height: 1.1;
        margin-bottom: calc(100vw / 32);
    }
}
@media (max-width: 480px) {
    .features__title {
        font-size: calc(100vw / 12.5);
        margin-bottom: calc(100vw / 20);
    }
}
.features__text {
    margin: 0 auto;
    max-width: 780px;
    width: 100%;
    font-size: 26px;
    line-height: 1.4;
    color: #fff;
    text-align: center;
}
@media (max-width: 1800px) {
    .features__text {
        font-size: 25.8px;
        margin-bottom: 51.6px;
    }
}
@media (max-width: 768px) {
    .features__text {
        font-size: calc(100vw / 29.5);
        margin-bottom: calc(100vw / 12);
    }
}
@media (max-width: 480px) {
    .features__text {
        font-size: calc(100vw / 20);
        margin-bottom: calc(100vw / 8);
    }
    .intro__btns {
        display: flex;
        align-items: center;
    }
}
.section-5 {
    margin-top: 0;
}

.beeffective__title {
    max-width: 830px;
    width: 100%;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    font-size: 60px;
    line-height: 1.1;
    text-align: center;
    color: #333333;
}
@media screen and (max-width: 768px) {
    .beeffective__title {
        margin-bottom: calc(100vw / 32);
        font-size: 5.859375vw;
    }
}
@media screen and (max-width: 480px) {
    .beeffective__title {
        margin-bottom: calc(100vw / 20);
        font-size: calc(100vw / 12.5);
    }
}
.beeffective__text {
    margin-bottom: 64px;
    font-size: 22px;
    line-height: 1.3;
    text-align: center;
    color: #333333;
}
@media screen and (max-width: 768px) {
    .beeffective__text {
        margin-bottom: calc(100vw / 19);
        font-size: calc(100vw / 48);
    }
}
@media screen and (max-width: 480px) {
    .beeffective__text {
        margin-bottom: calc(100vw / 13.5);
        font-size: calc(100vw / 20);
    }
}

/* svg animate */
@keyframes draw {
    from {
        stroke-dashoffset: var(--stroke-lenght);
        fill: transparent;
        transform: var(--transform-set);
    }
    to {
        stroke-dashoffset: 0;
        transform: var(--transform-def);;
        fill: var(--fill);
        opacity: 1;
    }
}

.strategies__item path{
    stroke-dasharray: var(--stroke-lenght);
    stroke-dashoffset: var(--stroke-lenght);
    fill: var(--fill); 
    stroke: var(--fill);
}

.strategies__item:hover path {
    animation: draw 2s linear forwards;
}

/* retargeting */

.strategies__item.retargeting path {
    --fill: #F96536;
    --stroke-lenght: 847;
}
.strategies__item.retargeting path.arrow{
    --transform-def: translate(0%, 0%);
    --transform-set: translate(20%, -20%);
    transform: var(--transform-def);
}
.strategies__item.retargeting:hover path.arrow{
    animation: draw .3s ease-in-out forwards;
}

/* user-acquisition */

.strategies__item.user-acquisition path {
    --fill: #FC466F;
    --stroke-lenght: 510;
}

.strategies__item.user-acquisition path.line{
    --transform-def: translate(0%, 0%);
    transform: var(--transform-def);
}

.strategies__item.user-acquisition path.line-1{
    --transform-set: translate(30%, 0%);
}
.strategies__item.user-acquisition path.line-2{
    --transform-set: translate(-10%, 15%);
}
.strategies__item.user-acquisition path.line-3{
    --transform-set: translate(-12%, -16%);
}

.strategies__item.user-acquisition:hover path.line{
    opacity: 0;
    stroke-width: 0;
    animation: draw 1s .5s ease-in-out forwards;
}

/* brandformance */

.strategies__item.brandformance path {
    --fill: #55BC6F;
    --stroke-lenght: 206;
}

.strategies__item.brandformance g.d-part{
    --transform-def: scale(1.2);
    --transform-set: scale(1);
    transform: var(--transform-set);

}

.strategies__item.brandformance:hover g.d-part path{
    animation: draw 1s ease-in-out forwards;
    transform-origin: 60% 40%;
}

/* media-ads */

.strategies__item.media-ads path {
    --fill: #B888F8;
    --stroke-lenght: 206;
}

.strategies__item.media-ads path.ray{
    --transform-def: translate(0%, 0%);
    transform: var(--transform-def);
}

.strategies__item.media-ads path.ray-1{
    --transform-set: translate(30%, 5%);
}
.strategies__item.media-ads path.ray-2{
    --transform-set: translate(-30%, 5%);
}
.strategies__item.media-ads path.ray-3{
    --transform-set: translate(30%, -5%);
}
.strategies__item.media-ads path.ray-4{
    --transform-set: translate(0%, 20%);
}
.strategies__item.media-ads path.ray-5{
    --transform-set: translate(-30%, -5%);
}

.strategies__item.media-ads:hover path.ray{
    opacity: 0;
    stroke-width: 0;
}

.strategies__item.media-ads:hover path.ray-3{
    animation: draw .2s 1.5s ease-in-out forwards;
}
.strategies__item.media-ads:hover path.ray-1{
    animation: draw .2s 1.4s ease-in-out forwards;
}
.strategies__item.media-ads:hover path.ray-4{
    animation: draw .2s 1.3s ease-in-out forwards;
}
.strategies__item.media-ads:hover path.ray-2{
    animation: draw .2s 1.1s ease-in-out forwards;
}
.strategies__item.media-ads:hover path.ray-5{
    animation: draw .2s 1s ease-in-out forwards;
}