@font-face {
    font-family: "Bowler";
    src: url(../fonts/BOWLER/BOWLER.otf);
    font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root{
    --dark: #272727;
    --cyan: rgba(1, 212, 186, 1);
    --white: rgba(255, 255, 255, 1);
    --main-font: 'Bowler', sans-serif;
    --second-font: 'Inter', sans-serif;
}
*{
    box-sizing: border-box;
}
a{
    transition: all .3s linear;
    text-decoration: none;
    cursor: none;
    position: relative;
}
.logo-block img{
    max-width: 300px;
    max-height: 300px;
}
.preloader{
    width: 100vw;
    height: 100vh;
    background: var(--dark);
    position: fixed;
    top: 0;
    left: 0;
    content: '';
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
}
.collapse-buffer .collapse-buffer{
    padding: 0px;
}
.loader {
    position: relative;
    transform: rotateZ(45deg);
    perspective: 1000px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    color: #fff;
}
.loader:before,
.loader:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: inherit;
    height: inherit;
    border-radius: 50%;
    transform: rotateX(70deg);
    animation: 1s spin linear infinite;
}
.loader:after {
    color: var(--cyan);
    transform: rotateY(70deg);
    animation-delay: .4s;
}
.preloader.hide{
    animation: prehide 2s;
}
.preload-buffer{
    width: 250px;
    height: 60px;
}
.progressbar{
    width: 100%;
    overflow: hidden;
    background: white;
    height: 2px;
    content: '';
    margin-top: 15px;
    position: relative;

}
.progressbar::before{
    animation: loaded 1s;
    width: 250px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: loaded 2s ease-in-out;
    background: var(--cyan);
    content: '';
    z-index: 111;
}
@keyframes loaded {
    0%{
        width: 0px;
    }
    100%{
        width: 250px;
    }
}
@keyframes prehide {
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes rotateccw {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes spin {
    0%,
    100% {
        box-shadow: .2em 0px 0 0px currentcolor;
    }
    12% {
        box-shadow: .2em .2em 0 0 currentcolor;
    }
    25% {
        box-shadow: 0 .2em 0 0px currentcolor;
    }
    37% {
        box-shadow: -.2em .2em 0 0 currentcolor;
    }
    50% {
        box-shadow: -.2em 0 0 0 currentcolor;
    }
    62% {
        box-shadow: -.2em -.2em 0 0 currentcolor;
    }
    75% {
        box-shadow: 0px -.2em 0 0 currentcolor;
    }
    87% {
        box-shadow: .2em -.2em 0 0 currentcolor;
    }
}

/*!* width *!*/
/*::-webkit-scrollbar {*/
/*    width: 20px;*/
/*}*/

/*!* Track *!*/
/*::-webkit-scrollbar-track {*/
/*    border-radius: 0px;*/
/*}*/

/*!* Handle *!*/
/*::-webkit-scrollbar-thumb {*/
/*    background: var(--cyan);*/
/*    border-radius: 0px;*/
/*}*/

/*!* Handle on hover *!*/
/*::-webkit-scrollbar-thumb:hover {*/
/*    transition: all .3s ease-in-out;*/
/*    background: var(--white);*/
/*}*/
body {
    background: var(--dark);
    cursor: none;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}
.requestForm p{
    margin-bottom: 0px;
}
#about-us .container{
    border-bottom:2px solid rgba(255, 255, 255, 0.3);
}
main {
    flex: 1 0 auto;
}
header{
    transition: all .2s linear;
    padding: 30px 0;
    z-index: 999999;
    background: rgba( 40,40,40, .5);
    backdrop-filter: blur(7px);
}
header.bg{
    transition: all .2s linear;
    padding: 10px 0;
    z-index: 999;
    background: rgba( 40,40,40, .5);
    backdrop-filter: blur(7px);
}
section{
    overflow: hidden;
}
.border-bottom{
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}
.input-radio input{
    display: none;
}
.input-radio label{
    transition: all .3s;
    display: flex;
    width: 100%;
    color: white;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    border-radius: 81px;
    padding: 20px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 122%;
    cursor: none;
    color: white;
}
.input-radio label:hover{
    background: rgba(1, 212, 186, 0.2);
    border: 1px dashed rgba(255, 255, 255, 0.3);
}
.input-radio input:checked ~ label{
    background: var(--cyan);
    border: 1px dashed var(--cyan);
    color: var(--dark);
}
.big-text.smaller{
    font-size: 44px;
}
.requestForm textarea{
    font-family: var(--second-font);
    outline: none;
    box-shadow: none;
    resize: none;
    width: 100%;
    background: transparent;
    color: white;
    font-size: 1.2rem;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.input-group{
    display: flex;
    align-items: end;
}
.input-group label{
    display: inline-block;
    font-family: var(--second-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 122%;
    color: white;
}
.input-group input{
    font-size: 12px;
    line-height: 122%;
    width: 100%;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    outline: none;
    box-shadow: none;
    color: white;
    font-family:var(--second-font);
}
.input-file input{
    display: none;
}
.input-file label{
    display: flex;
    align-items: center;
}
.input-file .indicator{
    width: 24px;
    height: 24px;
    position: relative;
}

.input-file  label .indicator span{
    transition: all .2s linear;
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 1px;
    background: white;
}
.input-file input.valid ~ label .indicator span{
    background: var(--cyan);
}
.input-file input.valid ~ label .indicator span:nth-child(1){
    background: var(--cyan);
    transform: translate(-7%,-50%) rotate(-45deg);
}
.input-file input.valid ~ label .indicator span:nth-child(2){
    background: var(--cyan);
    width: 50%;
    transform: translate(-9px, 4px) rotate(45deg);
}
.input-file .indicator span:nth-child(2){
    transform: translate(-50%, -50%) rotate(90deg);
}
.input-file label span.title{
    display: flex;
    margin-left: 18px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: white;
    font-family: var(--second-font);
}
.collapse-btn .arrow{
    transition: all .3s linear;
    transform: rotate(0deg);
}
.collapse-btn:hover .arrow{
    transition: all .3s linear;
    transform: rotate(90deg);
}
.collapse-btn[aria-expanded="true"] .arrow{
    transition: all .3s linear;
    transform: rotate(90deg);
}
.collapse-btn[aria-expanded="true"] .arrow svg path{
    transition: all .3s linear;
    fill: var(--cyan);
}
.collapse-buffer{
    width: 100%;
    padding: 40px 0px 20px 0px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.collapse-buffer.no-line{
    border-bottom: 0px;
}
.plus{
    width: 25px;
    height: 25px;
    position: relative;
}
.plus span{
    transition: all .3s linear;
    width: 25px;
    position: absolute;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
}
.collapse-btn[aria-expanded="true"] .plus span:nth-child(2){
    transform: translate(-50%, -50%) rotate(0deg);
}
.plus span:nth-child(2){
    transform: translate(-50%, -50%) rotate(90deg);
}

.collapse-buffer a{
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price{
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 29px;
    color: white;
}

.section-title{
    font-family: var(--main-font);
    font-style: normal;
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 122%;
    color: var(--white);
}
.subtitle{
    font-family: var(--second-font);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 137%;
    color: #FFFFFF;
}
.subtitle.small{
    font-size: 12px;
    line-height: 122%;
}
.color-cyan{
    color: var(--cyan)!important;
}
.color-dark{
    color: var(--dark)!important;
}
.first-section{
    background: var(--cyan);
    border-radius: 50px 50px 0px 0px;
    min-height: 664px;
}
.first-section .container{

}
.main-title{
    font-family: var(--main-font);
    font-style: normal;
    font-weight: 400;
    font-size: 102px;
    color: var(--dark);
    line-height: 122%;
}
.big-text{
    font-family: var(--main-font);
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 122%;
    color: white;
}
.wast-text{
    color: white;
    font-family: var(--main-font);
    font-style: normal;
    font-weight: 400;
    font-size: 65px;
    line-height: 122%;
}
section.px{
    padding: 30px 0;
}
.stroke-cyan{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--cyan);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 122%;
    font-family: var(--second-font);
    color: var(--cyan);
    text-decoration: none;
    padding: 18px 20px;
    transition: all .3s linear;
    background: transparent;
}
.dark-btn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--dark);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 122%;
    font-family: var(--second-font);
    color: var(--white);
    text-decoration: none;
    padding: 18px 20px;
    transition: all .3s linear;
    background: var(--dark);
}
.cyan-btn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--cyan);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 122%;
    font-family: var(--second-font);
    color: var(--dark);
    text-decoration: none;
    padding: 18px 20px;
    transition: all .3s linear;
    background: var(--cyan);
}
.stroke-cyan:hover{
    transition: all .3s linear;
    background-color: var(--cyan);
    color: var(--dark);
}
.dark-btn:hover{
    transition: all .3s linear;
    background-color: transparent;
    color: var(--dark);
}
.cyan-btn:hover{
    transition: all .3s linear;
    background-color: transparent;
    color: var(--cyan);
}
section.talk{
    transition: all .3s linear;
}
section.talk svg path{
    transition: all .3s linear;
}
section.talk:hover{
    transition: all .3s linear;
    background: var(--cyan);
}
section.talk:hover svg path{
    transition: all .3s linear;
    fill: var(--dark);
}
marquee{
    font-family: var(--second-font);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 17px;
    color: white;
    padding: 20px 0;
    border-top: 1px solid #01D4BA;
    border-bottom: 1px solid #01D4BA;
}
.under-number{
    position: relative;
    font-family: var(--second-font);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 137%;
    color: white;
}
.header-menu{
    padding: 0;
    margin: 0;
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;

}
.header-menu a{
    font-family: var(--second-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 122%;
    color: white;
    cursor: pointer;
    transition: all .3s linear;
    border-bottom: 1px solid transparent;
}
.header-menu a:hover{
    font-family: var(--second-font);
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 122%;
    border-bottom: 1px solid var(--cyan);
    transition: all .3s linear;
}
.under-number::after{
    display: block;
    position: absolute;
    content: '';
    width: 33px;
    height: 1px;
    background: var(--cyan);
    bottom: -5px;
}
.dark-line{
    margin: 10px 0;
    content: '';
    width: 33px;
    height: 2px;
    background: var(--dark);
}
.first-section .mask {
    padding: 40px 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    mix-blend-mode: screen;
    z-index: 999;
    background: var(--cyan);
    border-radius: 50px 50px 0px 0px;
}
.under-mask{
    z-index: 9999;
}
.swal2-success-circular-line-left,
.swal2-success-fix,
.swal2-success-circular-line-right {
    background: transparent!important;
}
.swal2-popup.swal2-toast{
    background: var(--dark);
}
.swal2-title{
    color: var(--white);
}
.swal2-timer-progress-bar {
    width: 100%;
    height: 0.25em;
    background: var(--cyan);
}
.swal2-icon.swal2-success {
    border-color: var(--cyan);
    color: var(--cyan);
}
.swal2-popup.swal2-toast .swal2-success {
    border-color: var(--cyan);
}
.swal2-icon.swal2-success [class^=swal2-success-line] {
    display: block;
    position: absolute;
    z-index: 2;
    height: 0.3125em;
    border-radius: 0.125em;
    background-color: var(--cyan);
}
.cursor{
    position: fixed;
    width: 200px;
    height: 200px;
    margin-left: -100px;
    margin-top: -100px;
    border-radius: 50%;
    border: 2px solid lightgrey;
    transition: transform .3s ease;
    transform-origin: center center;
    transition: all .1s;
    transform: scale(.3);
    background: rgba(40,40,40,.5);
    backdrop-filter: blur(5px);
    opacity: .8;
}
.svg-block{
    position: relative;
}
.svg-block:hover .svg{
    opacity: 1;
    transition: all .3s linear;
}
.svg{
    z-index: 99;
    opacity: 0;
    transition: all .3s linear;
    position: absolute;
}
.svg.centered{
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
.svg.right{
    right: -20px;
    left: unset;
}
.border{
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.arc{
    position: relative;

}
.arc::before{
    width: 250px;
    height: 250px;
    background: url(../img/arc.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -51px;
    left: -51px;
    z-index: 0;
    content: ' ';
}
.arc *{
    z-index: 1;
}
.arc.no::before{
    background: unset;
}
.arc2{
    position: relative;

}
.arc2::before {
    transform: rotate(6deg);
    width: 265px;
    height: 170px;
    background: url(../img/arc2.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -35px;
    right: 0px;
    z-index: 999;
    content: ' ';
}
.cross{
    position: relative;

}

.slider-custom {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
	overflow: hidden;
    
}


.slider-custom {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.7s ease, transform 0.7s ease;
    opacity: 1;
    transform: scale(1);
}
.slider-custom.fade-out {
    opacity: 0;
    transform: scale(1.1);
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    height: 450px;
    position: relative;
    perspective: 1000px;
    margin-top: 80px;
}

.carousel-track {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card {
    position: absolute;
    width: 280px;
    height: 380px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.center {
    z-index: 10;
    transform: scale(1.1) translateZ(0);
}

.card.center img {
    filter: none;
}

.card.left-2 {
    z-index: 1;
    transform: translateX(-400px) scale(0.8) translateZ(-300px);
    opacity: 0.7;
}

.card.left-2 img {
    filter: grayscale(100%);
}

.card.left-1 {
    z-index: 5;
    transform: translateX(-200px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
}

.card.left-1 img {
    filter: grayscale(100%);
}

.card.right-1 {
    z-index: 5;
    transform: translateX(200px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
}

.card.right-1 img {
    filter: grayscale(100%);
}

.card.right-2 {
    z-index: 1;
    transform: translateX(400px) scale(0.8) translateZ(-300px);
    opacity: 0.7;
}

.card.right-2 img {
    filter: grayscale(100%);
}

.card.hidden {
    opacity: 0;
    pointer-events: none;
}

.member-info {
    text-align: center;
    margin-top: 40px;
    transition: all 0.5s ease-out;
    font-family: var(--main-font);
}

.member-name {
    color: var(--cyan) !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.member-name::before,
.member-name::after {
    content: "";
    position: absolute;
    top: 100%;
    width: 100px;
    height: 2px;
    /* background: rgb(8, 42, 123); */
}

.member-name::before {
    left: -120px;
}

.member-name::after {
    right: -120px;
}

.member-role {
    color: #848696;
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 0;
    margin-top: -15px;
    position: relative;
}
.dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: grey;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--cyan);
    transform: scale(1.2);
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--cyan);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    border: none;
    outline: none;
    padding-bottom: 4px;
}

.nav-arrow:hover {
    background: var(--cyan);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
    left: 20px;
    padding-right: 3px;
}

.nav-arrow.right {
    right: 20px;
    padding-left: 3px;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 4.5rem;
    }

    .card {
        width: 200px;
        height: 280px;
    }

    .card.left-2 {
        transform: translateX(-250px) scale(0.8) translateZ(-300px);
    }

    .card.left-1 {
        transform: translateX(-120px) scale(0.9) translateZ(-100px);
    }

    .card.right-1 {
        transform: translateX(120px) scale(0.9) translateZ(-100px);
    }

    .card.right-2 {
        transform: translateX(250px) scale(0.8) translateZ(-300px);
    }

    .member-name {
        font-size: 2rem;
    }

    .member-role {
        font-size: 1.2rem;
    }

    .member-name::before,
    .member-name::after {
        width: 50px;
    }

    .member-name::before {
        left: -70px;
    }

    .member-name::after {
        right: -70px;
    }
}

.portfolio-grid {
    display: grid;
    flex: none;
    gap: 6px;
    grid-auto-rows: min-content;
    grid-template-columns: repeat(12,minmax(10px,1fr));
    grid-template-rows: repeat(2,min-content);
    height: min-content;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
    z-index: 4;
}
.portfolio-block{
    border-radius: 10px;
    align-self: start;
    flex: none;
    grid-column: auto / span 6;
    height: 560px;
    justify-self: start;
    position: relative;
    width: 100%;
    overflow: hidden;
}
.portfolio-block:hover img{
    scale: 1;
    transition: all .3s linear;
}
.portfolio-block:hover .case-title{
    font-size: 28px;
    transition: all .3s linear;
}
.portfolio-block:hover .case-subtitle{
    opacity: 1;
    transform: translate(0px, 0px);
    transition: all .3s linear;
}
.portfolio-block:hover .case-year{
    opacity: 1;
    transform: translate(0px, 0px);
    transition: all .3s linear;
}
.case-title{
    transition: all .3s linear;
    color: white;
    font-family: BOWLER;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    top: 15px;
    left: 20px;
    z-index: 2;
}

.case-subtitle{
    transform: translate(-5px, 5px);
    transition: all .2s linear;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    position: absolute;
    bottom: 15px;
    left: 20px;
    z-index: 2;
    width: 250px;
    line-height: 122%;
    opacity: 0;
}
.page-title{
    color: var(--cyan);
    font-family: BOWLER;
    font-size: 102px;
    font-style: normal;
    font-weight: 400;
}
.case-year{
    transform: translate(-5px, 5px);
    transition: all .2s linear;
    color: #fff;
    font-family: BOWLER;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    opacity: 0;
    z-index: 2;
    position: absolute;
    top: 15px;
    right: 20px;
}
.thanksForm{
    border: 1px solid var(--cyan);
    background: #1B1B1B;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 45px 70px;
}
.thanksForm h4{
    color: #FFF;
    margin: 30px 0;
    text-align: center;
    font-family: BOWLER;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
}
.portfolio-block img{
    height: 120%;
    left: 50%;
    position: absolute;
    scale: 1.05;
    z-index: 1;
    top: -10%;
    transition: all .45s linear;
    transform: translateX(-50%);
}
.cross::before {
    transform: rotate(6deg);
    width: 98px;
    height: 89px;
    background: url(../img/cross.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0px;
    right: -20px;
    z-index: 999;
    content: ' ';
}

.svg.left-bottom{
    left: 100px;
    bottom: -50px;
}
.svg.center-bottom{
    left: 45%;
    bottom: -30px;
}
.svg.left{
    top: -5px;
    left: 18%;
}
.svg.top-right{
    top: 0px;
    right: 18%;
}
.main-cursor{
    position: fixed;
    width: 200px;
    height: 200px;
    margin-left: -100px;
    margin-top: -100px;
    border-radius: 50%;
    border: 2px solid #16a085;
    transition: transform .3s ease;
    transform-origin: center center;
    pointer-events: none;
    z-index: 9999;
    background: transparent;
}
.main-cursor.hide{ display: none; }

.main_cursor{
    z-index: 999999;
}
.frst-min-h{
    min-height: 664px;
}
.svg{
    padding: 0 15px;
}
.back-cursor.dark{
    background: var(--dark);
}
.back-cursor.cyan{
    background: rgb(254,43,69);
}
.grow{
    transition: all .3s ease;
    transform: scale(.2);
    border: 2px solid var(--dark);
    background: rgba(0, 0, 0, .5);
}

.dark-svg, .cyan-svg{
    opacity: 0;
    z-index: 99;
    position: relative;
    width: max-content;
    transition: all .3s ease-in-out;
}
.dark-svg:hover, .cyan-svg:hover{
    opacity: 1;

    transition: all .3s ease-in-out;
    animation: fade .3s;
}
.dark-svg svg path{
    transition: all .6s linear;
    fill: var(--cyan);
}
.dark-svg.cyan{
    opacity: 1;
}
.dark-svg:hover svg path{
    opacity: 1;
    transition: all .3s linear;
    fill: var(--dark);
}
.btw-lines div{
    max-width: 200px;
}
.line{
    margin-top: 5px;
    display: inline-block;
    width: 90px;
    height: 2px;
    content: '';
    background: white;
}
.bg-cyan{
    background: var(--cyan);
}
@keyframes fade {
    0%{
        transform: scale(.8);
    }
    100%{
        transform: scale(1);
    }
}
.adc .under-number{
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
}

.content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    position: relative;
    justify-content: flex-start;
    align-items: center;
}
.click_zone{
    position: absolute;
    height: 100%;
    width: 60%;
    display: block;
    top: 0;
    left: 50%;
    z-index: 99999;
    transform: translateX(-50%);
    content: '';
}
.rgbKineticSlider {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    /*left: 0;
    top: 0;
    opacity: 1;
    width: 100%;
    height: 100%;

    transform-origin: 50% 50%;*/
}
canvas {
    position: absolute;
    display : block;
    top:0;
    left : 0;
}

nav a {
    text-decoration: none;
    /*margin-right: 14px;*/
    position: absolute;
    top: 50vh;
    z-index: 1;
    color: var(--cyan);
}

nav a:hover,
nav a:focus {
    outline: none;
    color: var(--cyan);
}

nav span {
    position: absolute;
    width: 100%;
    display: block;
    font-size: 2rem;
    margin-top: 7px;
    -moz-transition: width 0.3s ease;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

nav a:hover span {
    width: 0;
}

nav a.next {
    font-size: 2rem;
    right: 10vw;
}

nav a.prev {
    font-size: 2rem;
    left: 10vw;
}
[role=button]{
    cursor: unset;
}
.main-cursor.port{
    display: flex;
    justify-content: center;
    align-items: start;
    transform: scale(.3);
    border-color: var(--dark);
    background: rgba(0, 0, 0, .5);
}
.main-cursor.small{
    display: flex;
    justify-content: center;
    align-items: start;
    transform: scale(.1);
    border-color: var(--dark);
    background: rgba(0, 0, 0, .5);
}
.main-cursor.port::after{
    transition: all .3s ease-in-out;
    content: 'Посмотреть';
    color: white;
    font-family: var(--second-font);
    font-size: 28px;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;

}
header a{
    cursor: pointer;
}
.cursor.hide{
    transition: all .4s ease;
    opacity: 0;
    transform: scale(2);
}
footer{
    padding: 45px 0;
    background: var(--cyan);
}
footer a{
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: var(--dark);
    transition: all .3s linear;

}
footer a:hover{
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 15px;
    color: black;
    transition: all .3s linear;
}
.logo-block{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #01D4BA;
    border-radius: 3px;
    padding: 45px 20px;
}
.case-url{
    font-family: var(--second-font);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 122%;
    text-decoration-line: underline;
    color: #01D4BA;
}
.another-case-url{
    font-family: var(--main-font);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 122%;
    color: #01D4BA;
}
.main-img{
    overflow: hidden;
    border-radius: 20px;
}


#flesh {
    position: relative;
    margin: 0;
    height: auto;
    width: 100%;
    background-size: 100% auto;
}
#flesh:hover #bone{
    opacity: 1;
}

#bone {
    opacity: 0;
    max-height: 1000px;
    margin: 0;
    -webkit-mask-image: url("../img/mask.png");
    mask-image: url("../img/mask.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 200px;
    mask-size: 200px;
    cursor: none;
}
.frst-min-h:hover .img{
    opacity: 1;
}
.first-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
}
.user-box {
    position: relative
}

.user-box input {
    padding: 10px;
    width: 100%;
    color: #fff;
    border: none;
    border-bottom: 1px solid white;
    background: 0 0;
    border-radius: 0;
    outline: none;
    box-shadow: none;
}
.color-red{
    color: red;
}
.user-box input:focus,
.user-box input:valid {
    border-bottom: 1px solid var(--cyan)
}
.user-box input:focus~label {
    font-style: normal;
    font-weight: 100;
    top: -20px;
    left: 0;
    color: var(--cyan);
    font-size: 12px
}
.user-box input:valid~label {
    font-style: normal;
    font-weight: 100;
    top: -20px;
    left: 0;
    color: var(--cyan);
    font-size: 12px
}
.modal-content {
    background: var(--dark);
    padding: 15px 25px !important;
}
.user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    color: #fff;
    pointer-events: none;
    transition: .5s;
}
.first-bg .img{
    opacity: 0;
    margin: 0;
    -webkit-mask-image: url("../img/mask.png");
    mask-image: url("../img/mask.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 200px;
    mask-size: 200px;
}
.about-case-img{
    position: absolute;
    height: 105%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.b-line{
    width: 100%;
    height: 1px;
    content: '';
    background: rgba(255, 255, 255, 0.3);
}
@media(max-width: 1300px){
    .main-title{
        font-size: 60px;
    }
}

@media(max-width: 992px) {
    .portfolio-grid{
        align-content: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 4px;
    }
    .portfolio-block{
        height: 400px;
    }
    .portfolio-block img{
        height: 105%;
        width: unset;
        /*transform: translate(-50%, -50%);*/
        /*top: 50%;*/
        /*left: 50%;*/
    }
    .case-subtitle, .case-year{
        opacity: 1;
        transform: unset;
    }
    .btw-lines div {
        max-width: unset;
    }
    .mob-wrap{
        display: flex;
        flex-wrap: wrap;
    }
    .adv{
        max-width: unset;
        width: 150px;
        padding: 5px;
    }
    .line{
        display: none;
    }
    .wast-text{
        font-size: 36px;
    }
    .mob-hide{
        display: none!important;
    }
    .first-section .mask{
        display: none;
    }
    .arc:before, .arc2:before, .cross:before{
        background: none;
    }
    .main-title{
        font-size: 29px;
    }
    .mob-toggle{
        z-index: 100000000;
        transition: all .3s ease-in-out;
        font-size: 1.4rem;
        color: var(--cyan)!important;
    }
    .header-menu{
        display: flex;
        position: fixed;
        height: 100vh;
        width: 100vw;
        background: rgba( 40,40,40, .8);
        backdrop-filter: blur(7px);
        padding: 60px 20px;
        flex-direction: column;
        align-items: center;
        justify-content: start;
        top: 0;
        left: 0;
        transform: translateX(-100%);
        transition: all.3s  ease-in-out;
        z-index: 99999999;
    }
    .header-menu li{
        margin-bottom: 2rem;
    }
    .header-menu a{
        font-family: var(--main-font);
        font-size: 2rem;
    }
    .header-menu a:hover{
        font-family: var(--main-font);
        font-size: 2rem;
        font-style: normal;
        font-weight: 400;
        border-bottom: unset;
        transition: all .3s linear;
    }
    body.show-menu{
        overflow: hidden;
    }
    body.show-menu .header-menu{
        transition: all .3s ease-in-out;
        transform: translate3d(0, 0, 0);
    }
    body.show-menu .mob-toggle{
        transition: all .3s ease-in-out;
        transform: rotate(90deg);
    }
    .first-section, .frst-min-h{
        min-height: 500px!important;
    }
    .cursor, .main-cursor{
        display: none;
        visibility: hidden;
    }
    .big-text, .big-text.smaller{
        font-size: 24px;
    }
    .mob-rtl{
        direction: rtl;
    }
    .input-radio label {
        font-size: 18px;
    }
    .input-group label{
        font-size: 10px;
    }
    .content {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 190px;
        position: relative;
        justify-content: flex-start;
        align-items: center;
    }
    .section-title{
        font-size: 1rem;
    }
    .member-info{
        margin-top: 10px;
    }
}
@media(max-width: 576px) {
    .input-radio label {
        font-size: 12px;
    }
    .input-radio label {
        padding: 15px;
    }
}

.share,
.share:before,
.share:after,
.share .fab {
    height: 56px;
    width: 56px;
    border-radius: 50%;
    position: absolute;
    cursor: pointer;

}
.share {
    position: fixed;
    z-index: 99;
    bottom: 50px;
    right: 40px;
    z-index: 999;
}

.share:before,
.share:after {
    content: '';
    will-change: transform
}

.share:before {
    background: url(../icons/chat-bubbles.svg) center/28px no-repeat;
    z-index: 9999;
    -webkit-transition: .3s;
    transition: .3s
}

.share:after {
    background: var(--cyan);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    z-index: 999;
    -webkit-transition: .39s;
    transition: .39s;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.share.active:before {
    background: url(../icons/chat-bubbles-white.svg) center/28px no-repeat
}

.share.active:after {
    background: #fff
}

.share .fab {
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-animation: .3s down forwards;
    animation: .3s down forwards;
    opacity: 0;
    will-change: animation;
    z-index: 999;
}

.share .fab a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.share .fab:nth-child(2) {
    top: -66px
}

.share .fab:nth-child(3) {
    top: -132px
}

.share .fab:nth-child(4) {
    top: -200px
}

.share .fab.whatsapp {
    background: #25d366 url(../icons/whatsapp.svg) center/28px no-repeat
}

.share .fab.comment {
    background: #08c url(../icons/comment.svg) center/28px no-repeat
}
.share .fab.telegram {
    background: #08c url(../icons/telegram-plane.png) center/28px no-repeat
}

.share .fab.phone {
    background: green url(../icons/phone.svg) center/28px no-repeat
}

.share .fab.viber .mobile {
    display: none
}

.share .fab.active {
    -webkit-animation: .48s up forwards;
    animation: 1.2s up  forwards;
}

.share .fab.active:nth-child(1) {
    -webkit-animation-delay: .48s;
    animation-delay: .48s
}

.share .fab.active:nth-child(2) {
    -webkit-animation-delay: .39s;
    animation-delay: .39s
}

.share .fab.active:nth-child(3) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.share .fab.no {
    -webkit-animation: none;
    animation: none
}

@-webkit-keyframes up {
    50% {
        -webkit-transform: translateY(-170%);
        transform: translateY(-170%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(-130%);
        transform: translateY(-130%)
    }
}

@keyframes up {
    50% {
        -webkit-transform: translateY(-170%);
        transform: translateY(-170%)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(-130%);
        transform: translateY(-130%)
    }
}


@-webkit-keyframes down {
    0% {
        opacity: 1;
        -webkit-transform: translateY(-130%);
        transform: translateY(-130%)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        top: 0
    }
}

@keyframes down {
    0% {
        opacity: 1;
        -webkit-transform: translateY(-130%);
        transform: translateY(-130%)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(0);
        transform: translateY(0);
        top: 0
    }
}

.services{
    background: var(--cyan);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    /* height: 100vh; */
    padding: 100px 0;
}
.title-services{
    font-family: "Bowler";
    font-size: 114px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.4;
    /* font-family:var(--second-font); */
}
.title-services-text{
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    max-width: 435px;
}
.title-seo{
    font-size: 102px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    color: white;
    font-family: "Bowler";
}
.title-services-serv{
    font-size: 62px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    color: white;
    font-family: "Bowler";
}
.title-seo-faq{
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    color: white;
    font-family: "Bowler";
}
.text-seo{
    font-size: 102px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
    color: white;
}
.line-seo{
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
    width: 100%;
    height: 2px;
    background-color: white;
}
.seo{
    color: white;
}
.stat-number{
    /* font-family: "Bowler"; */
    font-weight: 700;
    font-size: 24px;
    line-height: 122%;
}
.underline{
    margin-top: -30px;
    margin-right: -10px;
}
.seo-border-r{
    border-right: 1px solid #FFFFFF4D;
}
.seo-border-b{
    border-bottom: 1px solid #FFFFFF4D;
}
.seo-description{
    width: 350px;
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    margin: 70px 0;
}
.product-description{
    font-size: 18px;
    font-weight: 400;
    width: 190px;
    height: 190px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--cyan);
    color: var(--dark);
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.img-right{
    position: absolute;
    right: 0;
    bottom: 0;
    /* z-index: 20; */
    width: 600px;
}
.title-web-services {
    font-family: "Bowler";
    font-size: 166px;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
}
.title-all{
    font-family: "Bowler";
    font-weight: 400;
    font-size: 77px;
    line-height: 122%;
    letter-spacing: 0%;
}
.title-advertising{
    font-size: 133px;
    text-align: center;
}
.title-dev{
    font-size: 93px;
}
.seo-border-top{
    border-top: 1px solid #FFFFFF4D;
}
.text-web{
    font-family: Inter;
    font-weight: 400;
    font-size: 32px;
    line-height: 122%;
    letter-spacing: 0%;
}
.description-section {
    background-color: #1A1A1A;
}
.company-description {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: 120px;
    margin-bottom: 100px;
}
.description-text {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 900px;
    margin-top: 50px;
}
.description-text span{
    margin-left: 90px;
    margin-top: 50px;
}
.text-accent {
    color: #00E6B5;
    font-weight: 500;
}
.case-btn{
    text-align: center;
    width: 100%;
    padding: 10px 0;
    color: var(--cyan);
    border: 1px solid var(--cyan);
    margin: 20px 0;
}
.web-indentation{
    padding: 100px 40px;
}
.web-subtext{
    margin-bottom: 100px;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 122%;
    color: #686868;
    width: 200px;
}
.learning-savings-left{
    font-family: BOWLER;
    font-weight: 400;
    font-size: 31px;
    line-height: 122%;
    letter-spacing: 0%;
}
.learning-savings-right{
    font-family: Inter;
    font-weight: 500;
    font-size: 19px;
    line-height: 122%;
    letter-spacing: 0%;
}
.learning-title{
    width: 500px;
    margin: 0 auto;
}
.learning-savings{
    padding: 50px 0;
    border-bottom: 1px solid #FFFFFF4D;
}
.angled {
    display: inline-block;
    font-family: BOWLER;
    font-weight: 400;
    font-size: 118.95px;
    line-height: 122%;
    letter-spacing: 0%;
    color: var(--cyan);
    transform: rotate(15deg);
}
.number-one-b{
    font-family: BOWLER;
    font-weight: 400;
    font-size: 200px;
    line-height: 122%;
    letter-spacing: 0%;
    color: var(--white);
}
.number-one{
    padding: 100px 0;
}
.number-one-s{
    font-family: BOWLER;
    font-weight: 400;
    font-size: 102px;
    line-height: 122%;
    letter-spacing: 0%;
    color: var(--white);
}

@media (max-width: 850px){
    .services{
        padding: 50px 0;
    }
    .title-services{
        font-size: 40px;
    }
    .title-seo{
        font-size: 38px;
    }
    .title-services-serv{
        font-size: 38px;
    }
    .title-seo-faq{
        font-size: 38px;
    }
    .seo-border-r{
        border-right: none;
    }
    .seo-description{
        margin: 20px 0;
    }
    .img-right{
        display: none;
    }
    .title-web-services{
        font-size: 48px;
    }
    .big-mobl{
        font-size: 80px;
    }
    .title-all{
        font-size: 40px;
    }
    .title-advertising{
        font-size: 50px;
    }
    .title-dev{
        font-size: 45px;
    }
    .company-description{
        margin-left: 70px;
        margin-bottom: 50px;
    }
    .web-indentation{
        padding: 12px;
    }
    .angled{
        font-size: 50px;
    }
    .number-one-b{
        font-size: 50px;
    }
    .number-one{
        padding: 50px 0;
    }
    .number-one-s{
        font-size: 50px;
    }
}
/* декоративный видимый круг-курсор */
.image-container .custom-cursor{
    position:absolute;
    width:200px;height:200px;
    margin:-100px 0 0 -100px;        /* центрируем относительно pointer */
    border:2px solid var(--cyan);
    border-radius:50%;
    pointer-events:none;
    opacity:.8;
    transition:transform .1s ease;
    transform:scale(.3);
}
.image-container:hover .custom-cursor{transform:scale(1)}
.image-container{cursor:none;position:relative}
.image-container {
    position:relative;
    cursor:none;                 /* прячем системный курсор */
}

.image-container .main-image{
    width:100%;
    opacity:0;                   /* пока нет ховера ─ картинку не видно   */
    transition:opacity .3s ease;
    -webkit-mask-image:url("../img/mask.png"); /* тот же файл, что и #bone */
            mask-image:url("../img/mask.png");
    -webkit-mask-repeat:no-repeat;
            mask-repeat:no-repeat;
    -webkit-mask-size:200px 200px;            /* диаметр круга = 200 px   */
            mask-size:200px 200px;
    pointer-events:none;                      /* чтобы мышь проходила сквозь */
}

.image-container:hover .main-image{opacity:1}

.arc, .arc2{
    position: relative;
    --mx:-9999px; --my:-9999px; 
}

.arc::before,
.arc2::before{
    pointer-events:none;
    -webkit-mask-image:url("../img/mask.png");
            mask-image:url("../img/mask.png");
    -webkit-mask-repeat:no-repeat;
            mask-repeat:no-repeat;
    -webkit-mask-size:200px 200px;
            mask-size:200px 200px;
    -webkit-mask-position:calc(var(--mx) - 100px) calc(var(--my) - 100px);
            mask-position:calc(var(--mx) - 100px) calc(var(--my) - 100px);
    opacity:0;
    transition:opacity .25s ease;
}

.frst-min-h:hover .arc::before,
.frst-min-h:hover .arc2::before{
    opacity:1;
}
.stats-row{position:relative;}

.arrow-to-top{
    position:absolute;
    top:50%;
    transform:translate(-50%,-50%);
    width:60px;
    pointer-events:none;
    z-index:10;
}

.arrow-1{left:calc(100% * 2 / 3);}

.arrow-2{left:calc(100% * 3 / 3);}

.arrow-3{
    left: 2rem;
    top: 1rem;
}

@media (max-width: 992px){
    .arrow-to-top{display:none;}
}

.stats-row .arrow-to-top {
    width:60px;      /* любая нужная ширина */
    height:auto;
    pointer-events:none;
    transition:opacity .3s ease;
    -webkit-mask-image:url("../img/mask.png"); /* тот же файл */
            mask-image:url("../img/mask.png");
    -webkit-mask-repeat:no-repeat;
            mask-repeat:no-repeat;
    -webkit-mask-size:200px 200px;
            mask-size:200px 200px;
    /* по умолчанию маску уводим за экран,
       чтобы стрелки не были видны до наведения */
    -webkit-mask-position:-9999px -9999px;
            mask-position:-9999px -9999px;
}
.arrow-to-left{
    width:130px !important;
}

/* видимый кружок вокруг курсора (тот же, что в first-section) */
.stats-row .custom-cursor{
    width:200px;height:200px;
    margin:-100px 0 0 -100px;
    position:absolute;
    border:2px solid var(--cyan);
    border-radius:50%;
    opacity:.8;
    pointer-events:none;
    transform:scale(.3);
    transition:transform .1s ease;
}
.stats-row:hover .custom-cursor{transform:scale(1)}

.service-more-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(1, 212, 186, 0.10);
  color: #fff;
  text-decoration: none;
  font-family: var(--second-font);
  font-size: 13px;
  line-height: 1;
  transition: all .3s linear;
}

.service-more-btn:hover{
  background: rgba(1, 212, 186, 0.18);
  border-color: rgba(1, 212, 186, 0.55);
  color: var(--cyan);
}

/* CTA внутри раскрытого collapse */
.service-cta{
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 22px;
  border-radius: 16px;

  border: 1px solid rgba(1, 212, 186, .85);
  color: var(--cyan);
  background: transparent;

  font-family: var(--second-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;

  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: color .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

/* анимированная заливка */
.service-cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cyan);
  transform: translateX(-110%);
  transition: transform .35s ease;
  z-index: 0;
}

.service-cta > *{
  position: relative;
  z-index: 1;
}

.service-cta-ico{
  transition: transform .25s ease;
  font-size: 16px;
}

/* hover */
.service-cta:hover{
  color: var(--dark);
  border-color: rgba(1, 212, 186, 1);
  box-shadow: 0 14px 36px rgba(1, 212, 186, .18);
  transform: translateY(-1px);
}
.service-cta:hover::before{
  transform: translateX(0);
}
.service-cta:hover .service-cta-ico{
  transform: translateX(4px);
}

/* focus (клавиатура) */
.service-cta:focus-visible{
  outline: 2px solid rgba(1, 212, 186, .55);
  outline-offset: 4px;
}

/* мобилка чуть компактнее */
@media (max-width: 992px){
  .service-cta{ padding: 12px 18px; border-radius: 14px; }
}


/* === NEW FOOTER === */
footer.site-footer{
  flex-shrink: 0;
  padding: 70px 0 28px;
  background: #0f0f10;
  border-top: 1px solid rgba(1, 212, 186, .22);
}

footer.site-footer a{ cursor: pointer; }

/* панель */
footer.site-footer .footer-panel{
  border-radius: 28px;
  padding: 38px 34px 24px;
  background:
    radial-gradient(1200px 380px at 15% 0%, rgba(1,212,186,.12), transparent 55%),
    radial-gradient(900px 320px at 95% 10%, rgba(1,212,186,.08), transparent 55%),
    rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}

/* логотип: перекрашиваем svg, т.к. внутри fill="#282828" */


footer.site-footer .footer-desc{
  margin: 0;
  font-family: var(--second-font);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.78);
  max-width: 420px;
}

footer.site-footer .footer-meta{
  margin-top: 14px;
  font-family: var(--second-font);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,.62);
}

/* заголовки колонок */
footer.site-footer .footer-title{
  font-family: var(--second-font);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  margin-bottom: 14px;
}

/* ссылки */
footer.site-footer .footer-links li + li{ margin-top: 10px; }

footer.site-footer .footer-links a{
  display: inline-block;
  font-family: var(--second-font);
  font-size: 13px;
  color: rgba(255,255,255,.86);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: all .25s ease;
}

footer.site-footer .footer-links a:hover{
  color: var(--cyan);
  border-bottom-color: rgba(1,212,186,.55);
}

/* контакты карточками */
footer.site-footer .footer-contact-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

footer.site-footer .footer-contact{
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  transition: all .25s ease;
}

footer.site-footer .footer-contact:hover{
  border-color: rgba(1,212,186,.40);
  background: rgba(1,212,186,.08);
  transform: translateY(-1px);
}

footer.site-footer .footer-contact-label{
  font-family: var(--second-font);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.60);
}

footer.site-footer .footer-contact-value{
  font-family: var(--second-font);
  font-size: 14px;
  color: rgba(255,255,255,.90);
  line-height: 1.35;
}

/* кнопки */
footer.site-footer .footer-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

footer.site-footer .footer-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-family: var(--second-font);
  font-weight: 700;
  font-size: 13px;
  border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}

footer.site-footer .footer-btn-primary{
  background: var(--cyan);
  color: var(--dark);
  border-color: var(--cyan);
}

footer.site-footer .footer-btn-primary:hover{
  background: transparent;
  color: var(--cyan);
}

footer.site-footer .footer-btn-ghost{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.90);
}

footer.site-footer .footer-btn-ghost:hover{
  border-color: rgba(1,212,186,.40);
  color: var(--cyan);
  background: rgba(1,212,186,.08);
}

/* нижняя полоса */
footer.site-footer .footer-bottom{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

footer.site-footer .footer-bottom-left{
  font-family: var(--second-font);
  font-size: 12px;
  color: rgba(255,255,255,.66);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

footer.site-footer .footer-bottom-left a{
  color: rgba(255,255,255,.78);
  border-bottom: 1px solid transparent;
}

footer.site-footer .footer-bottom-left a:hover{
  color: var(--cyan);
  border-bottom-color: rgba(1,212,186,.55);
}

footer.site-footer .footer-dot{ opacity: .5; }

/* адаптация */
@media (max-width: 992px){
  footer.site-footer{ padding: 50px 0 22px; }
  footer.site-footer .footer-panel{ padding: 26px 18px 18px; border-radius: 22px; }
}

/* Мобилка: нормализуем список "что мы предлагаем" */
@media (max-width: 992px){
  .adc .mob-rtl{
    direction: ltr;
  }

  .adc .row.g-2{
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 12px;
  }

  .adc .row.g-2 > .col-12{
    grid-column: 1 / -1;
  }

  .adc .under-number{
    text-align: left;
    width: 100%;
  }
}

/* FIX: выравниваем "© 2026 • Политика • 16+" по одной базовой линии */
footer.site-footer .footer-bottom-left{
  align-items: baseline !important;
}

footer.site-footer .footer-bottom-left > span,
footer.site-footer .footer-bottom-left > a{
  line-height: 15px !important;     /* как у footer a в старых стилях */
  font-size: 12px !important;
  margin: 0;
  padding: 0;
  display: inline-block;            /* даёт нормальную baseline */
  vertical-align: baseline;
}

/* если у тебя было underline через border-bottom и оно влияло */
footer.site-footer .footer-bottom-left > a{
  border-bottom: 0 !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
}
footer.site-footer .footer-bottom-left > a:hover{
  text-decoration-color: rgba(1,212,186,.55);
}

/* ===== Partners slider ===== */
.partners-section { position: relative; }

.partners-shell{
  position: relative;
  margin-top: 18px;
  padding: 22px 56px;
  border-radius: 22px;
  border: 1px solid rgba(1,212,186,.22);
  background:
    radial-gradient(900px 240px at 18% 0%, rgba(1,212,186,.12), transparent 55%),
    linear-gradient(180deg, rgba(18,28,28,.65), rgba(10,12,12,.65));
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.partners-track{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 2px;
  cursor: grab;
}
.partners-track.dragging{ cursor: grabbing; }
.partners-track::-webkit-scrollbar{ height: 0; }

.partner-card{
  scroll-snap-align: center;
  width: 220px;
  min-width: 220px;
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.partner-card:hover{
  transform: translateY(-3px);
  border-color: rgba(1,212,186,.55);
  box-shadow: 0 12px 30px rgba(0,0,0,.45);
}

.partner-thumb{
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.partner-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner-name{
  color: #fff;
  font-family: var(--second-font);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .85;
}

.partners-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan);
  color: #fff;
  cursor: pointer;
  z-index: 5;
  transition: transform .2s ease;
  font-size: 1.6rem;
  padding-bottom: 4px;
}
.partners-track { scroll-behavior: auto; }
.partners-arrow:hover{ transform: translateY(-50%) scale(1.08); }
.partners-arrow-left{ left: 14px; padding-right: 3px; }
.partners-arrow-right{ right: 14px; padding-left: 3px; }

@media (max-width: 768px){
  .partners-shell{ padding: 18px 16px; }
  .partner-card{ width: 190px; min-width: 190px; }
  .partner-thumb{ height: 120px; }
}

.partners-shell-full{
  overflow: visible !important;
}

.partners-track{
  overflow-y: visible !important;
  padding-top: 10px !important;
  padding-bottom: 30px !important;
}


/* ===== HEADER v2 (как футер) ===== */
header.site-header{
  padding: 18px 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  z-index: 999999 !important;
}
header.site-header.bg{
  padding: 10px 0 !important;
  background: transparent !important;
  backdrop-filter: none !important;
}

header.site-header .header-shell{
  position: relative;
  border-radius: 22px;
  padding: 14px 18px;
  background:
    radial-gradient(900px 240px at 18% 0%, rgba(1,212,186,.12), transparent 55%),
    radial-gradient(650px 220px at 95% 20%, rgba(1,212,186,.08), transparent 55%),
    rgba(10, 12, 12, .42);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 60px rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  overflow: visible;
}

header.site-header.bg .header-shell{
  padding: 10px 18px;
  background:
    radial-gradient(900px 240px at 18% 0%, rgba(1,212,186,.10), transparent 55%),
    rgba(10, 12, 12, .42);
  box-shadow: 0 18px 46px rgba(0,0,0,.55);
}

/* CTA в хедере — не на всю ширину */
header.site-header .header-cta.stroke-cyan{
  width: auto !important;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
}

/* аккуратнее декоративная иконка */
header.site-header .header-mark{
  opacity: .9;
  max-width: 190px;
  height: auto;
}

/* Десктоп-меню: “пилюли”, без подчёркивания */
@media (min-width: 993px){
  header.site-header .header-shell{
    padding: 16px 18px; /* чуть больше воздуха, чтобы не подрезало */
  }

  header.site-header.bg .header-shell{
    padding: 12px 18px;
  }

  header.site-header .header-menu{
    justify-content: center;
    gap: 14px;
    padding: 2px 0; /* чуть воздуха, чтобы пилюли не подрезались */
  }

  header.site-header .header-menu a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    line-height: 1;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    border-bottom: none !important;
    transition: all .2s ease;
  }

  header.site-header .header-menu a:hover{
    border-color: rgba(1,212,186,.35);
    background: rgba(1,212,186,.10);
    transform: translateY(-1px);
    border-bottom: none !important;
  }
}

/* Мобила — просто чуть меньше радиус/паддинги */
@media (max-width: 992px){
  header.site-header .header-shell{
    border-radius: 18px;
    padding: 12px 14px;
  }

  .header-menu{
    display: flex;
    position: fixed;
    inset: 0;                 /* top/right/bottom/left = 0 */
    width: 100%;
    height: 100vh;            /* fallback */
    height: 100dvh;           /* корректнее на мобилках */
    background: #0b0b0b;
    backdrop-filter: none;
    padding: 84px 26px calc(28px + env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    text-align: left;

    transform: translate3d(-102%, 0, 0);     /* гарантированно уезжает за край */
    transition: transform .3s ease-in-out;   /* фикс all.3s */
    will-change: transform;
    z-index: 99999999;

    pointer-events: none; /* когда скрыто — не кликается и не ловит тапы */
  }
  html, body { overflow-x: clip; } /* можно hidden, но clip лучше */

  .header-menu{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 100vw;
    height: 100vh;  /* fallback */
    height: 100dvh; /* видимая высота с учётом панелей браузера */
    margin-left: -50vw; /* растягиваем на весь экран, даже внутри контейнера */
    box-sizing: border-box;

    transform: translate3d(-100%, 0, 0); /* уезжает полностью влево */
    transition: transform .3s ease-in-out;           /* вместо all.3s */
  }

  body.show-menu .header-menu{
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
  }

  body.show-menu{
    overflow: hidden;
    height: 100dvh;
  }

  /* снимаем backdrop-filter, чтобы fixed-меню не ограничивалось хедером */
  body.show-menu header.site-header .header-shell{
    backdrop-filter: none;
  }

  .header-menu .header-menu-close{
    position: absolute;
    top: 18px;
    right: 18px;
    width: auto;
    margin: 0;
    list-style: none;
  }

  .header-menu .menu-close{
    width: 44px;
    height: 44px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #fff;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .header-menu .menu-close span{
    position: absolute;
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
  }

  .header-menu .menu-close span:first-child{
    transform: rotate(45deg);
  }

  .header-menu .menu-close span:last-child{
    transform: rotate(-45deg);
  }
}

/* ===== Partners (Splide) ===== */
.partner-slide .splide__track{
  overflow: visible !important; /* чтобы тени не обрезались */
}

.partner-slide .splide__list{
  padding-top: 10px;
  padding-bottom: 30px;
}

.partner-slide .splide__slide{
  overflow: visible;
}

/* важно: убираем фикс. ширину только внутри splide */
.partner-slide .partner-card{
  width: 100%;
  min-width: 0;
}

/* Кнопка-ссылка на сайт в кейсе (в стиле проекта: dark + cyan) */
.case-cta{
  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 22px;
  border-radius: 999px;

  border: 1px solid rgba(1, 212, 186, .85);
  color: var(--cyan);
  background: rgba(1, 212, 186, .08);

  font-family: var(--second-font);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;

  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: color .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

/* анимированная заливка */
.case-cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cyan);
  transform: translateX(-110%);
  transition: transform .35s ease;
  z-index: 0;
}

.case-cta > *{
  position: relative;
  z-index: 1;
}

.case-cta-ico{
  transition: transform .25s ease;
  font-size: 16px;
}

/* hover */
.case-cta:hover{
  color: var(--dark);
  border-color: rgba(1, 212, 186, 1);
  box-shadow: 0 14px 36px rgba(1, 212, 186, .18);
  transform: translateY(-1px);
  background: transparent;
}
.case-cta:hover::before{
  transform: translateX(0);
}
.case-cta:hover .case-cta-ico{
  transform: translateX(4px);
}

/* focus (клавиатура) */
.case-cta:focus-visible{
  outline: 2px solid rgba(1, 212, 186, .55);
  outline-offset: 4px;
}

header, footer{
  cursor: default;
}

@media (max-width: 992px){
  .case-cta{ padding: 12px 18px; }
}

footer.site-footer,
footer.site-footer *{
  cursor: none !important;
}

.main-cursor,
.cursor{
  position: fixed;
  pointer-events: none;
}

.next-case-banner{
  padding: 22px 0;
}

.next-case-banner__link{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 22px;
  height: clamp(240px, 22vw, 340px); /* <-- средний размер */
  text-decoration: none;

  border: 1px solid rgba(18, 210, 190, .20);
  background: #000;
}

.next-case-banner__img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.03);
  filter: brightness(.85);
}

.next-case-banner__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.15) 100%),
    radial-gradient(700px 280px at 15% 50%, rgba(18,210,190,.16), transparent 60%);
}

