html{
    font-size: 16px;
    overflow-x: hidden;
    overflow-y: auto;
}

:root {
    --white: #fff;
    --black: #141414;
    --font-c1: #32325d;
    --font-c2: #525f7f;
    --font-c3: #3f3f67;
    --font-c4: #9e9fc8;
    --font-c5: #a6a7d3;
    --accent-color: #FF6B00;
    --sub-title: 32px;
    --title-last-sec: 37px;
    --text-last-sec: 16px;
    --lr-text: 22px;
    --text: 18px;
    --sm-text: 14px;
    --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: 52px;
        --h1-text: 20px;
        --h2-title: 32px;
        --h2-text: 18px;
        --case-title: 32px;
        --case-text: 18px;
    }
}

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

@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;
        /* --h2-title: 24px;
        --h2-text: 16px;
        --case-title: 24px;
        --case-text: 16px; */
    }
}

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%;
}
@media (max-width: 1230px){
    .section{
        padding-top: 60px;
    }
}

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

.bg-item{
    position: absolute;
}

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

.btn {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

@keyframes rotation {
    0%{
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100%{
        transform: translate(-50%, -50%) rotate(var(--direction));
    }
}

@keyframes newsLine {
    0%{
        transform: translateY(var(--start));
    }
    100%{
        transform: translateY(var(--end));
    }
}

@keyframes floating{
    0%{
        transform: rotate(0) scale(1);
    }
    50%{
        transform: rotate(-10deg) scale(1.05);
    }
    100%{
        transform: rotate(-20deg) scale(1);
    }
}

@keyframes seesaw {
    0%{
        transform: translateX(var(--start)) rotate(-20deg);
    }
    100%{
        transform: translateX(var(--end)) rotate(-20deg);
    }
}

@keyframes wave {
  0%   { transform: translateY(0px) }
  100% { transform: translateY(var(--waveY)) }
}

@keyframes waveSwing {
  0%   { transform: rotate(21deg) translate(0, 0); }
  25%  { transform: rotate(21deg) translate(-2%, 2%)}
  50%  { transform: rotate(21deg) translate(-5%, 0)}
  75%  { transform: rotate(21deg) translate(-2%, -2%)}
  100% { transform: rotate(21deg) translate(0, 0); }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.section figure {
    display: inline-flex
}

.wrapper-section {
    overflow: hidden
}

.wrapper-section.wr-sec-5-6 {
    margin-top: -300px
}

.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%;
}

/* ==case width & bg */

.swiper.case__wrapper{
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
    margin-bottom: 40px;
    padding-left: 240px;
}

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

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

@media (max-width: 1440px){
    .swiper.case__wrapper{
        width: 1680px;
    }
}
@media (max-width: 1230px){
    .swiper.case__wrapper{
        width: 1425px;
    }
}
@media (max-width: 964px){
    .swiper.case__wrapper{
        width: 1200px;
    }
}
@media (max-width: 730px){
    .swiper.case__wrapper {
        width: 100%;
        padding-left: 0;
        left: 0;
        transform: none;
        margin-bottom: 0;
    }
}
@media (max-width: 450px) {
    .case__bg{
        width: 170%;
    }
}

/* ============= */

.intro {
    position: relative;
    min-height: 130vh;
    background-color: #1F2144;
    padding-top: 0;
}

.intro__fixed{
    position: sticky;
    z-index: 99;
    padding-top: 126px;
    padding-bottom: 80px;
    overflow: hidden;
    width: 100%;
    top: 0;
    background-color: #1F2144;
    min-height: 100vh;
    background: url(../images/home/intro/intro-bg.jpg) center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.intro__item{
    opacity: 0;
}

.intro__item.swiper-slide-active{
    opacity: 1;
    transition: .3s .3s linear;
}

.intro__wrapper{
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* .intro__bg{

} */

/* .intro__bg::after{
    width: 200px;
    box-shadow: 0px 0px 220px 140px #422388;
    top: 1000px;
    left: unset;
    right: 500px;
} */

/* .intro__bg-wrapper{
    width: 2050px;
    position: absolute;
    right: -760px;
    top: -100px;
    transform: rotate(-22deg);
} */

/* .intro__bg-wrapper{
    height: 100%;
    position: relative;
} */

/* .intro__bg-wrapper::before{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    box-shadow: 600px 0px 300px 0px #1F2144 inset;
} */

/* .intro__bg-wrapper video{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
} */
/* .intro__bg-wrapper img{
    width: 100%;
} */

.intro__title{
    margin-top: 40px;
    color: var(--black);
    margin-bottom: 40px;
}

.intro__subtitle{
    line-height: 1.1;
    max-width: 1020px;
    margin-top: 20px;
}

.intro__content{
    margin-top: 64px;
    max-width: 1000px;
}

.intro__content-wrapper{
    position: relative;
}

.intro__content picture{
    max-width: 1110px;
    width: 100%;
    position: absolute;
    top: 114px;
    left: -34px;
}

.intro__content picture img{
    width: 100%;
}

.intro__btn{
    max-width: 254px;
}

.intro__line{
    min-height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
}

.intro__track-item{
    margin-left: 80px;
}

.intro__stat{
    display: flex;
    align-items: center;
    /* width: 232px; */
    width: fit-content;
    color: var(--white);
}

.intro__stat-nums{
    position: relative;
    font-size: 50px;
    font-weight: 500;
}

.intro__stat-nums--icon{
    padding-right: 25px;
}

.intro__stat-nums svg{
    position: absolute;
    top: 8%;
    right: 0;
}

.intro__stat-text{
    text-wrap: nowrap;
    margin-left: 10px;
    font-size: 18px;
    font-weight: 400;
}

/* Контейнер табов */
#guaranteesTabs,
#introTabs{
    display:flex;
    gap:20px;
    align-items:center;
}

/* Убиваем стандартные кружки-буллеты */
#guaranteesTabs .swiper-pagination-bullet,
#introTabs .swiper-pagination-bullet{
    width:auto; 
    height:auto; 
    background:transparent; 
    opacity:1; 
    border-radius:0; 
    margin:0; 
    padding:0;
}

/* Кнопка-таба занимает одинаковую ширину */
.guarantees__tab,
.intro__tab{ 
    flex:1 1 auto;
    background:none;
    border:0;
    padding:0;
    cursor:pointer;
    max-width: 50px;
    transition: .2s linear;
}
#guaranteesTabs .swiper-pagination-bullet-active,
#introTabs .swiper-pagination-bullet-active{
    max-width: 220px;
    width: 100%;
}

/* Полоска и заливка */
.guarantees__tab-bar,
.intro__tab-bar{ 
    display:block;
    height: 4px;
    background: rgba(249, 55, 144, 0.3);
    border-radius:999px;
    overflow:hidden;
}
.guarantees__tab-fill,
.intro__tab-fill{ 
    display:block;
    width: 100%;
    height: 100%;
    background:var(--white);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform .1s linear;
}

.intro__tab-bar{
    background: rgb(120, 122, 129, 30%);

}

.intro__tab-fill{
    background:var(--btn-color-1);
}

/* ecosystem */

.ecosystem__title{
    margin-bottom: 50px;
}

.ecosystem__suptitle{
    font-size: 30px;
    color: var(--btn-color-1);
    margin-bottom: 20px;
}

.ecosystem__case{
    position: relative;
    color: var(--white);
    padding: 70px;
    min-height: 480px;
    border-radius: 50px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.ecosystem__case-title{
    margin-bottom: 20px;
}

.ecosystem__case-title,
.ecosystem__case-text{
    color: var(--white);
}

.ecosystem__case-3 .ecosystem__case-title,
.ecosystem__case-3 .ecosystem__case-text{
    color: var(--black);
}

.ecosystem__case-text{
    max-width: 460px;
    font-size: 24px;
}

.ecosystem__count{
    margin-top: auto;
    font-size: 26px;
    font-weight: 500;
    opacity: 0.6;
    margin-top: auto;
}

.ecosystem__count span{
    font-size: 22px;
}

/* .decisions */

.decisions__list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.decisions__item{
    padding: 40px 40px 60px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 80%);
    min-height: 520px;
    box-shadow: 0px 0px 0px 2px #fff inset;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    display: flex;
    flex-direction: column;
}

.decisions__item-1{
    background-image: url('../images/home/decisions/decisions-1.png');
    justify-content: flex-end;
}
.decisions__item-2{
    background-image: url('../images/home/decisions/decisions-2.png');
}
.decisions__item-3{
    background-image: url('../images/home/decisions/decisions-3.png');
}
.decisions__item-4{
    background-image: url('../images/home/decisions/decisions-4.png');
}
.decisions__item-5{
    background-image: url('../images/home/decisions/decisions-5.png');
}
.decisions__item-6{
    background-image: url('../images/home/decisions/decisions-6.png');
}

.decisions__item-title{
    font-size: 30px;
    margin-bottom: 20px;
}

.decisions__item-text{
    font-size: 20px;
    color: #787A81;
    font-weight: 500;
    line-height: 1.2;
}

/* analytics */

.analytics{
    position: relative;
    z-index: 5;
    background-color: #F8F9FF;
    padding-top: 100px;
}
.analytics__wrapper{
    display: flex;
    justify-content: space-between;
}
.analytics__info{
    margin-top: 90px;
    max-width: 655px;
}
.analytics__visual{
    position: relative;
    min-height: 540px;
    width: 620px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.analytics__visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.analytics__visual-bg img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.analytics__visual-mid{
    position: relative;
    border-radius: 30px;
    padding: 46px 85px;
    box-shadow: 0px 0px 0px 2px rgba(120, 122, 129, 30%);
    transition: .5s ease-in-out;
}

.analytics__visual-mid.active{
    box-shadow: 0px 0px 20px -10px #6103AC;
}

.analytics__visual-logo{
    max-width: 186px;
}

.analytics__visual-logo img{
    width: 100%;
}

.analytics__item{
    height: 100vh;
}
.analytics__item:last-of-type{
    height: auto;
}
.analytics__list{
    display: flex;
    flex-direction: column;
}
.analytics__title{
    margin-bottom: 20px;
}
.analytics__text{
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 500;
}
.analytics__desc{
    font-size: 20px;
    color: #787A81;
    margin-bottom: 20px;
}
.analytics__btn{
    max-width: 287px;
}
.analytics__visual-cube{
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.2) inset, 
                0px 0px 20px rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 22px;
    filter: grayscale(0.7);
    transition: .2s ease-in-out;
    width: 88px;
    height: 88px;
}

.analytics__visual-cube span{
    display: inline-block;
    padding: 3px 11px;
    border-radius: 20px;
    background-color: var(--white);
    font-size: 15px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, -5px) scale(0.95);
    font-weight: 500;
    box-shadow: 10px 0px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: .2s ease-in-out;
}

