/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* home */

/* home hero */

.hero{
    position: relative;
    width: 100%;
    height: 100dvh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    text-align: center;
    padding-inline: var(--padding);
}

.hero .bg-img img{
    -o-object-position: 50% 20%;
       object-position: 50% 20%;
    -webkit-transition: all 2.5s ease-in;
    -o-transition: all 2.5s ease-in;
    transition: all 2.5s ease-in;
}
.hero.on .bg-img img{
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
}

.hero--logo{
    width: 210px;
    height: 140px;
    position: relative;
}

.hero--logo > img{
    width: 100%;
    height: 100%;
    position: absolute;
}

.hero--title{
    color: #fff;
    font-size: 90px;
    line-height: 110%;
    letter-spacing: -4.5px;
    font-family: 'Diatype-Medium';
    max-width: 1020px;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    -webkit-transition-delay: 1.5s;
         -o-transition-delay: 1.5s;
            transition-delay: 1.5s;
    margin-block: 1rem;
}

.hero.on .hero--title{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;    
}
.hero--title span{
    display: block;
    -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    -webkit-transition-delay: 2s;
         -o-transition-delay: 2s;
            transition-delay: 2s;
}
.hero.on .hero--title span{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}
.hero--subtitle{
    font-size: 25px;
    line-height: 100%;
    letter-spacing: -1.25px;
    font-family: "Diatype-Thin";
    color: var(--colorLime);
    opacity: 0;
    -webkit-transition: opacity .3s ease-in;
    -o-transition: opacity .3s ease-in;
    transition: opacity .3s ease-in;
    -webkit-transition-delay: 2.5s;
         -o-transition-delay: 2.5s;
            transition-delay: 2.5s;
}

.hero.on .hero--subtitle{
    opacity: 1;
}