.next-case-banner__content{
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 28px 28px;
  display:flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  max-width: 820px;
}

.next-case-banner__kicker{
  font-size: 12px;
  opacity: .75;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.next-case-banner__title{
  font-size: clamp(22px, 2.6vw, 44px);
  font-weight: 800;
  line-height: 1.05;
}

.next-case-banner__btn{
  margin-top: 6px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  width: fit-content;

  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18, 210, 190, .35);
  background: rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  font-size: 14px;
  opacity: .9;
  transition: transform .15s ease, opacity .15s ease;
}

.next-case-banner__arrow{
  transition: transform .15s ease;
}

.next-case-banner__link:hover .next-case-banner__btn{
  transform: translateY(-1px);
  opacity: 1;
}

.next-case-banner__link:hover .next-case-banner__arrow{
  transform: translateX(3px);
}

@media (max-width: 576px){
  .next-case-banner__content{ padding: 18px; }
  .next-case-banner__link{ border-radius: 16px; }
}

.next-case-banner__link,
.next-case-banner__link:link,
.next-case-banner__link:visited{
  color: #fff;
}

.next-case-banner__kicker{ color: rgba(255,255,255,.75); }
.next-case-banner__title{ color: #fff; }
.next-case-banner__btn{ color: #fff; }

/* Фикс: хедер всегда виден на мобилке */
@media (max-width: 992px){
  header.site-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100000000; /* выше контента */
  }

  /* чтобы контент не уходил под фиксированный хедер */
  body{
    padding-top: var(--header-h, 92px); /* 92px — запасной вариант */
  }

  /* чтобы якоря (#about-us и т.п.) не прятались под хедером */
  html{
    scroll-padding-top: var(--header-h, 92px);
  }

  /* меню-оверлей поверх всего (у тебя оно fixed, но пусть будет гарантированно выше) */
  .header-menu{
    z-index: 100000001;
  }
}



/* ===== Cookie Consent ===== */
.cookie-consent[hidden]{ display:none !important; }

.cookie-consent{
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: min(560px, calc(100% - 48px));
  z-index: 100000002;

  border-radius: 22px;
  padding: 16px 16px;

  background:
    radial-gradient(900px 240px at 18% 0%, rgba(1,212,186,.12), transparent 55%),
    radial-gradient(650px 220px at 95% 20%, rgba(1,212,186,.08), transparent 55%),
    rgba(10, 12, 12, .62);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 60px rgba(0,0,0,.60);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  gap: 14px;
  align-items: flex-start;

  opacity: 0;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}

.cookie-consent.cookie-consent--show{
  opacity: 1;
  transform: translateY(0);
}

.cookie-consent.cookie-consent--hide{
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.cookie-consent__badge{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(1, 212, 186, .12);
  border: 1px solid rgba(1, 212, 186, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.cookie-consent__badge svg{ width: 20px; height: 20px; }
.cookie-consent__content{ flex: 1; min-width: 0; }

.cookie-consent__title{
  margin: 0;
  font-family: var(--main-font);
  font-size: 20px;
  line-height: 1.1;
  color: #fff;
}

.cookie-consent__text{
  margin: 8px 0 0;
  font-family: var(--second-font);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
}

.cookie-consent__text a{
  color: rgba(255,255,255,.90);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(1,212,186,.35);
  cursor: pointer;
}

.cookie-consent__text a:hover{
  color: var(--cyan);
  text-decoration-color: rgba(1,212,186,.65);
}

.cookie-consent__actions{
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 10px 14px;
  border-radius: 999px;

  font-family: var(--second-font);
  font-weight: 700;
  font-size: 12px;
  line-height: 1;

  border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;

  cursor: pointer;
}

.cookie-btn--primary{
  background: var(--cyan);
  color: var(--dark);
  border-color: var(--cyan);
}

.cookie-btn--primary:hover{
  background: transparent;
  color: var(--cyan);
}

.cookie-btn--ghost{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.90);
}

.cookie-btn--ghost:hover{
  border-color: rgba(1,212,186,.40);
  color: var(--cyan);
  background: rgba(1,212,186,.08);
}

.cookie-consent__close{
  width: 36px;
  height: 36px;
  border-radius: 12px;

  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  flex: 0 0 auto;

  transition: all .25s ease;
  position: relative;
}

.cookie-consent__close:hover{
  border-color: rgba(1,212,186,.40);
  background: rgba(1,212,186,.08);
  transform: translateY(-1px);
}

.cookie-consent__close span{
  display: block;
  width: 16px;
  height: 1px;
  background: rgba(255,255,255,.85);
  position: absolute;
}

.cookie-consent__close span:nth-child(1){ transform: rotate(45deg); }
.cookie-consent__close span:nth-child(2){ transform: rotate(-45deg); }

@media (max-width: 576px){
  .cookie-consent{
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    border-radius: 18px;
  }
  .cookie-consent__title{ font-size: 18px; }
}

@media (max-width: 900px){
  .partner-slide .splide__slide{
    display: flex;
    justify-content: center;
  }
  .partner-slide .partner-card{
    width: min(260px, 86vw);
    min-width: 0;
  }
  .partner-slide .splide__track{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }
}

.border-uslugi-top{
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}


@media (max-width: 992px){

  /* блок контактов внизу меню */
  .header-menu .header-menu-contacts{
    width: min(520px, 100%);
    align-self: stretch;
    margin-top: auto;     /* прижимает вниз */
    margin-bottom: 0;
    padding-top: 16px;
  }

  /* сброс “огромного” стиля меню для контактов */
  .header-menu .header-menu-contacts .menu-contact-row{
    width: 100% !important;
    display: flex;
    align-items: center;
    gap: 14px;

    font-family: var(--second-font) !important;
    font-size: 16px !important;
    line-height: 1.25;
    text-align: left;

    border-bottom: none !important;
    padding: 10px 6px;
  }

  .header-menu .header-menu-contacts .menu-contact-row + .menu-contact-row{
    margin-top: 10px;
  }

  .header-menu .header-menu-contacts .menu-contact-ico{
    flex: 0 0 35px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-menu .header-menu-contacts .menu-contact-text{
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .header-menu .header-menu-contacts .menu-contact-top{
    font-size: 12px;
    opacity: .65;
    letter-spacing: .04em;
  }

  .header-menu .header-menu-contacts .menu-contact-bottom{
    font-size: 16px;
    font-weight: 600;
    opacity: .95;
    word-break: break-word;
  }
}

/* === Анимация "ring + pulse" для .product-description === */

.product-description{
  position: relative;
  overflow: visible;          /* чтобы внешнее кольцо не обрезалось */
  isolation: isolate;
  cursor: pointer;

  transform: translateZ(0);
  will-change: transform, box-shadow;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

/* внешнее пунктирное кольцо */
.product-description::before{
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 1.5px dashed rgba(1,212,186,.55);
  opacity: 0;
  transform: scale(.92) rotate(0deg);
  pointer-events: none;
}

/* волна вокруг кнопки */
.product-description::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  z-index: -1;
  box-shadow: 0 0 0 0 rgba(1,212,186,.35);
}

/* hover на a (у тебя div внутри <a>) */
a:hover .product-description,
.product-description:hover{
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  filter: saturate(1.03);
}

/* запуск анимаций */
a:hover .product-description::before,
.product-description:hover::before{
  opacity: 1;
  animation: ringSpin 1.6s linear infinite;
  transform: scale(1);
}

a:hover .product-description::after,
.product-description:hover::after{
  opacity: 1;
  animation: pulseOut .65s ease-out 1;
}

/* active (клик) */
a:active .product-description,
.product-description:active{
  transform: translateY(-2px) scale(.99);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

/* фокус (клавиатура) */
a:focus-visible .product-description{
  outline: 2px solid rgba(1,212,186,.65);
  outline-offset: 8px;
}

@keyframes ringSpin{
  from{ transform: scale(1) rotate(0deg); }
  to  { transform: scale(1) rotate(360deg); }
}

@keyframes pulseOut{
  0%   { box-shadow: 0 0 0 0 rgba(1,212,186,.35); opacity: .9; }
  100% { box-shadow: 0 0 0 28px rgba(1,212,186,0); opacity: 0; }
}

@media (prefers-reduced-motion: reduce){
  .product-description,
  .product-description::before,
  .product-description::after{
    transition: none !important;
    animation: none !important;
  }
}


.consent-check{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--second-font);
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255,255,255,.85);
  user-select: none;
}

.consent-check input{
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.consent-box{
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.consent-box::after{
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
  opacity: 0;
}

.consent-check input:checked + .consent-box{
  border-color: rgba(1,212,186,.75);
  background: rgba(1,212,186,.10);
}

.consent-check input:checked + .consent-box::after{
  opacity: 1;
}

.consent-text a{
  color: rgba(255,255,255,.92);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(1,212,186,.35);
}

.consent-text a:hover{
  color: var(--cyan);
  text-decoration-color: rgba(1,212,186,.65);
}

.consent-check:focus-within .consent-box{
  outline: 2px solid rgba(1,212,186,.40);
  outline-offset: 3px;
}
