
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}


body {
    font-family: 'HelveticaNeueCyr', sans-serif;
    background-color: #000;
    letter-spacing: -0.03em;
    font-weight: 400;
    overflow-x: hidden;
}

.container {
    width: 96%;
    margin: 0 auto;
}

.mobile {
    display: none;
}

/* ---------- head block ---------*/

.header {
    display: flex;
    gap: 20px;
    position: absolute;
    top: 40px;
    left: 50px;
    z-index: 2;
    width: 94%;
    align-items: center;
}

.logo {
    width: 57px;
}

.logo-icon {
    width: 60px;
}

.nav-menu {
    display: flex;
    gap: 60px;
    margin-left: 50px;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    font-weight: 500;
    font-size: 12px; 
    color: #fff;
}

.header-button {
    margin-left: auto;
    font-weight: 500;
    font-size: 18px;
    color: #a6ff00;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;

}

.header-button p {
    white-space: nowrap;
}



.language-dropdown {
    position: relative;
    display: inline-block;
    text-align: end;
    margin-left: 65px;
}

.language-dropdown-mobile {
    display: none;
}

  
.language-dropdown button {
    cursor: pointer;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 12px;
    color: #000;
    background: #a6ff00;
    border-radius: 15px;
    width: 66px;
    height: 30px;
    justify-content: space-between;
    gap: 5px;
    padding: 3px 3px 3px 15px;

    img {
        width: 24px;
    }
}
  
.language-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #a6ff00;
    border-radius: 15px;
    z-index: 1000;
    width: 100%;

    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.language-dropdown ul.visible {
    opacity: 1;
    transform: translateY(5px);
    pointer-events: auto;
}
  
.language-dropdown ul li {
    
    margin: 4px 0;
}

.language-dropdown ul li a {
    cursor: pointer;
    transition: background 0.2s ease;
    font-size: 12px;
    padding: 6px 6px 6px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.drop-arrow-circle {
    width: 19px;
    transform: rotate(180deg);
}

.drop-arrow {
    width: 10px;
    margin-right: 4px;
}
  
/* .language-dropdown ul li a:hover {
    background-color: #f0f0f063;
} */
  
/* .language-dropdown ul li a.active {
    background-color: #333;
    color: #fff;
} */
  
.language-dropdown ul.visible {
    display: block;
}

.head-inner {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
    background: url('./assets/header-back.png') no-repeat;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: -0;
}

.head__content {
    display: flex;
    justify-content: space-between;
    min-height: var(--fixed-vh);
    position: relative;    
    padding: 60px;
}

.head-note {
    position: absolute;
    top: 10%;
    right: 0;
    width: 55%;
    height: 70%;
    object-fit: cover;
    z-index: -1;

    -webkit-mask-image: linear-gradient(
        to left,
        transparent 0%,
        black 90px,
        black calc(100% - 90px),
        transparent 100%
    ), linear-gradient(
        to top,
        transparent 0%,
        black 90px,
        black calc(100% - 90px),
        transparent 100%
    ), linear-gradient(
        to bottom,
        transparent 0%,
        black 90px,
        black calc(100% - 90px),
        transparent 100%
    );
    
    mask-image: linear-gradient(
        to left,
        transparent 0%,
        black 90px,
        black calc(100% - 90px),
        transparent 100%
    ), linear-gradient(
        to top,
        transparent 0%,
        black 90px,
        black calc(100% - 90px),
        transparent 100%
    ), linear-gradient(
        to bottom,
        transparent 0%,
        black 90px,
        black calc(100% - 90px),
        transparent 100%
    );
    
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}



.head__content-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    z-index: 9;
}

.head__header {
    font-weight: 300;
    font-size: 100px;
    line-height: 80%;
    color: #fff;
    margin-top: auto;
}

.word {
    position: absolute;
    opacity: 0;
    animation: wordChange 12s infinite;
}

.word:nth-child(1) { animation-delay: 0s; }
.word:nth-child(2) { animation-delay: 3s; }
.word:nth-child(3) { animation-delay: 6s; }
.word:nth-child(4) { animation-delay: 9s; }

@keyframes wordChange {
    0% {
        opacity: 0;
    }
    10%, 20% {
        opacity: 1;
    }
    30%, 100% {
        opacity: 0;
    }
}


.head__header-arrow-wrap {
    display: flex;
    align-items: flex-end;
    padding-left: 15%;
}

.head__header-arrow-wrap img {
    transform: rotate(-45deg);
}

.head__content-button {
    border-radius: 1000px;
    width: 283px;
    height: 65px;
    background: #95ff00;
    font-weight: 500;
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 150px;
    cursor: pointer;
}

.head__content-button-mobile {
    display: none;
}