.hero.clear *{
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

@media screen and (max-width: 1280px) { 
    .hero--title{
        font-size: 70px;
        line-height: 90%;
        letter-spacing: -3.75px;
    }
    .hero--subtitle{
        font-size: 21px;
    }
}
@media screen and (max-width: 920px) { 
    .hero .bg-img img{
        -o-object-position: 80% 50%;
           object-position: 80% 50%;
        -webkit-transition-duration: 5s;
             -o-transition-duration: 5s;
                transition-duration: 5s;
    }
}
@media screen and (max-width: 820px) { 
    .hero--title{
        font-size: 50px;
        letter-spacing: -2.5px;
    }
    .hero--subtitle{
        font-size: 18px;
    }

}
@media screen and (max-width: 620px) { 
    .hero{
        gap: 1rem;
        height: 95dvh;
    }
    .hero--logo{
        --blockSize : 12.5px;
        width: 115px;
        height: 77px;
    }


    .hero--title{
        font-size: 35px;
        line-height: 90%;
        letter-spacing: -1.75px;
    }
    .hero--subtitle{
        font-size: 14px;
        letter-spacing: -0.25px;
        font-weight: 300;
    }
}


/* home services */

.home-services{
    --space: 3rem;
    --width : 249px;
    --height: 94px;
    margin-top: clamp(2rem, 4vw, 78px);
}
.home-services-wrapper{
    height: calc(100dvh - 228px);
}


.home-services .services-nav,
.swiperHomeService{
    position: relative;
    /* opacity: 0;
    transform: translateY(100px);
    transition: all .3s ease-in; */
}

/* .home-services .services-nav.on,
.swiperHomeService.on{
    opacity: 1;
    transform: translateY(0);
} */

.home-services .services-nav{
    z-index: 210;
}

.home-service{
    height: 100%;
    position: relative;
    border-radius: 34px;
    overflow: hidden;
}

.home-service::before{
    content: '';
    width: 0;
    height: 16px;
    left: calc(var(--space) + var(--width) + 1rem);
    top: calc(var(--space) + (var(--height) / 2) - 8px);
    display: block;
    position: absolute;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
    -webkit-transition-delay: .3s;
         -o-transition-delay: .3s;
            transition-delay: .3s;
    background-image: url('../assets/icons/long_arrow.svg');
    background-position: right;
    background-repeat: no-repeat;
}

.menu-on .home-service::before{
    display: none;
}

.swiper-slide-active.home-service::before{
    width: calc(100% - (var(--width) * 2) - (2 * var(--space)) - 2rem);
}

.home-service--top{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: var(--space);
}
.home-service--header,
.home-service--title{
    border-radius: 20px;
    max-width: var(--width);
    width: 100%;
    text-transform: uppercase;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.home-service--header{
    background-color: var(--colorLime);
    font-size: 30px;
    height: var(--height);
    text-align: center;
    font-family: 'Diatype-Light';
    display: -ms-grid;
    display: grid;
    place-content: center;
    position:absolute;
    z-index: 2;
    top: var(--space); 
    left: var(--space);
}
.home-service--title{
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    min-height: var(--height);
    padding: 2rem 1.75rem;
    color: #fff;
    background-color: rgba(0,0,0,0.41);
    font-size: 25px;
    letter-spacing: -1.25px;
    line-height: 30px;
    -webkit-filter: drop-shadow(0 4px 7.6px rgba(0,0,0,0.25));
            filter: drop-shadow(0 4px 7.6px rgba(0,0,0,0.25));
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    -webkit-transition-delay: .2s;
         -o-transition-delay: .2s;
            transition-delay: .2s;
}

.home-service.swiper-slide-active .home-service--title{
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
}


.swiperHomeService .swiper-button-next,
.swiperHomeService .swiper-button-prev{
    content: url("../assets/icons/service_arrow.svg");
    width: 77px;
    height: 45px;
    /* padding: 12px 20px; */
    /* background-color: rgba(255,255,255,0.41); */
}

.swiperHomeService .swiper-button-prev{
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
    left: var(--space);
}
.swiperHomeService .swiper-button-next{
    right: var(--space);
}

.services-nav .swiper-slide-thumb-active{
    color: var(--colorLime);
}

.service-nav-item{
    max-width: 220px;
    position: relative;
}

.home-service > a{
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
}

.home-services .simple-nav{
    position: relative;
    padding-right: 170px;
}
.home-services .simple-nav ul{
    max-width: unset;
    gap: unset;
}
.home-services .simple-nav .all-btn{
    position: absolute;
    right: 0;
    top: 30px;
    width: 116px;
    height: 62px;
    border: 1px solid #000;
    border-radius: 8px;
    color: #000;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 20px;
}

.home-services .simple-nav .service-nav-item:hover span{
        background-position: 0 0; 
}
.home-services .simple-nav .service-nav-item span{
    color: transparent; /* Κάνουμε το χρώμα του κειμένου διάφανο */
    background-image: linear-gradient(to right, var(--colorLime) 50%, #838383 50%); /* Αρχική διαβάθμιση: πράσινο και γκρι */
    background-size: 200% 100%; /* Διπλασιάζουμε το μέγεθος του background για να κρύψουμε το γκρι */
    background-position: 100% 0; /* Τοποθετούμε το background έτσι ώστε να φαίνεται μόνο το πράσινο */
    -webkit-background-clip: text; /* Εφαρμόζουμε το background μόνο στο κείμενο */
    background-clip: text;
    display: inline-block;
}

.home-services .simple-nav .service-nav-item.swiper-slide-thumb-active span{
    background-position: var(--pos) 0; /* Τοποθετούμε το background έτσι ώστε να φαίνεται μόνο το πράσινο */
}

.home-services .simple-nav .service-nav-item{
    text-align: center;
    max-width: 195px;
    cursor: pointer;
    position: relative;
}
.home-services .simple-nav .service-nav-item.lg{
    max-width: 276px;
}
.home-services .simple-nav .service-nav-item.sm{
    max-width: 160px;
}


.service-graphic{
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    /* border:1px solid #fff; */
    z-index: 2;

}



@media screen and (max-width: 1420px) { 
    .home-services{
        --space:2rem;
    }

}
@media screen and (max-width: 1280px) { 
    .home-services{
        --height:80px;
        --width: 221px;
    }
    .home-service--header{
        font-size: 26px;
    }
    .home-service--title{
        font-size: 22px;
        padding: 1.5rem;
    }
    .home-services .simple-nav{
        padding-right: 110px;
    }
    .home-services .services-nav ul{
        padding-inline: 0;
        gap: 0;
    }
    .home-services .services-nav .all-btn{
        font-size: 18px;
        width: 96px;
        height: 50px;
    }
}

@media screen and (max-width: 1080px) { 
    .service-graphic{
        transform:  translate(-50%, -50%) scale(0.75);
    }
}
@media screen and (max-width: 980px) { 
    .home-services{
        --space:1.5rem;
    }
    .home-service--header, 
    .home-service--title{
        border-radius: 10px;
    }
}

@media screen and (max-width: 920px) { 
    .home-services{
        --height: 70px;
        --width: 200px;
        margin-top: 0;
    }
    .home-service--header{
        font-size: 22px;
    }
    .home-service--title{
        font-size: 20px;
        padding: 1rem;
    }
    .home-services .services-nav .all-btn{
        display: none;
    }
    .home-services .simple-nav{
        padding-right: 0;
    }
}

@media screen and (max-width: 820px) { 
    .home-services{
        --space:1rem;
    }
    .home-services{
        --height: 60px;
        --width: 180px;
    }
    .home-service--header{
        font-size: 20px;
    }
    .home-service--title{
        font-size: 18px;
    }

}


@media screen and (max-width: 700px) { 
    .home-services{
        --height: 36px;
        --width: 180px;
    }
    .home-service--header{
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
    }  
    .home-service--top{
        height: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
        padding-top: 168px
    }
    .home-service::before{
        -webkit-transform-origin: left;
            -ms-transform-origin: left;
                transform-origin: left;
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
        left: 50%;
        top: calc(var(--space) + var(--height) + 4px);
        -webkit-filter: brightness(0) invert(1);
                filter: brightness(0) invert(1);
    }
    .swiper-slide-active.home-service::before{
        width: 85px;
    }
    .home-service--header, 
    .home-service--title{
        border-radius: 5px;
    }
    .home-service--header{
        width: 104px;
        font-size: 18px;
    }
    .home-service--title{
        padding: 7px 24px;
        line-height: 100%;
    }
    .swiperHomeService .swiper-button-next, 
    .swiperHomeService .swiper-button-prev{
        width: 60px;
        height: 40px;
    }
    .service-graphic{
        transform:  translate(-50%, -50%) scale(0.5);
    }
}

@media screen and (max-width: 520px) { 
    .service-graphic{
        top: 65%;
    }
}

/* home moto */

.home-moto{
    text-align: center;
    font-size: 82px;
    line-height: 93px;
    letter-spacing: -4px;
    margin-block: clamp(39px, 13vw, 230px) clamp(21px, 9vw, 140px);
    /* height: 600px; */
    width: 100%;
    position: relative;
    font-family: 'Diatype-Thin';
}

.home-moto  p{
    max-width: 1600px;
}

.homo-moto .word{
    display: inline-block;
}

.home-moto .highlight{
    color: var(--colorLime);
}
.home-moto .greyscale{
    color: #B6B6B6;
}
.home-moto .bold{
    font-family: 'Diatype-Medium';  
}
.home-moto .line{
    display: block;
    /* transform: translateY(100px); */
    /* opacity: 0; */
    /* transition: all .3s ease-in; */
}
/* 
.home-moto .line:last-of-type{
    transition-delay: .5s;
}
 .home-moto.on .line{
    transform: translateY(0);
    opacity: 1;
} 
    */



@media screen and (max-width: 1420px) { 
    .home-moto{
        font-size: 60px;
        line-height: 65px;
        letter-spacing: -2.15px;
    }
}
@media screen and (max-width: 1120px) { 
    .home-moto{
        font-size: 50px;
        line-height: 55px;
        letter-spacing: -1.75px;
    }
}
@media screen and (max-width: 920px) { 
    .home-moto{
        font-size: 40px;
        line-height: 45px;
        letter-spacing: -1.5px;
    }
}
@media screen and (max-width: 720px) { 

}
@media screen and (max-width: 620px) {
    .swiperHomeService{
        width: calc(100% + 2 * var(--padding));
        margin-left: calc(-1 * var(--padding))
    }
    .home-service{
        border-radius: 0;
    }
    .home-moto{
        font-size: 30px;
        line-height: 35px;
        letter-spacing: -1.25px;
        margin-block: 60px;
    }
    .home-moto .line{
        display: inline;
    }
} 
@media screen and (max-width: 520px) { 
    /* .home-moto{
        font-size: 23px;
        line-height: 27px;
        letter-spacing: -1.15px;
    } */
}

/* home clients */

.home-clients{
    margin-bottom: 2rem;
}

.home-clients-list{
    padding: 2rem 0;
    /* position: absolute; */
    overflow: hidden;
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
}

.client-row{
        -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 50px;
        white-space: nowrap;
    will-change: transform;
    padding-inline: 1rem 2rem;
    /* animation: marquee 20s linear infinite; */
}
.client-row:hover{
    animation-play-state: paused;
}
.client-repeat{
    /* border: 1px solid red; */
    align-items: center;
    gap: 50px;
}

.client-row.reverse{
    display: none;
    animation: marqueeReverse 20s linear infinite;
}

.home-clients .client{
    scroll-snap-align: start;
    /* border: 1px solid; */
}

@keyframes marquee {
    from { transform: translate3d(0 , 0, 0); }
    to { transform: translate3d(calc(-50% - 25px), 0, 0); }
}
@keyframes marqueeReverse {
    from { transform: translate3d(calc(-50% - 25px), 0, 0); }
    to { transform: translate3d(0 , 0, 0); }
}

.home-clients-list .client{
    /* max-width: 300px; */
    max-width: 280px;
    width: 20vw;
    flex-shrink: 0;
    filter: grayscale(1);
    opacity: 1;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
.home-clients-list .client:hover{
    -webkit-filter: unset;
            filter: unset;
}
.home-clients-list.on .client{
    /* opacity: 1; */
}
.home-clients-list .client img{
    margin-inline: auto;
}

.home-clients .mob-btn{
    display: none;
}
@media screen and (max-width: 950px) { 
    .home-clients-list{
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        gap: 50px 0;
    }
    .home-clients-list .client{
        width: 30vw;
        max-width: 200px;
    }
    /* .client-row{gap: 2rem;} */
}

@media screen and (max-width: 680px) { 
    .home-clients .section-header .btn{ display: none;}
    .home-clients .mob-btn{
        display: block;
        color: #838383;
        font-size: 13px;
        text-align: center;
        display: -ms-grid;
        display: grid;
        place-content: center;
        width: 72px;
        height: 29px;
        border:1px solid #838383;
        border-radius: 3px;
        margin: 9px auto 0;
    }
}
@media screen and (max-width: 580px) {
    .client-row.reverse{
        display: flex;
    }
    .client.mob-hide{display: none;}
    .home-clients{
        margin-bottom: 1.5rem;
    }
    .home-clients-list .client{
        width: 28vw;
        max-width: 120px;
        margin-right: 2rem;
    }
    .client-row{
        gap: 0;
        padding-right: 0;
    }
} 

/* ai banner */

.home-aibanner{
    height: 832px;
    display: -ms-grid;
    display: grid;
    place-content: center;
    position: relative;
    margin-bottom: clamp(2rem, 8vw, 141px);
}

.aibanner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: var(--padding);
}

.aibanner .graph-icon{
    border:1px solid #000;
    width: 300px;
    height: 200px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.aibanner-title{
    font-size: 70px;
    line-height: 73px;
    letter-spacing: -3.5px;    
}
.aibanner-title img{
    display: inline-block;   
}
.aibanner-title .block{
    display: block;   
}
.aibanner-title .strong{
    font-weight: 700;   
}
.aibanner-title .thin{
    font-weight: 100;   
}
.aibanner-title .lime{
    color: var(--colorLime);   
}
.aibanner-title .ita{
    font-weight: 200;
    font-style: italic;   
}

/* .home-aibanner .bg-img{
    transform: translateY(100px);
    opacity: 0;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.home-aibanner.on .bg-img{
    opacity: 1;
    transform: translateY(0);
} */

.aibanner{
    opacity: 0;
    -webkit-transition: opacity .3s ease-in;
    -o-transition: opacity .3s ease-in;
    transition: opacity .3s ease-in;
    -webkit-transition-delay: .5s;
         -o-transition-delay: .5s;
            transition-delay: .5s;
}

.home-aibanner.on .aibanner{
    opacity: 1;
}

.aibanner-title > span{
    opacity: 0;
    -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
            transform: translateX(-20px);
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    /* transition-delay: var(--delay); */
    display: inline-block;
}
.home-aibanner.on .aibanner-title > span{
    opacity: 1;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
}
@media screen and (max-width: 1480px) { 
    .aibanner-title{
        font-size: 55px;
        line-height: 60px;
        letter-spacing: -2.5px;    
    }
}
@media screen and (max-width: 1180px) { 
    .aibanner-title{
        font-size: 45px;
        line-height: 50px;
        letter-spacing: -2.25px;    
    }
}
@media screen and (max-width: 920px) { 
    .home-aibanner{
        /* height: 600px; */
        height: auto;
        aspect-ratio: 16/9;
    }
    .aibanner{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .aibanner-title{
        font-size: 40px;
        line-height: 45px;
        letter-spacing: -2px;    
    }
}
@media screen and (max-width: 720px) { 
    .aibanner-title{
        font-size: 35px;
        line-height: 40px;
        letter-spacing: -1.75px;    
    }
}
@media screen and (max-width: 520px) { 
    .aibanner-title{
        font-size: 27px;
        line-height: 30px;
        letter-spacing: -1.35px;    
    }
}


/* home case study  */

.home-casestudies--wrapper{
    height: 893px;
    position: relative;
    padding-inline: var(--padding);
    margin-block: 29px clamp(25px, 7vw, 123px);
    max-width: 1920px;
    overflow: hidden;
    margin-inline: auto;
}

.caseStudy-inner{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /* overflow: hidden; */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 43px;
}

.file-shape{
    border:1px solid var(--colorLime);
    width: 247px;
    height: 347px;
    position: relative;
    --cornerSize: 40px;
    -webkit-clip-path: polygon(0 0, calc(100% - var(--cornerSize)) 0, 100% var(--cornerSize), 100% 100%, 0 100%, 0 0);
            clip-path: polygon(0 0, calc(100% - var(--cornerSize)) 0, 100% var(--cornerSize), 100% 100%, 0 100%, 0 0);
}

.file-shape::after{
    content: "";
    position: absolute;
    right: var(--cornerSize);
    width: calc(var(--cornerSize) + 17px);
    border-top: 1px solid var(--colorLime);
    -webkit-transform-origin: right;
        -ms-transform-origin: right;
            transform-origin: right;
    -webkit-transform: translateY(-1px) rotate(-135deg);
        -ms-transform: translateY(-1px) rotate(-135deg);
            transform: translateY(-1px) rotate(-135deg);
    top: 0;
}

.file-inner{
    background-color: #fff;
    width: 100%;
    height: 100%;
}

.file-shape.case{
    padding: 80px 100px 37px 37px;
    background-color: #fff;
    width: 400px;
    height: 500px;
    margin-inline: 20px;
}

.case--title{
    font-size: 40px;
    line-height: 100%;
    font-family: 'Diatype-Thin';    
}
.case--title span{
    font-family: 'Diatype-Medium';
}

.file-inner .file-btn{
    margin: 30px 0 42px;
    background-color: var(--colorLime);
    color: #000;
    font-size: 20px;
    padding: 18px 41px;
    text-align: center;
    border-radius: 8px;
}

@media screen and (max-width: 920px) {  
    .home-casestudies--wrapper{
        height: 520px;
    }
    .file-shape{
        width: 200px;
        height: 280px;
    }
    .file-shape.case{
        padding: 47px 65px 24px 24px;
        width: 295px;
        height: 365px;
    }
    .case--title{
        font-size: 30px;
    }
    .file-inner .file-btn{
        margin-block: 20px 24px;
        font-size: 18px;
        padding: 14px 22px;
    }
}
@media screen and (max-width: 620px) { 
    .file-shape{display: none;}
    .file-shape.case{display: block;}
} 
@media screen and (max-width: 520px) {  
    .home-casestudies--wrapper{
        height: 360px;
        margin-bottom: 10px;
    }
    .file-shape.case{
        padding: 27px 42px 14px 14px;
        width: 195px;
        height: 245px;
    }
    .case--title{
        font-size: 22px;
    }
    .file-inner .file-btn{
        margin-block: 8px 12px;
        font-size: 16px;
        padding: 11px 12px;
        border-radius: 0;
    }
    .home-casestudies--wrapper{
        margin-top: 19px;
    }
}

/* home contact */

.home-contact--wrapper{
    background-color: #fff;
    height: 780px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 36px;
    padding-inline: var(--padding);
    transition: all .3s ease-in;
}

.home-contact--wrapper.on{
    background-color: var(--colorLime);
}
/* .home-contact--wrapper > *{
    transform: translateY(100px);
    opacity: 0;
    transition: all .3s ease-in;
}
.home-contact--wrapper.on > *{
    transform: translateY(0);
    opacity: 1;
} */


.home-contact--title{
    font-size: 82px;
    line-height: 93px;
    letter-spacing: -4.1px;
    font-family: 'Diatype-Light'; 
    text-align: center; 
    max-width: 1195px;
    text-wrap: pretty;
    transition-delay: .8s;
}
.home-contact--title::after{
    content: "";
    width: 60px;
    aspect-ratio: 1;
    background-color: #fff;
    display: inline-block;
    margin-left: 1rem;
    -webkit-animation-name: flash;
            animation-name: flash;
    -webkit-animation-duration: .8s;
            animation-duration: .8s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
}

@-webkit-keyframes flash {
    0% {opacity:0;}
    50% {opacity:1}
    100% {opacity:0;}
}

@keyframes flash {
    0% {opacity:0;}
    50% {opacity:1}
    100% {opacity:0;}
}

.home-contact--title > span{
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: width .3s;
    -o-transition: width .3s;
    transition: width .3s;
    /* overflow: hidden; */
}
.home-contact--title .bold{
    font-family: 'Diatype-Medium';   
}
.home-contact--icon{
    width: 89px;
    aspect-ratio: 1;
    border-radius:50%; 
    transition-delay: 1.5s;
}
.home-contact--icon > img{
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);  
    -webkit-filter: brightness(0);  
            filter: brightness(0);
}
.home-contact--btn{
    width: 152px;
    height: 56px;
    display: grid;
    place-content: center;
    background-color: #fff;    
    /* padding: 12px 31px; */
    border-radius: 8px;;
    font-size: 22px;
    letter-spacing: -1.1px;
    transition-delay: 1.8s;
}

@media screen and (max-width: 1320px) { 
    .home-contact--title{
        font-size: 60px;
        line-height: 65px;
        letter-spacing: -3px;
    }
    .home-contact--title::after{
        width: 50px;
        -webkit-transform: translateY(-8px);
            -ms-transform: translateY(-8px);
                transform: translateY(-8px);
    }
    .home-contact--icon{
        width: 72px;
    }
}
@media screen and (max-width: 1020px) { 
    .home-contact--wrapper{
        height: 580px;
    }
    .home-contact--title{
        font-size: 45px;
        line-height: 50px;
        letter-spacing: -2.5px;
        max-width: 700px;
    }
    .home-contact--title::after{
        width: 40px;
        -webkit-transform: translateY(-6px);
            -ms-transform: translateY(-6px);
                transform: translateY(-6px);
    }
    .home-contact--icon{
        width: 60px;
    }
    .home-contact--btn{
        width: 122px;
        height: 46px;
        font-size: 20px;
        letter-spacing: -1px;
}
}
@media screen and (max-width: 720px) { 
    .home-contact--wrapper{
        height: 380px;
    }
    .home-contact--title{
        font-size: 32px;
        line-height: 38px;
        letter-spacing: -1.75px;
    }
    .home-contact--icon{
        width: 45px;
    }
    .home-contact--title::after{
        width: 30px;
        -webkit-transform: translateY(-4px);
            -ms-transform: translateY(-4px);
                transform: translateY(-4px);
    }
}
@media screen and (max-width: 520px) { 
    .home-contact--wrapper{
        height: 234px;
        gap: 8px;
    }
    .home-contact--title{
        max-width: 321px;
        font-size: 22px;
        line-height: 28px;
        letter-spacing: -1px;
    }
    .home-contact--title::after{
        width: 16px;
        margin-left: .5rem;
        -webkit-transform: translateY(-6px);
            -ms-transform: translateY(-6px);
                transform: translateY(-6px);
    }
    .home-contact--icon{
        width: 26px;
    }
    .home-contact--btn{
        width: 86px;
        height: 30px;
        font-size: 15px;
        letter-spacing: -.75px;
        border-radius: 5px;
    }
}

/* page */

.single,
.page{
    padding-top: 162px;
}

.page-sub-header,
.page-header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.page-header.center{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.page-sub-header{
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.page--title{
    font-size: 115px;
    line-height: 108%;
    font-weight: 400; 
    letter-spacing: -5.5px; 
    flex-shrink: 0;
    opacity: 0;
}

.page--title.border{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    border-bottom: 1px solid var(--colorLime);
}
.page--subtitle{
    font-size: 100px;
    line-height: 124%;
    font-weight: 400; 
    letter-spacing: -5px;
    font-family: 'Diatype-Medium';
    opacity: 0;
}

.page--subtitle span{
    color: #ff6cf5;
}

.page--description{
    width: 536px;
    color: #838383;
    font-size: 30px;
    line-height: 127%;
    letter-spacing: -1.5px;
    font-family: 'Diatype-Light';
    margin-top: 60px; 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex;
    flex-direction: column;
}

.page--description:has(h2 + p){
    max-width: 536px;
    width: 100%;
    gap: 19px;
    margin-top: 49px;
}

.page--description h2{
    color: #000;
    font-size: 35px;
    letter-spacing: -1.75px;
    line-height: 116%;
    font-family: 'Diatype-Light';
    margin-bottom: 8px;  
    -ms-flex-negative: 0;  
        flex-shrink: 0;
}

.menu-on .page-header .line{
    display: none;
}

.page-header .line{
    width: 100%;
    border-top: 1px solid var(--colorLime);
    position: relative;
    margin-inline: 2rem;
    margin-top: 70px;
}



.page-header .line .caret{
    position: absolute;
    transform-origin: center;
    width: 10px;
    height: 10px;
    filter: var(--filterLime);
    top: -6px;
}
.page-header .line .caret:first-of-type{
    left: -5px;
    transform: rotate(90deg);
}
.page-header .line .caret:last-of-type{
    right: -5px;
    transform: rotate(-90deg);
}

.page-header .line .caret img{
    width: 100%; height: 100%;
}

.subheader--text{
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -1.5px;
    text-align: left;
    font-family: 'Diatype-Light';
}

@media screen and (max-width: 1520px) {
    .page--subtitle{
        font-size: 80px;
        letter-spacing: -4px; 
    }
} 
@media screen and (max-width: 1320px) { 
    .page--title{
        font-size: 100px;
        letter-spacing: -5px;
    }
    .page--subtitle{
        font-size: 65px;
        letter-spacing: -3px; 
    }
    .subheader--text{
        font-size: 26px;
        line-height: 30px;
        letter-spacing: -1.3px;
    }
    .page-header .line{
        margin-top: 62px;        
    }
    .page--description:has(h2 + p){
        margin-top: 41px;
    }
}
@media screen and (max-width: 1180px) { 
    .page--title{
        font-size: 90px;
        letter-spacing: -4.5px;
    }
    .page--description{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        /* text-align: right; */
    }
    .page--description h2{
        font-size: 30px;
    }
    .page--description{
        font-size: 25px;
    }
    .page-header .line{
        margin-top: 54px;        
    }
    .page--description:has(h2 + p){
        margin-top: 35px;
    }
}
@media screen and (max-width: 1080px) {
    .page--subtitle{
        font-size: 50px;
        letter-spacing: -2.5px; 
    }
    .subheader--text{
        font-size: 21px;
        line-height: 23px;
        letter-spacing: -1.05px;
    }
} 
@media screen and (max-width: 980px) { 
    .page--title{
        font-size: 75px;
        letter-spacing: -3.75px;
    }
    .page-header .line{
        margin: 45px 1rem 0;        
    }
    .page--description:has(h2 + p){
        margin-top: 26px;
    }
}
@media screen and (max-width: 820px) { 
    .page--title{
        font-size: 60px;
        letter-spacing: -3px;
    }
    .page-header{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
                align-items: center;
                text-align: center;
    }
    .page-header .line{
        display: none;
    }
}
@media screen and (max-width: 620px) { 
    .single,
    .page{
        padding-top: 91px;
    }
    .page--title{
        font-size: 50px;
        letter-spacing: -2.5px;
        text-align: center;
    }
    .page--description{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
    }
    .page--description h2{
        font-size: 30px;
    }
    .page--description{
        font-size: 16px;
        letter-spacing: -0.8px;
        line-height: 18px;
        max-width: 286px;
        margin-inline: auto;
    }
    .page--description:has(h2 + p){
        margin-top: 1.5rem;  
        gap: 0; 
        max-width: 286px;
        margin-inline: auto; 
    }
}
@media screen and (max-width: 720px) { 
    .page--subtitle{
        font-size: 40px;
        letter-spacing: -2px; 
    }
    .subheader--text{
        font-size: 18px;
        line-height: 20px;
        letter-spacing: -.9px;
    }
} 
@media screen and (max-width: 520px) { 
    .page--description:has(h2 + p){
        margin-top: 1rem;  
    }
    .page--subtitle{
        font-size: 30px;
        letter-spacing: -1.5px; 
    }
    .subheader--text{
        font-size: 16px;
        line-height: 18px;
        letter-spacing: -0.8px;
    }
    .page--title.mob-sm{
        font-size: 35px;
        letter-spacing: -2.5px;
    }
}
@media screen and (max-width: 460px) {
    .page--description h2{
        font-size: 20px;
        letter-spacing: -1px;
    }
}

/* page - services */

.services-list{
    margin-block: clamp(25px, 8vw, 150px) 30px;
}

.services-list ul{
    gap: 27px;
}
.services-list li{
    background-color: var(--colorLime);
    border-radius: 0;
    border-radius: 50px;
    background-color: #f1f1f1;
    overflow: hidden;
    /* opacity: 0;
    transform: translateY(100px);
     -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in; */
}

/* .services-list li.on{
    opacity: 1;
    transform: translateY(0);
}  */

.services-list li:hover{
    background-color: var(--colorLime);
}

.service{
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 50px;
    opacity: 1;
    /* opacity: 0; */
    -webkit-transition-delay: .4s;
         -o-transition-delay: .4s;
            transition-delay: .4s;
    /* position: relative; */
}

.services-list li.on .service{
    opacity: 1;
}

.service::before{
    /* content: ""; */
    width: 100%; height: 100%;
    background-color: #f1f1f1;
    right: 0; top: 0;
    position: absolute;
    -webkit-transition: width .5s ease-out;
    -o-transition: width .5s ease-out;
    transition: width .5s ease-out; 
    -webkit-transition-delay: .5s; 
         -o-transition-delay: .5s; 
            transition-delay: .5s;
}

.services-list li.on .service::before{
    width: 0;
}



.service--title{
    font-size: 80px;
    line-height: 100%;
    letter-spacing: -4px;
    padding-inline: clamp(3rem, 6vw, 108px) clamp(2rem, 4vw, 50px);
}

.service--num{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 23%;
            flex: 0 0 23%;
    border-right: 1px solid #000;
    padding-inline: 2rem;
}
.service--num img{
    width: 100%;
    margin-inline: auto;
    height: 337px;
    -o-object-fit: contain;
       object-fit: contain;
}

.services-list li:hover .service--num img{
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}

.service--info{
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
    font-size: 25px;
    font-family: 'Diatype-Light';
    line-height: 124%;
    letter-spacing: -1.25px;
}

.service--info p{
    text-wrap: balance;
}
.service--info-more{
    margin-top: 27px;
    border-bottom: 1px solid #000;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 17px;
    transition: gap .3s;
}

.service--info-more:hover{
    gap: 1.5rem;
}

.services-video .video{
    margin-inline: auto;
    /* height: 150px; */
    width: 100%;
    max-width: 1000px;
}
.services-video .video video{
    width: 100%;
}


@media screen and (max-width: 1620px) {
    .service--title{
        font-size: 60px;
        letter-spacing: -3px;
    }      
}
@media screen and (max-width: 1280px) {
    .service{
        padding-inline: 2rem;
    }
    .service--title{
        font-size: 45px;
        letter-spacing: -2.25px;
    } 
    .service--info{
        font-size: 20px;
    } 
    .service--num img{
        height: 250px;
    }    
}

@media screen and (max-width: 980px) {
    .services-list ul{
        gap: 20px;
    }
    .service--info{display: none;}
    .service{
        padding: 2rem;
    }
    .service--title{
        font-size: 40px;
        letter-spacing: -2px;
        padding-inline: 39px 0;
    }
    .services-list li{
        border-radius: 2rem;
    }
}
@media screen and (max-width: 840px) {
    .service{
        padding-inline: 1.5rem;
    }
    .service--num{
        -webkit-box-flex: 0;
            -ms-flex: 0 0 27%;
                flex: 0 0 27%;
        padding-inline: 23px;
    }
    .service--num img{
        height: 150px;
    } 
}
@media screen and (max-width: 740px) {
    .service--title{
        font-size: 36px;
        letter-spacing: -1.8px;
    } 
}
@media screen and (max-width: 620px) {
    .services-list ul{
        gap: 13px;
    }
    .service{
        padding-inline: 17px;
    }
    .services-list li{
        border-radius: 13px;
    }
    .service--title{
        font-size: 28px;
        letter-spacing: -1.64px;
    }
    .service--num img{
        height: 74px;
    } 
}
@media screen and (max-width: 390px) {
    .service--title{
        font-size: 24px;
        letter-spacing: -1.2px;
        padding-left: 24px;
    }
    .service--num{
        padding-left: 14px;
    }
}

/* single service */

.services-nav ul{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-block: 40px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    color: #838383;
    font-size: 22px;
    /* line-height: 21px; */
    line-height: calc(22/21);
    padding-inline: 2rem .5rem;
    max-width: 1473px;
    margin-inline: auto;
    gap: 1rem;
}
.services-nav ul a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            align-items: flex-start;
    gap: 12px
}
.services-nav ul a .icon{
    margin-top: 6px;
    flex-shrink: 0;
}

.service-box{
    display: none;
    position: relative;
}
.service-box.active{
    display: block;
}

.service-box::before,
.service-box::after{
    content: "";
    position: absolute;
    pointer-events: none;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    opacity : 0;
    width: 100%;
}
.service-box::after{   
    left: 50%; top:50%;
    height: 100%;
    background-color: var(--colorLime);
    -webkit-transform: translate(-50%, -50%) scale(0.01);
        -ms-transform: translate(-50%, -50%) scale(0.01);
            transform: translate(-50%, -50%) scale(0.01);
}

.service-box::before{
    left: 0; top: 0;
    height: 0;
    background-color: #000;
    -webkit-transition-delay: .6s;
         -o-transition-delay: .6s;
            transition-delay: .6s;
}

.service-box.toLeave::after{
    -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1;
} 

.service-box.toLeave::before{
    height: 100%;
    opacity: 1;
}

.service-box > .num{ display: none;}

.service-nav-item .icon img{
    height: 34px;
}
.service-nav-item span{
    text-wrap: balance;
}



.service-nav-item.selected{
    color: var(--colorLime);
}
.service-nav-item:hover{
    color: var(--colorLime);
}

.service-header{
    margin-block: 100px 63px;
    text-align: center;
}

.service-header--title{
    font-size: 130px;
    line-height: 136px;
    letter-spacing: -6.5px;
    margin-bottom: 55px;
    max-width: 1280px;
    margin-inline: auto;
}

.service-header--graphic{
    max-width: 1100px;
    margin-inline: auto;
}

.service-description{
    border-radius: 50px;
    background-color: rgba(131, 131, 131, 0.44);
}

.service-description ul{
    max-width: 1254px;
    margin-inline: auto;  
    width: 100%;
    padding: 133px 50px 171px 30px;
    gap: 24px;     
    -webkit-box-sizing: border-box;    
            box-sizing: border-box;
}
.service-block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    gap: 33px;
    position: relative;
}

.service-block--title{
    width: 366px;
    font-size: 40px;
    line-height: 59px;
    letter-spacing: -2px;
    font-family: 'Diatype-Light';
    background-color: var(--colorLime);
    padding: 1rem .5rem 1rem 41px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    color: #231F20;
}

.service-block--text{
    font-size: 30px;
    line-height: 32px;
    letter-spacing: -1.5px;
    text-wrap: pretty;
    /* display: none; */
}

.service-body{
    --bottom: clamp(100px, 20vw, 334px);
    margin-bottom: var(--bottom);
    position: relative;
}

.service-body::before{
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(var(--bottom) / -2);
    width: 60px;
    aspect-ratio: 1;
    background-color: var(--colorLime);
    -webkit-transform: translate(-50%, 50%);
        -ms-transform: translate(-50%, 50%);
            transform: translate(-50%, 50%);
}

.single-services-inner{
    display: block;
}

.singleServiceSwiper .swiper-button-next,
.singleServiceSwiper .swiper-button-prev{
    display: none;
    top: unset;
    bottom: 0;
    content: url(../assets/icons/arrow_white.svg);
    width:33px;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
}

.singleServiceSwiper .swiper-button-prev{
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}
.swiper-button-info{
    position: absolute;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    color: #838383;
    display: none;
}

@media screen and (max-width: 1420px) { 
    .services-nav ul{
        font-size: 18px;
    }  
    .service-nav-item{
        max-width: 180px;;
    }
    .service-header--title{
        font-size: 100px;
        line-height: 105px;
        letter-spacing: -5px;
    }  
}
@media screen and (max-width: 1080px) { 
    .services-nav ul{
        font-size: 16px;
    }  
    .service-nav-item{
        max-width: 150px;;
    }
    .service-header--title{
        font-size: 70px;
        line-height: 75px;
        letter-spacing: -3.5px;
    } 
    .service-block--text{
        font-size: 26px;
        line-height: 30px;
        letter-spacing: -1.4px;
    }   
}
@media screen and (max-width: 1020px) {
    .services-nav ul{
        padding-inline: 0;
    }
    .service-description ul{
        padding: 2rem 35px;
    }
    .service-block{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .service-block--title{
        font-size: 30px;
        width: 303px;
        height: auto;
        line-height: 1;
        padding: 8px 30px;
    }
} 
@media screen and (max-width: 920px) { 
    .services-nav ul{
        padding-block: 30px;
    } 
    .service-block--text{
        font-size: 22px;
        line-height: 25px;
        letter-spacing: -1.2px;
        font-family: 'Diatype-Light';
        max-width: 400px;
        margin-inline: auto;
    }  
    .service-description{
        border-radius: 30px;
    }
    .services-nav ul a{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .service-header{
        margin-block: 2rem;
    }
}
@media screen and (max-width: 820px) {
    .service-header--title{
        font-size: 55px;
        line-height: 65px;
        letter-spacing: -2.75px;
        margin-bottom: 1rem;
    }
    .service-block{
        gap: 1rem;
    }
} 
@media screen and (max-width: 620px) {
    .single-service .services-nav{
        display: none;
    } 
    .service-box > .num{ 
        display: block;
        width: 20px;
        margin-inline: auto;
    }
    .service-header{
        margin-block: 14px 0;
    }
    .single-services-inner{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .singleServiceSwiper .swiper-button-next,
    .singleServiceSwiper .swiper-button-prev{
        display: block;
    }
    .service-box{
        display: block;
    }

    .singleServiceSwiper{
        margin-bottom: 2rem;
    }
    .service-body::before{
        display: none;
    }
    .swiper-button-info{
        display: block;
        font-family: 'Diatype-Thin';
    }
    .service-description ul{
        padding: 19px 1rem 2rem;
    }
} 
@media screen and (max-width: 520px) {
    .service-description{
        border-radius: 16px;
    }
    .service-block--title{
        font-size: 23px;
        width: 202px;
        padding: 6px 25px;
        /* margin-bottom: 17px; */
    }
    .service-block--text{
        font-size: 16px;
        line-height: 19px;
        letter-spacing: -0.8px;
        max-width: 300px;
    }
    .service-header--title{
        font-size: 35px;
        line-height: 37px;
        letter-spacing: -1.75px;
        margin-bottom: 4px;
    }
    .service-body{
        margin-bottom: 2rem;
    }
} 
@media screen and (max-width: 400px) {
    .service-header--title{
        font-size: 28px;
        line-height: 32px;
        letter-spacing: -1.4px;
    }
}


/* clients */

.page-clients{
    position: relative;
}

.clients-wrapper{
    padding-block: clamp(3rem, 10vw, 120px) clamp(232px, 25vw, 428px);
}

.clients--intro{
    margin: 0 auto;
    text-align: center;
    max-width: 555px;
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.05px;
    color: #fff;
}
.clients--intro h2{
    font-size: 40px;
    line-height: 64px;
}

.clients-all{
    position: relative;
}

.clients-all .custom-arrow{
    width: 52px;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-58%);
    -webkit-filter: brightness(0) invert(1);
        filter: brightness(0) invert(1);
}

.clients-list.open + .clients-all .custom-arrow::before{
    transform: rotate(-45deg);
}
.clients-list.open + .clients-all .custom-arrow::after{
    transform: rotate(45deg);
}



.clients-all .less{display: none;}
.clients-list.open +  .clients-all .all{display: none;}
.clients-list.open +  .clients-all .less{display: inline;}
.clients-list.open +  .clients-all{background-color: #fff;}



.clients-list{
    background-color: #fff;
    border-radius: 31px;
    overflow: hidden;
    max-width: 1143px;
    margin: 50px auto;
    padding: 2.5rem 50px;
    border: 1px solid var(--colorLime);
}
.clients-list ul{
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    place-items: center;
    gap: 50px 60px;
    /* height: 78px; */
    height: auto;
    overflow: hidden;
    -webkit-transition: height .3s ease-in;
    -o-transition: height .3s ease-in;
    transition: height .3s ease-in;
}

.clients-list ul li{
    /* height: 78px; */
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
        
.clients-list ul li img{
    filter: grayscale(1);
    transition: all .3s ease-in;

}
.clients-list ul li:hover img{
    filter: grayscale(0);
}

.newsletter-wrapper{
    background-color: #fff;
    border: 1px solid var(--colorLime);
    color: #000;
    margin-inline: auto;
    max-width: 1143px;
    width: 100%;
    border-radius: 31px;
    margin-bottom: 97px;
    margin-top: -240px;
    position: relative;
    z-index: 2;
}

.newsletter-info{
    padding: 40px 120px;
}

.newsletter-info p{
    text-align: center;
    font-size: 55px;
    line-height: 62px;
    letter-spacing: -2.75px;
}
.newsletter-info p span{
    color:var(--colorLime);
    font-family: 'Diatype-Light';
}
.newsletter-btn{
    margin-top: 24px;
}

@media screen and (max-width: 1380px) {
    .newsletter-wrapper{
        margin-top: -150px;
    }
}
@media screen and (max-width: 1180px) {
    .newsletter-info p{
        font-size: 32px;
        line-height: 35px;
        letter-spacing: -1.6px;
    }
} 
@media screen and (max-width: 1080px) { 
    .clients-list ul{
        grid-template-columns: repeat(5, 1fr);
    }
}
@media screen and (max-width: 980px) {
    .newsletter-info{
        padding:2rem 50px;
    }
    .newsletter-info p{
        font-size: 40px;
        line-height: 45px;
        letter-spacing: -2px;
    }
    .newsletter-wrapper{
        margin-top: -100px;
        border-radius: 20px;
    }
    .clients--intro h2{
        font-size: 32px;
        line-height: 44px;
    }
    .clients--intro{
        font-size: 24px;
        line-height: 30px;
    }
    .clients-list{
        border-radius: 20px;
    }
    .newsletter-info p{
        font-size: 28px;
        line-height: 32px;
        letter-spacing: -1.4px;
    }
} 
@media screen and (max-width: 920px) { 
    .clients-all .custom-arrow::before,
    .clients-all .custom-arrow::after{
        width: calc(50% - 1px);    
    }
}
@media screen and (max-width: 880px) { 
    .clients-list ul{
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (max-width: 760px) { 
    .clients-list{
        padding: 2rem;
    }
    .newsletter-wrapper{
        margin-top: -80px;
    }
    .newsletter-info{
        padding:1.5rem 30px;
    }
}
@media screen and (max-width: 680px) {
    .clients--intro h2{
        font-size: 26px;
        line-height: 25px;
    }
    .clients--intro{
        font-size: 20px;
        line-height: 25px;
    }
    .newsletter-info p{
        font-size: 24px;
        line-height: 26px;
        letter-spacing: -1.2px;
    }
} 
@media screen and (max-width: 620px) { 
    .clients-list ul{
        grid-template-columns: repeat(3, 1fr);
    }
    .newsletter-info{
        padding-inline:20px;
    }
}
@media screen and (max-width: 520px) { 
    .clients--intro{
        display: none;
    }
    .clients-list ul{
        gap: 30px 40px;
    }
    .clients-list{
        padding: 1rem;
        margin-top: 0;
        border-radius: 13px;
    }
    .clients-wrapper{
        padding-top: 1.5rem;
    }
    .newsletter-wrapper{
        margin-top: -80px;
        border-radius: 11px;
    }
    .newsletter-info{
        padding-block:13px;
    }
    .newsletter-info p{
        font-size: 18px;
        line-height: 20px;
        letter-spacing: -0.9px;
    }
}

/* page careers */

.careers-footer{
    height: 1166px;
    position: relative;
    margin-block: clamp(88px, 15vw, 250px);
}

.careers-intro{ 
    margin-block: 210px 260px;
}
.careers-intro-wrapper{
    padding: 37px 60px;
    font-size: 50px;
    line-height: 61px;
    letter-spacing: -2.5px;
    max-width: 1150px;
    margin-inline: auto;
    text-align: center;
    position: relative;
    font-family: 'Diatype-Light';
}

.careers-intro-wrapper::after,
.careers-intro-wrapper::before{
    content: "";
    height: 100%;
    width: 60px;
    background-color: #fff;
    border: 1px solid #000;
    position: absolute;
    top: 0;
}
.careers-intro-wrapper::before{
    border-right: none;
    left: 0;
}
.careers-intro-wrapper::after{
    border-left: none;
    right: 0;
}

.careers-intro-wrapper span.lime{
    color:var(--colorLime);
}
.careers-intro-wrapper span.bold{
    font-family: 'Diatype-Medium';
}


.person{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 90px 4px 1fr;
    grid-template-columns: 90px 1fr;
    gap: 4px;
    position: absolute;
    right: 0;
    top: calc(100% + 100px);
}

.person .icon{
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    mix-blend-mode: hard-light;
    filter: brightness(0.7);
}

.person--name{
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    font-size: 30px;
    line-height: 41px;
    font-family: 'Diatype-Medium';
}
.person--title{
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    font-size: 30px;
    line-height: 41px;
    font-family: 'Diatype-Light-Italic';
}

.moto{
    position: absolute;
    left: 50%;
    top:50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: var(--colorLime);
    font-size: 80px;
    letter-spacing: -4px;
    border-radius: 31px;
    border: 1px solid;
    padding: 50px 120px;
    text-align: center;
    max-width: 1300px;
    width: calc(100% - 4rem);
    background-color: rgba(0, 0, 0, 0.48);
}

.carousel-link{
    position: absolute;
    left: 50%; top:80px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    color: #fff;
    font-size: 35px;
    letter-spacing: -1.75px;
    text-decoration: underline;
    z-index: 2;
    cursor: pointer;
}

.career-slide{
    height: 1156px;
    height: calc(100dvh + 80px);
    position: relative;
}
.career-slide .slide-img{
    height: 100%;
    width: 100%;
}
.career-slide .slide-text{
    position: absolute;
    bottom:51px;
    left: 50%;
    -webkit-transform: translate(-50%, 100%);
        -ms-transform: translate(-50%, 100%);
            transform: translate(-50%, 100%);
    background-color: rgba(131, 131, 131, 0.44);
    color: #fff;
    font-size: 30px;
    line-height: 35px;
    letter-spacing: -1.5px;
    padding: 8px 1rem 13px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: calc(100% - 6rem);
    border-radius: 10px;
    opacity: 0;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    -webkit-transition-delay: .5s;
         -o-transition-delay: .5s;
            transition-delay: .5s;
    text-align:center;
}

.career-slide.swiper-slide-active .slide-text{
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    opacity: 1;
}
.career-slide.swiper-slide-active .slide-text p{
    text-wrap: pretty;
}

.career-slide.swiper-slide{
    -webkit-transform: scale(0.25)!important;
        -ms-transform: scale(0.25)!important;
            transform: scale(0.25)!important;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    -webkit-transition-delay: .2s;
         -o-transition-delay: .2s;
            transition-delay: .2s;
}
.career-slide.swiper-slide-active{
    -webkit-transform: scale(1)!important;
        -ms-transform: scale(1)!important;
            transform: scale(1)!important;
}

.careers-carousel .swiper-button-next, 
.careers-carousel .swiper-button-prev{
    width: 67px;
    height: 67px;
}

.careers-carousel .swiper-button-next::after,
.careers-carousel .swiper-button-prev::after{
    content: "";
    background-image: url(../assets/icons/hero_arrow.svg);
    background-size: contain;
    width:100%;
    height: 100%;
}
.swiper-button-prev::after{
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}

.careers-hiring{
    margin-top: clamp(100px, 18vw, 327px);
    padding-top: 63px;
    border-top: 1px solid;
}

.hiring-list{
    margin-top: clamp(100px, 20vw, 367px);
}

.vacancy{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 28px auto 28px auto;
    grid-template-columns: 1fr auto 75px;
    gap: 28px;
    margin-bottom: 2rem;
    cursor: pointer;
    font-size: 70px;
    letter-spacing: -3.5px;
}

.vacancy--title{
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1 / 2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.vacancy--title h3{
    font-size: 1em;
}
.vacancy--title .icon{
    width: 52px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: 10px;
    position: relative
}

.vacancy--btn{
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    border-radius: 8px;
    border:1px solid #000;
    font-size: 30px;
    padding: 19px 12px;
    text-align: center;
    width: 171px;
    background-color: var(--colorLime);
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -ms-grid-row-align: center;
        align-self: center;
}

.vacancy--btn.mob{display: none;}


.vacancy--num{
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3 / 4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1 / 2;
    color: var(--colorLime);
    font-family: 'Diatype-Light';
    text-align: center;
    /* font-size: 70px; */
}
.vacancy--description{
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / 4;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 3;
    color: #838383;
    font-size: 27px;
    line-height: 37px;
    letter-spacing: -1.35px;
    border-top: 1px solid #000;
    /* max-height: 0; */
    height: 0;
    overflow: hidden;
    -webkit-transition: height .3s ease-in;
    -o-transition: height .3s ease-in;
    transition: height .3s ease-in;
}

.vacancy--num span{
    color: #000;
}

.vacancy--description .text{
    padding-top:23px;
}
.vacancy--description .text > *:not(:last-child){
    margin-bottom:23px;
}

.vacancy--description .text li::before{
    content: "";
    width: 8px;
    background-color: var(--colorLime);
    margin-right: 8px; 
    aspect-ratio: 1;
    display: inline-block;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}

@media screen and (max-width: 1320px) {
    .careers-intro{ 
        margin-top: 160px;
    }
    .vacancy{
        font-size: 55px;
        letter-spacing: -2.75px;
        gap: 20px 25px;
    }
    .vacancy--btn{
        padding-block: 12px;
        font-size: 25px;
    }
    .careers-intro-wrapper{
        font-size: 40px;
        line-height: 45px;
        letter-spacing: -2px;
    }
    .careers-carousel .swiper-button-next, 
    .careers-carousel .swiper-button-prev{
        width: 50px;
        height: 50px;
    }
    .career-slide{
        height: 100dvh;
    }
    .moto{
        font-size: 65px;
        letter-spacing: -3px;
        padding-inline: 60px;
    }
    .careers-footer{
        height: 100dvh;
    }
    
}
@media screen and (max-width: 1080px) {
    .page-careers .page--description{
        max-width: 360px;
    }
    .carousel-link{
        top: 2rem;
        font-size: 30px;
        letter-spacing: -1.5px;
    }
    .career-slide .slide-text{
        bottom: 1rem;
        font-size: 24px;
        line-height: 30px;
        letter-spacing: -1.22px;
    }
    .moto{
        font-size: 50px;
        letter-spacing: -2.5px;
        padding: 3rem 5rem;
    }
}
@media screen and (max-width: 1020px) {
    .careers-intro{ 
        margin-top: 100px;
    }
    .career-slide{
        height: unset;
        aspect-ratio: 1.5;
    }
    .careers-hiring{
        margin-top: 4rem;
    }
}
@media screen and (max-width: 920px) {
    .vacancy{
        font-size: 45px;
        letter-spacing: -2.25px;
        gap: 20px 25px;
    }
    .vacancy--btn{
        padding-block: 8px;
        font-size: 20px;
        width: 120px;;
    }
    .vacancy--description{
        font-size: 24px;
        line-height: 27px;
    }
    .vacancy--title .icon{
        width: 30px;
    }
    .careers-carousel .swiper-button-next, 
    .careers-carousel .swiper-button-prev{
        width: 2rem;
        height: 2rem;
    }
    .career-slide .slide-text{
        max-width: unset;
        padding-inline: 12px;
        width: 90%;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: -1px;
    }
    .moto{
        font-size: 36px;
        letter-spacing: -0.75px;
        padding: 2rem 4rem;
        border-radius: 25px;
    }
    .careers-footer{
        height: 600px;
    }
    .hiring-headers{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
        gap: 1rem;
    }
    .subheader--text{
        text-align: center;
    }
}

@media screen and (max-width: 820px) {
    .careers-intro-wrapper{
        font-size: 32px;
        line-height: 35px;
        letter-spacing: -1.5px;
        padding: 20px 40px;
    }
    .careers-intro-wrapper::after, .careers-intro-wrapper::before{
        width: 40px;
    }
    .person{
        -ms-grid-columns: 72px 1fr;
        grid-template-columns: 72px 1fr;
        top: calc(100% + 50px);
    }
    .person--title,
    .person--name{
        font-size: 22px;
        line-height: 30px;
    }
    .careers-intro{
        margin-block: 80px 170px;
    }
    .carousel-link{
        top: 1.5rem;
        font-size: 20px;
        letter-spacing: -1px;
    }
}
@media screen and (max-width: 680px) {
    .vacancy{
        font-size: 35px;
        letter-spacing: -1.75px;
        gap: 16px;
    }
    .vacancy--description{
        font-size: 20px;
        line-height: 23px;
    }
    .careers-carousel .swiper-button-next, 
    .careers-carousel .swiper-button-prev{
        width: 22px;
        height: 22px;
    }
    .career-slide .slide-text{
        width: 90%;
        font-size: 16px;
        letter-spacing: -0.78px;
        border-radius: 4px;
    }
    .moto{
        font-size: 25px;
        letter-spacing: -1.25px;
        padding: 30px 1.5rem;
        border-radius: 15px;
    }
    .careers-footer{
        height: 450px;
    }
}

@media screen and (max-width: 620px) {
    .page-careers .page--description{
        max-width: unset;
    }
    .page-careers .page--description h2{
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -1px;
    }
    .page-careers .page--description p{
        max-width: 226px;
        margin-inline: auto;
        font-size: 15px;
        line-height: 18px;
        letter-spacing: -0.8px;
    }
}
@media screen and (max-width: 520px) {
    .careers-intro-wrapper{
        font-size: 24px;
        line-height: 25px;
        letter-spacing: -1.2px;
        padding: 6px 22px;
    }
    .careers-intro-wrapper::after, .careers-intro-wrapper::before{
        width: 22px;
    }
    .vacancy{
        font-size: 25px;
        letter-spacing: -1.25px;
        gap: 8px;
    }
    .vacancy--btn{
        display: none;
    }
    .vacancy--btn.mob{
        display: -ms-grid;
        display: grid;
        border-radius: 5px;
        width: 65px;
        height: 35px;
        color: #000;
        font-size: 15px;
        letter-spacing: -.75px;
        padding:0;
        text-align: center;
        place-content: center;
        margin-top: 1rem;
        cursor: pointer;
    }
    .vacancy--description .text{
        padding-top:20px;
    }
    .person{
        -ms-grid-columns: 41px 1fr;
        grid-template-columns: 41px 1fr;
        top: calc(100% + 50px);
    }
    .person--title,
    .person--name{
        font-size: 15px;
        line-height: 16px;
    }
    .careers-intro{
        margin-block: 36px 130px;
    }
    .carousel-link{
        top: 1rem;
        font-size: 15px;
        letter-spacing: -.75px;
    }
    .career-slide .slide-text{
        font-size: 13px;
        letter-spacing: -0.65px;
        padding: 12px 4px;
    }
    .moto{
        font-size: 15px;
        letter-spacing: -0.75px;
        padding: 24px 1rem;
        border-radius: 8px;
    }
    .hiring-list{
        margin-top: 3rem;
    }
    .careers-hiring{
        margin-top: 2rem;
    }
}

@media screen and (max-width: 460px) {
    .careers-carousel .swiper-button-next, 
    .careers-carousel .swiper-button-prev{
        width: 14px;
        height: 14px;
    }
    .careers-footer{
        height: 265px;
    }
}

/* page contact */

body:has(.contact-wrapper){
    min-height: 100dvh;
}

.contact-wrapper{
    position: absolute;
    right: 0; 
    top: 0;
    width: 90%;
    max-width: 1341px;
    min-height: 100dvh;
    background-color: rgba(246, 246, 246, 0.87);
    padding: 245px 32px 70px 77px;
}

.close-contact{
    display: block;
    width: 78px;
    height: 78px;
    border-radius: 9px;
    background-color: #b6b6b6;
    border: 1px solid var(--colorLime);
    position: absolute;
    top: 43px; right: 26px;  
    cursor: pointer;
    padding: 1rem;
    z-index: 250;
}

.close-contact:hover{
    background-color: var(--colorLime);
}

.close-btn-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
}

.close-btn-wrapper > span{
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    border-top: 1px solid #fff;
    -webkit-transform-origin: center;
        -ms-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.close-btn-wrapper >span:last-child{
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}

.contact-wrapper--header{
    color: var(--colorLime);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 2rem;
}
.contact-wrapper--title{
    font-size: 50px;
    line-height: 65px;
    letter-spacing: -2.5px;
    font-family: 'Diatype-Light';
    max-width: 625px;
}

.contact-wrapper--title-mob span,
.contact-wrapper--title span{
    font-family: 'Diatype-Medium';
}

.contact-form{
    margin-block: 3rem 84px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr clamp(2rem, 8vw, 155px) 1fr;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    gap: 36px clamp(2rem, 8vw, 155px);
}

.contact-form .left-col{-ms-grid-column:1;-ms-grid-column-span:1;grid-column:1/2;}
.contact-form .right-col{-ms-grid-column:2;-ms-grid-column-span:1;grid-column:2/3;}
.contact-form .form-textarea{-ms-grid-row-span:3;grid-row:span 3;}

.form-input{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
}
.form-input label span{
    color: #FF6CF5;
}
.form-input.input-radio h4,
.form-input label{
    font-size: 15px;
    line-height: 30px;
    text-transform: uppercase;
    color: #838383;
    position: absolute;
    left:0;
    top: 0;
    font-weight: 400;
}

.form-input{
    border-bottom: 2px solid #231F20;
    position: relative;
    height: 82px;
}

.form-input.form-textarea{
    height: 100%;
    border: none;
    display: block;
    position: relative;
    --areaHeight: calc(100% - 76px);
    caret-color: #FF6CF5;
}
.form-input.form-textarea h3{
    color: #838383;
    font-size: 15px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 36px;
}
.form-input.form-textarea textarea{
    border: 2px solid #000;
    width: 100%;
    height: var(--areaHeight);
    font-family: inherit;
    font-size: 18px;
    background-color: transparent;
}

.form-textarea .logo{
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: .2;
    height: var(--areaHeight);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-filter: brightness(0.25);
            filter: brightness(0.25);
    pointer-events: none;
}

.form-input input{
    font-size: 30px;
    line-height: 30px;
    background-color: transparent;
    width: 100%;
    caret-color: #FF6CF5;
}

.form-submit{
    display: block;
    border:none;
}
.form-submit input{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: 152px;
    height: 42px;
    margin-bottom: 24px;
    background-color: var(--colorLime);
    font-size: 17px;
    letter-spacing: -0.85px;
    line-height: 100%;
    padding: 0;
}
.form-submit p{
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -.5px;
    color: #838383;
}

.radio-btn{
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 4px;
}
.radio-btn:not(:last-of-type){
    border-right: 1px solid #838383;
}
.form-input.input-radio{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4px;
}
.form-input.input-radio input{
    position: absolute;
    left:0; top:0;
    width: 100%;
    height: 100%;
    visibility: hidden;    
}
.form-input.input-radio h4{
    width: 100%;
    position: relative;
}
.form-input.input-radio label{
    position: relative;
    left: unset; top: unset;
    line-height: 100%;
    text-transform: capitalize;
    cursor: pointer;
}

.form-input.input-radio .radio-btn input:checked + label,
.form-input.input-radio .radio-btn:hover label{
    color: var(--colorLime);
}


.newsletter-header h3{
    font-size: 55px;
    line-height: 62px;    
    letter-spacing: -2.75px;
}
.newsletter-header h3 span{
    display: block;  
}
.newsletter-header h3 b{
    color: var(--colorLime); 
    font-family: 'Diatype-Light';
    font-weight: 300;
}
.newsletter-btn{
    margin-top: 24px;
    color: #fff;
    background-color: #838383;
    border-radius: 8px;
    width: 209px;
    height: 62px;
    /* padding: 19px 30px 19px 27px; */
    text-align: center;
    font-size: 30px;
    letter-spacing: -1.5px;
    display: -ms-grid;
    display: grid;
    place-content: center;
    padding: 0;
}

.clients-newsletter .newsletter-btn{
    background-color: var(--colorLime);
    color: #000;
}

.mobile-header{display: none;}
.contact-header--arrow{display: none;}

@media screen and (max-width: 1180px) {
    .contact-wrapper--title{
        font-size: 40px;
        line-height: 45px;
        letter-spacing: -2px;
    }
    .newsletter-header h3{
        font-size: 45px;
        line-height: 50px;
        letter-spacing: -1.25px;
    }
}  
@media screen and (max-width: 1080px) {  
    .contact-wrapper{
        padding-top: 150px;
        padding-left: 32px;
    }
    .contact-form{
        gap: 26px 32px;
    }
    .newsletter-btn{
        font-size: 20px;
        width: 150px;
        height: 60px;
        border-radius: 5px;
    }
}

@media screen and (max-width: 940px) {
    .contact-form{
        gap:10px;
    }
    .contact-form .form-input{
        grid-column:  1/ -1;
        height: auto;
        position: relative;
        padding-top: 39px;
        border-bottom: none;
    }
    .form-input input{
        height: 49px;
        border:1px solid #000;
    }
    .form-input label{
        position: absolute;
        left:0;
        top: 0;
    }
    .form-input.form-textarea{
        --areaHeight: 300px;
    }
    .contact-wrapper--title{
        display: none
    }
    .mobile-header{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 250px;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: end;
        position: sticky;
    }
    .contact-wrapper--title-mob{
        font-size: 34px;
        line-height: 35px;
        letter-spacing: -1.7px;
        color: #fff;
        text-align: center;
        max-width: 385px;
        margin-inline: auto;
        margin-bottom: 1rem;;
    }
    .contact-wrapper{
        position: relative;
        width: 100%;
        padding-block: 2rem;
        height: calc(100dvh - 250px);
        overflow-y: scroll;
        background-color: rgba(246, 246, 246, 0.7);

    }
    .close-contact{
        position: fixed;
        top: 2rem; right: 2rem;
        width: 50px;
        height: 50px;
        padding: 7px;
        border-radius: 4px;
    }
    body:has(.contact-wrapper){
        height: 100dvh;
        overflow: hidden;
    }
    .form-input.input-radio{
        padding-top: 5px;
    }
    .form-input.form-textarea{
        padding-top: 24px;
    }
    .contact-footer{
        margin-top: 100px;
    }
}
  
@media screen and (max-width: 820px) {  
    .newsletter-btn{
        font-size: 16px;
        width: 100px;
        height: 40px;
    }
}
@media screen and (max-width: 620px) {
    .close-contact{
        top: 9px; right: 16px;
        width: 46px;
        height: 46px;
        padding: 5px;
    }
    .contact-wrapper--header{
        text-align: center;
        font-size: 15px;
        margin-bottom: 0;
        position: relative;
    }
    .contact-header--arrow{
        display: block;
        width: 25px;
        height: 13px;
        margin: 10px auto 0;
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
    }
    .contact-wrapper--title{
        font-size: 28px;
        line-height: 32px;
        letter-spacing: -1.4px;
    }
    .radio-btn{
        border:1px solid #fff;
        padding: 11px;
        background-color: rgba(217, 217, 217, 0.51);
    }
    .radio-btn label{
        padding: 11px;
        color: #000;
        font-size: 18px;
        letter-spacing: -.9px;
    }
    .form-input.input-radio{
        gap: 16px 19px;
        padding-bottom: 4px;
    }
    .radio-btn:not(:last-of-type){
        border-right: 1px solid #fff;
    }
    .form-input.input-radio .radio-btn:has(input:checked){
        background-color: var(--colorLime);
    }
    .form-input.input-radio .radio-btn input:checked + label,
    .form-input.input-radio .radio-btn:hover label{
        color: #000;
        /* background-color: var(--colorLime); */
    }
    .contact-form + .newsletter{
        display: none;
    }

    .contact-form .form-input input[type="submit"]{
        margin-inline: auto 0;
        display: block;
        font-size: 17px;
        letter-spacing: -0.85px;
        text-transform: uppercase;
        border-radius: 8px;
        width: 150px;
        height: 42px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }
}  
@media screen and (max-width: 520px) {  
    .newsletter-btn{
        font-size: 13px;
        width: 72px;
        height: 25px;
        border-radius: 3px;
    }
}