.analytics__visual-cube.active span,
.analytics__visual-cube:hover span{
    transform: translate(-50%, 0) scale(1);
    opacity: 1;
}

.analytics__visual-cube.active,
.analytics__visual-cube:hover {
    filter: grayscale(0);
    box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.2) inset, 
                0px 0px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.analytics__visual-cube a{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.analytics__visual-cube.formats{
    color: #FF69C8;
    background-image: url('../images/home/analytics/analytic-formats.png');
    top: -150px;
    left: 15px;
}
.analytics__visual-cube.audience{
    color: #1984CB;
    background-image: url('../images/home/analytics/analytic-audience.png');
    top: -150px;
    right: 15px;
}
.analytics__visual-cube.places{
    color: #13BAA7;
    background-image: url('../images/home/analytics/analytic-places.png');
    top: 50%;
    transform: translateY(-50%);
    right: -156px;
}
.analytics__visual-cube.context{
    color: #6103AC;
    background-image: url('../images/home/analytics/analytic-context.png');
    bottom: -140px;
    right: 15px;
}
.analytics__visual-cube.moments{
    color: #E36C03;
    background-image: url('../images/home/analytics/analytic-moments.png');
    bottom: -140px;
    left: 15px;
}
.analytics__visual-cube.customization{
    color: #03B1F7;
    background-image: url('../images/home/analytics/analytic-customization.png');
    top: 50%;
    transform: translateY(-50%);
    left: -156px;
}

.analytics__visual-list{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.analytics__visual{
    position: sticky;
    top: 140px;
}

.analytics__visual > svg{
    position: absolute;
    top: 0;
    left: 0;
}

.analytics__visual .line,
.analytics__visual .line-grad{
    position: absolute;
    z-index: -1;
}

.analytics__visual .line-grad path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 1s linear;
  pointer-events: none;
}

.analytics__visual .line-grad-1,
.analytics__visual .line-1{
    top: -108px;
    left: 38%;
    transform: translateX(-50%);
}
.analytics__visual .line-grad-2,
.analytics__visual .line-2{
    top: -108px;
    right: 38%;
    transform: translateX(50%);
}
.analytics__visual .line-grad-3,
.analytics__visual .line-3{
    top: 50%;
    right: -72px;
    transform: translateY(-50%);
}
.analytics__visual .line-grad-4,
.analytics__visual .line-4{
    bottom: -96px;
    right: 38%;
    transform: translateX(50%);
}
.analytics__visual .line-grad-5,
.analytics__visual .line-5{
    bottom: -96px;
    left: 38%;
    transform: translateX(-50%);
}
.analytics__visual .line-grad-6,
.analytics__visual .line-6{
    top: 50%;
    left: -72px;
    transform: translateY(-50%);
}

/* @media (max-width: 1440px){
    .analytics__visual{
        transform: scale(0.9);
    }
    .analytics{
        padding-top: 80px;
        padding-bottom: 60px;
    }
}

@media (max-width: 1230px){
    .analytics__visual{
        transform: scale(0.8);
    }
    .analytics__visual{
        max-width: 450px;
    }
    .analytics{
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (max-width: 964px){
    .analytics{
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .analytics__visual .line-grad-1, .analytics__visual .line-1 {
        top: 225px;
        left: 80px;
        transform: rotateY(180deg);
    }
    .analytics__visual .line-grad-3, .analytics__visual .line-3 {
        top: -5px;
        left: 238px;
        transform: rotate(90deg) rotateX(-180deg);
    }
    .analytics__visual .line-grad-2, .analytics__visual .line-2 {
        top: -5px;
        left: 175px;
    }
    .analytics__visual .line-grad-4, .analytics__visual .line-4 {
        top: 78px;
        left: 412px;
        transform: rotate(180deg);
    }
    .analytics__visual-cube.fmcg{
        transform: translate(90px, -80px);
    }
    .analytics__visual-cube.auto-m{
        transform: translate(110px, -78px);
    }
    .analytics__visual-cube.it{
        transform: translate(110px, -78px);
    }
    .analytics__visual {
        max-width: 250px;
        height: 400px;
    }
    .analytics__visual {
        transform: scale(0.6) translateX(-70%);
    }
    .analytics__visual-cube{
        background-color: rgba(255, 255, 255, 1);
    }
}

@media (max-width: 730px){
    .analytics{
        padding-top: 60px;
    }
    .analytics__wrapper{
        flex-direction: column;
    }
    .analytics__visual{
        width: 100%;
        max-width: 100%;
    }
    .analytics__visual {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: scale(0.8) translate(-70%, -70%) rotate(90deg);
    }
    .analytics__visual-cube{
        transform: scale(1) rotate(-90deg);
    }
    .analytics__visual-cube.active,
    .analytics__visual-cube:hover {
        transform: scale(1.05) rotate(-90deg);
    }
    .analytics__visual-cube.fmcg{
        transform: translate(90px, -80px) rotate(-90deg);
    }
    .analytics__visual-cube.auto-m{
        transform: translate(110px, -78px) rotate(-90deg);
    }
    .analytics__visual-cube.it{
        transform: translate(110px, -78px) rotate(-90deg);
    }
    .analytics__info{
        margin-top: 0;
    }
}

@media (max-width: 500px){
    .analytics__visual{
        transform: scale(0.65) translate(-85%, -85%) rotate(90deg);
    }
    .analytics__visual{
        height: 340px;
    }
}

@media (max-width: 450px){
    .analytics__title{
        max-width: 360px;
    }
    .analytics__desc br{
        display: none;
    }
    .analytics__desc .br-r{
        display: block;
    }
    .analytics__desc{
        max-width: 360px;
    }
} */

/* guarantees */

.guarantees{
    background-color: #202246;
    min-height: 704px;
    padding: 0;
    margin-top: 100px;
}
.guarantees__wrapper{
    background-image: url(../images/home/guarantees/guarantees-bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 704px;
    width: 100%;
    padding-top: 100px;
    display: flex;
    justify-content: space-between;
}
.guarantees__titles{
    max-width: 600px;
    position: relative;
    z-index: 1;
}
.guarantees__suptitle{
    font-size: 30px;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 600;
}
.guarantees__title{
    color: var(--white);
}
.guarantees__tabs{
    margin-bottom: 40px;
}
.guarantees__item{
    opacity: 0;
}
.guarantees__item.swiper-slide-active {
    opacity: 1;
    transition: .3s .3s linear;
}
.guarantees__tab-bar{
    background: rgb(120, 122, 129, 30%);
}

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

.guarantees__bg::after{
    content: '';
    display: block;
    width: 370px;
    height: 0;
    box-shadow: 0px 0px 340px 100px #F93790;
    position: absolute;
    bottom: -50px;
    left: 390px;
    z-index: 6;
}

.guarantees__bg-item{
    position: absolute;
}
/* .guarantees__bg-item-1{
    bottom: -490px;
    left: -130px;
    z-index: 1;
} */

.guarantees__bg-item-2{
    top: 170px;
    left: 510px;
    z-index: 2;
}

.guarantees__bg-item-3{
    top: 140px;
    left: 580px;
    z-index: 3;
}

/* guarantees cards */
.guarantees__cards{
    overflow-y: scroll;
    max-width: 720px;
    width: 100%;
    height: 500px;
    position: relative;
    top: -50px;
    z-index: 4;
    cursor: n-resize;
    /* box-shadow: 0px 30px 30px 0px #202246 inset, 0px -30px 30px 0px #202246 inset; */
}

.guarantees__cards::before,
.guarantees__cards::after{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100px;
    left: 0;
}

.guarantees__cards::before{
    top: 0;
    box-shadow: 0px 150px 20px -100px #202246 inset;
}
.guarantees__cards::after{
    bottom: 0;
    box-shadow: 0px -150px 50px -100px #202246 inset;
;
}

.guarantees__cards-wrapper{
    height: 500px;
    padding: 50px 0;
    overflow-y: scroll;
    scrollbar-width: none;
}

.guarantees__cards::-webkit-scrollbar {
  display: none; 
}

/* .guarantees__cards::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0px 50px 30px -20px #202246 inset, 0px -50px 30px -20px #202246 inset;
    box-shadow: 0px 10px 0px 0px red inset, 0px -10px 0px 0px red inset;
} */

.guarantees__cards-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guarantees__card{
    height: 350px;
    max-width: 700px;
    margin-left: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0px 0px 0px 2px rgba(255, 255, 255, 0.2) inset,0px 0px 10px 0px rgba(0, 0, 0, 0.1) inset;
    padding: 50px 50px 50px 70px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.guarantees__card-text{
    font-size: 20px;
    color: var(--white);
    line-height: 1.2;
    font-weight: 400;
}

.guarantees__card-person{
    display: flex;
    gap: 40px;
    align-items: center;
}

.guarantees__card-photo{
    width: 68px;
}

.guarantees__card-photo img{
    width: 100%;
}

.guarantees__card-info{
    display: flex;
    flex-direction: column;
    color: var(--white);
    gap: 5px;
}

.guarantees__card-name,
.guarantees__card-seat{
    font-size: 20px;
    line-height: 1;
}


/* casebook */

.casebook{
    overflow: hidden;
    position: relative;
    z-index: 4;
}
.casebook__logo{
    position: absolute;
    top: 50px;
    left: 60px;
}
.casebook__logo img {
    width: 100%;
}
.casebook__case{
    position: relative;
    color: var(--white);
    padding: 53px 80px 67px 60px;
    min-height: 400px;
    border-radius: 40px;
    background-size: cover;     
    display: flex;
    align-items: end;
    justify-content: space-between;
    overflow: hidden;
}

.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__text-box-f{
    align-items: baseline;
    margin-bottom: 40px;
}
.casebook__btn{
    align-self: flex-start;
}
.casebook__tag{
    display: inline-block;
    margin-bottom: 30px;
    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: -25px;
    font-weight: 500;
    line-height: 1;
    border-bottom: 2px solid var(--white);
    font-size: 22px;
}
.casebook__link::before{
    content: "";
    display: inline-block;
    width: 17px;
    height: 17px;
    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: -25px;
    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;
    margin-top: 20px;
}

.casebook__slider-btn.swiper-button-prev,
.casebook__slider-btn.swiper-button-next{
    position: inherit;
    height: 12px;
    width: 6px;
    margin: 0;
    left: 0;
}

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

@media (max-width: 1230px){
    .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){
    .casebook__case{
        min-height: 346px;
        padding: 25px 25px 40px
    }
    .casebook__logo{
        top: 25px;
        left: 25px;
    }
}

@media (max-width: 730px){ 
    .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;
    }
}

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

/* partners */

.partners{
    position: relative;
    background-color: #F8F9FF;
    z-index: 1;
    min-height: 260px;
    box-shadow: 0px 30px 60px 10px #F8F9FF;
}

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

.partners__logo{
    font-size: 0;
    max-width: 105px;
    margin-bottom: 30px;
}

.partners__logo .hybrid-logo{
    width: 100%;
    height: 32px;
    fill: var(--btn-color-1);
}

.partners__block-elems{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partners__list{
    display: flex;
    gap: 20px;
}

.partners__list-1{
    margin-left: -45px;
}

.partners__item{
    background-color: var(--white);
    width: 220px;
    height: 120px;
    border-radius: 20px;
    box-shadow: 0px 5px 45px rgba(0, 0, 0, 10%);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .1s ease-in-out;
    will-change: transform;
}

.partners__item:hover{
    transform: scale(1.01);
}

@media (max-width: 1230px){

}

@media (max-width: 964px){

}

@media (max-width: 450px) {

}

/* contact */

.contact{
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}
.contact__wrapper{
    position: relative;
    display: flex;
    align-items: center;
    padding: 50px;
    border-radius: 40px;
    gap: 90px;
    min-height: 550px;
    background-color: #fff;
    overflow: hidden;
}
.contact__bg{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}
.contact__bg img{
    width: 100%;
}
.contact__title{
    margin-bottom: 20px;
}
.contact__form-block{
    max-width: 590px;
    width: 100%;
}
.contact-form fieldset{
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.form__field{
    width: 100%;
    font-size: 20px;
    color: var(--black);
    padding-bottom: 9px;
    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 {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    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;
}

.check__box-text a{
    color: var(--btn-color-1);
    box-shadow: 0px 1px 0px 0px var(--btn-color-1);
}

.form__send-btn{
    min-width: 150px;
}

@media (max-width: 1440px) {
    .contact__wrapper{
        background-image: url('../images/home/svg/contact-bg-1200.svg');
    }
    .form__field{
        font-size: 20px;
    }
    .contact__wrapper::before{
        right: 40px;
        top: 30px;
    }
}

@media (max-width: 1230px) {
    .contact{
        padding-bottom: 60px;
    }
    .contact__wrapper {
        background-image: url('../images/home/svg/contact-bg-944.svg');
        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;
    }
}

@media (max-width: 964px) {
    .contact__wrapper {
        background-image: url('../images/home/svg/contact-bg-720.svg');
        min-height: 874px;
        padding: 118px 80px 80px;
    }
    .contact__wrapper::before{
        right: 40px;
    }
}

@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__wrapper{
        padding: 80px 20px 65px;
        background-image: url("../images/home/svg/contact-bg-425.svg");
        background-color: transparent;
        min-height: 710px;
        border-radius: 30px;
        gap: 20px;
        justify-content: space-between;
    }
    .contact__wrapper::before{
        top: 16px;
        right: 30px;
        font-size: 18px;
    }
    .contact__text{
        font-size: 18px;
    }
    .check__box{
        min-width: 25px;
        height: 25px;
    }
    .check__box-text{
        font-size: 14px;
    }
    .form__send-btn{
        width: 100%;
    }
}