:root{
    --color-primary-dark: #000000;
    --color-secondary-dark: #191919;
    --color-primary-light: #FFFFFF;
    --color-accent: #F55B28;
    --color-accent-2: #3676EF;
    --bg-element: rgba(255, 255, 255, 0.5);
    --color-gray: #c0c0c0;

    --shadow: inset 0 1px 4px 0 rgba(255, 255, 255, 0.25), 0 9px 9px 0 rgba(0, 0, 0, 0.1);

    --col-gap: 24px;
    --container-padding: 15px;
    --border-radius: 16px;

    --color-error: #A04949;
}

@media ( max-width: 1024px ){
    :root{
        --col-gap: 12px;
    }
}

@media ( min-width: 1440px ) {
    :root{
        --container-padding: 60px;
    }
}


@font-face {
    font-family: 'LT Superior';
    src: url('../fonts/LT_superior/LTSuperior-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'LT Superior';
    src: url('../fonts/LT_superior/LTSuperior-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'LT Superior';
    src: url('../fonts/LT_superior/LTSuperior-Semibold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'LT Superior';
    src: url('../fonts/LT_superior/LTSuperior-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}


html{
    scroll-padding-top: 50px;
}
  

body{
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'LT Superior', sans-serif;
    color: var(--color-secondary-dark);
}

body::-webkit-scrollbar {
    width: 6px;
    border-radius: 8px;
    background-color: #ffffff;
}
body::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background: linear-gradient(157deg, #b3d0ff 0%, #3676ef 100%);
}

main.main{
    background: #F6F6F4;
    border-radius: 0 0 80px 80px;
    padding-bottom: 100px;
}
@media ( max-width: 991.95px ){
    main.main{
        border-radius: 0 0 40px 40px;
    }
}

*{
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}
*:focus {
    outline:none !important;
}

::selection{
    background-color: #f7aa4a;
}

h1, h2, h3, h4, h5, h6{
    font-weight: 500;
}

img{
    max-width: 100%;
    height: auto;
}

[animation="opacity"]{
    opacity: 0;
}


[gradient-canvas-section]{
    display: block;
    width: 100%;
    height: 100%;
    --gradient-color-1:#83ABF0;
    --gradient-color-2:#C15125;
    --gradient-color-3:#191919;
    --gradient-color-4:#191919;
}


/* CONTAINERS */
.container {
    width: 100%;
    max-width: 1830px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.section{
    padding-top: clamp(24px, 5vw, 80px);
    padding-bottom: clamp(24px, 5vw, 80px);
}


/* 
** COMPONENTS
*/


/* SECTION TITLE */
.sectionTitle{
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.03em;
    color: var(--color-primary-dark);
}

/* SECTION UP TITLE */
.sectionUpTitle{
    display: flex;
    align-items: center;
    column-gap: var(--col-gap);
    margin-bottom: clamp(20px, 5vw, 32px);
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 110%;
    letter-spacing: -0.03em;
    font-weight: 500;
}
.sectionUpTitle:before{
    --el-size: 8px;
    content: '';
    display: block;
    width: var(--el-size);
    height: var(--el-size);
    flex-shrink: 0;
    border-radius: 1px;
    background: var(--color-accent);
}


/* SECTION HEADING */
.sectionHeading{
    position: sticky;
    top: 140px;
    margin-bottom: 100px;
}
.sectionHeading__action{
    margin-top: clamp(20px, 2vw, 30px);
}
.sectionHeading__desc{
    margin-top: 12px;
    max-width: 400px;
    font-size: clamp(13px, 2vw, 18px);
    line-height: 130%;
}

@media ( max-width: 480px ){
   .sectionHeading .btn{
    width: 100%;
   }
}

/* BTN */
.btn,
a.btn,
button.btn,
input.btn{
    --el-height: 42px;
    display: inline-flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: var(--el-height);
    line-height: var(--el-height);
    font-weight: 600;
    width: fit-content;
    border: none;
    border-radius: 12px;
    padding: .15em 22px 0 22px;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: var(--shadow);
    background: var(--bg-element);
    color: var(--color-secondary-dark);
    user-select: none;
    cursor: pointer;
}
.btn_glass{
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.btn__gradient{
    display: none;
}
@media ( hover : hover ) {
    .btn__gradient{
        display: block;
        position: absolute;
        width: 100%;
        height: 70%;
        bottom: -10px;
        left: 0;
        overflow: hidden;
        filter: blur(7px);
        opacity: 0;
        z-index: -1;
        transition: opacity .3s ease;
    }
    .btn:hover .btn__gradient{
        opacity: .6;
    }
}

@media ( max-width: 768px ){
    .btn,
    a.btn,
    button.btn,
    input.btn{
        --el-height: 50px;
    }
}

/* BTN ROUND */
.btnRound,
a.btnRound{
    --el-bg: var(--color-primary-dark);
    --el-color: var(--color-primary-light);
    --el-size: 44px;
    --el-icon-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--el-size);
    height: var(--el-size);
    background: var(--el-bg);
    color: var(--el-color);
    line-height: 100%;
    border-radius: 100%;
    padding: 10px;
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}
.btnRound img{
    width: var(--el-icon-size);
    height: var(--el-icon-size);
    position: relative;
    transition: filter .2s;
    z-index: 1;
}
.btnRound__ripple {
    position: absolute;
    background: var(--color-accent);
    border-radius: 50%;
    transform: scale(0);
    transition: .4s cubic-bezier(1, 0.92, 0, 0.24);
    pointer-events: none;
    z-index: 0;
}
@media ( hover : hover ) {
    .btnRound:hover img{
        filter: contrast(0) brightness(2);
    }
}

.btnRound_light,
a.btnRound_light{
    --el-bg: var(--color-primary-light);
    --el-color: var(--color-primary-dark);
}

@media ( max-width: 768px ){
    .btnRound,
    a.btnRound{
        --el-size: 60px;
        --el-icon-size: 32px;
   }
}

/* CARD */
.card{
    display: flex;
    flex-direction: column;
    max-width: 100%;
    padding: 20px;
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: var(--border-radius);
    text-decoration: none;
    overflow: hidden;
}
.card__title{
    margin-bottom: 12px;
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 110%;
    color: var(--color-primary-dark);
}
.card__img{
    border-radius: var(--border-radius);
    overflow: hidden;
}
.card__img img{
    display: block;
    width: 100%;
    height: auto;
}

.card.card_light .card__title{
    color: var(--color-primary-light);

}
a.card{
    transition: background .3s ease;
}
a.card:hover{
    background: rgba(255, 255, 255, 0.366);
}

/* CARD DESC */
.verticalCard{
    position: relative;
    height: 100%;
    border-radius: var(--border-radius);
    padding: 12px 12px 32px 12px;
    overflow: hidden;
    background: var(--color-primary-light);
    box-shadow: var(--shadow);
}
.verticalCard__prev{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.verticalCard__img{
    border-radius: var(--border-radius);
    overflow: hidden;
}
.verticalCard__img img{
    display: block;
    width: 100%;
    height: auto;
}
.verticalCard__title{
    margin-top: 22px;
    font-weight: 500;
    font-size: clamp(26px, 2.5vw, 36px);
    line-height: 110%;
    letter-spacing: -0.03em;
    hyphens: auto;
    color: var(--color-secondary-dark);
}
.verticalCard__modal{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 24px 32px;
    background: var(--color-primary-light);
    opacity: 0;
    transition: opacity .3s;
}
.verticalCard__desc{
    max-height: 75%;
    font-size: 15px;
    line-height: 130%;
    color: var(--color-secondary-dark);
    padding: 0 4px;
    position: relative;
    overflow-y: auto;
    z-index: 1;
}
.verticalCard__desc::-webkit-scrollbar {
    width: 4px;
    border-radius: 8px;
    background-color: #eeeeee;
}
.verticalCard__desc::-webkit-scrollbar-thumb {
    border-radius: 8px;
    background-color: #afafaf;
}
.verticalCard__gradient{
    position: absolute;
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
    overflow: hidden;
    filter: blur(26px);
}
.verticalCard__gradient canvas{
    width: 100%;
}

@media ( max-width: 1200px ){
   .verticalCard__modal{
    padding: 24px 20px;
   }
}

@media ( min-width: 1025px ) {
    .verticalCard:hover .verticalCard__modal{
        opacity: 1;
    }
    .verticalCard__btn{
        display: none;
    }
}
@media ( max-width: 1024px ) {
    .verticalCard__title{
        margin-bottom: 12px;
    }
    .verticalCard__btn{
        --el-size: 24px;
        position: relative;
        display: flex;
        width: var(--el-size);
        height: var(--el-size);
        margin-top: auto;
        margin-left: auto;
        margin-right: 8px;
        transition: transform .2s ease-out;
        z-index: 1;
    }
    .verticalCard__btn svg{
        display: block;
        width: 100%;
        height: auto;
    }
    .verticalCard_show .verticalCard__modal{
        opacity: 1;
        visibility: visible;
    }
    .verticalCard_show .verticalCard__btn{
        transform: rotate(180deg);
    }
}

@media ( max-width: 768px ){
   .verticalCard__desc{
    font-size: 16px;
   }
}


/* HORIZONTAL CARD */
.horizontalCard{
    position: relative;
    padding: 12px;
    box-shadow: var(--shadow);
    background: var(--bg-element);
    color: var(--color-secondary-dark);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.horizontalCard__grid{
    position: relative;
    display: flex;
    gap: 16px var(--col-gap);
    z-index: 1;
}
.horizontalCard__img{
    width: 220px;
    max-width: 100%;
    aspect-ratio: 1;
    flex-shrink: 0;
}
.horizontalCard__img img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.horizontalCard__content{
    display: flex;
    flex-direction: column;
    padding-top: 48px;
    padding-right: 12px;
}
.horizontalCard__upTitle{
    display: flex;
    align-items: center;
    column-gap: 8px;
    align-items: center;
    font-weight: 600;
    font-size: clamp(12px, 5vw, 14px);
    line-height: 100%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}
.horizontalCard__upTitle:before{
    --el-size: 8px;
    content: '';
    display: block;
    width: var(--el-size);
    height: var(--el-size);
    flex-shrink: 0;
    border-radius: 1px;
    background: var(--color-accent);
    transition: background .5s;
}
.horizontalCard__title{
    margin-top: 12px;
    font-weight: 500;
    font-size: clamp(18px, 5vw, 24px);
    line-height: 110%;
    letter-spacing: -0.03em;
}
.horizontalCard__desc{
    position: relative;
    margin-top: 12px;
    font-size: clamp(14px, 5vw, 15px);
    line-height: 130%;
    height: 100%;
    flex: 1;
}
.horizontalCard__descAdditional{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow-y: auto;
    opacity: 0;
}
.horizontalCard__gradient{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    filter: blur(40px);
    opacity: 0;
    transition: opacity .5s;
}
.horizontalCard__gradient canvas{
    width: 100%;
}

.horizontalCard_show .horizontalCard__gradient{
    opacity: .8;
}
.horizontalCard_show .horizontalCard__upTitle:before{
    background:var(--color-accent-2);
}
.horizontalCard_show .horizontalCard__descMain{
    opacity: 0;
}
.horizontalCard_show .horizontalCard__descAdditional{
    opacity: 1;
}

@media ( max-width: 600px ){
    .horizontalCard{
        padding-bottom: 16px;
    }
    .horizontalCard__grid{
        flex-direction: column;
    }
    .horizontalCard__content{
        padding-top: 0;
        min-height: 180px;
    }
    .horizontalCard__img{
        width: 100%;
    }
    .horizontalCard__gradient{
        height: 60px;
    }
}


/* SOC NETWORKS */
.socNetworks ul{
    display: flex;
    column-gap: 14px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}


/* HEADER */
.header{
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    transition: top .2s;
    z-index: 999;
}
.header_up{
    top: 30px;
}
.header__row{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: var(--col-gap);
    align-items: center;
}
.header__hamburger{
    display: none;
}
.header__logo{
    grid-column-start: span 2;
    align-items: center;
    display: flex;
}
.header__logo a{
    display: flex;
}
.header__nav{
    grid-column-start: span 8;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header__action{
    grid-column-start: span 2;
}
.header__action a{
    text-decoration: none;
    color: var(--color-secondary-dark);
}
.header__action .btn{
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.header_light .header__logo a{
    filter: contrast(0) brightness(2);
}
.header_light .header__action a{
    color: var(--color-primary-light);
}
.header_light .header__hamburger svg{
    filter: contrast(0) brightness(2);
}
.header_light .navMenu__menu li.menu-item a {
    color: var(--color-primary-light);
}
@media ( max-width: 991.95px ){
    .header{
        top: 20px;
    }
    .header__row{
        display: flex;
    }
    .header__logo a{
        max-width: 100px;
    }
    .header__action{
        margin-left: auto;
    }
    .header__action .btn{
        --el-height: 40px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 12px;
    }
    .header__hamburger{
        --el-size: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: var(--el-size);
        height: var(--el-size);
        box-shadow: var(--shadow);
        background: var(--bg-element);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-radius: 100%;
        overflow: hidden;
    }
}

@media ( max-width: 320px ){
    .header__logo a {
        max-width: 70px;
    }
}


/* MENU */
.navMenu{
    padding: 4px;
    height: 42px;
    border-radius: 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
}
.navMenuOpen{
    display: flex;
    align-items: center;
    justify-content: center;
}
.navMenu__close{
    display: none;
}
.navMenu__contacts{
    display: none;
}
.navMenu__menu{
    position: relative;
    height: 100%;
}
.navMenu__menu ul{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style-type: none;
    height: 100%;
    margin: 0;
    padding: 0;
}
.navMenu__menu li{
    height: 100%;
}
.navMenu__menu li.menu-item a{
    display: flex;
    align-items: center;
    padding-top: 2px;
    height: 100%;
    line-height: 100%;
    padding-left: 16px;
    padding-right: 16px;
    text-decoration: none;
    color: var(--color-secondary-dark);
    transition: color .2s;
}
@media ( hover : hover ){
    .navMenu__menu li.menu-item a:hover{
        color: var(--color-primary-dark);
    }
}
@media ( hover : none ){
    .navMenu__menu li.menu-item a:active{
        color: var(--color-accent);
    }
}
.navMenu__glider{
    position: absolute;
    background: var(--color-primary-light);
    border-radius: 12px;
    transition: .3s;
    z-index: -1;
}

@media ( max-width: 991.95px ){
    .navMenu{
        display: none;
        flex-direction: column;
        justify-content: flex-end;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 20px;
        border-radius: 0;
        backdrop-filter: unset;
        background: transparent;
        z-index: 9999;
    }
    .navMenu__bg{
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 50px;
        height: 50px;
        background: var(--color-secondary-dark);
        transform: scale(0);
        border-radius: 100%;
        z-index: -1;
    }
    .navMenu__close{
        --el-size: 32px;
        --el-padding: 5px;
        opacity: 0;
        display: block;
        width: var(--el-size);
        height: var(--el-size);
        padding: var(--el-padding);
        margin-left: calc( var(--el-padding) * -1 );
        margin-bottom: auto;
    }
    .navMenu__close svg{
        display: block;
        width: 100%;
        height: auto;
    }
    .navMenu__menu{
        height: auto;
    }
    .navMenu__menu ul{
        flex-direction: column;
        align-items: flex-start;
        row-gap: 8px;
    }
    .navMenu__menu li.menu-item{
        overflow: hidden;
    }
    .navMenu__menu li.menu-item a{
        padding: 5px 0;
        color: var(--color-primary-light);
        font-size: 36px;
        will-change: transform;
        transform: translate(0, 100%);
    }
    .navMenu__contacts{
        display: block;
        margin-top: 32px;
        opacity: 0;
    }
}


/* 
** BLOCKS
*/

/* HERO */
.hero{
    position: relative;
    padding-bottom: 40px;
    overflow: hidden;
    z-index: 1;
}
.hero__bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 880px;
    z-index: -1;
}
.hero__bg:after{
    content: '';
    display: block;
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    transform: translateY(90%) scale(1.5);
    background: linear-gradient(180deg, #c9c9c9 0%, rgb(255 255 255) 100%);
    filter: blur(20px);
    overflow: hidden;
}
.hero__bg img{
    display: block;
    width: 100%;
}
.hero__header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 280px;
    padding-bottom: 240px;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}
.hero__title{
    margin: 0;
    font-size: clamp(46px, 10vw, 100px);
    text-wrap-style: balance;
    line-height: 110%;
    font-weight: 400;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: var(--color-primary-light);
    text-align: center;
    position: relative;
    pointer-events: none;
    z-index: 1;
}
.hero__btn{
    position: absolute;
}
.hero__btn .card{
    max-width: 260px;
}
.hero__btn_left{
    left: 11%;
    top: 29%;
    transform: rotate(345deg);
}
.hero__btn_right{
    right: 13%;
    bottom: -15%;
    transform: rotate(20deg);
}
.hero__media{
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.6);
    padding: 12px;
    border-radius: var(--border-radius);
}
.hero__media video{
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

@media ( min-width: 1024px ){
   .hero__btn_left{
        animation: hero_card_left_levitation 10s ease-in-out infinite;
   }
   .hero__btn_right{
        animation: hero_card_right_levitation 10s ease-in-out infinite;
        animation-delay: 1s;
   }
   .hero__btn_left:hover, .hero__btn_right:hover{
        animation-play-state: paused;
    }
    
    @keyframes hero_card_left_levitation{
        0%{
            transform: rotate(345deg) translateY(0);
        }
        50%{
            transform: rotate(348deg) translateY(10px);
        }
        100%{
            transform: rotate(345deg) translateY(0);
        }
    }

    @keyframes hero_card_right_levitation{
        0%{
            transform: rotate(345deg) translateY(0);
        }
        50%{
            transform: rotate(348deg) translateY(-10px);
        }
        100%{
            transform: rotate(345deg) translateY(0);
        }
    }
}

@media ( min-width: 1900px ){
   .hero__btn_left{
        left: 19%;
        top: 31%;
    }
    .hero__btn_right{
        right: 21%;
        bottom: -15%;
    }
}

@media ( max-width: 1200px){
    .hero__btn_left{
        left: 6%;
    }
    .hero__btn_right{
        right: 6%;
    }
}

@media ( orientation : portrait ) and ( max-width: 991.95px ) {
    .hero__header{
        padding-top: 40vh;
        padding-bottom: 30vh;
        padding-top: 40svh;
        padding-bottom: 30svh;
    }
    .hero__title{
        max-width: 650px;
    }
    .hero__btn .card {
        width: 52vw;
        max-width: 100%;
        min-width: 170px;
    }
    .hero__btn_left{
        top: 110px;
        left: 5%;
    }
    .hero__btn_right{
        bottom: 5%;
        right: 2%;
    }
    .hero__media{
        aspect-ratio: 1;
    }
    .hero__media video{
        height: 100%;
        object-fit: cover;
    }
    .hero__bg{
        height: 100%;
    }
    .hero__bg img {
        height: 100%;
        object-fit: cover;
    }
}

@media ( max-width: 600px ){
    .hero__title{
        font-size: 7vmax;
    }
    .hero__media{
        padding: 4px;
    }
    .hero__btn_left{
        left: 40px;
    }
    .hero__btn_right{
        right: 5px;
        bottom: -5%;
    }
}

@media ( max-height: 650px ){
    .hero__btn_right{
        bottom: -15%;
    }
}

/* MARQUEE */
.marqueeLogo{
    display: flex;
    align-items: center;
    overflow-x: clip;
}
.marqueeLogo__list{
    display: flex;
    list-style-type: none;
    width: max-content;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    gap: var(--col-gap);
    padding-inline: calc( var(--col-gap) / 2 );
}
.marqueeLogo_init .marqueeLogo__list{
    -webkit-animation: marqueeLogo 20s linear infinite;
    animation: marqueeLogo 20s linear infinite;
}

.marqueeLogo__item{
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
}
.marqueeLogo__item img{
    display: block;
    width: auto;
    max-height: 60px;
}

@-webkit-keyframes marqueeLogo {
    from {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes marqueeLogo {
    from {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    to {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}


/* SERVICE */
.service{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: var(--col-gap);
}
.service__heading{
    grid-column: span 3;
}
.service__content{
    --el-col: 9;
    grid-column: span var(--el-col);
}
.service__list{
    display: grid;
    grid-template-columns: repeat(var(--el-col), 1fr);
    gap: clamp(24px, 4vw, 48px) var(--col-gap);
    list-style-type: none;
    margin: 0;
    padding: 0;

}
.service__item{
    grid-column: span 3;
}

@media ( max-width: 1024px ){
    .service{
        row-gap: 36px;
    }
   .service__heading,
   .service__content{
    grid-column: 1 / -1;
   }
   .service__heading .sectionHeading{
    margin-bottom: 0;
   }
}

@media ( max-width: 768px ){
    .service__list{
        --el-col: 12;
    }
    .service__item{
        grid-column: span 6;
   }
}
@media ( max-width: 600px ){
   .service__item{
    grid-column: 1 / -1;
   }
}


/* SOLUTIONS */
.solutions{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: var(--col-gap);
}
.solutions__heading{
    grid-column: span 5;
}
.solutions__content{
    grid-column: span 7;
}
.solutions__list{
    display: flex;
    flex-direction: column;
    list-style-type: none;
    margin: 0;
    padding: 0;
    row-gap: clamp(24px, 4vw, 44px);
}

@media ( max-width: 1024px ){
    .solutions{
        row-gap: 36px;
    }
   .solutions__heading,
   .solutions__content{
    grid-column: 1 / -1;
   }
   .solutions__heading .sectionHeading{
    margin-bottom: 0;
   }
}


/* ACCORDION */
.accordion{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.accordion__item{
    border-bottom: 1px solid var(--color-gray);
}
.accordion__header{
    --el-color: var(--color-secondary-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    row-gap: 10px;
    padding: clamp(20px, 5vw, 32px) 0;
    cursor: pointer;
}
.accordion__title{
    font-weight: 500;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 110%;
    letter-spacing: -0.03em;
    color: var(--el-color);
    transition: .2s;
}
.accordion__icon{
    --el-size: 32px;
    --el-icon-size: 10px;
    position: relative;
    width: var(--el-size);
    height: var(--el-size);
    flex-shrink: 0;
    border-radius: 100%;
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.5);
    overflow: hidden;
}
.accordion__icon:before{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--el-icon-size);
    height: 1px;
    background: var(--el-color);
    transition: .2s;
}
.accordion__icon:after{
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: var(--el-icon-size);
    background: var(--el-color);
    transition: .2s;
}
@media ( hover : hover ){
    .accordion__header:hover{
        --el-color: var(--color-accent);
    }
}
.accordion__content{
    height: 0;
    opacity: 0;
    padding: 0 10px;
    box-sizing: content-box;
    overflow: hidden;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 130%;
    color: var(--color-secondary-dark);
    transition: .4s;
}
.accordion__content :is( ul, ol){
    margin: 0;
    padding-left: 1em;
}
.accordion__content p{
    margin: 0;
}
.accordion__content p + p {
    margin-top: 1em;
}
.accordion__item_showed .accordion__content{
    opacity: 1;
    padding-bottom: clamp(20px, 5vw, 32px);
}
.accordion__item_showed .accordion__icon:after{
    height: 0;
}

.accordion__textWrapper{
    max-width: 800px;
}
.accordion__accentText{
    color: var(--color-accent);
    margin-top: clamp(20px, 5vw, 32px);
}

@media ( max-width: 768px ){
   .accordion__icon{
    --el-size: 40px;
   }
}


/* CONTACT FORM */
.contactForm{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 36px var(--col-gap);
}
.contactForm__heading{
    grid-column: span 5;
}
.contactForm__content{
    grid-column: span 7;
}

@media ( max-width: 1024px ){
   .contactForm__heading,
   .contactForm__content{
    grid-column: 1 / -1;
   }
   .contactForm__heading .sectionHeading{
    margin-bottom: 0;
   }
}


/* FORM */
.formWrapper{
    padding: clamp(20px, 5vw, 40px) clamp(14px, 5vw, 40px);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    overflow: hidden;
}
.formRow{
    position: relative;
    display: flex;
    flex-direction: column;
}
.formRow + .formRow{
    margin-top: 16px;
}
.formRow__label{
    margin-bottom: 3px;
    font-weight: 600;
    font-size: 12px;
}
.formRow input:is([type=text], [type=email], [type=tel]){
    --el-height: 48px;
    width: 100%;
    height: var(--el-height);
    line-height: var(--el-height);
    border: 1px solid var(--color-gray);
    border-radius: 16px;
    padding: 0 24px;
    color: var(--color-secondary-dark);
    overflow: hidden;
}
.formRow textarea{
    width: 100%;
    border: 1px solid var(--color-gray);
    border-radius: 16px;
    padding: 24px;
    color: var(--color-secondary-dark);
    overflow: hidden;
}
.formRow input:is([type=text], [type=email], [type=tel]):focus,
.formRow textarea:focus{
    border-color: var(--color-accent);
    color: var(--color-accent);
    outline: unset;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    box-shadow: inset 0 0 1000px 20px #e6f4ff5e;
}

.formRow input:is([type=text], [type=email], [type=tel]).wpcf7-not-valid{
    border-color: #f9d0d0;
}
.formRow input:is([type=text], [type=email], [type=tel]).wpcf7-not-valid:focus-visible{
    border-color: var(--color-accent);
}
.wpcf7-not-valid-tip{
    font-size: 10px;
    color: var(--color-error);
    position: absolute;
    display: none;
}
.use-floating-validation-tip .wpcf7-not-valid-tip{
    position: absolute;
    top: 2px;
    left: 20px;
    background: transparent;
    border: none;
    padding: 0;
    pointer-events: none;
}
.formRow:has(.wpcf7-not-valid) .formRow__label{
	color: var(--color-error)
}

.formSubmit{
    display: inline-flex;
    width: fit-content;
    position: relative;
}
.wpcf7-spinner{
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: var(--color-primary-light);
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 1;
	border-radius: 12px;
}
.wpcf7-spinner:before{
	--el-size: 30px;
	position: static;
	width: var(--el-size);
	height: var(--el-size);
	animation: none;
	background: var(--color-primary-light);
	background-image: url(
	"data:image/svg+xml,%3Csvg class='w-%5B67px%5D lg:w-%5B3vw%5D h-auto' version='1.1' id='L9' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 100 100' enable-background='new 0 0 0 0' xml:space='preserve'%3E%3Cpath class='fill-current' d='M73,50c0-12.7-10.3-23-23-23S27,37.3,27,50 M30.9,50c0-10.5,8.5-19.1,19.1-19.1S69.1,39.5,69.1,50'%3E%3CanimateTransform attributeName='transform' attributeType='XML' type='rotate' dur='1s' from='0 50 50' to='360 50 50' repeatCount='indefinite'%3E%3C/animateTransform%3E%3C/path%3E%3C/svg%3E");
	background-size: cover;
}

.wpcf7-response-output{
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 90%;
    max-width: 500px;
    background: var(--color-primary-light);
    color: #727272;
    padding: 20px 16px !important;
    margin: 0 !important;
    border: none !important;
    border-radius: 12px;
    font-size: 16px;
    line-height: 130%;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 999;
}
.wpcf7-response-output.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wpcf7submit__timer {
    width: calc( 100% - 24px );
    height: 2px;
    background-color: var(--color-accent-2);
    animation: timerLine 6s linear forwards;
    border-radius: 2px;
    position: absolute;
    top: 0px;
    left: 12px;
}
  
@keyframes timerLine {
    from {
        width: calc( 100% - 24px );
    }
    to {
        width: 0%;
    }
}
.wpcf7 form.invalid .wpcf7-response-output .wpcf7submit__timer{
    background-color: var(--color-error);
}

.wpcf7 form[data-status="init"] .wpcf7-not-valid-tip{
	display: none;
}
.wpcf7 form[data-status="init"] .formRow input:is([type=text], [type=email], [type=tel]).wpcf7-not-valid{
	border: 1px solid var(--color-gray);
}
.wpcf7 form[data-status="init"] .formRow input:is([type=text], [type=email], [type=tel]).wpcf7-not-valid:focus-visible{
	border: 1px solid var(--color-accent);
}

/* CONTACT FORM */
.contactForm__row{
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}
.contactForm__person{
    flex: 1;
}
.contactForm__comment{
    flex: 1;
}
.contactForm__comment textarea{
    height: 220px;
    resize: none;
}
.contactForm__submit{
    width: 100%;
    margin-top: 20px;
}

@media ( max-width: 768px ){
   .contactForm__row{
    flex-direction: column;
    row-gap: 16px;
   }
   .contactForm__submit{
    margin-top: 0;
   }
   .formSubmit{
    width: 100%;
   }
   .formSubmit input[type=submit]{
    width: 100%;
   }
   .formRow input:is([type=text], [type=email], [type=tel]){
    padding: 0 16px;
   }
}


/* VERTICAL SLIDER */
.verticalSlider{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}
.verticalSlider__sectionTitle{
    display: none;
    position: absolute;
    z-index: 99 ;
}

.verticalSlider__wrapper{
    display: flex;
    width: 100%;
}
.verticalSlider__slider{
    width: 100%;
    overflow: hidden;
}
.verticalSlider__slider ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.verticalSlider__slider.swiper-initialized li{
    opacity: 0 !important;
}
.verticalSlider__slider.swiper-initialized li.swiper-slide-visible{
    opacity: 1 !important;
}
.verticalSlider__grid{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px var(--col-gap);
}
.verticalSlider__img{
    grid-column: 1 / 7;
}
.verticalSlider__img img{
    display: block;
    width: 100%;
    border-radius: 40px;
}
.verticalSlider__content{
    grid-column: 8 / -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 24px 50px 0;
    max-width: 580px;
    color: var(--color-secondary-dark);
}
.swiper-initialized [vertical-slider-animation]{
    opacity: 0;
}
.verticalSlider__subtitle{
    margin-bottom: 24px;
    font-weight: 600;
    font-size: clamp(12px, 2.5vw, 14px);
    line-height: 100%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}
.verticalSlider__title{
    margin-bottom: 12px;
    font-weight: 500;
    font-size: clamp(32px, 2.5vw, 42px);
    line-height: 110%;
    letter-spacing: -0.03em;
}
.verticalSlider__desc{
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 130%;
}
.verticalSlider__action{
    margin-top: 32px;
}
.verticalSlider__pagination{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    height: auto;
    padding: 80px 0;
}
.verticalSlider__progress{
    margin: 24px 0;
}
.verticalSlider__progress.swiper-pagination-progressbar{
    position: relative;
    height: 100% !important;
    width: 1px !important;
    background: var(--color-gray);
}
.verticalSlider__progress.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background-color: var(--color-secondary-dark);
}

@media ( max-width: 1024px ){
   .verticalSlider__sectionTitle{
    display: block;
    position: static;
   }
   .verticalSlider__img img{
    border-radius: 16px;
   }
   .verticalSlider__content{
    padding-top: 0;
    padding-bottom: 20px;
   }
   .verticalSlider__action{
    display: none;
   }
   .verticalSlider__pagination{
    padding-top: 0;
    padding-bottom: 0;
   }
}

@media ( max-width: 991.95px ){
    .verticalSlider{
        height: auto;
        padding-top: 24px;
        padding-bottom: 24px;
    }
    .verticalSlider__wrapper{
        flex-direction: column;
    }
    .verticalSlider__content{
        padding-right: 0;
    }
    .verticalSlider__subtitle{
        display: none;
    }
    .verticalSlider__pagination{
        flex-direction: row;
        column-gap: 18px;
    }
    .verticalSlider__progress.swiper-pagination-progressbar{
        height: 1px !important;
        width: 100% !important;
    }
}
@media ( max-width: 768px ){
    .verticalSlider__content{
        grid-column: 7 / -1;
        padding-left: 12px;
    }
}
@media ( max-width: 600px ){
    .verticalSlider__wrapper{
        flex-direction: column;
    }
    .verticalSlider__img{
        grid-column: 1 / -1;
    }
    .verticalSlider__content{
        grid-column: 1 / -1;
        max-width: 100%;
        padding-left: 0;
    }
    .verticalSlider__subtitle{
        display: block;
    }
    .verticalSlider__action{
        display: block;
    }
    .verticalSlider__action .btn{
        width: 100%;
    }
}


/* FOOTER */
.footer{
    position: relative;
    padding-top: clamp(32px, 5vw, 80px);
    padding-bottom: 32px;
    color: var(--color-primary-light);
}
.footer__bg{
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    z-index: -1;
}

/* grid */
.footer__nav{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--col-gap);
}
.footer__menu{
    grid-column: 1 / 4;
}
.footer__contact{
    grid-column: 6 / 11;
}
.footer__logo{
    grid-column: 11 / 13;
}

/* content */
.footer a {
    color: var(--color-primary-light);
}
.footer__menu{
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}
.footer__menu ul.menu{
    display: flex;
    flex-direction: column;
    row-gap: 14px;
}
.footer__menu a{
    position: relative;
    display: inline-block;
    text-decoration: none;
}
.footer__menu a:after{
    background-color: currentColor;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: center right;
    transition: transform 1s cubic-bezier(0.19,1,0.22,1);
}
.footer__menu  a:hover:after{
    transform: scaleX(1);
    transform-origin: center left;
}
.footer__menu ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer__contact ul{
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 12px;
}
.footer__contact a{
    text-decoration: none;
}

.footer__logo{
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.footer__logo img{
    display: block;
    max-width: 75px;
    height: auto;
}

.footer__soc{
    margin-top: 48px;
}

.footer__additional{
    display: flex;
    justify-content: space-between;
    margin-top: clamp(48px, 5vw, 150px);
    font-size: 12px;
}
.footer__term a{
    text-decoration: none;
}

@media ( max-width: 991.95px ){
   .footer__menu{
    grid-column: 1 / 5;
   }
   .footer__contact{
    grid-column: 7 / 11;
   }
}

@media ( max-width: 600px ){
   .footer__nav{
        display: flex;
        flex-direction: column;
        row-gap: 48px;
   }
   .footer__logo{
        order: 1;
        justify-content: flex-start;
   }
   .footer__menu{
        order: 2;
        justify-content: start;
        column-gap: 40px;
   }
   .footer__contact{
        order: 3;
   }
   .footer__additional{
    flex-direction: column;
    column-gap: 12px;
   }
}