.head__content-showreel {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.showreel-block {
    display: flex;
    flex-direction: column;
    font-weight: 400;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    gap: 10px;
    margin-top: 7%;
}


.head__partner {
    margin-top: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partner__heart-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 22px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    width: 426px;
    height: 55px;
    backdrop-filter: blur(5px);
    padding: 0 20px 0 30px;
    font-family: 'GohuFont';
}

.heart-pulse {
    animation: pulse 2s ease-in-out infinite;
    
    width: 35px;
    height: 35px;
    
    transition: width 0.3s ease, height 0.3s ease;
    
    display: block;
    margin: 0 auto;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

.partner__carousel {
    position: relative;
    margin-top: 10px;
    z-index: 1;
}

.carousel-back-left,
.carousel-back-right {
    position: absolute;
    width: 400px;
    height: 300px;
    border-radius: 100%;
    background: linear-gradient(to bottom, #000, #000);
    filter: blur(75px);
    bottom: -5%;
    z-index: 2;
}

.carousel-back-left {
    left: -15%;
}

.carousel-back-right {
    right: -15%;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll-infinite 30s linear infinite;
    height: 100%;
    align-items: center;
    gap: 15px;
    padding: 70px 0;
}

.carousel-item {
    width: 20vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item img {
    width: 64%;
    height: auto;
}

.carousel-item .cracks,
.carousel-item .kare {
    width: 40%;
}

@keyframes scroll-infinite {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(calc(-100% / 3), 0, 0);
    }
}


@media screen and (max-width: 1919px) {

    .header {
        top: 25px;
        width: 95%;
    }

    .logo {
        width: 45px;
    }

    .nav-menu {
        gap: 40px;
    }

    .header-button {
        font-size: 14px; 
        
        img {
            width: 13px;
        }
    }

    .language-dropdown {
        margin-left: 30px;
    }

    .language-dropdown button {
        width: 58px;
        height: 26px;
        font-size: 10px;

        img {
            width: 18px;
        }
    }

    .language-dropdown ul li a {
        font-size: 10px;
    }

    .drop-arrow-circle {
        width: 16px;
    }

    .drop-arrow {
        width: 8px;
    }

    .head__header {
        font-size: 75px;
    }

    .head__header-arrow-wrap img {
        width: 48px;
    }

    .head__content-button {
        width: 215px;
        height: 50px;
        font-size: 14px;
        margin-top: 120px;
    }
    
    .showreel-block {
        font-size: 17px;
    }

    .showreel-block img {
        width: 320px;
    }

    .head__content-showreel a img {
        width: 70px;
    }

    .head__partner {
        margin-top: 120px;
    }

    .partner__heart-block {
        font-size: 18px;
        border-radius: 6px;
        width: 340px;
        height: 44px;
        padding: 0 10px 0 22px;
        gap: 8px;
    }

    .heart-pulse {
        width: 28px;
        height: 28px;
    }

    .carousel-track {
        padding: 50px 0;
        gap: 5px;
    }

}

@media screen and (max-width: 1439px) {

    .header {
        width: 92%;
    }

    .logo {
        width: 35px;
    }

    .nav-menu {
        gap: 30px;
    }

    .header-button {
        font-size: 12px; 
        
        img {
            width: 11px;
        }
    }

    .language-dropdown {
        margin-left: 20px;
    }

    .language-dropdown button {
        width: 50px;
        height: 22px;
        font-size: 10px;

        img {
            width: 16px;
        }
    }

    .language-dropdown ul li a {
        font-size: 10px;
        padding: 4px 4px 4px 14px;;
    }
    

    .drop-arrow-circle {
        width: 12px;
    }

    .drop-arrow {
        width: 7px;
    }

    .head__header {
        font-size: 60px;
    }

    .head__header-arrow-wrap img {
        width: 35px;
    }

    .head__content-button {
        width: 180px;
        height: 42px;
        font-size: 12px;
        margin-top: 100px;
    }
    
    .showreel-block {
        font-size: 14px;
    }

    .showreel-block img {
        width: 280px;
    }

    .head__content-showreel a img {
        width: 60px;
    }

    .head__partner {
        margin-top: 90px;
    }

    .partner__heart-block {
        font-size: 16px;
        width: 300px;
        height: 38px;
        gap: 6px;
    }

    .heart-pulse {
        width: 24px;
        height: 24px;
    }

    
}


@media screen and (max-width: 999px) {
    
    .container {
        width: 94%;
    }

    

    /* ---------- head block ---------*/

    .container-mobile {
        width: 100%;
    }

    .header {
        width: 94%;
        left: 10px;
    }

    .logo {
        width: 57px;
        margin-left: 4%;
    }

    .nav-menu {
        margin-left: 10px;
        justify-content: flex-start;
    }

    .nav-menu li {
        font-size: 14px;
    }

    .header-button {
        font-size: 18px;
    }

    .header-button img {
        width: 14px;
    }

    .language-dropdown {
        margin-left: 10px;
    }

    .language-dropdown button {
        width: 66px;
        height: 30px;
        font-size: 12px;
    }

    .language-dropdown button img {
        width: 24px;
    }

    .language-dropdown ul li a {
        font-size: 14px;
        padding: 4px 4px 10px 14px;
    }

    .drop-arrow-circle {
        width: 18px;
    }

    .drop-arrow {
        width: 10px;
    }

    .head__content {
        flex-direction: column;
        padding: 30px;
    }

    .head__header {
        margin-top: 15%;
        font-size: 88px;
    }

    .head__content-button {
        width: 273px;
        height: 65px;
        font-size: 18px;
    }

    .head-note {
        top: auto;
        bottom: 10%;
    }

    .head__content-showreel {
        margin-left: auto;
        margin-top: -15%;
    }

    .showreel-block {
        font-size: 22px;
    }

    .head__content-showreel a img {
        width: 100px;
    }

    .head__partner {
        margin-top: 60px;
    }

    .partner__heart-block {
        border-radius: 8px;
        width: 426px;
        height: 55px;
        font-size: 22px;
        padding: 0 20px 0 30px;
    }

    .heart-pulse {
        width: 35px;
        height: 35px;
    }

    .carousel-item {
        width: 35vw;
    }

    .carousel-back-left, .carousel-back-right {
        width: 300px;
        height: 200px;
        filter: blur(50px);
    }

    .carousel-back-left {
        left: -20%;
    }

    .carousel-back-right {
        right: -20%;
    }

}


@media screen and (max-width: 767px) {

    .mobile {
        display: block;
    }
   

    .pc {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }

    
    .header-button {
        display: none;
    }

    .logo {
        width: 43px;
    }

    .language-dropdown {
        display: none;
    }

    .header-button-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 1000px;
        width: 123px;
        height: 28px;
        font-weight: 500;
        font-size: 11px;
        color: #000;
        background: #95ff00;
        margin-left: auto;
    }

    .head-inner {
        background: none;
    }

    .head__header {
        margin-top: 25%;
        width: 100%;
        font-size: 45px;
        line-height: 87%;
    }

    .head__header-arrow-wrap img {
        width: 30px;
        margin-bottom: 3px;
    }

    .head__content-button-pc {
        display: none;
    }

    .head__content-button-mobile {
        display: flex;
        margin: 0 auto;
        height: 52px;
        font-size: 15px;
        z-index: 2;
    }

    .head__content {
        justify-content: flex-start;
        min-height: auto;
        height: 700px;
    }

    .head__content-wrap {
        min-height: auto;
    }

    .head__content-showreel {
        margin: 50px 0 0;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .showreel-block {
        flex-direction: row-reverse;
        font-size: 18px;
        margin-top: 0;
        gap: 30px;
    }


    .showreel-block img {
        width: 168px;
    }

    .head__content-showreel a img {
        width: 49px;
        height: 49px;
    }

    .head-note {
        width: 100%;
        bottom: -20px;
        z-index: 1;
        transform: scale(1.2);
    }


    .partner__heart-block {
        width: 280px;
        height: 40px;
    }

    .partner__heart-block {
        font-size: 14px;
    }

    .heart-pulse {
        width: 18px;
        height: 18px;
    }

    .carousel-back-left, .carousel-back-right {
        width: 260px;
        height: 120px;
        bottom: 1%;
        filter: blur(35px);
    }

    .carousel-back-left {
        left: 0;
        transform: translate(-50%);
    }

    .carousel-back-right {
        right: 0;
        transform: translate(50%);
    }


    .carousel-item {
        width: 50vw;
    }

    .carousel-item img {
        width: 80%;
    }

    .carousel-item .cracks, .carousel-item .kare {
        width: 50%;
    }
} 


/* ---------- cards block ---------*/

.cards-inner {
    width: 85%;
    margin-top: 150px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
}

.cards__block {
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: radial-gradient(59.85% 58.96% at 30.31% 30.46%, #1f1f1f9e 0%, #0c0c0c 100%);    width: 49%; 
    max-width: 48%;
    height: 48vh;
    padding: 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.cards__block img {
    position: absolute;
    object-fit: cover;
}


.cards__block-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
    margin-top: auto;
}

.cards__block-name {
    font-size: 30px;
    color: #fff;
}

.cards__block-descr {
    font-size: 18px;
    line-height: 156%;
    color: #aeaeae;
    width: 283px;
}


.cards__block:nth-child(1) {
    border-radius: 20px 20px 150px 20px;
}

.cards__block:nth-child(1) img {
    right: -32%;
    top: 6px;
    width: 105%;
    height: 109%;
}


.change-image {
    position: absolute;
    opacity: 0;
    animation: imageChange 11s infinite;
}

.change-image:nth-child(1) { animation-delay: 0s; }
.change-image:nth-child(2) { animation-delay: 1.5s; }
.change-image:nth-child(3) { animation-delay: 3s; }
.change-image:nth-child(4) { animation-delay: 4.5s; }
.change-image:nth-child(5) { animation-delay: 6s; }
.change-image:nth-child(6) { animation-delay: 7.5s; }
.change-image:nth-child(7) { animation-delay: 9s; }

@keyframes imageChange {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.cards__block:nth-child(2) {
    border-radius: 20px 20px 20px 150px;    
}

.cards__block:nth-child(2) .cards__block-content {
    margin-left: auto;
    width: 45%;
}

.cards__block:nth-child(2) img {
    left: -25%;
    top: 12%;
    width: 73%;
    height: 82%;
}

.cards__block:nth-child(2) .cards__block-descr {
    width: 300px;
}

.cards__block:nth-child(3) {
    border-radius: 20px 150px 20px 20px;
}


.cards__block:nth-child(3) img {
    right: 0;
    bottom: 0;
    width: 96%;
    height: 100%;
}



.cards__block:nth-child(4) {
    border-radius: 150px 20px 20px 20px;
}

.cards__block:nth-child(4) .cards__block-content {
    margin-left: auto;
    width: 45%;
    margin-top: 0;
    height: 100%;
}

.cards__block:nth-child(4) .cards__block-back-wrap {
    position: absolute;
    border-radius: 150px 20px 20px 20px;
    overflow: hidden;
    width: 45%;
    left: 3%;
    top: 5%;
    height: 90%;
}

.cards__block:nth-child(4) img {
    left: 0%;
    top: 0%;
    width: 100%;
    min-height: 100%;
}

.cards__content-numbers {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 75%;
    overflow: hidden;
}

.cards__numbers-container {
    animation: scrollNumbers 10s linear infinite;
}

.cards__number-block {    
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;

    margin-bottom: 30px;
}

.cards__number-block:last-child {
    margin-bottom: 0;
}

.cards__block-numb {
    font-size: 75px;
    color: #fff;
}

.cards__block-text {
    font-size: 16px;
    color: #aeaeae;
    line-height: 125%;
}

.cards__content-button {
    border-radius: 1000px;
    width: 233px;
    height: 58px;
    background: #95ff00;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    margin-left: auto;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
}

/* @keyframes scrollNumbers {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-50% - 75px)); 
    }
} */


@media screen and (max-width: 1919px) {


    .cards-inner {
        gap: 20px;
        margin-top: 100px;
    }

    .cards__block {
        padding: 40px;
    }

    .cards__block-name {
        font-size: 22px;
    }

    .cards__block-descr {
        font-size: 14px;
        width: 205px;
    }


    .cards__block:nth-child(1) {
        border-radius: 15px 15px 120px 15px;
    }

    .cards__block:nth-child(2) {
        border-radius: 15px 15px 15px 120px;
    }

    .cards__block:nth-child(2) img {
        left: -25%;
        top: 12%;
        width: 75%;
        height: 82%;
    }

    .cards__block:nth-child(2) .cards__block-descr {
        width: 260px;
    }


    .cards__block:nth-child(3) {
        border-radius: 15px 120px 15px 15px;
    }

    .cards__block:nth-child(4) {
        border-radius: 120px 15px 15px 15px;
    }
    

    .cards__block:nth-child(4) .cards__block-back-wrap {
        border-radius: 110px 15px 15px 15px;
    }
    
    
    .cards__block-numb {
        font-size: 55px;
    }

    .cards__block-text {
        font-size: 13px;
    }

    .cards__content-button {
        width: 190px;
        height: 46px;
        font-size: 13px;
    }


}


@media screen and (max-width: 1439px) {

    .cards-inner {
        gap: 15px;
        margin-top: 90px;
    }

    .cards__block {
        padding: 35px;
    }

    .cards__block-name {
        font-size: 18px;
    }

    .cards__block-descr {
        font-size: 12px;
        width: 180px;
    }

    .cards__block:nth-child(2) .cards__block-descr {
        width: 190px;
    }
 
    

    .cards__block:nth-child(3) img {
        width: 100%;
        right: 5%;
    }

    
    .cards__block-numb {
        font-size: 45px;
    }

    .cards__block-text {
        font-size: 13px;
    }

    .cards__content-button {
        width: 160px;
        height: 38px;
        font-size: 11px;
    }

}


@media screen and (max-width: 1199px) {

   

    .cards-inner {
        margin-top: 80px;
    }

    .cards__block {
        padding: 30px;
    }

    .cards__block-name {
        font-size: 15px;
    }

    .cards__block-descr {
        font-size: 10px;
        width: 120px;
    }

    .cards__block:nth-child(2) .cards__block-descr {
        width: 150px;
    }
    
    
    .cards__block-numb {
        font-size: 40px;
    }

    .cards__block-text {
        font-size: 11px;
    }

    .cards__content-button {
        width: 140px;
        height: 30px;
        font-size: 10px;
    }

    

}


@media screen and (max-width: 1024px) {

    .cards-inner {
        margin-top: 50px;
        width: 100%;
    }

    .cards__block {
        height: 288px;
        max-height: none;
    }

    .cards__block-content {
        width: 48%;
    }

    .cards__block-name {
        font-size: 18px;
    }

    .cards__block-descr {
        font-size: 12px;
    }

}

@media screen and (max-width: 767px) {

    .cards-inner {
        display: block; 
        position: relative; 
        min-height: 517px;
        transition: transform 0s ease-out;
        overflow: visible;
        transform-style: preserve-3d;
        z-index: 10;
        will-change: transform;
        margin-top: 40px;
        width: 100%;
        
    }

    .cards__block {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        max-width: none;
        height: 480px;
        max-height: none;
        padding: 30px 0px;
        min-height: auto;
        will-change: transform, opacity;
        transition: none !important; 
        border: none;
        border-top: 2px solid #8b8b8b1a;
        background: linear-gradient(180deg, #080808, #090909);       
    }


    /* .cards {
        top: 10px;
        right: 0%;
        width: 98%;
        height: 400px;
    } */



    .cards__block-content {
        padding: 30px 0px;
    }


    .cards__block:nth-child(1) {
        border-radius: 15px;
        padding: 0;        
    }

    .cards__block:nth-child(1) .cards__block-content {
        width: 100%;
        padding: 25px;
    }

    .cards__block:nth-child(1) .cards__block-name {
            font-size: 20px;
    }

    .cards__block:nth-child(1) .cards__block-descr {
        font-size: 14px;
        width: 213px;
    }

    .cards__block:nth-child(1) img {
        right: -15%;
        top: 0;
        width: 100%;
        height: 79%;
    }


    .cards__block:nth-child(2) {
        border-radius: 15px;
        padding: 0;        
    }    

    .cards__block:nth-child(2) .cards__block-content {
        width: 100%;
        padding: 40px 25px;
    }

    .cards__block:nth-child(2) .cards__block-name {
        font-size: 20px;
    }

    .cards__block:nth-child(2) .cards__block-descr {
        font-size: 14px;
        width: 232px;
    }

    .cards__block:nth-child(2) img {
        left: 50%;
        transform: translate(-50%);
        top: 12%;
        width: 331px;
        height: 228px;
    }   



    .cards__block:nth-child(3) {        
        border-radius: 15px;
        padding: 0;
    }

    .cards__block:nth-child(3) .cards__block-content {
        width: 100%;
        padding: 40px;
        margin-top: 0;
        align-items: center;
    }

    .cards__block:nth-child(3) .cards__block-name {
        font-size: 25px;
        text-align: center;
    }

    .cards__block:nth-child(3) .cards__block-descr {
        font-size: 14px;
        width: 270px;
        text-align: center;
    }


    .cards__block:nth-child(3) img {
        width: 147%;
        right: 9%;
        height: 75%;
    }



    .cards__block:nth-child(4) {        
        border-radius: 15px;
        padding: 0;
    }

    .cards__block:nth-child(4) .cards__block-content {
        width: 100%;
        padding: 25px 25px 40px 25px;
        margin-top: 0;
        align-items: flex-end;
    }

    .cards__block:nth-child(4) .cards__number-block {
        align-items: flex-start;
    }

    .cards__block:nth-child(4) .cards__block-back-wrap {
        border-radius: 15px;
        height: 285px;
        left: 25px;
    }

    .cards__block:nth-child(4) .cards__block-numb {
        font-size: 50px;
    }

    .cards__block:nth-child(4) .cards__block-text {
        font-size: 14px;
        width: 116px;
    }

    .cards__block:nth-child(4) .cards__content-button {
        width: 100%;
        height: 52px;
        margin-left: -200px;
        font-size: 15px;
    }

    .cards__block:nth-child(4) .cards__content-numbers {
        justify-content: center;
    }


}





/* ---------- cases block ---------*/

.cases-inner {
    margin-top: 130px;
    background-color: #fff;
    padding: 40px 0;
}

.cases__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 96%;
    margin-right: auto;
    margin-left: auto;
    border-bottom: 4px solid #000;
}

.cases__head h2 {
    font-size: 200px;
    letter-spacing: -0.04em;
    font-family: 'mr_BenzaG';
    -webkit-text-stroke: 3px #fff;
    margin-bottom: -1.5px;
}

.cases__head-wrap {
    display: flex;
    font-family: 'mr_Dafoe';
}

.cases__head-year {
    font-size: 60px;
}

.cases__head-year span {
    font-size: 150px;
    color: #88d100;
}

.cases__head-copy {
    display: none;
}

.cases-swiper {
    position: relative;
}

.cases-slider-buttons {
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: space-between;
    width: 91%;
    z-index: 3;
    left: 50%;
    transform: translateX(-51.5%) !important;
    user-select: none;
    pointer-events: none;
}

.cases-button-prev,
.cases-button-next {
    border-radius: 1000px;
    width: 121px;
    height: 121px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    pointer-events: auto;
}

.cases-button-prev:hover,
.cases-button-next:hover {
    background-color: #a6ff00;
}

.cases-button-prev img,
.cases-button-next img {
    width: 20px;
}

.cases__swiper-wrapper {
    width: 96% !important;
    margin-left: auto;
    margin-right: auto;
    
}

.cases__slide-row {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    align-items: center;
    transition: opacity 0.6s ease;
    width: 99%;
}


.cases__slide-name {
    font-weight: 500;
    font-size: 40px;
}

/* Стили для активного слайда */
.swiper-slide-active .cases__slide-row {
    opacity: 1;
}

/* Стили для неактивных слайдов */
.cases__swiper-slide:not(.swiper-slide-active) .cases__slide-row {
    opacity: 0;
}



.cases__swiper-slide {
    transition: all 0.3s ease;
}

.swiper-slide-prev {
    transform: translateX(-2%) !important;
    pointer-events: none;
}




.cases__slide-descr {
    font-weight: 500;
    font-size: 22px;
    line-height: 114%;
    width: fit-content;
}

.cases__img {
    margin-top: 30px;
    max-height: 98vh;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.cases__img-back {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.cases__button {
    display: flex;
    position: absolute;
    bottom: 49px;
    right: 46px;
    border-radius: 1000px;
    width: 276px;
    height: 65px;
    background: #000;
    align-items: center;
    justify-content: space-between;
    cursor: auto;
    padding: 9px;
    opacity: 0;
    transition: 0.3s;
}

.cases__button-mobile {
        display: none;
    }

.cases__img:hover .cases__button {
    /* display: flex; */
    cursor: pointer;
    opacity: 1;
}


.cases__button p {
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    flex: 1;
    text-align: center;
}

.cases__button-circle {
    width: 49px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background: #a6ff00;
}


@media screen and (max-width: 1919px) {

    .cases-inner {
        margin-top: 100px;
        padding: 30px 0;
    }

    .cases__head {
        border-bottom: 3px solid #000;
    }

    .cases__head h2 {
        font-size: 160px;
    }

    .cases__head-year {
        font-size: 45px;
    }

    .cases__head-year span {
        font-size: 110px;
    }

    .cases__slide-row {
        margin-top: 50px;
    }

    .cases__slide-name {
        font-size: 30px;
    }

    .cases__slide-descr {
        font-size: 17px;
    }

    .cases__img {
        margin-top: 20px;
    }

    .cases-button-prev, .cases-button-next {
        width: 90px;
        height: 90px;
    }

    .cases-button-prev img, .cases-button-next img {
        width: 15px;
    }

    .cases__button {
        width: 210px;
        height: 52px;
        padding: 7px;
    }

    .cases__button p {
        font-size: 14px;
    }

    .cases__button-circle {
        width: 38px;
        height: 38px;
    }

    .cases__button-circle img {
        width: 20px;
    }


}

@media screen and (max-width: 1439px) {

    .cases-inner {
        margin-top: 80px;
        padding: 25px 0;
    }

    .cases__head h2 {
        font-size: 130px;
    }

    .cases__head-year {
        font-size: 35px;
    }

    .cases__head-year span {
        font-size: 80px;
    }

    .cases__slide-row {
        margin-top: 40px;
    }

    .cases__slide-name {
        font-size: 24px;
    }

    .cases__slide-descr {
        font-size: 14px;
    }

    .cases-button-prev, .cases-button-next {
        width: 70px;
        height: 70px;
    }

    .cases-button-prev img, .cases-button-next img {
        width: 12px;
    }

    .cases__button {
        width: 180px;
        height: 45px;
        padding: 6px;
    }

    .cases__button p {
        font-size: 12px;
    }

    .cases__button-circle {
        width: 32px;
        height: 32px;
    }

    .cases__button-circle img {
        width: 15px;
    }

}

@media screen and (max-width: 999px) {

    .cases-inner {
        padding: 50px 0;
    }

    .cases__img {
        height: 400px;
        max-height: none;
    }

    .cases-button-prev:hover, .cases-button-next:hover {
        background-color: #fff;
    }
    
    .cases-button-prev:active, .cases-button-next:active {
        background-color: #a6ff00;
    }

    .cases__slide-name {
        font-size: 28px;
    }

    .cases__slide-descr {
        font-size: 18px;
    }

    .cases__button {
        opacity: 1;
        width: 210px;
        height: 52px;
        padding: 7px;
        font-size: 14px;
    }


}

@media screen and (max-width: 767px) {

    .cases-inner {
        padding: 25px 0;
    }

    .cases__head {
        flex-direction: column-reverse;
        align-items: flex-start;
        border-bottom: 2px solid #000;
    }

    .cases__head-copy {
        display: block;
    }

    .cases__head-wrap {
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .cases__head-year {
        font-size: 20px;
    }

    .cases__head-year span {
        font-size: 40px;
    }

    .cases__head-copy {
        font-size: 60px;
        color: #88d100;
    }

    .cases__head h2 {
        font-size: 150px;
    }

    .cases__swiper-wrapper {
        width: 100% !important;
        margin-left: 0;
        margin-right: 0;
    }

    .cases__swiper-slide {
        padding-left: 10px;
        padding-right: 10px;
        height: 610px !important;
    }

    .cases__slide-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cases__slide-name {
        font-size: 33px;
    }

    .cases__slide-descr {
        font-size: 14px;
        margin-left: auto;
        margin-right: 5px;
    }

    .cases-button-prev, .cases-button-next {
        width: 42px;
        height: 42px;
    }

    .cases-button-prev img, .cases-button-next img {
        width: 10px;
    }

    .cases-slider-buttons {
        top: 52%;
        width: 89%;
        transform: translateX(-50%) !important;
    }

    .cases__img {
        border-radius: 15px;
    }

    .swiper-slide-prev {
        transform: none !important;
    }

    .cases__button {
        width: fit-content;
        height: auto;
        background: transparent;
        gap: 10px;
        align-items: center;
    }

    .cases__button-pc {
        display: none;
    }

    .cases__button-mobile {
        position: static;
        display: flex;
        margin: 20px auto;
        justify-content: center;
    }

    .cases__button p {
        font-size: 22px;
        color: #000;
        white-space: nowrap;
        
    }

    .cases__button-circle {
        width: 21px;
        height: 21px;
    }

    .cases__button-circle img {
        width: 12px;
    }

    
}



/* ---------- price block ---------*/

.price-inner {
    margin-top: 120px;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.price-back-left {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-50%);
    z-index: -1;
    width: 933px; 
    height: 900px;
    border-radius: 100%;
    background: linear-gradient(to bottom, #121212, #292828);
    filter: blur(550px);
}

.price-back-right {
    position: absolute;
    top: 30%;
    right: 0;
    transform: translateX(50%);
    z-index: -1;
    width: 933px; 
    height: 900px;
    border-radius: 100%;
    background: linear-gradient(to bottom, #121212, #292828);
    filter: blur(550px);
}

.price__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 44px;
}

.price__head-header {
    font-size: 50px;
    line-height: 90%;
    color: #fff;
}

.price__head-header p {
    color: #95979f;
}

.price__head-desr {
    font-size: 16px;
    line-height: 156%;
    text-align: right;
    color: #aeaeae;
    margin-left: auto;
    width: 473px;
}

.price__head img {
    width: 57px;
}

.price__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 932px;
    max-height: 98vh;
    gap: 70px;
    margin-top: 100px;
}

.price__block {
    border: 2px solid #a6ff00;
    border-radius: 30px;
    height: 93%;
    width: 32%;
    display: flex;
    flex-direction: column;
    padding: 50px 75px;
}

.price__block:nth-child(2) {
    border: none;
    height: 100%;
    background: linear-gradient(357deg, #bdff44 0%, #639900 100%);
}

.price__block-name {
    font-weight: 500;
    font-size: 28px;
    color: #a6e432;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price__block-name span {
    color: #fff;
}

.price__block-descr {
    margin-top: 20px;
    font-weight: 500;
    font-size: 18px;
    color: #979797;
}

.price__block-content {
    margin-top: 20%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.price__block-text {
    font-size: 16px;
    color: #fff;
}

.price__block-button {
    display: flex;
    justify-content: center;
    border-radius: 1000px;
    width: 100%;
    height: 65px;
    background: #a6ff00;
    align-items: center;
    padding: 9px;
    margin-top: auto;
    cursor: pointer;
}

.price__block-button p {
    font-weight: 500;
    font-size: 18px;
    color: #000;
    flex: 1;
    text-align: center;
    margin-left: 12%;
}

.price__button-img {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    width: 48px;
    height: 48px;
    background-color: #000;
    margin-left: auto;
}

.price__button-img img {
    width: 25px;
}

.price__block-popular {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 80%;
    margin-bottom: 12%;
    width: fit-content;
    gap: 8px;
}


.price__block-popular-mobile {
    display: none;
}


.price__block-popular p {
    font-weight: 500;
    font-size: 16px;
    color: #000;
    white-space: nowrap;
}

.price__block-popular img {
    width: 17px;
}

.price__block-name-black {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.price__block-name-black,
.price__block-descr-black,
.price__block-text-black {
    color: #000;
}

.price__block-button-black {
    background-color: #000;
}

.price__block-button-black p {
    color: #fff;
}

.price__button-img-black {
    background-color: #a6ff00;
}

.price-star {
    margin-left: 100%;
    margin-top: -5%;
    width: 21px;
}


@media screen and (max-width: 1919px) {

    .price-inner {
        margin-top: 100px;
    }

    .price__head {
        gap: 35px;
    }

    .price__head-header {
        font-size: 38px;
    }

    .price__head-desr {
        font-size: 13px;
        width: 380px;
    }

    .price__head img {
        width: 48px;
    }

    .price__block {
        border-radius: 22px;
        padding: 40px 60px;
    }

    .price__block-name {
        font-size: 22px;
    }

    .price__block-descr {
        font-size: 15px;
        margin-top: 16px;
    }

    .price__block-content {
        gap: 29px;
    }

    .price__block-text {
        font-size: 14px;
    }

    .price__block-popular p {
        font-size: 13px;
    }

    .price__block-popular img {
        width: 14px;
    }

    .price__block-button {
        height: 54px;
        padding: 6px;
    }

    .price__block-button p {
        font-size: 15px;
    }

    .price__button-img {
        width: 41px;
        height: 41px;
    }

    .price__button-img img {
        width: 20px;
    }

}

@media screen and (max-width: 1439px) {

    .price-inner {
        margin-top: 80px;
    }

    .price__head {
        gap: 25px;
    }

    .price__head-header {
        font-size: 28px;
    }

    .price__head-desr {
        font-size: 11px;
        width: 300px;
    }

    .price__head img {
        width: 40px;
    }

    .price__block {
        border-radius: 18px;
        padding: 20px 40px;
    }

    .price__block-name {
        font-size: 18px;
    }

    .price__block-descr {
        font-size: 12px;
        margin-top: 12px;
    }

    .price__block-content {
        gap: 15px;
        margin-top: 10%;
    }

    .price__block-text {
        font-size: 11px;
    }

    .price__block-popular {
        margin-left: 70%;
    }

    .price__block-popular p {
        font-size: 10px;
    }

    .price__block-popular img {
        width: 10px;
    }

    .price__block-button {
        height: 38px;
        padding: 4px;
    }

    .price__block-button p {
        font-size: 11px;
    }

    .price__button-img {
        width: 28px;
        height: 28px;
    }

    .price__button-img img {
        width: 11px;
    }

}

@media screen and (max-width: 999px) {

    .price__head-header {
        font-size: 32px;
    }

    .price__head-desr {
        font-size: 12px;
        width: 390px;
    }

    .price__wrap {
        margin-top: 55px;
        gap: 18px;
    }

    .price__block {
        height: 100%;
        border-radius: 30px;
        min-width: 60%;
        max-height: 90vh;
        padding: 50px 55px;
    }

    .price__block-name {
        font-size: 26px;
    }

    .price__block-descr {
        font-size: 17px;
        margin-top: 20px;
    }

    .price__block-text {
        font-size: 15px;
    }

    .price__block-content {
        gap: 35px;
        margin-top: 20%;
    }

    .price__block-button {
        min-height: 65px;
    }

    .price__button-img {
        width: 48px;
        height: 48px;
    }

    .price__block-button p {
        font-size: 18px;   
    }

    .price__button-img img {
        width: 25px;
    }

    .price__block-popular-mobile {
        display: flex;
        margin: auto auto 0;
    }

    .price__block-popular-pc {
        display: none;
    }

    .price__block-popular p {
        font-size: 16px;
    }

    .price__block-popular img {
        width: 17px;
    }

    .price__block-button-black {
        margin-top: 30px;
        padding: 9px;
    }

}

@media screen and (max-width: 767px) {

    .price-inner {
        margin-top: 60px;
    }

    .price__head {
        flex-direction: column;
        width: 94%;
        margin-left: auto;
        margin-right: auto;
        align-items: flex-start;
    }

    .price__head-header {
        font-size: 30px;
        order: 1;
        font-weight: 300;
    }

    .price__head img {
        order: 2;
        width: 40px;
        margin-left: auto;
    }

    .price__head-desr {
        order: 3;
        font-size: 12px;
        line-height: 158%;
        width: 195px;
    }

    .price__wrap {
        flex-direction: column;
        max-height: none;
        height: auto;
        gap: 35px;
    }

    .price__block {
        width: 100%;
        border-radius: 15px;
        max-height: none;
        padding: 50px 40px;
    }

    .price__block-name {
        font-size: 24px;
    }

    .price__block-descr {
        font-size: 15px;
    }

    .price__block-text {
        font-size: 13px;
    }

    .price__block-button {
        min-height: 52px;
        margin-top: 50px;
    }

    .price__block-button p {
        font-size: 16px;
    }

    .price__button-img {
        width: 44px;
        height: 44px;
    }

    .price__button-img img {
        width: 20px;
    }

    .price__block-button-black {
        margin-top: 14px;
        padding: 7px;
    }    

    .price__block-button-black .price__button-img {
        width: 40px;
        height: 40px;
    }

    .price__block-popular {
        margin-top: 50px;
    }

    .price__block-popular p {
        font-size: 14px;
    }

    .price__block-popular img {
        width: 12px;
    }

}


/* ---------- concept block ---------*/

.concept-inner {
    margin-top: 130px;
    position: relative;
    height: 951px;
    max-height: 98vh;
    border-radius: 20px;
    overflow: hidden;
    padding: 60px 70px 80px;
    background: url('./assets/concept.webp') no-repeat;
    background-size: cover;
}

/* .concept-back {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
} */

.concept__content {
    display: flex;
    flex-direction: column;
    width: 40%;
    height: 100%;
    gap: 10px;
}

.concept__top-row {
    display: flex;
    gap: 15px;
}

.concept__top-row img {
    width: 14px;
}

.concept__top-row p {
    font-weight: 500;
    font-size: 25px;
    color: #fff;
}

.concept-header {
    font-size: 55px;
    line-height: 96%;
    color: #fff;
    margin-top: 30%;
}

.concept-button {
    font-weight: 500;
    font-size: 18px;
    color: #437319;
    border-radius: 1000px;
    width: 369px;
    min-height: 65px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-top: 70px;
}

.concept-button-two-mobile,
.concept-button-mobile {
    display: none;
}

.concept__text {
    margin-top: auto;
    width: 388px;
}

.concept__text img {
    width: 14px;
}

.concept__text p {
    font-weight: 500;
    font-size: 16px;
    line-height: 187%;
    color: #fff;
}


@media screen and (max-width: 1919px) {

    .concept-inner {
        margin-top: 100px;
        border-radius: 16px;
        padding: 50px 55px 70px;
    }

    .concept__top-row p {
        font-size: 18px;
    }

    .concept__top-row img,
    .concept__text img  {
        width: 12px;
    }

    .concept-header {
        font-size: 42px;
    }

    .concept-button {
        margin-top: 50px;
        width: 280px;
        min-height: 52px;
        font-size: 15px;
    }

    .concept__text {
        width: 310px;
    }

    .concept__text p {
        font-size: 14px;
    }

}

@media screen and (max-width: 1439px) {

    .concept-inner {
        margin-top: 80px;
        border-radius: 14px;
    }

    .concept__top-row p {
        font-size: 15px;
    }

    .concept__top-row img,
    .concept__text img  {
        width: 11px;
    }

    .concept-header {
        font-size: 32px;
        width: 350px;
    }

    .concept-button {
        margin-top: 40px;
        width: 220px;
        min-height: 44px;
        font-size: 13px;
    }

    .concept__text {
        width: 260px;
    }

    .concept__text p {
        font-size: 12px;
    }

}

@media screen and (max-width: 999px) {

    .concept-inner {
        height: 1290px;
        border-radius: 30px;        
        background: url('./assets/concept-tablet.webp') no-repeat;
        background-size: cover;
    }

    .concept-back {
        top: auto;
        bottom: 0;
    }

    .concept__top-row p {
        font-size: 25px;
    }
    
    .concept__top-row img, .concept__text img {
        width: 14px;
    }

    .concept__content {
        width: 100%;
    }

    .concept-header {
        margin-top: 5%;
        font-size: 55px;
        width: 690px;
    }

    .concept-button {
        width: 396px;
        height: 65px;
        font-size: 18px;
    }

    .concept__text {
        margin-top: 4%;
    }

    .concept__text p {
        font-size: 16px;
        width: 388px;
    }
}


@media screen and (max-width: 767px) {

    .concept-inner {
        max-height: none;
        height: auto;
        background: none;
        padding: 0;
        border-radius: 0;
    }

    .concept__content-wrap {
        display: flex;
        flex-direction: column;
        background: url('./assets/concept-back-mob.webp') no-repeat;
        background-size: 100% 100%;
        /* background-position-x: 62%; */
        height: 500px;
        padding: 40px 25px;
        border-radius: 15px;
    }

    .concept__top-row p {
        font-size: 14px;
    }

    .concept-header {
        width: 100%;
        font-size: 25px;
        margin-top: 30px;
    }

    .concept-button {
        display: none;
    }

    .concept-button-mobile {
        display: flex;
        width: 100%;
        height: 42px;
        margin-top: 20px;
        font-weight: 400;
        font-size: 14px;
    }

    .concept-button-two-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 42px;
        border-radius: 1000px;
        font-size: 14px;
        color: #437319;
        margin-top: 20px;
        background-color: #fff;
    }

    .concept__text {
        width: 100%;
        height: 270px;
        padding: 30px 20px;
        border-radius: 15px;
        background: url('./assets/concept-back-mob2.webp') no-repeat;
        background-size: 100% 100%;
    }

    .concept__text p {
        font-size: 14px;
        line-height: 167%;
        width: 100%;
        margin-top: 10px;
    }

}


/* ---------- benefits block ---------*/

.benefits-inner {
    margin-top: 160px;
    position: relative;
}

.follow-button {
    position: absolute;
    width: 149px;
    height: 149px;
    background: #a6ff00;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.1s ease;
    transform: translate(-50%, -50%); /* центрируем кнопку относительно курсора */
    z-index: 10;
    font-weight: 500;
    font-size: 20px;
    line-height: 210%;
    text-align: right;
    color: #000;
    cursor: none;
    will-change: transform;
}

.benefits-inner:hover .follow-button {
    opacity: 1;
}

.benefits-back-left {
    position: absolute;
    top: -10%;
    left: -50%;
    z-index: -1;
    width: 1113px; 
    height: 1000px;
    border-radius: 100%;
    background: linear-gradient(to bottom, #121212, #292828);
    filter: blur(550px);  
}

.benefits-back-right {
    position: absolute;
    bottom: 10%;
    right: -40%;
    z-index: -1;
    width: 1113px; 
    height: 100%;
    border-radius: 100%;
    background: linear-gradient(to bottom, #121212, #292828);
    filter: blur(550px);
}

.benefits__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 44px;
}

.benefits__head h2 {
    font-size: 50px;
    line-height: 90%;
    color: #fff;
    width: 340px;
}

.benefits__head h2 span {
    color: #95979f;
}

.benefits__head-descr {
    margin-left: auto;
    font-size: 16px;
    line-height: 156%;
    text-align: right;
    color: #aeaeae;
    width: 538px;
}

.benefits__head img {
    width: 57px;
}
.benefits__content {
    margin-top: 160px;
}

.benefits__block {
    display: flex;
    align-items: center;
    padding: 90px 20px 90px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.benefits__block:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.benefits__block-number {
    font-size: 20px;
    line-height: 220%;
    color: #818181;
}

.benefits__block-name {
    font-weight: 300;
    font-size: 50px;
    line-height: 90%;
    color: #fff;
    margin-left: 15%;
}

.benefits__block-text {
    font-size: 18px;
    line-height: 139%;
    color: #b2b2b2;
    width: 504px;
    margin-left: auto;
}

.benefits__button-more {
    display: none;
}


@media screen and (max-width: 1919px) {

    .benefits-inner {
        margin-top: 130px;
    }

    .follow-button {
        width: 100px;
        height: 100px;
        font-size: 15px;
    }

    .benefits__head {
        gap: 35px;
    }

    .benefits__head h2 {
        font-size: 40px;
        width: 300px;
    }

    .benefits__head-descr {
        font-size: 13px;
        width: 430px;
    }

    .benefits__head img {
        width: 48px;
    }

    .benefits__content {
        margin-top: 130px;
    }

    .benefits__block {
        padding: 70px 17px 70px 0;
    }

    .benefits__block-number {
        font-size: 17px;
    }

    .benefits__block-name {
        font-size: 40px;
    }

    .benefits__block-text {
        font-size: 15px;
        width: 390px;
    }

    .benefits-back-left,
    .benefits-back-right {
        width: 950px;
        height: 1000px;
    }

}

@media screen and (max-width: 1439px) {

    .benefits-inner {
        margin-top: 100px;
    }

    .follow-button {
        width: 70px;
        height: 70px;
        font-size: 12px;
    }

    .benefits__head {
        gap: 25px;
    }

    .benefits__head h2 {
        font-size: 30px;
        width: 240px;
    }

    .benefits__head-descr {
        font-size: 11px;
        width: 380px;
    }

    .benefits__head img {
        width: 40px;
    }

    .benefits__content {
        margin-top: 100px;
    }

    .benefits__block {
        padding: 50px 12px 50px 0;
    }

    .benefits__block-number {
        font-size: 14px;
    }

    .benefits__block-name {
        font-size: 30px;
    }

    .benefits__block-text {
        font-size: 12px;
        width: 320px;
    }

    .benefits-back-left,
    .benefits-back-right {
        width: 850px;
        height: 1000px;
    }

}

@media screen and (max-width: 999px) {

    .benefits__head-descr {
        display: none;
    }

    .benefits__head h2 {
        font-size: 40px;
        width: fit-content;
    }

    .benefits__head img {
        width: 57px;
    }

    .benefits__block-number {
        font-size: 16px;
    }

    .benefits__block-text {
        font-size: 15px;
    }

    .benefits__block-name {
        margin-left: 8%;
        width: 25%;
    }

    .benefits-back-left, .benefits-back-right {
        width: 600px;
    }

    .follow-button {
        display: none;
    }

}

@media screen and (max-width: 767px) {

    .benefits__head h2 {
        font-size: 30px;
    }

    .benefits__head h2 span {
        height: 0;
        display: block;
    }

    .benefits__head img {
        width: 40px;
        font-weight: 300;
        line-height: 90%;
    }

    .benefits__block {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 5px 50px;
    }

    .benefits__block-number {
        margin-left: auto;
    }

    .benefits__block-name {
        margin-left: 0;
        font-weight: 300;
        font-size: 23px;
        width: 100%;
    }

    .benefits__block-text {
        margin-left: 0;
        margin-top: 30px;
        width: 95%;
    }

    .benefits__button-more {
        margin-top: 20px;
        display: flex;
        gap: 7px;
        align-items: center;
    }

    .benefits__button-more p {
        font-weight: 300;
        font-size: 14px;
        color: #a6ff00;
    }

    .benefits__button-more img {
        transform: rotate(45deg);
        width: 12px;
    }

    .benefits-back-left {
        top: auto;
        bottom: 10%;
    }
    
    .benefits-back-right {
        bottom: auto;
        top: 0%;
    }

}



/* ---------- contact block ---------*/

.contact-inner {
    margin-top: 130px;
    position: relative;
    padding: 60px 60px 0;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    height: 772px;
    max-height: 82vh;
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

.contact-back {    
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.contact-copy-logo {    
    width: 88px;
    position: absolute;
    top: 45px;
    right: 45px;
}

.contact__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.contact__top-row {
    display: flex;
    gap: 10px;
}

.contact__top-row img {
    width: 14px;
}

.contact__top-row p {
    font-weight: 500;
    font-size: 25px;
    color: #fff;
}

.contact-header {
    font-size: 55px;
    line-height: 96%;
    color: #fff;
    margin-top: 5%;
}

.contact__form {
    margin-top: 20px;
}

.label-wrap {
    display: flex;
    flex-direction: column;
}

.form-number {
    width: 326px;
    height: 65px;
}

.contact-form-input {
    width: 100%;
    height: 100%;
    outline: none;    
    border: 1px solid #fff;
    border-radius: 1000px;
    background: transparent;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    padding-left: 50px;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

input:focus {
    outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.contact__form-button {
    border-radius: 1000px;
    width: 326px;
    height: 65px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    color: #437319;
    margin-top: 17px;
    cursor: pointer;
}

.contact__policy {
    font-size: 12px;
    line-height: 133%;
    color: rgba(245, 245, 245, 0.7);
    margin-top: 20px;
    padding-left: 1%;
}

.contact__policy a {
    text-decoration: underline;
    color: #f5f5f5;
}

.contact__social {
    display: flex;
    margin-top: auto;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 39px 39px 0 0;
    width: 711px;
    height: 142px;
    padding: 30px 60px;
    backdrop-filter: blur(5px);
    justify-content: space-between;
    margin-bottom: -1%;
}

.contact__social-link {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: -5%;
}

.contact__social-link p {
    font-size: 32px;
    color: #fff;
}

.contact__social-link img {
    font-size: 32px;
    color: #fff;
}

.contact__social-arrow {
    border-radius: 100%;
    width: 23px;
    height: 23px;
    background-color: #a6ff00;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact__social-arrow img {
    width: 15px;
}

.contact__form-button-popup,
.contact__form-button {
    border: none;
    outline: none;
}


@media screen and (max-width: 1919px) {

    .contact-inner {
        border-radius: 15px 15px 0 0;
    }

    .contact__top-row img {
        width: 12px;
    }

    .contact__top-row p {
        font-size: 18px;
    }

    .contact-copy-logo {
        width: 55px;
        top: 20px;
        right: 20px;
    }

    .contact-header {
        font-size: 45px;
    }

    .form-number {
        width: 290px;
        height: 52px;
    }

    .contact-form-input {
        font-size: 14px;
        padding-left: 30px;
    }

    .contact__form-button {
        width: 290px;
        height: 52px;
        font-size: 14px;
    }

    .contact__policy {
        font-size: 11px;
        margin-top: 15px;
    }

    .contact__social {
        gap: 20px;
        border-radius: 30px 30px 0 0;
        width: 600px;
        height: 110px;
        padding: 20px 50px;
    }

    .contact__social-link p {
        font-size: 25px;
    }

    .contact__social-arrow {
        width: 18px;
        height: 18px;
    }

    .contact__social-arrow img {
        width: 12px;
    }



}

@media screen and (max-width: 1439px) {

    .contact__top-row img {
        width: 10px;
    }

    .contact__top-row p {
        font-size: 15px;
    }

    .contact-copy-logo {
        width: 50px;
        top: 20px;
        right: 20px;
    }

    .contact-header {
        font-size: 25px;
        margin-top: 2%;
    }

    .form-number {
        width: 200px;
        height: 36px;
    }

    .contact-form-input {
        font-size: 11px;
        padding-left: 30px;
    }

    .contact__form-button {
        width: 200px;
        height: 36px;
        font-size: 11px;
        margin-top: 5px;
    }

    .contact__policy {
        margin-top: 5px;
    }

    .contact__social {
        gap: 10px;
        border-radius: 20px 20px 0 0;
        width: 520px;
        height: 80px;
        padding: 10px 40px;
    }

    .contact__social-link p {
        font-size: 18px;
    }

    .contact__social-arrow {
        width: 15px;
        height: 15px;
    }

    .contact__social-arrow img {
        width: 10px;
    }

}

@media screen and (max-width: 999px) {

    .contact__top-row p {
        font-size: 25px;
    }

    .contact__top-row img {
        width: 14px;
    }

    .contact-header {
        font-size: 55px;
        margin-top: 5%;
    }

    .contact-copy-logo {
        width: 40px;
        top: 50px;
        right: 30px;
    }

    .contact-form-input {
        font-size: 18px;
    }

    .form-number {
        width: 326px;
        height: 65px;
    }

    .contact__form-button {
        width: 326px;
        height: 65px;
        font-size: 18px;
        margin-top: 20px;
    }

    .contact__policy {
        font-size: 12px;
    }

    .contact__social {
        border-radius: 39px 39px 0 0;
    }

    .contact__social-link p {
        font-size: 20px;
    }

    .contact__social-arrow {
        width: 19px;
        height: 19px;
    }

    .contact__social-arrow img {
        width: 13px;
    }

}

@media screen and (max-width: 767px) {

    .contact-inner {
        width: 100%;
        border-radius: 0;
        margin-top: 90px;
        padding: 40px 30px 0;
        height: 882px;
        max-height: none;
    }

    .contact-back {
        width: auto;
    }

    .contact-copy-logo {
        display: none;
    }

    .contact__top-row p {
        font-size: 16px;
    }

    .contact-header {
        font-size: 37px;
        margin-top: 50px;
    }

    .form-number {
        height: 56px;
    }

    .contact-form-input {
        font-size: 16px;
    }

    .contact__form-button {
        height: 56px;
        font-size: 16px;
    }

    .contact__policy {
        gap: 5px;
        justify-content: center;
    }

    .contact__social {
        width: 100%;
        margin-top: 30px;
        border-radius: 15px;
        height: 76px;
        padding: 15px 20px;
    }

    .contact__social-link:last-child {
        display: none;
    }

    .contact__social-link {
        margin-top: 0;
        width: 50%;;
        justify-content: center;
    }

    .contact__social-link:first-child {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
    }

    .contact__social-link p {
        font-size: 22px;
    }
    

}



/* ---------- footer block ---------*/

.footer-inner {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -1%;
    margin-bottom: 37px;
    display: grid;
    padding: 75px;
    border-radius: 20px;
    background: #fff;
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 1fr 1fr 0.4fr;
    grid-template-areas:
        "links cell1 logo"
        "links strip arrow"
        "popup cell2 adress"
        "year policy social";
}

.footer__links { grid-area: links; }
.footer__logo { grid-area: logo; }
.footer__button { grid-area: arrow; }
.footer__popup { grid-area: popup; }
.footer__adress { grid-area: adress; }
.footer__year { grid-area: year; }
.footer__policy { grid-area: policy; }
.footer__social { grid-area: social; }
.footer__strip { grid-area: strip; }
.footer__cell-1 { grid-area: cell1; }
.footer__cell-2 { grid-area: cell2; }


.footer__links,
.footer__button,
.footer__strip {
    border-bottom: 1px solid #000;
    padding-bottom: 140px;
    margin-bottom: 40px;
}


.footer__links {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    font-size: 75px;
    color: #141414;
}

.footer__links a {
    width: fit-content;
}

.footer__logo {
    text-align: end;
    margin-top: -2%;
}

.footer__button {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.footer__logo img {
    width: 57px;
}


.footer__button-circle {
    width: 61px;
    height: 61px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #88d100;
    border-radius: 100%;
    cursor: pointer;
}

.footer__button-circle img {
    transform: rotate(-90deg);
    width: 14px;
}


.footer__popup-button {
    display: flex;
    gap: 10px;
    cursor: pointer;
    margin-top: 7%;
}

.footer__popup-button p {
    font-weight: 500;
    font-size: 25px;
    color: #141414;
}

.footer__popup-button img {
    width: 26px;
}

.footer__adress-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer__adress-head {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer__adress-head p {
    font-weight: 500;
    font-size: 20px;
    color: #141414;
}

.footer__adress-head img {
    width: 19px;
}

.footer__adress-text {
    font-size: 35px;
    line-height: 109%;
    text-align: right;
    color: #141414;
    width: 490px;
}

.footer__year {
    font-size: 20px;
    display: flex;
    align-items: flex-end;
}


.footer__policy {
    display: flex;
    align-items: flex-end;
    margin-left: -80%;
}

.footer__policy a {
    font-size: 16px;
    color: #acacac;
    text-decoration: underline;
    width: fit-content;
    margin-bottom: 0.4%;
}

.footer__social {    
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.footer__social-wrap {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer__social-link {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer__social-link p {
    font-size: 25px;
    color: #141414;
}

.footer__social-arrow {
    width: 21px;
    height: 21px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #88d100;
}

.footer__social-arrow img {
    width: 12px;
}


@media screen and (max-width: 1919px) {

    .footer-inner {
        border-radius: 15px;
    }

    .footer__links {
        font-size: 60px;
    }

    .footer__logo img {
        width: 48px;
    }

    .footer__button-circle {
        width: 52px;
        height: 52px;
    }

    .footer__button-circle img {
        width: 11px;
    }

    .footer__links, .footer__button, .footer__strip {
        padding-bottom: 120px;
    }

    .footer__popup-button {
        gap: 6px;
    }

    .footer__popup-button p {
        font-size: 20px;
    }

    .footer__popup-button img {
        width: 22px;
    }

    .footer__adress-head p {
        font-size: 16px;
    }

    .footer__adress-head img {
        width: 16px;
    }

    .footer__adress-text {
        font-size: 28px;
        width: 410px;
    }

    .footer__year {
        font-size: 16px;
    }

    .footer__policy a {
        font-size: 13px;
    }

    .footer__social-link p {
        font-size: 20px;
    }
    
    .footer__social-arrow {
        width: 18px;
        height: 18px;
    }

    .footer__social-arrow img {
        width: 10px;
    }

}

@media screen and (max-width: 1439px) {


    .footer__links {
        font-size: 50px;
    }

    .footer__logo img {
        width: 42px;
    }

    .footer__button-circle {
        width: 45px;
        height: 45px;
    }

    .footer__button-circle img {
        width: 10px;
    }

    .footer__links, .footer__button, .footer__strip {
        padding-bottom: 100px;
    }

    .footer__popup-button p {
        font-size: 16px;
    }

    .footer__popup-button img {
        width: 18px;
    }

    .footer__adress-head p {
        font-size: 14px;
    }

    .footer__adress-head img {
        width: 14px;
    }

    .footer__adress-text {
        font-size: 23px;
        width: 350px;
    }

    .footer__year {
        font-size: 14px;
    }

    .footer__policy a {
        font-size: 11px;
    }

    .footer__social-link p {
        font-size: 17px;
    }
    
    .footer__social-arrow {
        width: 16px;
        height: 16px;
    }

    .footer__social-arrow img {
        width: 8px;
    }

}

@media screen and (max-width: 999px) {

    .footer-inner {
        padding: 65px 40px;
        border-radius: 25px;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 1fr 1fr 0.4fr 0.6fr 0.4fr;
        grid-template-areas:
            "links cell1 logo"
            "links strip arrow"
            "popup adress adress"
            "social social policy"
            "year year year";
    }

    .footer__policy {
        margin-left: auto;
    }

    .footer__logo img {
        width: 57px;
    }

    .footer__button-circle {
        width: 61px;
        height: 61px;
    }

    .footer__button-circle img {
        width: 12px;
    }

    .footer__links {
        font-size: 58px;
    }

    .footer__popup-button p {
        font-size: 24px;
    }

    .footer__popup-button img {
        width: 26px;
    }

    .footer__adress-head p {
        font-size: 18px;
    }

    .footer__adress-text {
        font-size: 22px;
    }

    .footer__policy a {
        font-size: 15px;
    }

    .footer__social {
        justify-content: flex-start;
    }

    .footer__social-wrap {
        gap: 20px;
    }

    .footer__social-link p {
        font-size: 22px;
    }

    .footer__social-arrow {
        width: 21px;
        height: 21px;
    }

    .footer__social-arrow img {
        width: 12px;
    }

    
    .footer__year {
        margin: 150px auto 0; 
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {

    .footer__links, .footer__button, .footer__strip {
        padding-bottom: 0;
        border: 0;
    }

    .footer-inner {
        width: 100%;
        border-radius: 15px 15px 0 0;
        margin-bottom: 0;
        margin-top: -13px;
        padding: 45px 25px 0;

        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 0.2fr 1fr 0.7fr 0.6fr 0.2fr 0.01fr;
        grid-template-areas:
            "arrow arrow"
            "links links"
            "adress adress"
            "popup popup"
            "logo logo"
            "policy year";
    }

    .footer__links {
        font-size: 40px;
        border-bottom: 1px solid #000;
        padding-bottom: 50px;
    }

    .footer__social {
        display: none;
    }

    .footer__button-circle {
        width: 43px;
        height: 43px;
    }

    .footer__adress-head p {
        font-size: 14px;
    }

    .footer__adress-text {
        font-size: 22px;
        text-align: left;
        width: 250px;
    }

    .footer__adress-wrap {
        align-items: flex-start;        
        border-bottom: 1px solid #000;
        padding-bottom: 70px;
    }

    .footer__popup-button {
        justify-content: center;
    }

    .footer__logo {
        text-align: center;
    }

    .footer__policy a {
        text-decoration: none;
        font-size: 12px;
    }

    .footer__year {
        font-size: 12px;
        width: 100%;
        justify-content: flex-end;
    }

    
}








/* popup */

#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000; 
  }

#popup {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 85%;
    transform: translate(-50%, -50%);
    /* padding: 5% 6%; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    background: #000; 
    border-radius: 20px;
    overflow: hidden;
}

.popup-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.contact__column-first {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8% 4% 5%;
}

.popup-back-light {
    position: absolute;
    top: 0%;
    left: 0%;
    transform: translateX(-50%);
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: linear-gradient(to bottom, #121212, #4f4f4f);
    filter: blur(450px);

}


.contact-header-popup {
    font-size: 45px;
    line-height: 98%;
    color: #fff;
}

.contact-header-popup span {
    color: #95979f;
}

.popup__form {
    padding-top: 80px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.15); */
    width: fit-content;
    flex: 1;
}

.form-number-popup {
    width: 371px;
    height: 65px;
}

.contact__form-button-popup {
    border-radius: 1000px;
    width: 371px;
    height: 65px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    color: #000;
    margin-top: 17px;
    cursor: pointer;
}

#popup .contact__policy {
    flex: 1.4;
}


.popup__contact-text {
    margin-top: 20%;
    font-weight: 500;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    
}

.popup__contact-text img {
    width: 15px;
    transform: rotate(-45deg);
}

.popup__social {
    width: fit-content;
    margin-top: 5%;
    padding-top: 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    gap: 45px;
}

.popup__social-link {
    display: flex;
    gap: 10px;    
    align-items: center;
}

.popup__social-link p {
    font-size: 25px;
    color: #fff;
}

.popup__social-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 21px;
    height: 21px;
    border-radius: 100%;
    background-color: #a6ff00;
}

.popup__social-arrow img {
    width: 12px;
}



.contact__column-second {
    width: 65%;
}

.contact__column-second img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.popoup__close {
	position: absolute;
	top: 30px;
	right: 20px;
	width: 22px;
	height: 22px;
	opacity: 1;
	cursor: pointer;
    transition: opacity ease 0.5s;
    border: 1px solid #fff;
    border-radius: 100%;

	&:hover {
		opacity: 0.3;
	}
}

.popoup__close::before,
.popoup__close::after {
	content: '';
	position: absolute;
	top: 50%;
    left: 50%;
	display: block;
	width: 10px;
	height: 1px;
	background: #fff;
}

.popoup__close::before {
	transform:translate(-50%, -50%) rotate(45deg);
}

.popoup__close::after {
	transform:translate(-50%, -50%) rotate(-45deg);
}



/* popup cases */

#popup-overlay-cases {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1000; 
  }

#popup-cases {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: none;
    background: #000; 
    border-radius: 20px;
    overflow: hidden;
}

.popup-wrap-cases {    
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;

    .popup-back-light {
        left: auto;
    }
}

#popup-cases .contact__policy {
    flex: 1.4;
}



.popup-wrap-cases .contact-header-popup {
    width: 435px;
}


@media screen and (max-width: 1919px) {

    .contact-header-popup {
        font-size: 35px;
    }
    
    .popup__form {
        padding-top: 50px;
    }

    .form-number-popup {
        width: 290px;
        height: 52px;
        font-size: 14px;
    }

    .contact__form-button-popup {
        width: 290px;
        height: 52px;
        font-size: 14px;
    }

    .popup__contact-text {
        font-size: 15px;
    }

    .popup__contact-text img {
        width: 12px;
    }

    .popup__social-link p {
        font-size: 20px;
    }

    .popup__social-arrow {
        width: 18px;
        height: 18px;
    }

    .popup__social-arrow img {
        width: 10px;
    }

    .popup-wrap-cases .contact-header-popup {
        width: 335px;
    }

}


@media screen and (max-width: 1440px) {
    
    .contact-header-popup {
        font-size: 28px;
    }
    
    .popup__form {
        padding-top: 40px;
    }

    .form-number-popup,
    .contact__form-button-popup {
        width: 220px;
        height: 45px;
        font-size: 12px;
    }

    .popup__contact-text {
        font-size: 12px;
    }

    .popup__contact-text img {
        width: 10px;
    }

    .popup__social-link p {
        font-size: 16px;
    }

    .popup__social-arrow {
        width: 16px;
        height: 16px;
    }

    .popup__social-arrow img {
        width: 8px;
    }

    .popup-wrap-cases .contact-header-popup {
        width: 265px;
    }

}


@media screen and (max-width: 999px) {

    .br-mobile {
        height: 0;
        display: block;
    }

    #popup {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        /* padding: 10% 4%; */
        border-radius: 22px;
    }

    #popup-overlay, #popup-overlay-cases {
        background-color: #000;
    }

    .popup-wrap {
        gap: 10px;
        flex-direction: column;
    }

    .contact__column-first {
        width: 100%;
        margin-top: 0;
        height: 100%;
        padding: 30% 4% 10%;
        gap: 3%;
    }

    .popup-back-light {
        display: none;
    }

    .contact-header-popup {
        /* margin-top: 1%; */
        font-size: 35px;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    #popup-overlay .popup-wrap {
        flex-direction: column-reverse;
    }

    .form-number-popup, .contact__form-button-popup {
        height: 56px;
        width: 100%;
        font-size: 16px;
    }

    .popup__form {
        width: 100%;
    }

    .contact__policy {
        /* width: 94%; */
        /* margin: 25px auto; */
        display: flex;
        /* gap: 10px; */
    }

    .popup__contact-text {
        font-size: 18px;
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;        
        width: 92%;
    }

    .popup__contact-text img {
        width: 13px;
    }

    .popup__social-link p {
        font-size: 25px;
    }

    .popup__social-arrow {
        width: 21px;
        height: 21px;
    }

    .popup__social-arrow img {
        width: 12px;
    }

    .popup__social {
        width: 92%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 10px;
        padding-top: 20px;
    }


    #popup-overlay-cases .popup-wrap-cases {
        flex-direction: column-reverse;
    }

    .contact__column-second {
        /* width: 100%;
        height: 220px; */
        display: none;
    }

    .contact__column-second img {
        display: none;
    }

    .popup-wrap-cases .contact-header-popup {
        font-size: 30px;
        width: 288px;
        margin-top: 0;
        width: 100%;
        font-size: 35px;
    }

    #popup-overlay-cases .popup__form {
        margin-top: 5%;
    }
    
}

@media screen and (max-width: 450px) {
    #popup,
    #popup-cases {
        width: 100vw;
        height: 95%;
    }
    
}



/* popup succses */

#popup-overlay-succses {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 10000;
    /* Добавьте это: */
    justify-content: center;
    align-items: center;
}

#popup-succses {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* ИЗМЕНИТЕ ЭТУ СТРОКУ: */
    display: block; /* было display: none */
    background: #000; 
    border-radius: 20px;
    overflow: hidden;
    z-index: 10001; 
}

.popup-wrap-succses {    
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* padding: 40px 20px;  */
    text-align: center;
}

/* .popoup__close-succses {
    position: absolute;
    top: 30px;
    left: 30px; 
    width: 22px;
    height: 22px;
    opacity: 1;
    cursor: pointer;
    transition: opacity ease 0.5s;
    border: 1px solid #fff;
    border-radius: 100%;
}

.popoup__close-succses:hover {
    opacity: 0.3;
}

.popoup__close-succses::before,
.popoup__close-succses::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 10px;
    height: 1px;
    background: #fff;
}

.popoup__close-succses::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.popoup__close-succses::after {
    transform: translate(-50%, -50%) rotate(-45deg);
} */

.succses-header {
    font-weight: 400;
    font-size: 45px;
    color: #fff;
    /* margin-bottom: 20px;  */
}

.succses-header span {
    color: #95979f;
}

.succses-text {
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    margin-top: 30px;
}

.succses-return {
    border-radius: 1000px;
    width: 244px;
    height: 45px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    color: #0c0c0c;    
    margin-top: 20px;
    cursor: pointer;
}


@media screen and (max-width: 1919px) {

    .succses-header {
        font-size: 35px;
    }

    .succses-text {
        font-size: 12px;
    }

    .succses-return {
        width: 200px;
        height: 35px;
        font-size: 12px;
        margin-top: 3%;
    }
    

}



@media screen and (max-width: 999px) {

    #popu-succses {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 10% 4%;
        border-radius: 22px;
    }

    #popup-overlay-succses, #popup-overlay-succses {
        background-color: #000;
    }

    .popup-wrap-succses{
        width: 100%;
        margin-top: 0;
        height: 100%;
        padding: 60% 25px 50px;
    }

    .succses-text {
        font-size: 14px;
        margin-top: 5%;
    }

    .succses-return {
        width: 80%;
        height: 45px;
        font-size: 14px;
        margin-top: auto;
        margin-left: auto;
        margin-right: auto;
    }
    
    
}

@media screen and (max-width: 450px) {
    #popup-succses,
    #popup-succses {
        width: 100vw;
    }
    
}





#preloader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    opacity: 1;
    /* background-color: #7FC300; */
    background-color: #000000;
    overflow: hidden;
    cursor: progress;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: bgColorChange 0.8s ease-out;
    
}

@keyframes bgColorChange {
    0% {
        background-color: #161616;
    }
    100% {
        background-color: #000000;
    }
}


.preloader-wrap {
    display: flex;
    align-items: flex-start;
    animation: preloaderContentFadeIn 0.5s ease-out 0.5s forwards;
    opacity: 0;
}


@keyframes preloaderContentFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.preloader-wrap img:nth-child(1) {
    width: 61px;

    animation: ringLeft 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.preloader-wrap img:nth-child(2) {
    margin-left: -30px;
    width: 61px;

    animation: ringRight 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

/* .preloader-wrap img:nth-child(3) {
    width: 11px;
    margin-left: 3%;
} */

@keyframes ringLeft {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes ringRight {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

@media screen and (max-width: 1919px) {
    .preloader-wrap img:nth-child(1) {
        width: 45px;
    }

    .preloader-wrap img:nth-child(2) {
        width: 45px;
        margin-left: -22px;
    }

    /* .preloader-wrap img:nth-child(3) {
        width: 9px;
    } */
}


@media screen and (max-width: 999px) {
    .preloader-wrap img:nth-child(1) {
        width: 35px;
    }

    .preloader-wrap img:nth-child(2) {
        width: 35px;
        margin-left: -17px;
    }
}






/* burger-menu */

/* Стили бургер-кнопки */
.burger-btn {
    margin-right: 20px;
    width: 21px;
    height: 11px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-line {
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: all 0.3s ease;
}



.menu {
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    background-color: #000;
    transition: all 0.5s ease;
    z-index: -1;
    padding: 25px 20px 180px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10%;
}

@media screen and (min-width: 768px ) {
    .menu {
        display: none;
    }
}

.menu.active {
    top: 0;
    z-index: 1000;
}

.menu ul {
    list-style: none;
    text-align: center;
}

.menu li {
    margin-bottom: 30px;
}

.menu a {
    text-decoration: none;
    transition: color 0.3s;
}

.menu a:hover {
    color: #ccc;
}

.burger__list {
    width: 100%;
}

.burger-first-column {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin-top: 10%;
}

.burger__list-link {
    color: #d5d5d5;
    font-size: 16px;
}

.burger-button {
    display: flex;
    gap: 10px;
    font-weight: 500;
    font-size: 18px;
    line-height: 300%;
    color: #a6ff00;
    margin-top: auto;
}

.burger-button img {
    width: 21px;
}


.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 15px;
    height: 15px;
    cursor: pointer;
    z-index: 1000;
    display: none;
    transition: color 0.3s;
}

.close-line {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: white;
    top: 50%;
    left: 0;
}

.close-line:first-child {
    transform: rotate(45deg);
}

.close-line:last-child {
    transform: rotate(-45deg);
}

.menu.active ~ .burger-btn .burger-line {
    opacity: 0;
}

.menu.active + .close-btn {
    display: block;
}

body.menu-open {
    overflow: hidden;
    max-height: 100vh;
}


@media (max-width: 767px) {
    .nav {
        display: none;
    }
    
    .burger-menu {
        display: block;
    }

    

    .burger-menu-top {
        display: flex;
        width: 80%;
        justify-content: space-between;
        margin-right: auto;
        margin-left: 5%;
    }

    .language-dropdown-mobile {
        display: flex;
    }

    .burger-logo {
        width: 43px;
    }

    .burger-contacts__wrap {
        display: flex;
        gap: 30px;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }

}





/* career page */

.career-inner {
    display: flex;
    flex-direction: column;    
    /* min-height: var(--fixed-vh); */
    padding: 2% 2% 4%;
    position: relative;
}

.career-back {
    position: absolute;
    top: 10%;
    left: 0;
    z-index: -1;
    width: 933px; 
    height: 900px;
    border-radius: 100%;
    background: linear-gradient(to bottom, #121212, #292828);
    filter: blur(550px);
}

.career-header {
    font-weight: 300;
    font-size: 150px;
    color: #fff;
    margin-top: 150px;
}

.career-centr-wrap {
    margin-top: 100px;
    padding: 90px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.career__text {
    font-size: 50px;
    line-height: 108%;
    color: #95979f;
    width: 810px;
    margin-left: auto;    
}

.career__text span {
    color: #fff;
}

.career__down-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    color: #95979f;
    margin-top: 120px;
    margin-bottom: 150px;
}

.career__mail {
    font-weight: 400;
    font-size: 80px;
    color: #fff;
    margin-top: 20px;
}


@media screen and (max-width: 1919px) {

    .career-header {
        font-size: 100px;
        margin-top: 100px;
    }

    .career-centr-wrap {
        margin-top: 60px;
        padding: 60px 0;
    }

    .career__text {
        font-size: 30px;
        width: 480px;  
    }

    .career__down-wrap {
        font-size: 22px;
        margin-top: 80px;
        margin-bottom: 90px;
    }

    .career__mail {
        font-size: 60px;
        margin-top: 12px;
    }

}


@media screen and (max-width: 1439px) {
    .career-header {
        font-size: 80px;
        margin-top: 80px;
    }

    .career-centr-wrap {
        margin-top: 45px;
        padding: 45px 0;
    }

    .career__text {
        font-size: 22px;
        width: 360px;  
    }

    .career__down-wrap {
        font-size: 18px;
        margin-top: 60px;
        margin-bottom: 70px;
    }

    .career__mail {
        font-size: 45px;
        margin-top: 8px;
    }
}



@media screen and (max-width: 999px) {

    .career-header {
        font-size: 70px;
        margin-top: 100px;
    }

    .career__text {
        font-size: 18px;
        width: 300px;  
    }

    .career__down-wrap {
        font-size: 15px;
        margin-top: 50px;
        margin-bottom: 60px;
    }

    .career__mail {
        font-size: 35px;
    }

}

@media screen and (max-width: 767px) {
    
    .career-header {
        font-size: 45px;
    }

    .career__text {
        font-size: 21px;
        margin-left: 0;
    }

    .career__down-wrap {
        font-size: 14px;
    }

    .career__mail {
        font-size: 27px;
    }

}



/* contacts page */

.contact-centr-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 250px;
}

.contact-centr-column {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact__button {
    margin-top: auto;
    border-radius: 1000px;
    width: 283px;
    height: 65px;
    background: #95ff00;
    font-weight: 500;
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.contact-block {    
    font-size: 45px;
    line-height: 111%;
}

.contact-name {
    color: #95979f;
}

.contact-descr {
    color: #fff;
}

.contact__down-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 100px;
    padding: 100px 0;    
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact__number {
    font-size: 70px;
    color: #fff;
}

.contact__adress {
    font-size: 35px;
    line-height: 109%;
    color: #95979f;
    width: 500px;
}


@media screen and (max-width: 1919px) {
    
    .contact-centr-wrap {
        margin-top: 180px;
    }

    .contact__button {
        width: 260px;
        height: 55px;
        font-size: 15px;
    }

    .contact-block {
        font-size: 30px;
    }

    .contact__down-wrap {
        margin-top: 80px;
        padding: 80px 0;
    }

    .contact__number {
        font-size: 58px;
    }

    .contact__adress {
        font-size: 28px;
        width: 400px;
    }

}

@media screen and (max-width: 1439px) {
    
    .contact-centr-wrap {
        margin-top: 150px;
    }

    .contact__button {
        width: 220px;
        height: 46px;
        font-size: 13px;
    }

    .contact-block {
        font-size: 22px;
    }

    .contact__down-wrap {
        margin-top: 60px;
        padding: 60px 0;
    }

    .contact__number {
        font-size: 45px;
    }

    .contact__adress {
        font-size: 20px;
        width: 280px;
    }

}

@media screen and (max-width: 999px) {
    
    .contact-centr-wrap {
        margin-top: 100px;
    }

    .contact-block {
        font-size: 32px;
    }

    .contact-centr-column:last-child {
        padding-bottom: 200px;
    }

    .contact__button {
        width: 260px;
        height: 65px;
        font-size: 18px;
    }

    .contact__number {
        font-size: 45px;
    }

    .contact__adress {
        font-size: 22px;
    }

}

@media screen and (max-width: 767px) {

    .contact-centr-wrap {
        flex-direction: column-reverse;
    }

    .contact-block {
        font-size: 22px;
    }

    .contact__button {
        width: 100%;
    }

    .contact-centr-column:last-child {
        padding-bottom: 100px;
    }

    .contact-centr-column {
        gap: 40px;
    }

    .contact__down-wrap {
        flex-direction: column;
        border: none;
        margin-top: 10px;
        padding: 50px 0;
    }

    .contact__number {
        font-size: 35px;
        padding: 50px 0;        
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        width: 100%;
    }

    .contact__adress {
        margin-top: 42px;
        font-size: 22px;
        width: 100%;
    }

}
