* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
select,
input {
    font-family: 'Involve', sans-serif;
}
body {
    font-family: 'Involve', sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
    color:#2E2E2E;
    line-height: 1.3;
    background-color: #fff;
    overflow-x: hidden;
    margin: 0;
}
p, ul, li {
    margin: 0;
    padding: 0;
}
button {
    font-family: 'Involve', sans-serif;
}
.container {
    max-width: 1560px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}
img {
    width: 100%;
}
h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
a {
    text-decoration: none;
    color:#4E4E4E;
}
.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    color:#fff;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    border-radius: 30px;
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%), rgba(46, 46, 46, 0.10);
    padding: 16px;
    border:none;
    width: 240px;
    max-width: 340px;
    margin: 0;
    cursor:pointer
}
.btn-outline {
    color:#4E4E4E;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    line-height: 120%;
    background: #fff;
    border: 1px solid rgba(46, 46, 46, 0.10);
}
.btn-white {
    color: #2E2E2E;
    border: solid 1px #fff;
    background: #fff;
}
.btn:hover, .btn:active, .btn:focus {
    background: linear-gradient(180deg, rgba(254, 115, 56, 0.80) 0%, rgba(234, 55, 0, 0.80) 100%);
}
.btn-outline:hover,
.btn-outline:active,
.btn-outline:focus,
.btn-white:hover,
.btn-white:active,
.btn-white:focus {
    background: transparent;
    color: #F14B13;
    border: solid 1px #F14B13;
}
.section {
    padding: 80px 0;
    overflow-x: hidden;
    background-color: #fff;
}
.section__title-block {
    margin-bottom: 48px;
}
.section__title {
    color: #2E2E2E;
    font-family: 'Involve';
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    font-size: 40px;
}
.section__title span {
    color: #FF4D00;
}
.section__subtitle {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    margin-top: 8px;
}
.section__description {
    font-size: 16px;
    color: rgba(46, 46, 46, 0.50);
    margin-top: 8px;
    line-height: 1.5;
}
.section__actions {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap:20px;
}
.section__actions .btn{
    margin: 0;
}
.swiper-pagination {
    z-index: 3;
}
.lang-switch {
    display: flex;
    align-items: center;
    background: rgba(46, 46, 46, 0.10);
    border-radius: 40px;
    padding: 4px;
    gap: 0;
    height: 44px;
}

.lang-switch .lang-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: 600;
    color: #2E2E2E;
    text-decoration: none;
    font-size: 16px;
    line-height: 20px;
    transition: all 0.3s ease;
}

.lang-switch .lang-item.active {
    background: #F14B13;
    color: #fff;
}
.orange-text {
    color: #F14B13!important;
}

/* HEADER START */

.header {
    padding: 16px 0;
    border-bottom: 1px solid rgba(46, 46, 46, 0.10);
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease, background-color 0.3s ease;
    transform: translateY(0); /* по умолчанию на месте */
}

.header.header--sticky {
    position: fixed;
    z-index: 9;
    background-color: #fff;
    transform: translateY(-100%); /* сначала "прячем" */
    animation: slideDown 0.3s ease forwards; /* анимация появления */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:30px;
}
.header__logo {
    min-width: 200px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 0;
}
.header__nav-list {
    list-style: none;
    display: flex;
    gap:30px;
    justify-content: center;
    flex-wrap: wrap;
}
.header__nav-item {
}
.header__nav-item-link {
    font-size: 16px;
    white-space: nowrap;
}
.header__nav-item-link:hover,
.header__nav-item-link:active,
.header__nav-item-link:focus {
    color: #F14B13;
}
.header__action {
    display: flex;
    gap: 4px;
    align-items: center;
}
.header__action-btn {
    padding: 12px 24px;
    white-space: nowrap;
    background: rgba(46, 46, 46, 0.10);
    border:none;
    border:solid 1px transparent;
    height: 44px;
}
.header__burger {
    display: none;
}
.header__burger-btn {
    width: 28px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.header__burger-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: rgba(78, 78, 78, 0.9);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

header.open-menu .header__nav {
    display: block;
    background-color: #fff;
    position: absolute;
    top:62px;
    left:0;
    width: 100%;
    height: calc(100vh - 62px);
    padding: 40px 20px 20px 20px;
    z-index: 9;
    /* overflow: hidden; */
    overflow-x: hidden;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
header.open-menu .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 754px;
    margin:0 auto;
    padding-left: 15px;
    padding-right: 15px;
    gap:16px;
}
header.open-menu .header__nav-item {
    padding: 20px 0;
    width: 100%;
    border-bottom: 1px solid rgba(46, 46, 46, 0.10);
}
/* Превращение в крестик, когда у header есть класс open-menu */
.header.open-menu .header__burger-btn span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.header.open-menu .header__burger-btn span:nth-child(2) {
    opacity: 0;
}

.header.open-menu .header__burger-btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.header__action--mobile {
    display: none;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.header__action--mobile .btn {
    width: 100%;
    max-width: 360px;
}
.header.open-menu .header__action--mobile {
    display: flex;
}
.header__lang li {
    list-style-type: none;
}
.header__lang {
    display: flex;
    flex-direction: column;
    gap:0;
    justify-content: center;
}
.header__lang img{
    width: 24px!important;
    height: 16.5px!important;
}

/* HEADER END */


/* HERO START */

.hero {
    padding: 160px 0 80px;
    background:
        linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
        linear-gradient(274deg, rgba(255, 255, 255, 0) 32.76%, #FFF 61.27%),
        linear-gradient(183deg, rgba(255, 255, 255, 0) 42.15%, #FFF 78.28%),
        url('../img/main_bg.jpg') 83% -24px / cover no-repeat,
        #FFF;
    overflow: hidden;
    height: 100vh;
    min-height: 960px;
}
.hero__kyc {
    background:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
    linear-gradient(270deg, rgba(255, 255, 255, 0) 21.76%, #FFF 74.27%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 59.15%, #FFF 84.28%),
    url('../img/kyc_main.jpg') 11% 0px / cover no-repeat, #FFF;
    min-height: 900px;
}
.hero__kyc .hero__col--image {
    display: none;
}
.hero .container {
    height: 100%;
}
.hero__wrapper {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero__row {
    display: flex;
    position: relative;
}
.hero__col {
    width: calc(50% - 36px);
    height: auto;
}
.hero__kyc .hero__content {
    max-width: unset;
    min-width: unset;
}
.hero__content {
    min-width: 600px;
    max-width: 650px;
}
.hero__content-logo {
    width: 137px;
}
.hero__content-subtitle {
    color: rgba(78, 78, 78, 0.80);
    font-size: 16px;
    line-height: 120%; /* 26.4px */
    margin-bottom: 15px;
}
.hero__content-subtitle--product {
    font-size: 28px;
    font-weight: 600;
    line-height: normal;
    max-width: 560px;
}
.hero__content-title {
    margin-bottom: 24px;
}
.main-title {
    color: #2E2E2E;
    font-family: "Involve";
    font-size: 56px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 15px;
}
.main-title span {
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}
.hero__content-description {
    color: rgba(78, 78, 78, 0.90);
    font-size: 16px;
    line-height: 130%;
    margin-bottom: 24px;
    max-width: 500px;
}
.hero__content-description strong{
    color: #4E4E4E;
    font-weight: 700;
}
.hero__aml .hero__content-description {
    max-width: 530px;
}
.hero__content-description p{
    margin-bottom: 8px;
}
.hero__content-description p:last-of-type {
    margin-bottom: 0;
}
.hero__col--image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.hero__content-image {
    position: relative;
    right: 0;
    bottom:0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap:14px;
    height: 100%;
    width: 108px;
}
.hero__content-image img {
    width: 100%;
}
.hero__content-image-link {
    color: #4E4E4E;
    font-size: 18px;
    line-height: 120%; /* 21.6px */
    text-decoration-line: underline;
    white-space: nowrap;
    text-align: center;
}
.hero__action-text {
    margin-top: 8px;
    color: rgba(46, 46, 46, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
}
.hero__slider {
    position: relative;
    margin-top: 10px;
    padding-bottom: 50px;
    overflow: hidden;
}
.swiper-slider {
}
.hero__slider-wrapper {
    
}
.swiper-wrapper {
    
}
.hero__slide {
    padding: 24px;
    border-radius: 24px;
    background: rgba(46, 46, 46, 0.03);
    display: flex;
    gap:16px;
    height: auto;
    min-height: 140px;
}
.hero__slide-image {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}
.hero__slide-image img {
    object-fit: contain;
    height: 100%;
}
.hero__slide-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
}
.hero__slide-title {
    color: #2E2E2E;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
}
.hero__slide-description {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
}

.swiper-button-prev,
.swiper-button-next {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid rgba(46, 46, 46, 0.10);
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(6px);
    position: absolute;
    top:50%;
    padding: 12px;
    transform: translateY(-10px);
}
.hero__slider .swiper-button-prev {
    left: 0;
}
.hero__slider .swiper-button-next {
    right: 0;
}
.hero__slider .swiper-button-prev.swiper-button-disabled,
.hero__slider .swiper-button-next.swiper-button-disabled {
    display: none;
}
.hero__slider .swiper-button-next:after, .swiper-button-prev:after {
    display: none;
    content: '';
    width: 40px;
    height: 40px;
    background: url('../img/arrow_right.svg') center center / contain no-repeat;
}
.hero-swiper-arrow:hover svg path,
.hero-swiper-arrow:active svg path,
.hero-swiper-arrow:focus svg path {
    opacity: 0.7;
}
.hero__slider .swiper-button-prev:after {
    transform: rotate(180deg);
}
.hero .swiper-pagination {
    position: absolute;
    bottom: 0px;
    top:unset;
    left:unset;
    width: 100%;
    z-index: 2;
}
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #EAEAEA;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: linear-gradient(180deg, #FE7338 8.18%, #D04130 120%);
}
.hero__bottom {
    color: #F14B13;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
}

/* HERO END */

/* PROFIT START */

.profit {
}
.profit__wrapper {
}
.profit__content {
    display: flex;
    gap: 16px;
}
.profit__image {
    width: calc(50% - 8px);
    height: 460px;
    border: 1px solid rgba(46, 46, 46, 0.10);
    border-radius: 40px;
    overflow: hidden;
    background-image: url('../img/profit_image.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 32px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}
.profit__image-text {
    font-size: 24px;
    font-weight: 700;  
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.80);
    backdrop-filter: blur(17px);
    padding: 16px;
    max-width: 520px;
}
.profit__image-text span {
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.profit__cards {
    width: calc(50% - 8px);
    display: flex;
    flex-wrap: wrap;
    gap:16px;
}
.profit__card {
    border-radius: 24px;
    background: #FAFAFA;
    width: calc(50% - 8px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 24px;
    font-weight: 700;
    position: relative;
}
.profit__card::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 30px;
    top:30px;
    background-position: center center;
    background-repeat: no-repeat;
}
.profit__card1::after {
    background-image:url('../img/profit__card_icon1.svg')
}
.profit__card2::after {
    background-image:url('../img/profit__card_icon2.svg')
}
.profit__card3::after {
    background-image:url('../img/profit__card_icon3.svg')
}
.profit__card:last-of-type {
    width: 100%;
}


/* PROFIT END */


/* SOLUTIONS START */

.solutions {
    background: #F5F5F7;
}
.solutions__wrapper {
}

.solutions__slider .swiper-pagination {
    display: none;
}
.solutions__list {
    display: flex;
    gap:16px;
    flex-wrap: wrap;
}
.solutions__item {
    border-radius: 24px;
    background: #FFF;
    padding: 24px;
    width: calc(25% - 12px);
    height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.solutions__item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.solutions__item-number {
    color: rgba(78, 78, 78, 0.70);
    font-size: 20px;
}
.solutions__item-icon {
    width: 40px;
    height: 40px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.solutions__item-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.solutions__item-title {
    color: #2E2E2E;
    text-align: left;
    font-family: 'Involve';
    font-size: clamp(28px, calc(28px + 4 * ((100vw - 480px) / 920)), 32px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.28px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.solutions__item-description {
    color: rgba(78, 78, 78, 0.90);
    font-family: 'Involve';
    font-size: clamp(16px, calc(16px + 4 * ((100vw - 480px) / 920)), 20px);
}
.solutions__item--gray {
    background-image: url('../img/solution_image.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.solutions__item--orange {
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
    box-shadow: -3px 4px 19px 0px rgba(0, 0, 0, 0.06);
}
.solutions__item--orange .solutions__item-number,
.solutions__item--orange .solutions__item-title,
.solutions__item--orange .solutions__item-description {
    color:#fff;
}
.solutions__item:nth-of-type(1) .solutions__item-icon{
    background-image: url('../img/icon1.svg');
}
.solutions__item:nth-of-type(2) .solutions__item-icon{
    background-image: url('../img/icon2.svg');
}
.solutions__item:nth-of-type(3) .solutions__item-icon{
    background-image: url('../img/icon3.svg');
}
.solutions__item:nth-of-type(4) .solutions__item-icon{
    background-image: url('../img/icon4.svg');
}
.solutions__item:nth-of-type(5) .solutions__item-icon{
    background-image: url('../img/icon5.svg');
}
.solutions__item:nth-of-type(6) .solutions__item-icon{
    background-image: url('../img/icon3.svg');
    transform: rotate(45deg);
}
.solutions--page {
    background-color: #fff;
}
.solutions--page .solutions__list {
    gap: 16px;
}
.solutions--page .solutions__content {
    position: relative;
}
.solutions--page .solutions__item{
    background: rgba(46, 46, 46, 0.03);
    width: calc(33.33% - 10.67px);
    gap:24px;
    height: 320px;
    border-radius: 24px;
    padding: 24px;
}
.solutions--page .solutions__item-top {
    gap: 8px;
}
.solutions--page .solutions__item--orange {
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
}
.solutions--page .solutions__item--orange .solutions__item-title,
.solutions--page .solutions__item--gray .solutions__item-title,
.solutions--page .solutions__item--gray .solutions__item-description,
.solutions--page .solutions__item--gray .solutions__item-number {
    color: #fff;
}
.solutions--page .solutions__item-title {
    color: #2E2E2E;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    text-transform: unset;
    line-height: 1.3;
}
.solutions--page .solutions__item--gray {
    background: #2E2E2E;
    color:#fff;
}
.solutions--page .solutions__item-description {
    font-size: 16px;
}
.solutions__item--gray .solutions__item-icon {
    transform: none!important;
}



/* SOLUTIONS END */

/* INDUSTRIES START */

.industries {
}
.industries__wrapper {
    position: relative;
    padding-bottom: 40px;
}
.industries__content {
    overflow: visible;
}
.industries .section__description {
    max-width: 1100px;
}
.industries__list {
    display: flex;
    gap:16px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.industries__item {
    width: calc(33.33% - 10.67px);
    height: 420px;
    border-radius: 24px;
    position: relative;
    background-color: transparent;
    perspective: 1200px;
    overflow: visible;
    padding: 0;
    display: block;
}
/* .industries__item:hover {
    background: rgba(46, 46, 46, 0.10);
} */
.industries__item-inner {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(221, 221, 221, 0.60);
    transform-style: preserve-3d;
    transition: transform 0.8s ease;
    position: relative;
    border-radius: 24px;
    cursor: pointer;
}
.industries__item-front, .industries__item-back {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backface-visibility: hidden;
    top: 0;
    left: 0;
    background: rgba(46, 46, 46, 0.03);
}
.industries__item-front {
    background: inherit;
    z-index: 2;
}
.industries__item-back {
    transform: rotateY(180deg);
    background-color: rgba(46, 46, 46, 0.03);
    color: #2e2e2e;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.industries__item.active .industries__item-inner {
  transform: rotateY(180deg);
}
.industries__item-back ul{
    list-style: none;
}
.industries__item-back ul li{
    margin-bottom: 16px;
    position: relative;
    padding-left: 20px;
    color: rgba(46, 46, 46, 0.90);
    font-size: 18px;
}
.industries__item-back ul li::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    background-color: rgba(46, 46, 46, 0.20);
    border-radius: 50%;
    position: absolute;
    top:6px;
    left:0;
}
.industries__item--orange .industries__item-back ul li,
.industries__item--orange .industries__item-back p {
    color:#fff;
}
.industries__item--orange .industries__item-back ul li::after {
    background-color: rgba(255, 255, 255, 0.20);
}

.industries__item--gray .industries__item-back ul li,
.industries__item--gray .industries__item-back p {
    color:#fff;
}
.industries__item--gray .industries__item-back ul li::after {
    background-color: rgba(255, 255, 255, 0.20);
}


.industries__item-title {
    color: #2E2E2E;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
}
.industries__item-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    position: absolute;
    border:none;
    right: 24px;
    bottom: 24px;
}
.industries__item-link svg path {
    fill: rgba(78, 78, 78, 0.40);
}
.industries__item--orange .industries__item-link svg path {
    fill: rgba(255, 255, 255, 0.40);
}
.industries__item--gray .industries__item-link svg path {
    fill: #d7d7d7;
}
.industries__item--orange .industries__item-inner{
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%), rgba(46, 46, 46, 0.03)!important;
}
/* .industries__item--orange:hover .industries__item-inner {
    background: linear-gradient(180deg, rgba(254, 115, 56, 0.80) 0%, rgba(234, 55, 0, 0.80) 100%);
} */

.industries__item--orange .industries__item-back {
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%), rgba(46, 46, 46, 0.03)!important;
}
.industries__item.industries__item--gray .industries__item-back,
.industries__item.industries__item--gray .industries__item-front {
    background: #2E2E2E!important;
    color:#fff;
}

.industries__item--orange .industries__item-title,
.industries__item--gray .industries__item-title {
    color:#fff;
}

.industries__item--gray .industries__item-inner {
    background: #2E2E2E!important;
}
/* .industries__item--gray:hover .industries__item-inner {
    background: rgba(46, 46, 46, 0.80);
} */

.industries__item--orange .industries__item-link svg path {
    fill: rgba(255, 255, 255, 0.40);
}
.industries .swiper-pagination {
    display: none;
}

/* INDUSTRIES END */

/* FORM START */

.mobile-form {
    display: none;
    margin-top: 0;
    margin-bottom:0;
    padding: 0;
}
.mobile-form .section__title {
    font-size: 24px;
}
.mobile-form .section__title-block {
    margin-bottom: 24px;
}
.mobile-form__wrapper {
}
.mobile-form__content {
}
.form {
    display: flex;
    flex-direction: column;
    gap:8px;
}
.input-form {
    width: 100%;
    border:none;
    border-radius: 16px;
    background: rgba(46, 46, 46, 0.05);
    color: rgba(46, 46, 46, 0.50);
    font-family: 'Involve';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    padding: 16px;
}
.btn--submit {
}
.mobile-form__form .checkbox-wrapper {
    justify-content: flex-start;
}
.mobile-form__description {
    color: rgba(46, 46, 46, 0.50);
    text-align: left;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    margin: 10px 0 0;
}
.mobile-form__description a {
    text-decoration: underline;
}
/* Скрываем стандартный чекбокс */
.checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Стиль кастомного чекбокса */
.checkbox-wrapper label {
    position: relative;
    padding-left: 32px; /* отступ под иконку */
    cursor: pointer;
    font-size: 14px;
    color: #333;
    user-select: none;
}

/* Создаём квадрат */
.checkbox-wrapper label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: transparent;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    transition: background 0.3s ease;
}
.feedback__form .checkbox-wrapper label::before {
    border: 1px solid rgba(255, 255, 255, 0.20);
}
.feedback__form-agree {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Галочка */
.checkbox-wrapper input[type="checkbox"]:checked + label::before {
    background: #F14B13;
}

.checkbox-wrapper input[type="checkbox"]:checked + label::after {
    content: "";
    position: absolute;
    left: 6px;
    top: calc(50% - 2px);
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translateY(-50%) rotate(45deg);
}


/* FORM END */

/* SERIVCES START */

.services {
    padding-bottom: 32px;
}
.services__wrapper {
    position: relative;
}
.services__content {
}
.services .section__description {
    max-width: 950px;
}
.tabs__buttons {
    margin-bottom: 24px;
}

.tab-item {
    max-width: unset;
    min-width: unset;
    margin: 0;
    color: #2E2E2E;
    font-size: 14px;
    text-align: center;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    padding: 21px 30px;
    border-radius: 50px;
    cursor: pointer;
    background-color: #fff;
}
.tab-item.active,
.tab-item:hover {
    color: #FE7338;
    border: 1px solid #FE7338;
}
.tab-item.swiper-slide {
    width: unset;
    padding: 12px 16px;
}
.active {
}
.tabs__content {
}

@media (min-width: 1200px) {
  .tab__content {
    display: none;
  }
  .tab__content.active {
    display: block;
  }
  .tabs__buttons .swiper-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap:8px;
    }
}


.tab__content-wrapper {
    display: flex;
    gap:30px;
}
.tab__content-image {
    width: calc(50% - 15px);
    border-radius: 30px;
    height: 440px;
}
.tab__content-image img {
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}
.tab__content-info {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 24px;
    padding-bottom: 24px;
}
.tab__content-subtitle {
    color: #2E2E2E;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 24px!important;
    line-height: 1.3;
}
.tab__content-text {
    color: rgba(78, 78, 78, 0.90);
    font-size: 22px;
}
.tab__content-text p {
    margin-bottom: 12px;
}
.tab__content-text p:last-of-type {
    margin-bottom: 0;
}
.tab__content-action {
    width: 100%;
}
.services__content .swiper-button-prev,
.services__content .swiper-button-next {
    display: none;
}
.services .swiper-pagination {
    display: none;
}

/* SERVICES END */

/* CARDS START */

.services+.cards {
    padding-top: 32px;
    overflow: hidden;
}
.cards__wrapper {

}
.cards__content {
    position: relative;
}
.cards__list {
    display: flex;
    gap:16px;
}
.cards__slider .swiper-pagination {
    display: none;
}
.cards__item {
    width: calc(33.33% - 20px);
    height: 240px;
    border-radius: 24px;
    background: #FAFAFA;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
/* .cards__item:hover,
.cards__item:active,
.cards__item:focus {
    background: rgba(46, 46, 46, 0.10);
} */
.cards__item--orange {
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
    backdrop-filter: blur(17px);
}
/* .cards__item--orange:hover,
.cards__item--orange:active,
.cards__item--orange:focus {
    background: linear-gradient(180deg, rgba(254, 115, 56, 0.80) 0%, rgba(234, 55, 0, 0.80) 100%);
} */
/* .cards--four .cards__item:hover,
.cards--four .cards__item:active,
.cards--four .cards__item:focus {
    background: #FAFAFA;
}
.cards--four .cards__item--dark:hover,
.cards--four .cards__item--dark:active,
.cards--four .cards__item--dark:focus {
    background: #2E2E2E;
}
.cards--four .cards__item--orange:hover,
.cards--four .cards__item--orange:active,
.cards--four .cards__item--orange:focus {
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
} */
.cards__item-title {
    color: #2E2E2E;
    font-size: 22px;
    font-weight: 600;
}
.cards__item--orange .cards__item-title {
    color:#fff;
}
.cards__item-action {
}

.cards__item-btn {
    background: transparent;
    width: 140px;
    min-width: unset;
    padding: 12px 16px;
}
.cards__item--orange .cards__item-btn {
    color:#fff;
    border: 1px solid rgba(255, 255, 255, 0.70);
}
.cards__slider .swiper-pagination {
    bottom: -40px;
}



.cards--kyc .cards__list {
    gap:16px;
}
.cards--kyc .cards__item {
    width: calc(25% - 8px);
}
.cards__item-description {
    color: rgba(46, 46, 46, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 18.2px */
}
.cards__item--orange .cards__item-description{
    color:#fff;
}
.cards--kyc .cards__list{
    padding-bottom: 24px;
}
.cards__actions {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
}
.cards__item-number {
    color: rgba(46, 46, 46, 0.50);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
}
.cards__item--orange .cards__item-number,
.cards__item--dark .cards__item-number {
    color: rgba(255, 255, 255, 0.50);
}
/* CARDS END */

/* ABOUT START */

.about {
    background-color: rgba(25, 25, 25, 0.95);
}
.about__wrapper {
    display: flex;
    gap:30px;
    overflow: hidden;
}
.about__image {
    width: calc(50% - 15px);
    border-radius: 30px;
    overflow: hidden;
}
.about__image img {
    height: 100%;
    object-fit: cover;
}
.about__content {
    width: calc(50% - 15px);
}
.about__content-title {
    font-family: 'Involve';
    font-size: clamp(24px, calc(24px + 16 * ((100vw - 480px) / 920)), 40px);
    font-weight: 500;
    margin-bottom: 44px;
    color:#fff;
}
.about__content-text {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 70px;
}
.about__content-text p {
    margin-bottom: 28px;
}
.about__content-text p:last-of-type {
    margin-bottom: 0;
}
.about__content-action .btn{
    margin: 0;
    width: 280px;
}

/* ABOUT END */

/* STATS START */

.stats {
    background: #F5F5F7;
}
.stats__wrapper {
}
.stats__content {
}
.stats__list {
    display: flex;
    flex-wrap: wrap;
    gap:16px;
}
.stats__item {
    width: calc(25% - 12px);
    background-color: #fff;
    height: 300px;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.stats__item-top {
    width: 100%;
    position: relative;
}
.stats__item-title {
    color: #2E2E2E;
    font-size: 24px;
    font-weight: 700;
    padding-right: 48px;
}
.stats__item-number {
    position: absolute;
    right: 0;
    top: 0;
    color: rgba(78, 78, 78, 0.70);
    font-size: 18px;
}
.stats__item-bottom {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-weight: 500;
}
.stats__item--orange {
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%), #444;
}
.stats__item--orange .stats__item-title{
    color:#fff;
}
.stats__item--orange .stats__item-bottom,
.stats__item--orange .stats__item-number {
    color: rgba(255, 255, 255, 0.80);
}
.stats__list > .stats__item:nth-child(n+9) {
  display: none;
}

.stats__content-action {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    display: none;
}
.stats__content-link {
    color: #F14B13;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    gap:8px;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #fff;
    border-radius: 99px;
    padding: 16px 24px;
    cursor: pointer;
}
.stats__content-link::after {
    content: '';
    display: block;
    min-width: 20px;
    width: 20px;
    height: 20px;
    background: url('../img/arrow-down-orange.svg') center center / cover no-repeat;
    position: relative;
    top: 3px;
}
.stats__list.show  .stats__item{
    display: flex!important;
}
.stats__list.show .stats__content-link::after {
    transform: rotate(180deg);
}

/* STATS END */

/* BENEFITS START */

.benefits {
}
.benefits__wrapper {
}
.benefits__list {
    display: flex;
    flex-wrap: wrap;
    gap:16px;
}
.benefits__item {
    border-radius: 24px;
    background: rgba(46, 46, 46, 0.03);
    padding: 24px;
    color: rgba(46, 46, 46, 0.50);
    font-size: 18px;
    height: auto;
}
.benefits__item--big {
    width: 100%;
    padding-left: 88px;
    position: relative;
    margin-bottom: 48px;
}
.benefits__item--big .benefits__item-content {
    font-weight: 500;
}
.benefits__item--big::after {
    content: '';
    display: block;
    position: absolute;
    left:24px;
    top:24px;
    width: 40px;
    height: 40px;
    background: url('../img/benefits_icon.svg') center center / cover no-repeat;
}
.benefits__item--big:first-of-type {
    margin-bottom: 32px;
    background-color: #fff;;
    border: 1px solid rgba(46, 46, 46, 0.10);
}
.benefits__item--big:last-of-type {
    margin-top: 48px;
    background-color: #fff;
    border: 1px solid rgba(46, 46, 46, 0.10);
    margin-bottom: 0;
}
.benefits__item--big:last-of-type::after {
    display: none;
}
.benefits__item--big p {
    margin-bottom: 16px;
}
.benefits__item--big p:last-of-type {
    margin-bottom: 10px;
}
.benefits__item-content {
}
.benefits__item--middle {
    width: calc(50% - 8px);
}
.benefits__item--middle .benefits__item-content {
    display: flex;
    gap:40px;
}
.benefits__item--middle:has(.benefits__item-image) {
    padding: 0;
}
.benefits__item-image {
    height: 100%;
    border-radius: 24px;
    height: 370px;
    overflow: hidden;
    border:none;
}
.benefits__item-image img {
    height: 100%;
    object-fit: cover;
}
.benefits__item-count {
    color: rgba(46, 46, 46, 0.10);
    font-family: 'Involve';
    font-size: 100px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
}
.benefits__item-info {
}
.benefits__item-title {
    color: #2E2E2E;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}
.benefits__item-list {
    list-style: none;
}
.benefits__item-item {
    margin-bottom: 19px;
    padding-left: 36px;
    position: relative;
    color: rgba(78, 78, 78, 0.90);
    font-size: clamp(18px, calc(18px + 2 * ((100vw - 480px) / 920)), 20px);
    line-height: 1.2;
}
.benefits__item-item:last-of-type {
    margin-bottom: 0;
}
.benefits__item-item::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top:1px;
    background: url('../img/check_icon.svg') center center / cover no-repeat;
}
.benefits__item--small {
    width: calc(33.33% - 10.67px);
}
.benefits__item--orange {
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
    border:none;
}
.benefits__item--orange .benefits__item-count {
    color: rgba(255, 255, 255, 0.30);
}
.benefits__item--orange .benefits__item-title {
    color: #fff;
}
.benefits__item--orange .benefits__item-item {
    color: rgba(255, 255, 255, 0.80);
}
.benefits__item--orange .benefits__item-item::after {
    background: url('../img/check_icon-white.svg') center center / cover no-repeat;
}
.benefits__item--mobile {
    display: none;
}
.benefits__slider .swiper-pagination {
    display: none;
}

/* BENEFITS END */

/* TRUST COMPANY START */

.trust {
    padding-bottom: 24px;
}
.trust__wrapper {
    
}
.trust__info {
    display: flex;
    gap:40px;
}
.trust__info-image {
    width: calc(50% - 15px);
}
.trust__info-image img {
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    overflow: hidden;
}
.trust__info-text {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    gap:12px;
    justify-content: center;
}
.trust__info-text p {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    max-width: 600px;
}
.trust__info-title {
    
}
.trust__info-actions {
    display: flex;
    gap: 8px;
}
.trust__info-text .btn {
    margin-left: 0;
}
.trust--kyc .trust__info-text p{
    font-size: 16px;
}
.company {
    padding-top: 40px;
}
.company--kyc {
    padding-top: 80px;
}
.company__wrapper {
}
.company__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.swiper-initialized .company__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  justify-content: flex-start;
}
.swiper-slide.company__item {
  width: auto;
  flex-shrink: 0;
}
.company__item {
    height: 126px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    background: rgba(46, 46, 46, 0.03);
    padding: 20px 35px;
}
.swiper-slide.company__item {
    
}
.company__list > .company__item {
    width: calc(25% - 12px);
}
/* .company__list > .company__item:nth-child(n+5) {
    width: calc(33.33% - 11px);
} */
.company__item img {
    max-width: 200px;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}
.company__text {
    color: rgba(46, 46, 46, 0.50);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(46, 46, 46, 0.10);
    width: 100%;
}
.company__swiper--before--text {
    padding-bottom: 24px;
}
.company__swiper+.company__text {
    padding-top: 24px;
}
/* .company__item:hover img {
    filter: none;
} */

/* TRUST COMPANY END */

/* CASES START */

.cases {
    background-color: #FAFAFA;
    background: #F5F5F7;
}
.cases--kyc {
    background-color: #fff;
}
.cases__wrapper {
    position: relative;
}
.cases__content {
}
.cases__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:16px;
}

.cases__item {
  width: calc(33.33% - 10.67px);
  border-radius: 24px;
  background-color: transparent;
  height: 350px;
  position: relative;
  perspective: 1200px;
  overflow: visible;
  padding: 0;
  display: block;
}

.cases--kyc .cases__item {
    height: 320px;
}
.cases--kyc .cases__item .cases__item-inner{
    background: rgba(46, 46, 46, 0.03);
}
.cases--kyc .cases__item.cases__item--gray .cases__item-inner {
    background: #2E2E2E!important;
}
.cases--kyc .cases__item-content {
    font-size: 18px;
}
.cases__slider .swiper-pagination {
    display: none;
}
.cases__item-inner {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  position: relative;
  border-radius: 24px;
  cursor: pointer;
}

.cases__item.active .cases__item-inner {
  transform: rotateY(180deg);
}

.cases__item-front,
.cases__item-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backface-visibility: hidden;
  top: 0;
  left: 0;
}

.cases__item-front {
  background: inherit;
  z-index: 2;
}


.cases__item-back {
  transform: rotateY(180deg);
  background-color: #ffffff;
  color: #2e2e2e;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;  
}
.cases__item-back .cases__item-title {
    width: 100%;
    text-align: left;
}
.cases__item-back .cases__item-content {
    margin-top: auto;
    margin-bottom: auto;
}
.cases__item-content {
    color:#2E2E2E;
}

.cases--kyc .cases__item-content {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
}
.cases__item-inner {
    background: #fff;
    border-radius: 24px;
}
/* .cases__item-inner:hover,
.cases__item-inner:focus,
.cases__item-inner:active {
    background: rgba(46, 46, 46, 0.10);
} */
.cases__item--orange .cases__item-back {
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
    color: #fff;
}
.cases__item--orange .cases__item-content {
    color:#FFF;
}
.cases__item--gray .cases__item-back {
    background-color: #444444;
}
.cases__item--gray .cases__item-content {
    color:#fff;
}
.cases__item--orange .cases__item-inner{
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%)!important;
}
/* .cases__item--orange .cases__item-inner:hover,
.cases__item--orange .cases__item-inner:focus
.cases__item--orange .cases__item-inner:active {
    background: linear-gradient(180deg, rgba(254, 115, 56, 0.80) 0%, rgba(234, 55, 0, 0.80) 100%);
} */
.cases__item--gray .cases__item-inner {
    background-color: #2E2E2E!important;
}
/* .cases__item--gray .cases__item-inner:hover,
.cases__item--gray .cases__item-inner:focus
.cases__item--gray .cases__item-inner:active {
    background: rgba(46, 46, 46, 0.80);
} */
.cases--kyc .cases__item.cases__item--orange .cases__item-inner{
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%), rgba(46, 46, 46, 0.03)!important;
}

.cases__item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap:0;
}
.cases__item-title {
    color: #2E2E2E;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    padding-right: 8px;
}
.cases--kyc .cases__item-title {
    font-size: 28px;
}
.cases__item-icon {
    width: 40px;
    min-width: 40px;
    height: 40px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.cases__item-icon--bank {
    background-image: url('../img/bank_icon.svg');
}
.cases__item-icon--basket {
    background-image: url('../img/basket_icon.svg');
}
.cases__item-icon--home {
    background-image: url('../img/home_icon.svg');
}
.cases__item-icon--gasoline {
    background-image: url('../img/gas_icon.svg');
}
.cases__item-icon--train {
    background-image: url('../img/train_icon.svg');
}
.cases__item-icon--media {
    background-image: url('../img/media_icon.svg');
}
.cases__item-icon--check {
    background-image: url('../img/check_icon.svg');
}
.cases__item--orange .cases__item-icon--check,
.cases__item--gray .cases__item-icon--check {
    background-image: url('../img/check_icon-white.svg');
}
.cases__item-icon--empty {
    background-image: none;
}
.cases__item-info {
    color: rgba(78, 78, 78, 0.80);
    font-size: 16px;
    font-weight: 500;
    border-radius: 24px;
    padding: 12px 16px;
    width: fit-content;
    border-radius: 16px;
    border: 1px solid rgba(46, 46, 46, 0.10);
}

.cases__item-text {
}
.cases__item-link {
}
.cases__info {
    margin-top: 70px;
    background-color: #fff;
    padding: 24px;
    text-align: center;
    color: #2E2E2E;
    font-size: 18px;
    border-radius: 24px;
    font-weight: 500;
}
.cases__info strong {
    font-weight: 500;
}
.cases__item--orange .cases__item-title,
.cases__item--gray .cases__item-title {
    color:#fff;
}
.cases__item--orange .cases__item-info,
.cases__item--gray .cases__item-info {
    color: rgba(255, 255, 255, 0.80);
}
.cases__item--orange .cases__item-info {
    border: 1px solid rgba(255, 255, 255, 0.50);
}
.cases__item--gray .cases__item-info {
    border: 1px solid rgba(255, 255, 255, 0.10);
}


/* CASES END */

/* REVIEWS START */

.reviews {
    background: #fff;
}
.reviews__wrapper {
    position: relative;
    overflow:hidden;
    padding-bottom: 50px;
}
.reviews__content {
}
.reviews__slider {
}
.reviews__slider-wrapper {
}
.reviews__item {
    border-radius: 24px;
    background: rgba(46, 46, 46, 0.03);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap:24px;
    height: auto;
}
.reviews__item-author {
    display: flex;
    gap:22px;
}
.reviews__item-image {
    width: 88px;
    height: 88px;
}
.reviews__item-image img {
    border-radius: 50%;
    overflow: hidden;
}
.reviews__item-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:8px;
}
.reviews__item-name {
    color: #4E4E4E;
    font-size: 24px;
    font-weight: 500;
}
.reviews__item-spec {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
    line-height: normal;
    max-width: 200px;

}
.reviews__item-text {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    line-height: 150%;
}
.reviews__slider .swiper-button-next,
.reviews__slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    padding: 8px;
    border: 1px solid rgba(46, 46, 46, 0.10);
    background: #FFF;
    bottom: unset;
    top: 42px;
    right: 0;
    left:unset;
}
.reviews__slider .swiper-button-next:hover,
.reviews__slider .swiper-button-prev:hover,
.reviews__slider .swiper-button-next:focus,
.reviews__slider .swiper-button-prev:focus,
.reviews__slider .swiper-button-next:active,
.reviews__slider .swiper-button-prev:active {
    opacity: 0.7;
}
.reviews__slider .swiper-button-prev {
    right: 48px;
}
.reviews__slider .swiper-button-next::after,
.reviews__slider .swiper-button-prev::after {
    display: none;
}
.reviews__slider .swiper-button-next.swiper-button-disabled,
.reviews__slider .swiper-button-prev.swiper-button-disabled {
    opacity: 0.5;
}
.reviews__slider .swiper-pagination {
    display: none;
    bottom: 0;
}
/* REVIEWS END */

/* BLOG SECTION */

.blog {
}
.blog__wrapper {
}
.blog__list {
    display: flex;
    gap:16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.blog__item {
    border-radius: 24px;
    background: rgba(46, 46, 46, 0.03);
    padding: 24px;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:24px;
}
.blog__item:hover {
    background: #E2E2E2;
}
.blog__item-text {
}
.blog__item-title {
    color: #2E2E2E;
    font-size: 24px;
    font-weight: 500;
}
.blog__item-subtitle {
    color: rgba(46, 46, 46, 0.50);
    line-height: 130%;
    font-size: 18px;
}
.blog__item-link {
    display: block;
    max-width: unset;
    min-width: unset;
    width: 180px;
    height: 48px;
    margin: 0;
    background: transparent;    
    border-radius: 30px;    
    color:#2E2E2E;
    font-weight: 500;
    font-size: 16px;
    /* border: 1px solid rgba(78, 78, 78, 0.60); */
    border: 1px solid rgba(46, 46, 46, 0.10);
    padding: 12px 40px 12px 16px;
    position: relative;
    white-space: nowrap;
    line-height: 1.4;
}
.blog__item-link::after {
    content: '';
    display: block;
    width: 24px;
    min-width: 24px;
    height: 24px;
    position: absolute;
    top:11px;
    right: 16px;
    background: url('../img/arrow_line.svg') center center / contain no-repeat;
}
.blog__item--orange .blog__item-link {
    color:#fff;
    border: 1px solid rgba(255, 255, 255, 0.60);
}
.blog__item--orange .blog__item-link::after {
    background: url('../img/arrow15-white.svg') center center / contain no-repeat;
}
.blog__item-image {
    border-radius: 24px;
    overflow: hidden;
}
.blog__item-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog__item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog__item--orange {
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
    border:none;
}
.blog__item--orange .blog__item-title {
    color: #fff;
}
.blog__item--orange .blog__item-subtitle {
    color: rgba(255, 255, 255, 0.80)
}

.blog__item--large {
    width: calc(58.67% - 8px);
    gap:24px;
    flex-direction: row;
    flex-wrap: nowrap;
}
.blog__item--large .blog__item-image {
    width: calc(50% - 12px);
}
.blog__item--large .blog__item-content {
    width: calc(50% - 12px);
}
.blog__item--large .blog__item-link {
    align-self: flex-end;
}
.blog__item--large.blog__item--orange {
    flex-direction: column;
}
.blog__item--large .blog__item-title {
    margin-bottom: 8px;
}

.blog__item--first {
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    gap:48px;
}

.blog__item--small {
    width: calc(41.33% - 8px);
    flex-direction: column;
    justify-content: space-between;
}
.blog__item--small .blog__item-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap:30px;
}
.blog__item--small .blog__item-image {
    max-width: 240px;
    height: 166px;
}
.blog__item--small .blog__item-image img{
    height: 100%;
    object-fit: cover;
}
.blog__item--small .blog__item-link {
    align-self: flex-end;
}
.blog__action {
    display: flex;
    justify-content: center;
}
.blog__action .btn {
    max-width: 280px;
}

/* BLOG SECTION */

/* FEEDBACK START */

.feedback {
    /* background-color: #191919; */    
    background: linear-gradient(0deg, rgba(25, 25, 25, 0.95) 0%, rgba(25, 25, 25, 0.95) 100%), url('../img/feedback_bg.jpg') center center / cover no-repeat;
}
.feedback--kyc {
    background: #191919;
}
.feedback--kyc .section__title-block {
    margin-bottom: 0;
}
.feedback__content .feedback__description--gray{
    margin-bottom: 40px;
}
.feedback__wrapper {
    display: flex;
    justify-content: space-between;
    gap:30px;
}
.feedback__content {
    width: calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.feedback__title {
    color: #FFF;
    margin-bottom: 16px;
}
.feedback__description {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 24px;
}
.feedback__description--gray {
    color: rgba(255, 255, 255, 0.50);
}
.feedback__form .text-message{
    color:#fff;
}
.feedback--white .text-message {
    color:#2E2E2E;
}
.feedback__form-block {
    width: calc(50% - 15px);
}
.feedback__form-wrapper {
    max-width: 500px;
}
.feedback--kyc .feedback__form-wrapper {
    max-width: 580px;
}
.feedback__form {
    display: flex;
    flex-direction: column;
    gap:16px;

}
.feedback__form .input-form {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
}
.feedback__form .input-form:first-of-type {
    margin-top: 0;
}
.feedback__form .input-form::placeholder {
    color: rgba(255, 255, 255, 0.50);
}
.input-form:active,
.input-form:hover,
.input-form:focus {
    border:none;
    outline: none;
}
.feedback__form .input-form:active,
.feedback__form .input-form:hover,
.feedback__form .input-form:focus {
    background: rgba(255, 255, 255, 0.50);
    color: #FFF;
    border:none;
    outline: none;
}
.input-form.novalid {
    background: rgba(255, 71, 74, 0.30)!important;
}
.feedback__form-thanks {
    display: flex;
    flex-direction: column;
    gap:4px;
    align-items: center;
    /* padding: 80px 0; */
}
.feedback__form-thanks-image {
    margin-bottom: 12px;
    text-align: center;
}
.feedback__form-thanks-title {
    color: #FFF;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
}
.feedback__form-thanks-message {
    color: rgba(255, 255, 255, 0.50);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
}

.modal-window .feedback__form-thanks-title,
.modal-window .feedback__form-thanks-message {
    color: #2f2f2f;
}
.mobile-form__content .feedback__form-thanks-title,
.mobile-form__content .feedback__form-thanks-message {
    color: #2f2f2f;
}

.btn {
}
.feedback__form .btn--submit {
    margin-top: 20px;
    margin-bottom: 17px;
    margin-bottom: 0;
    max-width: unset;
    width: 100%;
}
.feedback__form .btn--submit:disabled {
    opacity: 0.5;
}

.checkbox-wrapper {
    width: 100%;
    display: flex;
    gap:7px;
    justify-content: center;
}
.feedback__form-agree .checkbox-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
}
label.feedback__form-label,
.feedback__form-label a {
    color: rgba(255, 255, 255, 0.50);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
}
.mobile-form label.feedback__form-label,
.mobile-form .feedback__form-label a {
    color:#2E2E2E;
}
.feedback__form-label a {
    text-decoration: underline;
}
.feedback__form .checkbox-wrapper {
    justify-content: flex-start;
}
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 14px;
  min-width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 2px;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  margin: 0;
}

.feedback__form-label input[type="checkbox"]:checked::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 3px;
  height: 7px;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}

.feedback__qr {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.10);
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:24px;
}
.feedback__qr-title {
}
.feedback__qr-subtitle {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
}
.feedback__description {
}
.feedback__description--gray {
}
.feedback__qr-list {
    width: 100%;
    display: flex;
    flex-flow: nowrap;
    gap:16px;
}
.feedback__qr-item {
    width: calc(50% - 8px);
}
.feedback__qr-image {
    border-radius: 24px;
    overflow: hidden;
}

/* FEEDBACK END */

/* FAQ START */

.faq {
}
.faq__wrapper {
}
.faq__title {
    text-align: center;
}
.faq__content {
}
.faq__content-subtitle {
    color: rgba(46, 46, 46, 0.50);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    margin-top: 24px;
    margin-bottom: 16px;
}
.faq__list {
    display: flex;
    flex-direction: column;
    gap:16px;
}
.faq__item {
    padding: 28.5px 24px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    border-radius: 24px;
    background: rgba(46, 46, 46, 0.03);
}
.faq__item:hover {
    background: rgba(46, 46, 46, 0.10);
}
.faq__item-question {
    color: #2E2E2E;
    font-size: 18px;
    font-weight: 700;
    padding-right: 72px;
    position: relative;
}
.faq__item-question::after {
    content: '';
    width: 32px;
    height: 32px;
    position: absolute;
    top:0;
    right: 0;
    background: url('../img/faq_arrow.svg') center center / contain no-repeat;
}
.faq__item.faq__item-active .faq__item-question::after {
    transform: rotate(180deg);
}
.faq__item-answer {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: none;
    margin-top: 16px;
    padding-right: 72px;
}
.faq__item-answer p {
    margin-bottom: 12px;
}
.faq__item-answer p:last-of-type {
    margin-bottom: 0;
}
.faq__item.faq__item-active .faq__item-answer{
    display: block;
}
.faq__content-action {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
}
.faq__content-link {
    color: #FE7338;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: unset;
    width: 220px;
}
.faq__content-link::after {
    content: '';
    display: block;
    min-width: 20px;
    width: 20px;
    height: 20px;
    background: url('../img/arrow-down-orange.svg') center center / cover no-repeat;
}
.faq__content-link.show::after {
    transform: rotate(180deg);
}
.faq__list > .faq__item:nth-child(n+7) {
    display: none;
}
.faq__list.show .faq__item {
    display: flex !important;
}

/* FAQ END */

/* CONTACTS START */

.contacts {
}
.section {
}
.contacts .section__title-block {
    margin-bottom: 40px;
}
.contacts--mobile {
    display: none;
}
.footer__contacts {
    margin-bottom: 10px;
}
.footer__contacts-item {
    padding-left: 38px;
    position: relative;
    color: rgba(78, 78, 78, 0.80);
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    margin-bottom: 24px;
    padding-left: 36px;
}
.footer__contacts-item a {
    color: rgba(78, 78, 78, 0.80);
}
.footer__contacts-item::after {
    content:'';
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    left:0;
    top:0;
    background-position: center center;
    background-repeat: no-repeat;
    /* background-size: contain; */
}
.footer__contacts-address::after {
    background-image: url('../img/marker-gray.svg');
}
.footer__contacts-email::after {
    background-image: url('../img/email_icon-gray.svg');
}
.footer__contacts-phone::after {
    background-image: url('../img/phone_icon-gray.svg');
}
.footer__contacts-email-link {
}
.footer__contacts-phone-link {
}
.contacts__map {
    border-radius: 10px;
    overflow: hidden;
}

/* CONTACTS END */

/* FOOTER START */

.footer {
    background-color: #1A1A1A;
    border-radius: 50px 50px 0 0;
    padding-top: 70px;
    padding-bottom: 50px;
}
.footer__wrapper {
    
}
.feedback+.footer {
    border-radius: 0;
}
.footer__top {
    display: flex;
    justify-content: space-between;
    gap:30px;
}
.footer__top-col {
    width: calc(33.33% - 20px);
    max-width: 440px;
}
.footer__logo {
    max-width: 200px;
    margin-bottom: 15px;
}
.footer__logo--sk {
    max-width: 120px;
}
.footer .footer__contacts {
    margin-top: 15px;
}
.footer__contacts-address {
}
.footer .footer__contacts-item,
.footer .footer__contacts-item a {
    color: rgba(255, 255, 255, 0.50);
}
.footer .footer__contacts-item a:hover,
.footer .footer__contacts-item a:active,
.footer .footer__contacts-item a:focus {
    color:#fff;
}
.footer .footer__contacts-address::after {
    background-image: url('../img/marker.svg');
}
.footer .footer__contacts-email::after {
    background-image: url('../img/email_icon.svg');
}
.footer .footer__contacts-phone::after {
    background-image: url('../img/phone_icon.svg');
}
.feedback+.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.footer__contacts-email {
}
.footer__contacts-email-link {
}
.footer__contacts-phone {
}
.footer__contacts-phone-link {
}
.footer__top-nav-block {
    display: flex;
    gap:60px;
    justify-content: space-evenly;
}
.footer__top-nav {
    width: calc(50% - 15px);
}
.footer__top-nav-title {
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 30px;
    white-space: nowrap;
}
.footer__top-menu {

}
.footer__top-menu ul {

}
.footer__top-menu ul li {
    list-style-type: none;
    margin-bottom: 12px;
}
.footer__top-menu ul li:last-of-type {
    margin-bottom: 0;
}
.footer__top-menu ul li a{
    color: rgba(255, 255, 255, 0.50);
    font-size: 16px;
    line-height: 130%;
}
.footer__top-menu ul li a:hover,
.footer__top-menu ul li a:active
.footer__top-menu ul li a:focus {
    color:#fff;
}
.footer__map {
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
    height: 100%;
}
.footer__map a {
    display: block;
    height: 100%;
}
.footer__map img {
    height: 100%;
    object-fit: cover;
}
.footer__bottom {
    margin-top: 70px;
    padding-top: 30px;
    padding-bottom: 50px;
    border-top: solid 1px rgba(255, 255, 255, 0.20);
    display: flex;
    justify-content: space-between;
    gap:30px;
}
.footer__bottom p {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    line-height: normal;
}
.footer__bottom a {
    color: rgba(255, 255, 255, 0.50);
    font-size: 14px;
    line-height: normal;
    text-decoration-line: underline;
}
.footer__bottom-col {
    display: flex;
    flex-direction: column;
    gap:25px;
}
.footer__bottom-col:first-of-type {
    width: calc(45% - 15px);
    max-width: 520px;
}
.footer__bottom-col:last-of-type {
    width: calc(55% - 15px);
    text-align: right;
}
.footer__line {
    background: rgba(255, 255, 255, 0.20);
    height: 1px;
    border:none;
    margin-top: 15px;
    margin-bottom: 15px;
}
.footer__top-nav-block .footer__top-nav:first-of-type {
    width: calc(45% - 15px);
}
.footer__top-nav-block .footer__top-nav:last-of-type {
    width: calc(55% - 15px);
}
.footer__logo--fond {
    width: 70px;
    height: 40px;
    aspect-ratio: 7/4;
}

.footer__logo--fond img,
.footer__logo--sk img {
    opacity: 0.3;
}

.footer__logo--partners {
    display: flex;
    gap:24px;
    align-items: flex-start;
}

/* FOOTER END */

/* MODAL START */

.gslide-media {
    border-radius: 40px;
    background: #FFF;
    padding: 40px;
}
.modal-title {
    color: #2E2E2E;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 40px;
}
.call__form {
    display: flex;
    flex-direction: column;
    gap:16px;
}
.call__form .btn--submit {
    width: 100%;
    max-width: unset;
}
.call__form .feedback__form-label,
.call__form .feedback__form-label a {
    color: rgba(46, 46, 46, 0.50);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
}
.call__form .feedback__form-label a{
    text-decoration: underline;
}
.checkbox-wrapper input[type="checkbox"]:checked + label::after {
    content: "";
    position: absolute;
    left: 6px;
    top: calc(50% - 2px);
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translateY(-50%) rotate(45deg);
}
#glightbox-body.modalForm .gbtn{
    display: none;
}
.goverlay {
    background: rgba(0, 0, 0, 0.70)!important;
}
.glightbox-clean .gclose {
    width: 64px!important;
    height: 64px!important;
    border-radius: 50%!important;
    background: rgba(111, 111, 113, 1)!important;
    top:40px!important;
    right: 40px!important;
    backdrop-filter: blur(6px)!important;
}
.glightbox-clean .gclose svg {
    width: 24px!important;
}
.mobile-modal-header {
    display: none;
}
.checkbox-wrapper input.novalid:not(:checked) + label::before {
    background: rgba(255, 71, 74, 0.30) !important;
}




/* MODAL END */


/* STEPS START */

.steps {
    background: #F5F5F7;
}
.steps__wrtapper {
}
.steps__content {
}
.steps__list {
    display: flex;
    gap:16px;
    align-items: stretch;
    position: relative;
}
.steps__list::after {
    content: '';
    position: absolute;
    top: 32px;
    right: 0;
    transform: translateY(-50%);
    border-left: 14px solid rgba(241, 75, 19, 0.20);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
.steps__list::before {
    content: '';
    position: absolute;
    top: 31px;
    left: -100%;
    width: calc(100% + 20px);
    height: 2px;
    background-image: repeating-linear-gradient(
        to right,
        rgba(241, 75, 19, 0.20),
        rgba(241, 75, 19, 0.20) 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: 1;
}
.steps__item {
    display: flex;
    flex-direction: column;
    width: calc(25% - 12px);
    gap:30px;
    position: relative;
    z-index: 1;
}
.steps__item::after {
    content: '';
    position: absolute;
    left: 64px;
    top: 32px;
    transform: translateY(-50%);
    width: calc(100% + 8px);
    height: 2px;
    background-image: repeating-linear-gradient(
        to right,
        rgba(241, 75, 19, 0.20),
        rgba(241, 75, 19, 0.20) 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: -1;
}
.steps__item-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    padding: 20px 16px 20px 16px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    background: #f4d3ca;
    color: #F14B13;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    margin-left: 24px;
    z-index: 1;
    position: relative;
}
/* .steps__item-num::after {
    content: '';
    position: absolute;
    left: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
    width: calc(100vw / 4);
    height: 2px;
    background-image: repeating-linear-gradient(
        to right,
        rgba(241, 75, 19, 0.20),
        rgba(241, 75, 19, 0.20) 8px,
        transparent 8px,
        transparent 16px
    );
    z-index: -1;
} */

.steps__item:last-of-type::after {
    width: calc(100% - 78px);
}

.steps__item-card {
    display: flex;
    flex-direction: column;
    gap:16px;
    flex: 1;
    border-radius: 24px;
    background: #FFF;
    padding: 24px;
}
.steps__item-image {
    height: 104px;
    border-radius: 16px;
    overflow: hidden;
}
.steps__item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
    align-self: stretch;
}
.steps__item-title {
    color: #2E2E2E;
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
}
.steps__item-description {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
}

/* STEPS END */

/* AREAS START */

.areas {
    background: #F5F5F7;
}
.areas__list {
    display: flex;
    flex-wrap: wrap;
    gap:16px;
}
.areas__item {
    height: 300px;
    width: calc(33.33% - 11px );
    border-radius: 24px;
    padding: 24px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.areas__item--orange {
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
}
.areas__item-icon {
    width: 40px;
    height: 40px;
}
.areas__item-content {
    
}
.areas__item-title {
    color: #2E2E2E;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
}
.areas__item--orange .areas__item-title{
    color:#fff;
}
.areas__item-text {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
}
.areas__item--orange .areas__item-text {
    color:#fff;
}
.areas__item-text ul {
    padding-left: 24px;
}
.areas__item--image {
    background-image: url('../img/areas_image.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.feedback__qr-image--small {
    width: 56px;
    height: 56px;
    display: none;
}
.feedback__qr-image-text {
    display: none;
}

/* AREAS STOP */


/* VIDEO START */

.video {
}
.video__wrapper {
}
.video__content {
    position: relative;
    display: inline-block;
    max-width: 100%;
    cursor: pointer;
}
.video__preview {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 40px;
}
.video__file {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
    overflow: hidden;
}
.video__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 112px;
    height: 112px;
    padding: 32px 28px 32px 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
    border-radius: 99px;
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
}
.video__play:hover {
  background-color: rgba(0,0,0,0.8);
}
.video__play svg {
    width: 48px!important;
    height: 48px!important;
}


/* VIDEO STOP */


/* TARIFS START */

.tarifs {
    background: #F5F5F7;
}
.tarifs__content {
}
.tarifs__slider {
}
.tarifs__list {
    display: flex;
    gap:16px;
    align-items: stretch;
}
.tarifs__item {
    width: calc(33.33% - 10.67px);
    background-color: #fff;
    padding: 24px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap:24px;
    border: 2px solid #FFF;
}
.tarifs__item.swiper-slide {
    height: auto!important;
}
.tarifs__item--popular {
    border: 2px solid #F14B13;
    position: relative;
}
.tarifs__item--popular::after {
    content: 'Популярный';
    display: flex;
    position: absolute;
    top:24px;
    right: 24px;
    border-radius: 99px;
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
    padding: 6px 10px;
    justify-content: center;
    align-items: center;
    color:#fff;
    color: #FFF;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}
.tarifs__item--popular .tarifs__item-title {
    padding-right: 100px;
}

.tarifs__item-title {
    color: #2E2E2E;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
}
.tarifs__item-text {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    flex-grow: 1;
}
.tarifs__item-price {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
}

/* TARIFS END */


/* PAGE START */

.content-page {
    margin-top: 158px;
    margin-bottom: 80px;
}

.nvpage {
    margin-top: 120px;
}

.page__content p,
.page__content ul {
    margin-bottom: 12px;
    line-height: normal;
}
.page__content ul {
    padding-left: 30px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.page__content p {
    text-align: justify;
}
.page__content .has-text-align-center {
    text-align: center;
}
.page__title {
    text-align: left;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 24px;
}

.page__content .wp-block-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.page__content .wp-block-table table {
  min-width: 800px;
}
.page__content .wp-block-table.small-table table {
  min-width: unset
}
.page__content a {
    color:#F14B13;
    text-decoration: underline;
}
.wp-block-table {
    margin-top: 24px;
    margin-bottom: 24px;
}
.wp-block-table table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 20px;
    overflow: hidden;
    min-width: 800px;
}
.wp-block-table.small-table table {
    min-width: unset;
}

.wp-block-table table td,
.wp-block-table table th {
    border: 1px solid rgba(0, 0, 0, 0.10);
    padding: 16px;
    vertical-align: top;
}
.wp-block-table thead{
    background: rgba(46, 46, 46, 0.05);
}
.page__content .ol-1lv {
    margin-top: 48px;
    font-size: 24px;
    font-weight: 500;
    text-align: left;
}
.page__content .ol-2lv {
    margin-top: 24px;
}
.page__content .ol-3lv,
.page__content .ol-2lv {
    margin-bottom: 0;
}
.page__content .ol-3lv {
    text-indent: 8px;
}
.page__content .ol-1lv--first {
    margin-top: 24px;
}
.page__content .small-table {

}

/* PAGE END */

/* KYT START */
.hero__kyt {
    background:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
    linear-gradient(270deg, rgba(255, 255, 255, 0) 21.76%, #FFF 74.27%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 59.15%, #FFF 84.28%),
    url('../img/hero_kyt.jpg') -60% -50px / cover no-repeat, #FFF;
    min-height: 700px;
    max-height: 1200px;
    margin-bottom: -1px;
}
.hero__kyt .hero__col--image {
    display: none;
}

.hero__kyt .solutions__item{
    
}
.solutions--page.solutions-kyt .solutions__item {
    height: 280px;
}
.solutions-kyt {

}
.solutions--page .solutions__item.solutions__item--image {
    background-image: url('../img/solution_image_kyt.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.solutions--page .solutions__item-bottom {
    height: auto;
}
.solutions-kyt .section__title-block .section__title{
    max-width: 900px;
}
.industries--small {
    background: #F5F5F7;
}
.industries--small .industries__item {
    height: 260px;
    border-radius: 24px;
}
.industries--small .industries__item-inner {
    border-radius: 24px;
}

.cases--kyt .cases__item:first-of-type .cases__item-icon--kyt {
    background-image: url('../img/case_icon_kyt1.svg');
}
.cases--kyt .cases__item:nth-of-type(2) .cases__item-icon--kyt {
    background-image: url('../img/case_icon_kyt2.svg');
}
.cases--kyt .cases__item:nth-of-type(3) .cases__item-icon--kyt {
    background-image: url('../img/case_icon_kyt3.svg');
}
.cases--kyt .cases__item:nth-of-type(4) .cases__item-icon--kyt {
    background-image: url('../img/case_icon_kyt4.svg');
}
.cases--kyt .cases__item:nth-of-type(5) .cases__item-icon--kyt {
    background-image: url('../img/case_icon_kyt5.svg');
}
.cases--kyt .cases__item:nth-of-type(6) .cases__item-icon--kyt {
    background-image: url('../img/case_icon_kyt6.svg');
}
.cases--kyt .cases__item {
    height: 300px;
}
.cases--kyt .cases__item-title {
    font-size: 24px;
}
.cases--kyt .cases__item-content {
    color: rgba(46, 46, 46, 0.50);
}
.cases--kyt .cases__item--orange .cases__item-content,
.cases--kyt .cases__item--gray .cases__item-content {
    color:#fff;
}
.cases--kyt .cases__actions {
    margin-top: 48px;
}

.architect {
}
.architect .architect__content {
    max-width: unset;
}
.architect .section__description {
    margin-top: 8px;
}
.architect__content .section__subtitle {
    margin-top: 8px;
}
.section__row {
    display: flex;
    gap:16px;
}
.section__col {
    width: calc(50% - 8px);
}
.architect__col {
    display: flex;
    flex-direction: column;
    gap:16px;
}
.architect__item {
    border-radius: 32px;
    background: rgba(46, 46, 46, 0.03);
    padding: 24px;
}
.architect__item--long {
    height: 100%;
}
.architect__item-title {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 24px;
    padding-right: 64px;
    position: relative;
}
.architect__item-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top:0;
    right: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.architect__item--long .architect__item-title::after {
    background-image: url('../img/architect_icon1.svg');
}
.architect__item--short:first-of-type .architect__item-title::after {
    background-image: url('../img/architect_icon2.svg');
}
.architect__item--short:last-of-type .architect__item-title::after {
    background-image: url('../img/architect_icon3.svg');
}
.architect__item-content {
}
.architect__item-content-item {
}
.architect__item-subtitle {
    color: #F14B13;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 8px;
}
.architect__item-text {
    display: block;
    color: rgba(46, 46, 46, 0.50);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
}
.architect__item-content-item:last-of-type .architect__item-text {
    margin-bottom: 0;
}
.architect__item--short {
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;   
}
.architect__item--short .architect__item-text ul {
    padding-left: 24px;
}
.architect__item--short .architect__item-text ul li{
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 8px;
}


.examples {
    background: #F5F5F7;
}
.examples__wrapper {

}
.examples__contant {

}
.section__col_3 {
    width: calc(33.33% - 10.67px);
}
.examples__item {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1 0 0;
    border-radius: 24px;
    background: #FFF;
    height: 100%;
}
.examples__item-title {
    font-size: 24px;
    font-weight: 600;
    width: 100%;
    position: relative;
    padding-right: 40px;
}
.examples__item .examples__item-title::after {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    position: absolute;
    top:0;
    right: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.section__col_3:nth-of-type(1) .examples__item .examples__item-title::after {
    background-image: url('../img/examples_icon1.svg');
}
.section__col_3:nth-of-type(2) .examples__item .examples__item-title::after {
    background-image: url('../img/examples_icon2.svg');
}
.section__col_3:nth-of-type(3) .examples__item .examples__item-title::after {
    background-image: url('../img/examples_icon3.svg');
}
.examples__item-content {

}
.examples__item-step {
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: solid 1px rgba(46, 46, 46, 0.10);;
    display: flex;
    flex-direction: column;
    gap:8px;
}
.examples__item-step:first-of-type {
    padding-top: 0;
}
.examples__item-step:last-of-type {
    padding-bottom: 0;
}
.examples__item-step:last-of-type {
    border-bottom: none;
}

.examples__item-step-title {
    font-size: 18px;
    font-weight: 600;
    padding-left: 24px;
    position: relative;
}
.examples__item-step .examples__item-step-title::after {
    content:'';
    display: block;
    width: 20px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top:0;
    left:0;
}
.examples__item-step:nth-of-type(1) .examples__item-step-title::after {
    background-image: url('../img/examples_item_icon1.svg');
}
.examples__item-step:nth-of-type(2) .examples__item-step-title::after {
    background-image: url('../img/examples_item_icon2.svg');
}
.examples__item-step:nth-of-type(3) .examples__item-step-title::after {
    background-image: url('../img/examples_item_icon3.svg');
}
.examples__item-step-description {

}
.examples__item-step-description ul li {
    list-style: none;
}
.examples__item-step-description {
    color: rgba(46, 46, 46, 0.50);
}
.examples__item-step-description ul li span{
    color:#000;
}
.cases--kyt .cases__item-inner {
    cursor:default;
}
.industries--small .industries__item-title {
    font-size: 24px;
}
.industries--small .industries__item {
    /* background-color: #fff; */
}
.industries__item-front {
    border-radius: 24px;
    background: rgba(46, 46, 46, 0.03);
}
.industries--small .industries__item-back {
    border-radius: 24px;
}
.industries__item--gray {

}
.industries--small .industries__item-inner {
    border:none;
}

.faq--all .faq__list > .faq__item:nth-child(n+7) {
    display: flex;
}

.reasons {
}
.reasons__wrapper {
}
.reasons__content {
}
.reasons__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap:16px;
}
.reasons__item {
    width: calc(33.33% - 10.67px);
    height: 248px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 71, 74, 0.15);
}
.reasons__item--pink {
    background: rgba(255, 71, 74, 0.70);
}
.reasons__item-icon {
    width: 32px;
    height: 32px;
    background-image: url('../img/pink-close.svg');
    background-position: center center;
    background-repeat: no-repeat;
}
.reasons__item--pink .reasons__item-icon {
    background-image: url('../img/white-close.svg');
}
.reasons__item-top {
    display: flex;
    justify-content: space-between;
    gap:8px;
}
.reasons__item-title {
    color:#2E2E2E;
    font-size: 24px;
    font-weight: 600;
}
.reasons__item--pink .reasons__item-title {
    color:#FFF;
}
.reasons__item-number {
}
.reasons__item-bottom {
}
.reasons__item-description {
    color: rgba(46, 46, 46, 0.50);
    font-weight: 500;
    line-height: 1.3;
}
.reasons__item--pink .reasons__item-description {
    color: #FFF;
}
.reasons__item--image {
    background-image: url('../img/solution_image_kyt.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.reasons .section__title {
    max-width: 900px;
}
.reasons .swiper-pagination {
    display: none;
}

/* KYT END */

/* AML START */

.hero__aml {
    background:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
    linear-gradient(270deg, rgba(255, 255, 255, 0) 21.76%, #FFF 74.27%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 59.15%, #FFF 84.28%),
    url('../img/hero_aml.jpg') -60% -50px / cover no-repeat, #FFF;
    min-height: 700px;
    max-height: 1200px;
    margin-bottom: -1px;
}
.hero__aml .hero__col {
    width: 100%;
}
.cards--four {

}
.cards--four .cards__item {
    width: calc(25% - 8px);
    height: 250px;
}
.cards--four .cards__list {
    gap: 8px;
    flex-wrap: wrap;
}
.cards--four .cards__item-title {
    font-size: 22px;
}
.cards--four .cards__item-description {
    font-size: 16px;
}
.cards__item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}
.cards__item-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.cards__item-icon img{
    width: 100%;
}
.cards__item--dark {
    background: #2E2E2E;
}
.cards__item--dark .cards__item-title {
    color: #fff;
}
.cards__item--dark .cards__item-description {
    color: #fff;
}
.solutions-aml {
    background: #F5F5F7;
}
.solutions-aml .solutions__item-title {
    font-size: 24px;
    font-weight: 600;
}
.solutions-aml .solutions__item-number {
    font-size: 18px;
}
.solutions-aml .solutions__item{
    background-color: #fff;
    height: 260px;
    gap:unset;
}
.solutions-aml .solutions__item.solutions__item--orange{
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%), rgba(46, 46, 46, 0.03);
}
.solutions-aml .solutions__item.solutions__item--image {
    background-image: url('../img/solution_aml.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.solutions--icons .solutions__item-icon{
    background: none!important;
    background-image: none!important;
    flex-shrink: 0;
}
.solutions--icons .solutions__item.solutions__item--image {
    background-image: url('../img/solutions_aml_image.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.solutions--icons.solutions--page .solutions__item-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}
.solutions--icons .solutions__item--gray .solutions__item-bottom {
    align-items: flex-end;
}
.solutions--icons.solutions--page .solutions__item {
    /* height: 280px; */
    height: auto;
    min-height: 280px;
}
.solutions__item-icon--arrow img{
    transform: rotate(-45deg);
}


.industries--four {

}
.industries--four .industries__item-inner,
.industries--four .industries__item-front,
.industries--four .industries__item-back {
    background: rgba(46, 46, 46, 0.03);
    border: none;
}
.industries--four .industries__item {
    height: 320px;
    width: calc(25% - 12px);
}
.industries--four .industries__item-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}
.industries__item--image {
    overflow: hidden;
}
.industries__item--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.standart {
    background: #F5F5F7;
}
.standart__wrapper {

}
.standart__content {

}
.standart__list {
    display: flex;
    gap:16px;
    flex-wrap: nowrap;
}
.standart__item {
    width: calc(33.33% - 10.67px);
    height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
    background: #FFF;
    padding: 24px;
}
.standart__item-top {
    display: flex;
    justify-content: space-between;
    gap:8px;
}
.standart__item-title {
    font-size: 24px;
    font-weight: 600;
}
.standart__item-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.standart__item-content {
    display: flex;
    flex-direction: column;
    gap:8px;
}
.standart__item-content p{
    font-size: 18px;
}
.standart__item-content ul {
    font-size: 16px;
    font-weight: 500;
    color: rgba(46, 46, 46, 0.50);
    padding-left: 20px;
}
.standart__slider .swiper-pagination {
    display: none;
}

.works {
    background-color: #fff;
}
.works__wrapper {
}
.works__content {
}
.works__list {
    display: flex;
    gap:16px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.works__item {
    width: calc(25% - 12px);
    height: 300px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(46, 46, 46, 0.03);
}
.works--gray .works__item{
    background: #FFF;
}
.works__item--ogange {
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%), rgba(46, 46, 46, 0.03)!important;
}
.works__item--gray {
    background: #2E2E2E!important;
}
.works__item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap:8px;
}
.works__item-title {
    font-size: 24px;
    font-weight: 600;
}
.works__item--ogange .works__item-title,
.works__item--gray .works__item-title {
    color:#fff;
}
.works__item-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.works__item-content {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-weight: 500;
}
.works__item--ogange .works__item-content,
.works__item--gray .works__item-content {
    color:#fff;
}
.works__slider .swiper-pagination {
    display: none;
}
.works__item--image {
    padding: 0;
}
.works__item--image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.calc {
    background-color: #F5F5F7;
    overflow: visible;
}
.calc__wrapper {
}
.calc__content {
}
.calc__subtitle {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 16px;
}
.calc__info:has(.calc__range) {
    margin-bottom: 24px;
}
.calc__list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap:8px;
}
.calc__item-checkbox {
    padding: 16px;
    background-color: #fff;
    border: solid 1px #fff;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
}
.calc__item-checkbox:hover {
    border: 1px solid #F14B13;
}
.calc__text:before {
    content: '';
    width: 22px;
    height: 22px;
    display: block;
    position: absolute;
    left:16px;
    top:50%;
    transform: translateY(-50%);
    background-color: #fff;
    background-image: none;;
    border:solid 1px  rgba(0, 0, 0, 0.2);
    border-radius: 4px;
} 

.calc__checkbox:checked + .calc__text::before  {
    background-color: #F14B13;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url('data:image/svg+xml,%3Csvg%20xmlns="http://www.w3.org/2000/svg"%20width="12"%20height="12"%20viewBox="0%200%2012%2012"%20fill="none"%3E%3Cg%20clip-path="url(%23clip0_218_1462)"%3E%3Cpath%20d="M11.6819%200.142594C11.6023%200.0846705%2011.512%200.0430993%2011.4162%200.020283C11.3205-0.00253278%2011.2211-0.00614119%2011.124%200.00966662C11.0268%200.0254744%2010.9337%200.060385%2010.8501%200.11238C10.7665%200.164376%2010.6941%200.232425%2010.6369%200.312594L3.62192%2010.0976L1.27692%207.75259C1.13474%207.62011%200.946695%207.54799%200.752394%207.55142C0.558093%207.55485%200.372708%207.63356%200.235295%207.77097C0.097882%207.90839%200.0191701%208.09377%200.0157418%208.28807C0.0123136%208.48237%200.0844368%208.67042%200.216917%208.81259L3.18192%2011.7826C3.26015%2011.8572%203.3533%2011.9143%203.45523%2011.9503C3.55716%2011.9862%203.66555%2012.0002%203.77326%2011.9912C3.88097%2011.9822%203.98555%2011.9505%204.08012%2011.8982C4.17469%2011.8459%204.2571%2011.7741%204.32192%2011.6876L11.8569%201.18759C11.9146%201.10769%2011.9558%201.01713%2011.9783%200.921169C12.0007%200.825208%2012.0039%200.725752%2011.9876%200.628559C11.9713%200.531366%2011.9359%200.438368%2011.8834%200.354951C11.831%200.271533%2011.7625%200.199354%2011.6819%200.142594Z"%20fill="white"/%3E%3C/g%3E%3Cdefs%3E%3CclipPath%20id="clip0_218_1462"%3E%3Crect%20width="12"%20height="12"%20fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E');
    border:solid 1px #F14B13;
}
input.calc__checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.calc__text {
    display: block;
    padding-left: 36px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

.calc__slider {
    -webkit-appearance: none;
    width: 100%;
    height: 12px;
    border-radius: 99px;
    background: #D9D9D9; /* базовый фон */
    outline: none;
}

.calc__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
    cursor: pointer;
    margin-top: -6px;
}

.calc__slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 12px;
    border-radius: 99px;
}

.calc__slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
    cursor: pointer;
}

.calc__slider::-moz-range-track {
    width: 100%;
    height: 12px;
    border-radius: 99px;
    background: #D9D9D9;
}

.calc__range-value {
    position: absolute;
    top: -28px;
    transform: translateX(0);
    white-space: nowrap;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #F14B13;
}
.calc__range {
    margin-top: 48px;
}
.calc__range-wrapper {
    display: flex;
    width: 100%;
    position: relative;
}
.calc__range-min {
    position: absolute;
    bottom: -26px;
    left: 0;
}
.calc__range-min,
.calc__range-max {
    font-size: 20px;
}

.calc__range-input {
    width: 100%;
}
.calc__slider {
}
.calc__range-value {
    position: absolute;
    top: -28px;
    transform: translateX(0);
    white-space: nowrap;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    color: #F14B13;
}

.calc__range-max {
    position: absolute;
    right: 0;
    bottom: -26px;
}

.calc + .feedback--white {
    padding-top: 24px;
}
.feedback--white {
    background-color: #F5F5F7;
}

.feedback--white .feedback__title.section__title,
.feedback--white .feedback__qr-subtitle {
    color:#2E2E2E;
}
.feedback--white .feedback__description,
.feedback--white .feedback__description--gray {
    color: rgba(46, 46, 46, 0.50);
}

.feedback--white .input-form {
    color: rgba(46, 46, 46, 0.50);
    background: rgba(46, 46, 46, 0.10);
}
.feedback--white .feedback__qr {
    background: rgba(46, 46, 46, 0.10);
}
.feedback--white .feedback__qr-subtitle {

}

.feedback--white .feedback__form .input-form:active,
.feedback--white .feedback__form .input-form:hover,
.feedback--white .feedback__form .input-form:focus {
    background: rgba(46, 46, 46, 0.30);
    color: #2E2E2E;
}
.feedback--white .feedback__form .input-form::placeholder {
    color: rgba(46, 46, 46, 0.50);
}
.feedback--white label.feedback__form-label,
.feedback--white .feedback__form-label a {
    color: rgba(46, 46, 46, 0.50);
}
.feedback--white .feedback__form .checkbox-wrapper label::before {
    border: 1px solid rgba(0, 0, 0, 0.20);
}
.features {
    background-color: #fff;
}
.features__list {
    display: flex;
    gap:16px;
    justify-content: space-between;
}
.features__item {
    width: calc(33.33% - 10.67px);
    height: auto;
    border-radius: 24px;
    background: rgba(46, 46, 46, 0.03);
    padding: 24px;
    gap:24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
.features__item-icon {
    width: 40px;
    height: 40px;
}
.features__item-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.features+.company {
    padding-top: 40px;
}
.features--before-company {
    padding-bottom: 24px;
}

.feedback--white .feedback__form-thanks-title,
.feedback--white .feedback__form-thanks-message {
    color:#2E2E2E;
}

/* AML END */


/* COOKIES START */

.cookie-banner {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 800px;
    border-radius: 20px;
    border: 1px solid rgba(46, 46, 46, 0.10);
    background: #F14B13;
    padding: 16px;
    display: none; /* скрыто по умолчанию */
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
}

/* класс для показа баннера */
.cookie-banner--visible {
    display: flex;
}

.cookie-banner__title {
    color: #fff;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
}

.cookie-banner__text {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.cookie-banner__text a {
    color: #fff;
    font-style: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

.cookie-banner__close {
    border: none;
    cursor: pointer;
    line-height: 1;
    background: #fff;
    color: #2e2e2e;
    padding: 12px 24px;
    align-self: flex-end;
    font-size: 18px;
    min-width: unset;
    width: unset;
}

.cookie-banner__close:hover {
    color: #000;
}
.cookie-banner__close svg {
    pointer-events: none;
}
/* COOKIES END */



/* KYB START */

.hero__kyb {
    background:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
    linear-gradient(270deg, rgba(255, 255, 255, 0) 21.76%, #FFF 74.27%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 59.15%, #FFF 84.28%),
    url('../img/hero_kyb.jpg') -60% -50px / cover no-repeat, #FFF;
    min-height: 700px;
    max-height: 1200px;
    margin-bottom: -1px;
}
.cases--kyb .cases__item {
    height: 300px;
}
.cases--kyb .cases__item-title {
    font-size: 24px;
    font-weight: 600;
}

.stages {
    background: #F5F5F7;
}
.stages__wrapper {
}
.stages__content {
}
.stages__list {
    display: flex;
    row-gap: 30px;
    column-gap: 16px;
    align-items: stretch;
    position: relative;
    flex-wrap: wrap;
}
.stages__list::before {
    content: '';
    position: absolute;
    top: 31px;
    left: -100%;
    width: calc(100% + 20px);
    height: 2px;
    background-image: repeating-linear-gradient(to right, rgba(241, 75, 19, 0.20), rgba(241, 75, 19, 0.20) 8px, transparent 8px, transparent 16px);
    z-index: 1;
}

.stages__item {
    display: flex;
    flex-direction: column;
    width: calc(33% - 10.67px);
    gap: 30px;
    position: relative;
    z-index: 1;
}
.stages__item::after {
    content: '';
    position: absolute;
    left: 64px;
    top: 32px;
    transform: translateY(-50%);
    width: calc(100% + 8px);
    height: 2px;
    background-image: repeating-linear-gradient(to right, rgba(241, 75, 19, 0.20), rgba(241, 75, 19, 0.20) 8px, transparent 8px, transparent 16px);
    z-index: -1;
}
.stages__list--five .stages__item:nth-of-type(4),
.stages__list--five .stages__item:nth-of-type(5) {
    width: calc(50% - 8px);
}
.stages__list--five .stages__item:nth-of-type(4)::before {
    content: '';
    position: absolute;
    top: 31px;
    left: -100%;
    width: calc(100% + 20px);
    height: 2px;
    background-image: repeating-linear-gradient(to right, rgba(241, 75, 19, 0.20), rgba(241, 75, 19, 0.20) 8px, transparent 8px, transparent 16px);
    z-index: 1;
}
.stages__list--five .stages__item:nth-of-type(3)::after {
    width: calc(100% + 64px);
}
.stages__item:last-of-type::after {
    width: calc(100% - 78px);
}
.stages__item-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    padding: 20px 16px 20px 16px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    background: #f4d3ca;
    color: #F14B13;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4;
    margin-left: 24px;
    z-index: 1;
    position: relative;
}
.stages__item-card {
    border-radius: 24px;
    background: #FFF;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap:8px;
    height: 100%;
}
.stages__item:last-of-type::before {
    content: '';
    position: absolute;
    top: 32px;
    right: 0;
    transform: translateY(-50%);
    border-left: 14px solid rgba(241, 75, 19, 0.20);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
.stages__item-title {
    color: #2E2E2E;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
}
.stages__item-description {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
}

.cases--kyb {
    background-color: #fff;
}
.cases--kyb .cases__item-inner {
    background: rgba(46, 46, 46, 0.03);
}
.cards-kyb.cards--four .cards__item {
    height: auto;
    gap: 24px;
}
.cases--kyb .cases__item {
    height: 300px;
}
.cases__item .cases__item-front {
    position: unset;
    gap:24px;
}
.cases__item:has(.cases__item-back) .cases__item-front{
    position: absolute;
}

.calc__row {
    display: flex;
    gap:32px;
    align-items: stretch;
}
.calc__col-left {
    width: calc(65% - 16px);
}
.calc__col-right {
    width: calc(35% - 16px);
}
.calc__actions {
    padding-right: 32px;
    display: flex;
    flex-direction: column;
    gap:24px;
}
.calc__actions .calc__subtitle {
    font-size: 20px;
}
.calc__dropdown {
    position: relative;
    width: 100%;
    color: rgba(46, 46, 46, 0.50);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.3;
}

.calc__dropdown-selected {
    color:#2E2E2E;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    background: rgba(46, 46, 46, 0.03);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.calc__dropdown-selected::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('../img/arrow_line_down.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.2s;
}
.calc__dropdown-selected:hover {
    background: rgba(46, 46, 46, 0.10);
}

.calc__dropdown.open .calc__dropdown-selected::after {
  transform: rotate(-180deg);
}

.calc__dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    margin-top: 4px;
    padding: 16px;
    list-style: none;
    display: none;
    z-index: 10;
    flex-direction: column;
    justify-content: flex-start;
    gap:16px;

    border-radius: 16px;
    border: 1px solid rgba(46, 46, 46, 0.10);
    background: #FFF;
}

.calc__dropdown.open .calc__dropdown-list {
  display: flex;
}

.calc__dropdown-item {
  cursor: pointer;
  color: #2E2E2E;
}

.calc__dropdown-item:hover {
  background: #f0f0f0;
}

.calc__dropdown-item.active {
  color: #ff4d00; /* как на скрине — выделенный пункт */
}


.calc__input {
    width: 100%;
    padding: 16px;
    border: none;
    font-size: 18px;
    outline: none;
    margin-bottom: 12px;
    border-radius: 16px;
    background: rgba(46, 46, 46, 0.03);
}

.calc__input:focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.calc__suggestions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.calc__suggestion {
    padding: 6px 12px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 99px;
    background: rgba(46, 46, 46, 0.03);
}

.calc__suggestion:hover,
.calc__suggestion.active {
    background: rgba(46, 46, 46, 0.1);
}
.calc__image {
    height: 600px;
}
.calc__image img{
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.calc__input-block {
}
.calc__input {
}
.calc__suggestions {
}
.calc__suggestion {
}
.calc--white {
    background-color: #fff;
    padding-bottom: 40px;
}
.calc.calc--white + .feedback--white {
    padding-top: 80px;
}
.solutions--kyb .solutions__item {
    height: auto;
}


.check {
    background: #F5F5F7;
}
.check__wrapper {
    position: relative;
}
.check__content {
}
.check__list {
    display: flex;
    gap:16px;
    flex-wrap: wrap;
}
.check__item {
    border-radius: 24px;
    background: #FFF;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
    width: calc(33.33% - 10.67px);
}
.check__item-top {
    display: flex;
    justify-content: space-between;
    gap:4px;
}
.check__item-title {
    color: #2E2E2E;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3;
}
.check__item-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background-image: url('../img/check_icon.svg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.check__item-text {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}
.check__item-image {
    padding: 0;
}
.check__item-image img{
    border-radius: 24px;
    height: 100%;
    object-fit: cover;
}
.check:has(.section__subtitle) .section__title-block {
    margin-bottom: 24px;
}
.check .section__subtitle {
    font-size: 28px;
    margin-top: 48px;
}
.check .swiper-pagination {
    display: none;
}

.stories {
    background-color: #fff;
}
.stories__wrapper {
    position: relative;
}
.stories__content {
}
.stories__list {
    display: flex;
    flex-wrap: nowrap;
    gap:16px;
}
.stories__item {
    width: calc(33.33% - 10.67px);
    border-radius: 24px;
    padding: 24px;
    background: rgba(46, 46, 46, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    gap:37px;
}
.stories__item-title {
    font-size: 24px;
    font-weight: 600;
}
.stories__item-text {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}
.stories__item-author {
    display: flex;
    gap:12px;
}
.stories__item-author-image {
    width: 64px;
    height: 64px;
}
.stories__item-author-image img{
    border-radius: 50%;
}
.stories__item-author-info {
    display: flex;
    flex-direction: column;
    gap:4px;
}
.stories__item-author-name {
    font-size: 20px;
    font-weight: 600;
}
.stories__item-author-prof {
    color: rgba(46, 46, 46, 0.50);
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}
.stories .swiper-pagination {
    display: none;
}
.solutions--small-title .solutions__item-title{
    font-size: 24px;
}

.articles {
}
.articles__wrapper {
}
.articles__content {
}
.articles__list {
    display: flex;
    flex-wrap: wrap;
    gap:16px;
}
.articles__item {
    width: 100%;
    border-radius: 24px;
    background: rgba(46, 46, 46, 0.03);
    padding: 24px;
    display: flex;
    gap:24px;
}
.articles__item--small {
    width: calc(50% - 8px);
}
.articles__item-image {
    width: calc(30% - 8px);
}
.articles__item--small .articles__item-image {
    width: calc(25% - 8px);
}
.articles__item-image img{
    border-radius: 20px;
    object-fit: cover;
    height: 100%;
}
.articles__item-info {
    width: calc(70% - 8px);
    display: flex;
    flex-direction: column;
    gap:8px;
    height: 100%;
    justify-content: space-between;
}
.articles__item--small .articles__item-info {
    width: calc(75% - 8px);    
}
.articles__item-info-text {
    display: flex;
    flex-direction: column;
    gap:8px;
}
.articles__item-title {
    font-size: 20px;
    font-weight: 600;
}
.articles__item-description {
    color: rgba(46, 46, 46, 0.50);
    font-weight: 500;
}
.articles__item-btn {
    align-self: flex-end;
    font-size: 16px;
    font-weight: 600;
}
.articles__item-btn:hover {
    border: 1px solid #2E2E2E;
    color: #2E2E2E;
}

/* KYB END */

/* LIVENESS START */

.hero__liveness {
    background:
    linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
    linear-gradient(270deg, rgba(255, 255, 255, 0) 32.76%, #FFF 61.27%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 42.15%, #FFF 78.28%),
    url('../img/hero_liveness.jpg') -60% 0 / cover no-repeat, #FFF;
    min-height: 700px;
    max-height: 900px;
    margin-bottom: -1px;
}
.hero__liveness .hero__content-description {
    max-width: 570px;
}
.cards-video__content {
    display: flex;
    gap:24px;
}
.cards-video__cards {
    width: calc(56% - 12px);
}
.cards-video__video {
    width: calc(44% - 12px);
    display: flex;
    flex-direction: column;
    height: auto;
    gap:32px;
}
.cards-video__cards .cards__list {
    flex-wrap: wrap;
}
.cards-video__cards .cards__item {
    width: calc(50% - 8px);
}
.cards-video__btn {
    width: 100%;
    max-width: unset;
}
.cards-video__video .video__content {
    height: 100%;
}
.cards-video__video .video__file {
    height: 100%;
    object-fit: cover;
}
.cards-video__video .video__play {
    width: 88px;
    height: 88px;
    padding: 28px 26px 28px 30px;
}
.solutions--page .solutions__item.solutions__item--picture {
    padding: 0;
    overflow: hidden;
}
.solutions--page .solutions__item.solutions__item--picture img {
    height: 100%;
    object-fit: cover;
}
.works--gray {
    background: #F5F5F7;
}
.works--gray .works__item {
    height: 340px;
    gap:24px;
}
.industries__item-subtitle {
    color: rgba(46, 46, 46, 0.50);
    font-weight: 500;
    line-height: 130%;
}
.industries__item--orange .industries__item-subtitle,
.industries__item--gray .industries__item-subtitle {
    color: #fff;
}
.industries__item-front {
    justify-content:flex-start;
    gap:8px;
}
.industries--liveness .industries__item{
    height: 340px;
}

.check.check--white {
    background-color: #fff;
}
.check--liveness .check__item {
    height: 250px;
}
.check--white .check__item {
    background: rgba(46, 46, 46, 0.03);
}

.boxes {
    background-color: #fff;
}
.boxes__wrapper {
}
.boxes__content {
}
.boxes__list {
    display: flex;
    flex-wrap: wrap;
    gap:16px;
}
.box__item {
    border-radius: 24px;
    background: rgba(46, 46, 46, 0.03);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:32px;
}
.box__item--big {
    width: 100%;
}
.box__item-top {
    display: flex;
    justify-content: space-between;
    gap:8px;
}
.box__item-title {
    color: #2E2E2E;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
}
.box__item-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.box__item-icon-big {
    width: 40px;
    height: 40px;
}
.box__item-content {
    color: rgba(46, 46, 46, 0.50);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}
.box__item-content ul li{
    margin-left: 20px;
    font-size: 16px;
    line-height: 1.5;
}
.box__item-row {
    width: 100%;
}
.box__item-row-wrapper {
    display: flex;
    gap:16px;
}
.box__item--small {
    width: calc(50% - 4px);
}
.box__item--small:has(.box__item-icon-big) {
    justify-content: flex-start;
}

.box__item-list {
    display: flex;
    flex-direction: column;
    gap:8px;
}
.box__item-item {
    border-radius: 16px;
    background: #FFF;
    padding: 16px;
    color: #2E2E2E;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
}
.box__item--outline {
    text-align: center;
    background-color: #fff;
    border: 1px solid rgba(46, 46, 46, 0.10);
    margin-bottom: 24px;
    width: 100%;
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}
.box__item-description {
    color: #2E2E2E;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}
.boxes__actions {
}
.box__item-row .swiper-pagination {
    display: none;
}
.feedback__section-small {
    font-size: 28px;
}
.industries--liveness .industries__item-link {
    width: 40px;
    height: 40px;
}

.post__content .wp-block-table {
    margin-bottom: 32px;
}

/* LIVENESS END */


/* #preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo img {
  width: 100px;
  height: 100px;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
} */





/* ========================================================================================================== */
@media (max-width: 1599.98px) {
    .container {
        max-width: 1310px;
    }
    .hero__kyc {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(270deg, rgba(255, 255, 255, 0) 21.76%, #FFF 74.27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 59.15%, #FFF 84.28%),
        url('../img/kyc_main.jpg') 26% 0px / cover no-repeat, #FFF;
    }
    .hero__aml {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(270deg, rgba(255, 255, 255, 0) 21.76%, #FFF 74.27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 59.15%, #FFF 84.28%),
        url('../img/hero_aml.jpg') 26% 0px / cover no-repeat, #FFF;
    }
    .hero__kyb {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(270deg, rgba(255, 255, 255, 0) 21.76%, #FFF 74.27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 59.15%, #FFF 84.28%),
        url('../img/hero_kyb.jpg') 26% 0px / cover no-repeat, #FFF;
    }
    .hero__liveness {
        background: 
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(270deg, rgba(255, 255, 255, 0) 32.76%, #FFF 61.27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 42.15%, #FFF 74.28%), url("../img/hero_liveness.jpg") 100% 0px / 84% 76% no-repeat, #FFF;
    }
    .hero__kyc .hero__content {
        min-width: 605px;
    }
    .benefits__item--middle .benefits__item-content {
        gap:40px;
    }
    .benefits__item-image {
        height: 100%;
    }
    .benefits__item-count {
        font-size: 80px;
    }
    .industries__item-back ul li {
        font-size: 16px;
    }
    .tab__content-text {
        font-size: 16px;
    }
    .tab__content-image {
        height: 340px;
    }
    .company__item {
        width: 320px;
    }
    .cases--kyc .cases__item {
        height: 280px;
    }
    .cases--kyc .cases__item-content {
        font-size: 16px;
    }
    .benefits__item--big .benefits__item-content{
        font-size: 16px;
    }
    .solutions--page.solutions-kyt .solutions__item {
        height: 250px;
    }
    .industries--small .industries__item {
        height: 220px;
    }
    .cases--kyt .cases__item {
        height: 280px;
    }
    .industries--four .industries__list {
        gap:16px;
    }
    .industries--four .industries__item {
        width: calc(25% - 12px);
    }
}
/* ========================================================================================================== */
@media (max-width: 1399.98px) {
    .container {
        max-width: 1140px;
    }
    .section__title-block {
        margin-bottom: 48px;
    }
    .cards__item {
        height: 190px;
    }
    .stats__item {
        width: calc(33.33% - 20px);
    }
    /* .stats__list > .stats__item:nth-child(n+7) {
        display: none;
    } */
    .benefits__item--middle .benefits__item-content {
        gap:30px;
    }
    .benefits__item {
        font-size: 16px;
    }
    .benefits__item-count {
        font-size: 80px;
    }
    .blog__item {
        height: 280px;
    }
    .blog__item--first {
        height: auto;
    }
    .feedback__form .btn--submit {
        max-width: unset;
        width: 100%;
    }
    .footer__top-col {
        width: calc(40% - 20px);
    }
    .footer__top-col:first-of-type {
        width: calc(30% - 20px);
    }
    .footer__top-col:last-of-type {
        width: calc(30% - 20px);
    }
    .profit__image {
        height: 400px;
    }
    .industries--small .industries__item {
        height: 270px;
    }
    .solutions--page.solutions-kyt .solutions__item {
        height: 300px;
    }
    .hero__kyt {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(270deg, rgba(255, 255, 255, 0) 21.76%, #FFF 74.27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 59.15%, #FFF 84.28%),
        url('../img/hero_kyt.jpg') -30% -50px / cover no-repeat, #FFF;
        min-height: 900px;
    }
    .hero__aml {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(270deg, rgba(255, 255, 255, 0) 21.76%, #FFF 74.27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 59.15%, #FFF 84.28%),
        url('../img/hero_aml.jpg') 0 -50px / cover no-repeat, #FFF;
        min-height: 900px;
    }
    .hero__kyb {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(270deg, rgba(255, 255, 255, 0) 21.76%, #FFF 74.27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 59.15%, #FFF 84.28%),
        url('../img/hero_kyb.jpg') 0 0 / cover no-repeat, #FFF;
        min-height: 900px;
    }
    .hero__liveness {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(270deg, rgba(255, 255, 255, 0) 32.76%, #FFF 61.27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 42.15%, #FFF 74.28%),
        url("../img/hero_liveness.jpg") 100% 0px / 91% 75% no-repeat, #FFF;
        min-height: 900px;
    }
    .cards--four .cards__item {
        height: 270px;
    }
    .industries--four .industries__list {
        gap:8px;
    }
    .industries--four .industries__item {
        width: calc(50% - 4px);
        height: 280px;
    }
    .works__list {
        gap:8px;
    }
    .works__item {
        padding: 16px;
        width: calc(25% - 6px);
    }
    .works__item--image {
        padding: 0;
    }
    .features__item-title {
        font-size: 22px;
    }
    .cards-kyb.cards--four .cards__item {
        width: calc(50% - 4px);
    }
    .cases--kyb .cases__item {
        height: auto;
    }
    .cards-video__content {
        gap:16px;
    }
    .cards-video .cards__item {
        height: 220px;
    }
    .cards-video__cards {
        width: calc(56% - 8px);
    }
    .cards-video__video {
        width: calc(44% - 8px);
    }
    .works--gray .works__item {
        height: 420px;
    }
    .industries--liveness .industries__item{
        height: 320px;
    }
    .check--liveness .check__item {
        height: 290px;
    }
    .check__item-title {
        font-size: 24px;
    }
}
/* ========================================================================================================== */
@media (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
    .hero__kyc {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(270deg, rgba(255, 255, 255, 0) 21.76%, #FFF 74.27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 59.15%, #FFF 84.28%),
        url('../img/kyc_main.jpg') 37% 0px / cover no-repeat, #FFF;
        min-height: 900px;
    }
    .hero__kyt {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(270deg, rgba(255, 255, 255, 0) 21.76%, #FFF 74.27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 59.15%, #FFF 84.28%),
        url('../img/hero_kyt.jpg') -10% -50px / cover no-repeat, #FFF;
        min-height: 900px;
    }
    .hero__aml {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(270deg, rgba(255, 255, 255, 0) 21.76%, #FFF 74.27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 59.15%, #FFF 84.28%),
        url('../img/hero_aml.jpg') 10% -50px / cover no-repeat, #FFF;
        min-height: 900px;
    }
    .hero__kyb {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(270deg, rgba(255, 255, 255, 0) 21.76%, #FFF 74.27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 59.15%, #FFF 84.28%),
        url('../img/hero_kyb.jpg') 10% -50px / cover no-repeat, #FFF;
        min-height: 900px;
    }
    .hero__liveness {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(270deg, rgba(255, 255, 255, 0) 32.76%, #FFF 61.27%),
        linear-gradient(180deg, rgba(255, 255, 255, 0) 42.15%, #FFF 74.28%),
        url("../img/hero_liveness.jpg") 195% 0px / 96% 77% no-repeat, #FFF;
        min-height: 600px;
        max-height: 700px;
    }
    .hero__form-input-wrapper {
        max-width: 200px;
    }
    .hero__slider {
        padding-left: 0;
        padding-right: 0;
    }
    .solutions__list {
        flex-wrap: wrap;
        justify-content: center;
    }
    .solutions__item {
        width: calc(33.33% - 11px);
    }
    .industries__item {
        width: calc(50% - 8px);
    }
    .trust+.cards {
        padding-top: 0;
    }
    .tabs__buttons {
        display: none;
    }
    .tabs__content-wrapper {
        padding-bottom: 40px;
    }
    .tab-list {
        display: block;   
    }
    .tab-item {
        width: clamp(250px, 25vw,350px);
    }
    .tab-item.swiper-slide {
        width: 100%;
    }
    .services .swiper-pagination {
        display: block;
        bottom: 0;
    }
    .about__image, .about__content {
        width: 100%;
    }
    .stats__list {
        gap:12px;
    }
    .stats__item {
        width: calc(33.33% - 8px);
        border-radius: 24px;
    }
    .benefits__item-image {
        height: 460px;
    }
    .benefits__item-count {
        margin-bottom: 16px;
    }
    .benefits__item-item {
        margin-bottom: 24px;
    }
    .benefits__item--middle:has(.benefits__item-image) {
        width: 100%;
    }
    .benefits__item--middle .benefits__item-content{
        flex-direction: column;
        gap:0;
    }
    .benefits__item--small {
        width: calc(50% - 15px);
    }
    .trust__info {
        flex-direction: column;
    }
    .trust__info-image,
    .trust__info-text {
        width: 100%;
    }
    .trust__info-image {
        height: 440px;
    }
    .trust__wrapper {
        position: relative;

    }
    .trust__info-actions {
        margin-top: 40px;
    }

    .cases__item {
        width: calc(50% - 8px);
    }
    .profit__content {
        flex-direction: column;
    }
    .profit__image,
    .profit__cards {
        width: 100%;
    }
    .profit__card {
        height: 200px;
    }
    .blog__item {
        width: 100%;
        height: auto;
    }
    .blog__item--first {
        height: auto;
    }
    .blog__item:nth-child(n+4){
        display: none;
    }
    .blog__item-image {
        height: 160px;
        width: 160px;
    }
    .blog__item--large .blog__item-image {
        width: 160px;
        flex-shrink: 0;
    }
    .blog__item--large .blog__item-content {
        width: 100%;
    }
    .blog__item--small .blog__item-image {
        height: 104px;
    }
    .feedback__form .input-form {
        margin-top: 0;
    }
    .footer__bottom-col {
        width: calc(50% - 15px);
    }
    .footer__top-nav-block .footer__top-nav:first-of-type {
        width: calc(40% - 15px);
    }
    .footer__top-nav-block .footer__top-nav:last-of-type {
        width: calc(60% - 15px);
    }
    .steps {
        overflow: hidden;
    }
    .steps__list {
        flex-wrap: wrap;
    }
    .steps__list::after {
        display: none;
    }
    .steps__list::before {
        display: none;
    }
    .steps__item {
        width: calc(50% - 8px);
    }
    .steps__item:last-of-type::before {
        content: '';
        position: absolute;
        top: 32px;
        right: 0;
        transform: translateY(-50%);
        border-left: 14px solid rgba(241, 75, 19, 0.20);
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }
    .steps__item:first-of-type::before {
        content: '';
        position: absolute;
        top: 31px;
        left: -100%;
        width: calc(100% + 20px);
        height: 2px;
        background-image: repeating-linear-gradient(to right, rgba(241, 75, 19, 0.20), rgba(241, 75, 19, 0.20) 8px, transparent 8px, transparent 16px);
        z-index: 1;
    }
    .steps__item:nth-of-type(2)::after{
        width: calc(100% + 77px);
    }
    .steps__item:nth-of-type(3)::before {
        content: '';
        position: absolute;
        top: 31px;
        left: -100%;
        width: calc(100% + 20px);
        height: 2px;
        background-image: repeating-linear-gradient(to right, rgba(241, 75, 19, 0.20), rgba(241, 75, 19, 0.20) 8px, transparent 8px, transparent 16px);
        z-index: 1;
    }
    .cards--kyc .cards__list {
        flex-wrap: wrap;
        gap:8px;
    }
    .cards--kyc .cards__item{
        width: calc(50% - 4px);
    }
    .solutions--page .solutions__list {
        gap: 8px;
        justify-content: flex-start;
    }
    .solutions--page .solutions__item {
        width: calc(50% - 4px);
        padding: 16px;
        height: auto;
    }
    .solutions--page .solutions__item-title {
        font-size: 24px;
    }
    .solutions--page .solutions__item-description {
        font-size: 16px;
    }
    .areas__item {
        width: calc(50% - 8px);
    }
    .cases--kyc .cases__list {
        gap:16px;
    }
    .cases--kyc .cases__item {
        height: 220px;
        width: calc(50% - 8px);
    }
    .cases--kyc .cases__item-icon {
        width: 32px;
        height: 32px;
    }
    .industries--small .industries__item {
        height: 240px;
    }
    .solutions--page.solutions-kyt .solutions__item {
        height: 240px;
        gap: 12px;
    }    
    .reasons__item {
        height: 300px;
    }
    .cards--four .cards__item {
        width: calc(50% - 4px);
        height: 250px;
    }
    .solutions-aml .solutions__item {
        height: 260px;
    }
    .solutions--icons .solutions__item.solutions__item--image {
        display: none;
    }
    .standart__item {
        height: 300px;
    }
    .works__list {
        justify-content: center;
    }
    .works__item {
        width: calc(33.33% - 5.33px);
    }
    .calc__actions {
        padding-right: 0;
    }
    .stories__wrapper {
        padding-bottom: 40px;
    }
    .stories__list {
        gap:0;
    }
    .stories .swiper-pagination {
        display: block;
    }
    .articles__item {
        width: 100%;
        height: 240px;
    }
    .articles__item-image {
        width: calc(25% - 8px);
    }
    .articles__item-info {
        width: calc(75% - 8px);
    }
    .cards-video__content {
        flex-direction: column;
    }
    .cards-video__cards,
    .cards-video__video {
        width: 100%;
    }
    .cards-video__video {
        gap:40px;
    }
    .works--gray .works__item {
        max-height: 320px;
        height: auto;
    }
    .industries--liveness .industries__item--image {
        display: none;
    }
    .industries--liveness .industries__item {
        height: 300px;
    }
    .check--liveness .check__item {
        height: 250px;
    }
    .check__list {
        gap:8px;
    }
    .check--liveness .check__item {
        width: calc(50% - 4px);
    }
}
/* ========================================================================================================== */
@media (max-width: 991.98px) {
    .container {
        max-width: 754px;
    }
    .header {
        background-color: #fff;
        z-index: 9;
        padding: 12px 0;
    }
    .section {
        padding: 40px 0;
    }
    .section--desktop {
        display: none;
    }
    .section__title-block {
        margin-bottom: 40px;
    }
    .section__title {
        font-size: 32px;
    }
    .header__nav,
    .header__action-btn {
        display: none;
    }
    .header__lang {
        flex-direction: row;
        gap: 8px;
    }
    .header__lang img {
        margin-top: 6px;
    }
    .header__action {
        gap:16px;
    }
    .header__burger {
        display: block;
    }
    .header__nav-item-link {
        font-size: 20px;
        font-weight: 500;
        text-align: left;
    }
    .lang-switch {
        height: 40px;
    }

    .lang-switch .lang-item {
        width: 32px;
        height: 32px;
    }
    .hero {
        overflow-x: hidden;
        background: 
            linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
            linear-gradient(171deg, rgba(255, 255, 255, 0) 68.36%, #FFF 99.65%),
            linear-gradient(354deg, rgba(255, 255, 255, 0) 41.89%, #FFF 75.11%),
            url('../img/main_bg.jpg') -1153px 251px / 248.57% 97.30% no-repeat,
            #FFF;
        padding-top: 80px;
    }
    .hero__kyc {
        background:
        linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
        linear-gradient(171deg, rgba(255, 255, 255, 0) 68.36%, #FFF 99.65%),
        linear-gradient(354deg, rgba(255, 255, 255, 0) 41.89%, #FFF 75.11%),
        url('../img/kyc_main.webp') 45% 291px / cover no-repeat, #FFF;
    }
    .hero__kyt {
        background:
        linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
        linear-gradient(171deg, rgba(255, 255, 255, 0) 68.36%, #FFF 99.65%),
        linear-gradient(354deg, rgba(255, 255, 255, 0) 41.89%, #FFF 75.11%),
        url('../img/hero_kyt.jpg') 45% 120px / cover no-repeat, #FFF;        
    }
    .hero__aml {
        background:
        linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
        linear-gradient(171deg, rgba(255, 255, 255, 0) 68.36%, #FFF 99.65%),
        linear-gradient(354deg, rgba(255, 255, 255, 0) 41.89%, #FFF 75.11%),
        url('../img/hero_aml.jpg') 45% 200px / cover no-repeat, #FFF;        
    }
    .hero__kyb {
        background:
        linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
        linear-gradient(171deg, rgba(255, 255, 255, 0) 68.36%, #FFF 99.65%),
        linear-gradient(354deg, rgba(255, 255, 255, 0) 41.89%, #FFF 75.11%),
        url('../img/hero_kyb.jpg') 45% 200px / cover no-repeat, #FFF;        
    }
    .hero__liveness {
        background:
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        linear-gradient(171deg, rgba(255, 255, 255, 0) 64.36%, #FFF 88.65%),
        linear-gradient(354deg, rgba(255, 255, 255, 0) 39.89%, #FFF 61.11%),
        url("../img/hero_liveness.jpg") 90% 348px / 136% 66% no-repeat, #FFF;
        min-height: 900px;
        max-height: 1100px;
    }
    .hero__kyc .hero__content {
        min-width: unset;
    }
    .hero__kyc .hero__content-description {
        max-width: unset;
    }
    .hero__row {
        flex-direction: column;
        flex-wrap: wrap;
    }
    .hero__col {
        width: 100%;
    }
    .hero__content-image {
        width: 108px;
    }
    .hero__form-block {
        display: none;
    }
    .main-title {
        font-size: 40px;
    }
    .hero__content-description {
        
    }
    .hero__slide {
        padding: 16px;
        gap:8px;
        border: 1px solid rgba(46, 46, 46, 0.10);
        background: rgba(255, 255, 255, 0.50);
        backdrop-filter: blur(6px);
    }
    .swiper-button-prev, .swiper-button-next {
        display: none;
    }
    .hero__slider {
        padding-bottom: 40px;
        overflow: visible;
    }
    .hero__slide-image {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    .hero .swiper-pagination {
        display: block;
        bottom: 0;
    }
    .profit .section__title-block {
        max-width: 520px;
    }
    .profit__image {
        height: 320px;
        padding: 24px;
    }
    .profit__card {
        height: 150px;
        padding: 16px;
    }
    .profit__image-text {
        font-size: 22px;
    }
    .solutions__list {
        gap:8px;
    }
    .solutions__item {
        width: calc(50% - 4px);
    }

    .industries__item {
        height: 290px;
    }
    .benefits__item-item {
        color: rgba(46, 46, 46, 0.50);
    }
    .tab__content-wrapper {
        flex-direction: column;
    }
    .tab__content-image {
        width: 100%;
    }
    .tab__content-info {
        width: 100%;
        gap:16px;
    }
    .tab__content-action {
        margin-top: 16px;
    }
    .tab__content-info {
        padding-top: 0;
        padding-bottom: 0;
        gap:8px;
    }
    .tab__content-text p {
        margin-bottom: 12px;
    }
    
    .cards__item {
        padding: 16px;
    }
    .about__wrapper {
        flex-direction: column;
    }
    .about__image {
        height: 320px;
    }
    .about__content-title {
        margin-bottom: 16px;
    }
    .about__content-text {
        margin-bottom: 24px;
        max-width: unset;
    }
    .about__content-text p{
        margin-bottom: 12px;
    }
    .stats__list {
        gap: 8px;
    }
    .stats__item {
        width: calc(50% - 4px);
        height: auto;
        gap: 24px;
        padding: 16px;
    }
    .stats__list > .stats__item:nth-child(n+8) {
        display: none;
    }
    .benefits__list {
        gap:8px;
    }
    .benefits__item--big {
        
    }
    .benefits__item-image {
        height: 360px;
    }
    .benefits__item-count {
        font-size: 64px;
    }
    .benefits__item-item {
        font-size: 16px;
        margin-bottom: 19px;
    }
    .benefits__item--middle,
    .benefits__item--small {
        width: calc(50% - 4px);
    }
    .benefits__item--big:last-of-type {
        text-align: center;
        padding: 24px 10%;
    }
    .benefits__slider .swiper-pagination {
        display: none;
    }
    .trust__info-actions {
        margin-top: 24px;
    }
    .reviews__slider .swiper-pagination {
        display: block;
    }
    .industries__item {
        height: 400px;
    }
    .industries__item-back ul li {
        margin-bottom: 10px;
    }
    .blog__item--large .blog__item-title {
        margin-bottom: 8px;
    }
    .feedback__wrapper {
        flex-direction: column;
    }
    .feedback__content,
    .feedback__form-block {
        width: 100%;
    }
    .feedback__form-wrapper {
        max-width: unset;
    }
    .contacts--mobile {
        display: block;
    }
    .footer__top {
        flex-direction: column;
    }
    .footer__top-col {
        width: 100%;
    }
    .footer .footer__contacts {
        
    }
    .footer__top {
        position: relative;
        padding-top: 80px;
    }
    .footer__logo {
        position: absolute;
        top:0;
        left:0;
    }
    .footer__top-nav-block .footer__top-nav:first-of-type {
        width: 120px;
    }
    .footer__top-nav-block {
        justify-content: flex-start;
    }
    .footer__top-col:first-of-type {
        order:3
    }
    .footer__top-col:last-of-type {
        order:1
    }
    .footer__line {
        display: none;
    }
    .footer__bottom {
        flex-direction: column;
        gap:24px;
        margin-top: 30px;
    }
    .footer__bottom-col:first-of-type {
        width: 100%;
        max-width: unset;
        gap:24px;
    }
    .footer__bottom-col:last-of-type {
        width: 100%;
        max-width: unset;
        text-align: left;
        gap:24px;
    }
    .footer__bottom-col {
        gap:10px;
    }
    
    .footer__top-col {
        width: 100%;
        max-width: unset;
    }
    .footer__top-col:first-of-type {
        width: 100%;
    }
    .footer__top-col:last-of-type {
        display: none;
    }
    .footer__top-col:first-of-type {
        border-top: solid 1px rgba(255, 255, 255, 0.20);
    }
    .footer .footer__contacts {
        margin-bottom: 0;
    }
    .footer__bottom-col-links {
        display: flex;
        gap:24px;
    }
    .glightbox-clean .gslide-media {
        border-radius: unset;
        margin:0;
        padding: 0;
        max-height: 100vh;
    }
    .gslide-inline .ginlined-content {
        padding: 0;
        position: relative;
    }
    .goverlay {
        opacity: 0;
    }
    .glightbox-container .gslide.current {
        height: 100%;
    }
    .glightbox-container .gslide-inner-content {
        height: 100%;
    }
    .glightbox-container .ginner-container {
        height: 100%;
    }
    .gslide-inline {
        max-height: 100vh!important;
    }
    .mobile-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(46, 46, 46, 0.10);
        padding: 16px 40px;
    }
    .modal-window {
        max-width: 520px;
        margin:0 auto;
    }
    .modal-title {
        text-align: center;
        margin-bottom: 0;
    }
    .modal-window .call__form {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 420px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .glightbox-clean .gclose.gbtn {
        width: 32px!important;
        height: 32px!important;
        padding: 4px!important;
        background: transparent!important;
        border-radius: 0!important;
        top: 20px !important;
    }
    .glightbox-clean .gclose path {
        fill:#2E2E2E;
    }
    .trust+.cards,
    .services+.cards {
        padding-top: 20px;
    }
    .cards--kyc .cards__list {
        flex-wrap: nowrap;
    }
    .areas__item {
        height: 260px;
        padding: 16px;
    }
    .areas__item-icon {
        width: 32px;
        height: 32px;
    }
    .areas__item-title {
        font-size: 22px;
    }
    .feedback__qr {
        flex-direction: row;
        align-items: center;
        gap:8px;
    }
    .feedback__qr-title {
        flex-shrink: 1;
    }
    .feedback__description--qr {
        display: none;
    }
    .feedback__qr-image--big {
        display: none;
    }
    .feedback__qr-image--small {
        display: block;
    }
    .feedback__qr-list {
        gap: 16px;
        width: unset;
    }
    .cases--kyc .cases__list {
        gap: 8px;
    }
    .cases--kyc .cases__item {
        height: 260px;
        width: calc(50% - 4px);
    }
    .cases--kyc .cases__item .cases__item-front {
        padding: 16px;
    }
    .tarifs__content {
        padding-bottom: 60px;
        position: relative;
    }
    .tarifs__list {
        gap:0;
    }
    .faq__content-subtitle {
        font-size: 20px;
    }
    .feedback--kyc .feedback__form-wrapper {
        max-width: unset;
    }
    .footer__logo--partners {
        position: absolute;
        right: 0;
        top:0;
    }
    .company__list {
        display: block;
    }
    .industries--small .industries__item {
        height: 280px;
    }
    .section__row {
        flex-direction: column;
    }
    .examples .section__row {
        display: flex !important;
        flex-wrap: nowrap !important;
        flex-direction: row;
        gap: 0 !important;
        width: 100% !important;
    }    
    .examples .examples__wrapper {
        position: relative;
        padding-bottom: 40px;
    }
    .examples .swiper-pagination {
        display: none;
    }
    .examples__item {
        padding: 16px;
        gap:24px;
    }
    .examples__item-title {
        font-size: 20px;
        padding-right: 32px;
    }
    .examples__item .examples__item-title::after {
        width: 28px;
        height: 28px;
    }
    .examples__item-step-title {
        font-size: 16px;
    }
    .examples__item-step-description {
        font-size: 14px;
    }
    .section__col {
        width: 100%;
    }
    .architect__item-title {
        font-size: 24px;
    }
    .section__col_3 {
        width: 100%;
    }
    .cases--kyt .cases__item-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
    }
    .cases--kyt .cases__item-front, .cases--kyt .cases__item-back {
        padding: 16px;
    }
    .industries__item-title {
        font-size: 22px;
    }
    .industries--small .industries__item-title {
        font-size: 22px;
    }
    .industries--small .industries__item-back {
        font-size: 14px;
    }
    .architect__item {
        padding: 16px;
        border-radius: 24px;
    }
    .architect__item-title::after {
        width: 32px;
        height: 32px;
    }
    .reasons__list {
        flex-wrap: wrap;
        gap: 8px;
    }
    .reasons__item {
        width: calc(50% - 4px);
        height: 248px;
        padding: 16px;
    }
    .solutions__item-icon {
        width: 32px;
        height: 32px;
    }
    .industries--four .industries__item {
        height: 240px;
    }
    .industries--four .industries__item-back {
        font-size: 14px;
        justify-content: flex-start;
    }
    .industries--four .industries__item-title {
        font-size: 22px;
    }
    .standart__list {
        gap:0;
    }
    .standart__wrapper {
        position: relative;
        padding-bottom: 40px;
    }
    .standart__slider .swiper-pagination {
        display: block;
    }
    .standart__item {
        height: 200px;
        padding: 16px;
    }
    .standart__item-title {
        font-size: 20px;
    }
    .standart__item-content p {
        font-size: 16px;
    }
    .standart__item-content ul {
        font-size: 14px;
    }
    .works__item {
        width: calc(50% - 4px);
        height: 240px;
    }
    .calc__subtitle {
        font-size: 24px;
    }
    .features__list {
        gap:8px;
    }
    .features__item {
        padding: 16px;
        gap:16px;
        width: calc(33.33% - 5.33px);
    }
    .features__item-icon {
        width: 32px;
        height: 32px;
    }
    .features__item-title {
        font-size: 18px;
    }
    .company__swiper--before--text {
        padding-bottom: 16px;
    }
    .features+.company {
        padding-top: 24px;
    }
    .features--before-company {
        padding-bottom: 16px;
    }
    .cookie-banner {
        width: calc(100% - 64px);
        right: 32px;
    }
    .cookie-banner__title {
        font-size: 24px;
    }
    .cookie-banner__text {
        font-size: 16px;
    }
    .cookie-banner__close {
        font-size: 18px;
    }
    .stages__item {
        width: calc(50% - 8px);
    }
    .stages__list--five .stages__item:nth-of-type(4)::before {
        display: none;
    }
    .stages__list--five .stages__item:nth-of-type(3)::before {
        content: '';
        position: absolute;
        top: 31px;
        left: -100%;
        width: calc(100% + 20px);
        height: 2px;
        background-image: repeating-linear-gradient(to right, rgba(241, 75, 19, 0.20), rgba(241, 75, 19, 0.20) 8px, transparent 8px, transparent 16px);
        z-index: 1;
    }
    .stages__list--five .stages__item::after,
    .stages__list--five .stages__item:nth-of-type(3)::after {
        width: calc(100% + 8px);
    }
    .stages__item:nth-of-type(2):after,
    .stages__item:nth-of-type(4):after {
        width: calc(100% + 60px);
    }
    .stages__item:last-of-type::after {
        width: calc(100% + 116px);
        left:-130px;
    }
    .stages__list--five .stages__item:nth-of-type(5) {
        width: 100%;
    }
    .cases__list {
        gap:8px;
    }
    .calc__col-right {
        display: none;
    }
    .calc__col-left {
        width: 100%;
    }
    .calc.calc--white + .feedback--white {
        padding-top: 40px;
    }
    .check__list {
        gap:8px;
    }
    .check__item {
        width: calc(50% - 4px);
        height: 160px;
    }
    .check__item-title { 
        font-size: 24px;
    }
    .check .section__subtitle {
        font-size: 24px;
        margin-top: 36px;
    }
    .check .section__title-block {
        margin-bottom: 24px;
    }
    .articles__item-description {
        font-size: 14px;
    }
    .page__title {
        font-size: 32px;
    }
    .cards-video .cards__list {
        gap:8px;
    }
    .cards-video .cards__item {
        height: 200px;
        width: calc(50% - 4px);
    }
    .cards-video__video .video__file {
        border-radius: 40px;
    }
    .works--gray .works__item--image {
        height: 240px;
    }
    .industries--liveness .industries__item {
        height: 260px;
    }
    .box__item {
        padding: 16px;
        gap:24px;
    }
    .box__item-title {
        font-size: 24px;
    }
    .box__item-content ul li,
    .box__item-description {
        font-size: 14px;
    }
    .box__item-icon-big {
        width: 32px;
        height: 32px;
    }
    .box__item--outline br {
        display: none;
    }
    .box__item-item {
        font-size: 16px;
    }
    .boxes .section__description br{
        display: none;
    }
    
}
/* ========================================================================================================== */
@media (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
    .hero {
        background: 
        linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)),
        linear-gradient(162deg, rgba(255, 255, 255, 0.00) 58.88%, #FFF 90.71%), linear-gradient(344deg, rgba(255, 255, 255, 0.00) 51.4%, #FFF 67.8%), 
        url('../img/main_bg_small.jpg') center 300px / 100% 90% no-repeat,
        #FFF;
    }
    .hero__kyc {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        linear-gradient(171deg, rgba(255, 255, 255, 0) 68.36%, #FFF 99.65%),
        linear-gradient(354deg, rgba(255, 255, 255, 0) 41.89%, #FFF 75.11%),
        url('../img/kyc_main.webp') 49% 291px / cover no-repeat, #FFF;
    }
    .hero__kyt {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        linear-gradient(171deg, rgba(255, 255, 255, 0) 68.36%, #FFF 99.65%),
        linear-gradient(354deg, rgba(255, 255, 255, 0) 41.89%, #FFF 75.11%),
        url('../img/hero_kyt.jpg') 48% 219px / 144% 73% no-repeat, #FFF;
        max-width: unset;
    }
    .hero__aml {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        linear-gradient(171deg, rgba(255, 255, 255, 0.20) 68.36%, #FFF 86.11%), 
        linear-gradient(354deg, rgba(255, 255, 255, 0.00) 41.89%, #FFF 59.94%), 
        url('../img/hero_aml.jpg') 48% 360px / 144% 73% no-repeat, #FFF;
        max-width: unset;
    }
    .hero__kyb {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        linear-gradient(171deg, rgba(255, 255, 255, 0.20) 68.36%, #FFF 86.11%), 
        linear-gradient(354deg, rgba(255, 255, 255, 0.00) 41.89%, #FFF 59.94%), 
        url('../img/hero_kyb.jpg') 48% 360px / 144% 73% no-repeat, #FFF;
        max-width: unset;
    }
    .hero__liveness {
        background:
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        linear-gradient(171deg, rgba(255, 255, 255, 0) 64.36%, #FFF 88.65%), 
        linear-gradient(354deg, rgba(255, 255, 255, 0) 39.89%, #FFF 61.11%),
        url("../img/hero_liveness.jpg") 96% 407px / 154% 58% no-repeat, #FFF;
    }
    .hero__content-image {
        width: 80px;
    }
    .hero__slider {
        margin-top: 40px;
    }
    .hero__content {
        min-width: unset;
    }
    .section__actions {
        flex-direction: column;
        align-items: center;
        margin-top: 24px;
        gap:8px;
    }
    .solutions__item {
        width: 100%;
        height: 240px;
        border: 1px solid rgba(221, 221, 221, 0.60);
        border-radius: 20px;
    }
    .solutions__item:first-of-type {
        margin-top: 0;
    }
    .solutions__item.active {
        margin-top: 0;
    }
    /* .solutions__item--gray {
        display: none;
    } */
    .industries__content {
        overflow: visible;
        margin-top: -40px;
        margin-bottom: 0;
    }
    .industries__list {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        width: 100% !important;
        padding-top: 40px;
    }
    .industries__item {
        width: 100% !important;
        flex-shrink: 0 !important;
    }
    .cases__list {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        width: 100% !important;
    }
    .cases__item {
        width: 100% !important;
        flex-shrink: 0 !important;
    }
    .cases__slider .swiper-pagination {
        display: block;
        bottom: -30px;
        position: relative;
    }
    .cases__wrapper {
        overflow: hidden;
    }
    .industries__slider .swiper-pagination {
        bottom: 0;
    }
    .industries .swiper-pagination {
        display: block;
    }
    .tab__content-wrapper {
        gap:16px;
    }
    .tab__content-subtitle {
        
    }
    .tab__content-image {
        border-radius: 20px;
        height: 280px;
    }
    .cards__wrapper {
        position: relative;
        padding-bottom: 40px;
    }
    .cards--four .cards__wrapper {
        padding-bottom: 0;
        overflow: hidden;
    }
    .cards__slider .swiper-pagination {
        display: block;
        bottom: 0;
    }
    .cards__item {
        height: 170px;
        border-radius: 20px;
    }
    .about__content-title {
        margin-bottom: 30px;
    }
    .about__content-text p {
        margin-bottom: 24px;
    }
    .about__content-text {
        margin-bottom: 40px;
    }  
    .about__wrapper {
        padding: 0;
        border-radius: 0;
    }
    .benefits__item--mobile {
        display: block;
        margin-bottom: 24px;
    }
    .benefits__item--desktop {
        display: none;
    }
    .benefits__slider {
        overflow: hidden;
    }
    .benefits__list {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
        width: 100% !important;
    }
    .benefits__item {
        width: 100% !important;
        flex-shrink: 0 !important;
        padding: 16px;
        height: auto;
    }
    .benefits__item--big {
        background-color: #fff;
        padding: 16px;
        border-radius: 20px;
        border: 1px solid rgba(46, 46, 46, 0.10);
        padding-top: 68px;
    }
    .benefits__item--big::after {
        top:16px;
        left:16px;
    }
    .benefits__item--big:last-of-type {
        margin-top: 48px;
        margin-bottom: 0;
    }
    .benefits__slider .swiper-pagination {
        display: block;
        bottom: -24px;
        position: relative;
    }
    .benefits__slider .swiper-pagination {
        display: block;
    }

    .stats__item {
        width: 100%;
    }
    .stats__list > .stats__item:nth-child(n+4) {
        display: none;
    }
    .cases__item {
        width: 100%;
    }
    .cases__item-info {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 99px;
    }
    .cases__info {
        padding: 24px;
        background-color: #fff;
        border-radius: 24px;
        text-align: center;
    }
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    .blog__list {
        margin-bottom: 40px;
    }
    .blog__item {
        width: 100%;
        padding: 16px;
        border-radius: 20px;
        flex-direction: column-reverse;
        position: relative;
    }
    .blog__item--first {
        flex-direction: column;
        height: auto;
        gap: 16px;
    }
    .blog__item-image {
        width: 64px;
        height: 64px;
        border-radius: 12px;
        flex-shrink: 0;
    }
    .blog__item--large {
        height: 180px;
    }
    .blog__item--large .blog__item-image {
        height: 64px;
        width: 64px;
        position: absolute;
        right: 16px;
        bottom: 16px;
    }
    .blog__item--small .blog__item-image {
        width: 88px;
        height: 64px;
    }
    .blog__item--small {
        flex-direction: column;
        height: 180px;
    }
    .blog__item--large .blog__item-content {
        height: 100%;
        align-items: flex-start;
        justify-content: space-between;
        gap:16px;
    }
    .blog__item--small .blog__item-content {
        flex-direction: row-reverse;
    }
    .blog__item--large .blog__item-link {
        align-self: flex-start;
    }
    .blog__item-link.btn {
        font-size: 14px;
        font-weight: 500;
        height: 39px;
        width: 150px;
        line-height: 1;
    }
    .blog__item-link::after {
        height: 16px;
        width: 16px;
        right: 8px;
        top:12px;
    }
    .blog__item-title {
        font-size: 16px;
    }
    .blog__item-subtitle {
        font-size: 14px;
    }
    .feedback {
        padding: 40px 0;
    }
    .footer__bottom-col-links {
        flex-direction: column;
    }
    .stats__content-action {
        display: block;
    }
    .steps__item {
        width: 100%;
    }
    .steps__item:first-of-type::before {
        display: none;
    }
    .steps__item-num {
        margin-left: 0;
    }
    .steps__item::after {
        width: calc(100% + 77px);
        left:72px;
    }
    .steps__item:nth-of-type(3)::before {
        display: none;
    }
    .cards--kyc .cards__item {
        border-radius: 20px;
    }
    .cards--kyc .cards__slider .swiper-pagination {
        bottom:4px;
    }
    .cards--kyc .cards__list {
        padding-bottom: 50px;
        gap:0;
    }
    .cards--main .cards__content {
        padding-bottom: 40px;
    }
    .solutions__content {
        overflow: hidden;
        padding-bottom: 60px;
        position: relative;
    }
    .solutions__slider .swiper-pagination {
        display: block;
    }
    .solutions__list {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap:unset;
    }
    .solutions--page .solutions__list {
        flex-wrap: nowrap;
    }
    .tab__content-text {
        margin-bottom: 0;   
    }
    .areas__content {
        position: relative;
        padding-bottom: 60px;
    }
    .areas__list {
        flex-wrap: nowrap;
        gap:0;
    }
    .feedback__qr-image-text {
        display: block;
        color: #FFF;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }
    .feedback__qr {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }
    .feedback__qr-list {
        width: 100%;
        gap:4px;
    }
    .feedback__qr-item {
        width: calc(50% - 2px);
    }
    .feedback__qr-image a{
        padding: 8px;
        display: flex;
        justify-content: center;
        flex-wrap: nowrap;
        gap:8px;
        align-items: center;
        color:#fff;
    }
    .feedback__qr-image--small {
        width: 32px;
        height: 32px;
        border:solid 1px #fff;
        border-radius: 50%;
        overflow: hidden;
    }
    .feedback__qr-image--small img {
        scale: 1.2;
    }
    .feedback__qr-image--whatsapp {
        border-radius: 99px;
        background: #33D951;
    }
    .feedback__qr-image--tg {
        border-radius: 99px;
        background: #27A6E5;
    }
    .company .section__description{
        display: none;
    }
    .video__file {
        border-radius: 24px;
    }
    .video__play {
        width: 64px;
        height: 64px;
        padding: 18.285px 14.286px 18.286px 22.285px;
    }
    .video__play svg {
        width: 28px!important;
        height: 28px!important;
    }
    .solutions--page .solutions__list {
        gap:0;
    }
    .cases--kyc .cases__wrapper {
        overflow: visible;
    }
    .cases--kyc .cases__list {
        gap: 0;
    }
    .cases--kyc .cases__item--gray {
        display: none;
    }
    .cases--kyc .cases__content {
        padding-bottom: 60px;
    }
    .tarifs__item {
        padding: 16px;
    }
	.cards__list {
		gap:0;
	}
    .tab-content-swiper {
        height: 640px;
        padding-bottom: 40px;
    }
    .tab__content-wrapper {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    .tab__content-image {
        flex-shrink: 0;
    }
    .tab__content-info {
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .tab__content-text {
        flex: 1;
    }
    .tab__content-action {
        margin-top: auto;
    }
    .company {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .solutions__item--image {
        display: none;
    }
    .cases--kyt .cases__actions {
        margin-top: 54px;
    }
    .examples .swiper-pagination {
        display: block;
    }
    .reasons__wrapper {
        position: relative;
        padding-bottom: 40px;
    }
    .reasons__list {
        flex-wrap: nowrap;
        gap:0;
    }
    .reasons .swiper-pagination {
        display: block;
    }
    .reasons__item--image {
        display: none;
    }
    .cards--four .cards__list {
        flex-wrap: nowrap;
        gap:0;
    }
    .cards--four .cards__item {
        height: 200px;
    }
    .section__description br {
        display: none;
    }
    .cards--four .cards__content {
        position: relative;
    }
    .cards--four .cards__content:has(.swiper-pagination) {
        padding-bottom: 40px;
    }
    .cards--four .cards__content .swiper-pagination {
        bottom: 0;
    }
    .industries--four .industries__item {
        height: 260px;
    }
    .industries--four .industries__item--image {
        display: none;
    }
    .works__slider .swiper-pagination {
        display: block;
    }
    .works__list {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap:0;
    }
    .works__wrapper {
        padding-bottom: 40px;
        position: relative;
    }
    .features__list {
        flex-direction: column;
    }
    .features__item {
        width: 100%;
    }
    .cookie-banner {
        width: calc(100% - 32px);
        right: 16px;
        bottom: 16px;
    }
    .cookie-banner__title {
        font-size: 22px;
    }
    .cookie-banner__text {
        font-size: 14px;
    }
    .cookie-banner__close {
        font-size: 14px;
    }
    .cards-kyb.cards--four .cards__item {
        height: 250px;
    }
    .cases--kyb .cases__item {
        height: 300px;
    }
    .cases--kyb .cases__wrapper {
        padding-bottom: 40px;
    }
    .stages__list--five .stages__item,
    .stages__list--five .stages__item:nth-of-type(4),
    .stages__list--five .stages__item:nth-of-type(5) {
        width: 100%;
    }
    .stages__list--five .stages__item:nth-of-type(2)::before,
    .stages__list--five .stages__item:nth-of-type(4)::before {
        content: '';
        display: block;
        position: absolute;
        top: 31px;
        left: -100%;
        width: calc(100% + 20px);
        height: 2px;
        background-image: repeating-linear-gradient(to right, rgba(241, 75, 19, 0.20), rgba(241, 75, 19, 0.20) 8px, transparent 8px, transparent 16px);
        z-index: 1;
    }
    .stages__list--five .stages__item:nth-of-type(3)::after {
        width: calc(100% + 64px);
    }
    .stages__item:last-of-type::before {
        display: block;
    }
    .check__wrapper {
        padding-bottom: 40px;
        overflow: hidden;
    }
    .check__list {
        gap:0;
        flex-wrap: nowrap;
    }
    .check__item-image {
        display: none;
    }   
    .check .swiper-pagination {
        display: block;
    }
    .articles__item {
        padding: 16px;
    }
    .articles__item-title {
        font-size: 16px;
    }
    .articles__item {
        position: relative;
        border-radius: 20px;
        height: auto;
        
    }
    .articles__item-info {
        gap:24px;
    }
    .articles__item-image,
    .articles__item--small .articles__item-image {
        width: 64px;
        height: 64px;
        aspect-ratio: 1/1;
        position: absolute;
        bottom: 16px;
        right: 16px;
    }
    .articles__item-info,
    .articles__item--small .articles__item-info {
        width: 100%;
    }
    .articles__item-image img {
        border-radius: 12px;
    }
    .articles__item-btn {
        align-self: flex-start;
    }
    
    .small-table table,
    .small-table tbody,
    .small-table tr,
    .small-table td {
        display: block;
        width: 100%;
    }

    .small-table tr {
        margin-bottom: 8px;
        border: 1px solid rgba(0, 0, 0, 0.10);
    }
    .small-table table {
        border:none;
        border-radius:unset;
    }
    .small-table table td, 
    .small-table table th {
        border: none;
    }
    .small-table table td:first-of-type {
        background: rgba(46, 46, 46, 0.05);
    }
    .cards-video .cards__list {
        flex-wrap: nowrap;
        gap:0;
    }
    .cards-video .cards__content {
        padding-bottom: 40px;
    }
    .cards-video__video .video__file {
        border-radius: 32px;
    }
    .cards-video__video .video__play {
        width: 64px;
        height: 64px;
        padding: 18.285px 14.286px 18.286px 22.285px;
    }
    .cards-video__video {
        gap: 24px;
    }
    .solutions--page .solutions__item.solutions__item--picture {
        display: none;
    }
    .cards-video__cards {
        overflow: hidden;
    }
    .works--gray .works__item--image {
        display: none;
    }
    .works__content {
        overflow: hidden;
    }
    .box__item-row {
        padding-bottom: 40px;
        position: relative;
        overflow: hidden;
    }
    .box__item-row .swiper-pagination {
        display: block;
    }
    .box__item-row-wrapper {
        gap:0;
    }
}
/* ========================================================================================================== */
@media (max-width: 575.98px) {
    .container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    .section {
        padding: 40px 0;
    }
    .section__description {
        margin-top: 24px;
    }
    .section__title-block {
        margin-bottom: 40px;
    }
    .section__title {
        font-weight: 600;
    }
    .section__actions {
        margin-top: 40px;
    }
    .btn {
        height: 53px;
    }
    .header__logo {
        min-width: 150px;
        width: 150px;
    }
    .hero {
        background: 
        linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
        linear-gradient(162deg, rgba(255, 255, 255, 0.00) 58.88%, #FFF 90.71%), linear-gradient(344deg, rgba(255, 255, 255, 0.00) 51.4%, #FFF 67.8%), 
        url('../img/main_bg_small.jpg') center 320px / 100% 80% no-repeat, #FFF;
        padding-top: 120px;
    }
    .hero__kyc {
        background:
        linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)),
        linear-gradient(162deg, rgba(255, 255, 255, 0.00) 58.88%, #FFF 90.71%),
        linear-gradient(344deg, rgba(255, 255, 255, 0.00) 51.4%, #FFF 67.8%), 
        url('../img/kyc_main.webp') center 320px / 273% 69% no-repeat, #FFF;
    }
    .hero__kyt {
        background:
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        linear-gradient(171deg, rgba(255, 255, 255, 0) 68.36%, #FFF 99.65%),
        linear-gradient(354deg, rgba(255, 255, 255, 0) 41.89%, #FFF 75.11%),
        url('../img/hero_kyt.jpg') 48% 219px / 144% 73% no-repeat, #FFF;        
    }
    .hero__aml {
        background: 
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        linear-gradient(171deg, rgba(255, 255, 255, 0.20) 68.36%, #FFF 86.11%), 
        linear-gradient(354deg, rgba(255, 255, 255, 0.00) 41.89%, #FFF 59.94%), 
        url('../img/hero_aml.jpg') -150px 360px / 156.449% 69.566% no-repeat, #FFF;      
    }
    .hero__kyb {
        background: 
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        linear-gradient(171deg, rgba(255, 255, 255, 0.20) 68.36%, #FFF 86.11%), 
        linear-gradient(354deg, rgba(255, 255, 255, 0.00) 41.89%, #FFF 59.94%), 
        url('../img/hero_kyb.jpg') -150px 360px / 156.449% 69.566% no-repeat, #FFF;      
    }
    .hero__liveness {
            background:
            linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), linear-gradient(164deg, rgba(255, 255, 255, 0) 70.36%, #FFF 88.65%), linear-gradient(343deg, rgba(255, 255, 255, 0) 29.89%, #FFF 45%),
            url("../img/hero_liveness.jpg") 91% 496px / 179% 57% no-repeat, #FFF;
    }
    .hero__slide {
        padding: 30px;
        height: 180px;
        border-radius: 30px;
    }
    .hero__slide-title {
        font-size: 22px;
    }
    .hero__slide-description {
        font-size: 18px;
    }
    .hero__content-subtitle {
        margin-bottom: 20px;
    }
    .hero__bottom {
        font-size: 14px;
    }
    .stats__content-link {
        width: 100%;
        justify-content: space-between;
    }
    .profit__content {
        gap:20px;
    }
    .profit__cards {
        gap:16px;
    }
    .profit__card {
        padding: 20px;
        border-radius: 24px;
    }
    .profit__image {
        padding: 16px;
    }
    .profit__image-text {
        
    }
    .section__actions .btn {
        margin: 0 auto;
    }
    .profit__image {
        border-radius: 30px;
    }
    .industries__item {
        height: 380px;
    }
    .mobile-form {
        display: block;
        background: #F5F5F7;
    }
    .tab__content-action .btn {
        width: 100%;
        padding-top: 19px;
        padding-bottom: 18px;
    }
    .tabs__buttons {
        margin-bottom: 40px;
    }
    .tab__content-info {
        margin-top: 0;
    }
    .tab__content-image {
        height: 300px;
    }
    .tab__content-image img {
        height: 100%;
        object-fit: cover;
    }
    .services {
        padding-bottom: 0;
    }
    .services__content .swiper-button-prev,
    .services__content .swiper-button-next {
        display: flex;
        bottom: -60px;
        right: 50%;        
    }
    .swiper-button-prev {
        transform: translateX(calc(50% - 30px));
    }
    .swiper-button-next {
        transform: translateX(calc(50% + 30px));
    }
    .about__content-action .btn {
        width: 100%;
        max-width: unset;
    }
    .about__wrapper {
        padding-top: 64px;
        position: relative;
    }
    .about__image {
        height: 320px;
        border-radius: 20px;
    }
    .about__content-title {
        position: absolute;
        top:0;
        left:0;
    }
    .stats__content-action {
        margin-top: 10px;
    }
    .mobile-form__form .btn--submit {
        width: 100%;
        max-width: unset;
        margin-top: 16px;
    }

    .benefits__item-content {
        position: relative;
    }
    .benefits__item-count {
        position: absolute;
        top:0;
        right: 0;
        font-size: 45px;
    }
    .benefits__item-title {
        padding-right: 56px;
    }
    .benefits__item--mobile .benefits__item-image {
        height: 280px;
    }
    .trust__info-image {
        height: 280px;
    }
    .trust__info-text {
        gap:12px;
    }
    .trust__wrapper {
        padding-top: 60px;
        position: relative;
    }
    .trust__info-title {
        position: absolute;
        top:0;
    }
    .trust__info-actions {
        flex-direction: column;
        align-items: center;
    }
    .benefits__item-title {
        font-weight: 500;
    }
    .cases {
        background-color: #fff;
    }
    .cases--kyt {
        background: #F5F5F7;
    }
    .cases__item .cases__item-inner,
    .cases__info{
        border: 1px solid rgba(221, 221, 221, 0.60);
    }
    .cases__info {
        margin-top: 54px;
    }
    .cases__item--orange .cases__item-inner,
    .cases__item--gray  .cases__item-inner {
        border:none;
    }
    .cases__item-title {
        font-weight: 500;
    }
    .cases__info {
        padding: 28px 44px;
        text-align: left;
        margin-top: 54px;
    }
    .reviews__item {
        gap:24px;
        padding: 16px;
    }
    .reviews__item-image {
        width: 64px;
        height: 64px;
    }
    .reviews__item-spec {
        font-weight: 500;
        line-height: normal;
        font-size: 14px;
    }
    .reviews__item-text {
        font-size: 14px;
    }
    .reviews__item-author {
        align-items: center;
        gap:16px;
    }
    .footer {
        padding-top: 30px;
        padding-bottom: 25px;
    }    
    .faq__item {
        padding: 16px;
        border-radius: 16px;
    }
    .faq__item-question {
        color:#4E4E4E;
        font-weight: 500;
        padding-right: 30px;
    }
    .faq__item-question::after {
        width: 24px;
        height: 24px;
        top:50%;
        transform: translateY(-50%);
    }
    .faq__item-question {
        font-size: 16px;
        font-weight: 500;
    }
    .faq__item-answer {
        font-size: 14px;
    }
    .faq__content-action {
        margin-top: 24px;
    }
    .footer__bottom {
        padding-bottom: 0;
    }
    .footer__top-nav-title {
        font-size: 20px;
    }
    .footer__top-menu ul li a {
        font-size: 14px;
    }
    .footer {
        border-radius: 24px 24px 0 0;
    }
    .feedback__qr-subtitle {
        font-size: 24px;
    }
    .faq__content-subtitle {
        font-size: 16px;
        margin-top: 16px;
        margin-bottom: 8px;
    }
    .tab-content-swiper {
        height: 680px;
    }
    .company {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .cookie-banner {
        padding: 12px;
    }
    .cookie-banner__title {
        font-size: 16px;
    }
    .cookie-banner__text br {
        display: none;
    }
    .cookie-banner__close {
        height: auto;
    }
    .stages__list::before, .stages__list--five .stages__item::before,
    .stages__list--five .stages__item:nth-of-type(2)::before, .stages__list--five .stages__item:nth-of-type(4)::before {
        display: none;
    }
    .stages__item-num {
        margin-left: 0;
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    .stages__list {
        gap:18px;
    }
    .stages__item {
        gap:18px;
    }
    .stages__item::after {
        width: calc(100% + 64px);
        left: 0;
        top:28px;
    }
    .stages__list--five .stages__item::after, .stages__list--five .stages__item:nth-of-type(3)::after {
        width: calc(100% + 64px);
    }
    .stages__item-card {
        padding: 16px;
    }
    .stages__item-title {
        font-size: 20px;
    }
    .stages__item-description {
        font-size: 14px;
    }
    .stages__list--five .stages__item:last-of-type::after {
        left: 0;
        width: calc(100% - 8px);
    }
    .stages__list--five .stages__item:last-of-type::before {
        display: block;
        top:28px;
    }
    .cases--kyb .cases__item {
        height: auto;
    }
    .cases__item-front, .cases__item-back {
        padding: 16px;
    }
    .box__item-title {
        font-size: 20px;
    }
    .box__item-item {
        font-size: 14px;
        padding: 12px;
    }
    .box__item--outline {
        font-size: 14px;
    }
    .box__item-content ul li {
        font-size: 12px;
    }
    .boxes__list {
        gap:8px;
    }
}
/* ========================================================================================================== */
@media (max-width: 478.98px) {
    /* .section {
        padding: 40px 0;
    } */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    .section__title {
        font-size: 24px;
    }
    .section__description {
        font-size: 14px;
    }
    .btn {
        max-width: unset;
        width: 100%;
        font-size: 16px;
    }
    .header__action--mobile .btn {
        max-width: unset;
    }
    .lang-switch {
        height: 32px;
        padding: 2px;
    }
    .lang-switch .lang-item {
        width: 28px;
        height: 28px;
        font-size: 14px;
        line-height: 16px;
    }
    .hero {
        background: 
        linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
        linear-gradient(162deg, rgba(255, 255, 255, 0.00) 58.88%, #FFF 90.71%), linear-gradient(344deg, rgba(255, 255, 255, 0.00) 51.4%, #FFF 67.8%), 
        url('../img/main_bg_small.jpg') center 400px / 100% 70% no-repeat,
        #FFF;
    }
    .hero__kyc {
        background:
        linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)),
        linear-gradient(162deg, rgba(255, 255, 255, 0.00) 58.88%, #FFF 90.71%),
        linear-gradient(344deg, rgba(255, 255, 255, 0.00) 51.4%, #FFF 67.8%), 
        url('../img/kyc_main.webp') center 320px / 273% 69% no-repeat, #FFF;
    }
    .hero__kyt {
        background: 
        linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), 
        linear-gradient(171deg, rgba(255, 255, 255, 0) 68.36%, #FFF 99.65%), 
        linear-gradient(354deg, rgba(255, 255, 255, 0) 41.89%, #FFF 75.11%), 
        url('../img/hero_kyt.jpg') 48% 219px / 180% 73% no-repeat, #FFF;
    }
    .hero__aml {
        background: 
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        linear-gradient(171deg, rgba(255, 255, 255, 0.20) 68.36%, #FFF 86.11%), 
        linear-gradient(354deg, rgba(255, 255, 255, 0.00) 41.89%, #FFF 59.94%), 
        url('../img/hero_aml.jpg') -180px 320px / 190% 70% no-repeat, #FFF;      
    }
    .hero__kyb {
        background: 
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        linear-gradient(171deg, rgba(255, 255, 255, 0.20) 68.36%, #FFF 86.11%), 
        linear-gradient(354deg, rgba(255, 255, 255, 0.00) 41.89%, #FFF 59.94%), 
        url('../img/hero_kyb.jpg') -180px 320px / 190% 70% no-repeat, #FFF;      
    }
    .hero__liveness {
        background:
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        linear-gradient(164deg, rgba(255, 255, 255, 0) 70.36%, #FFF 88.65%),
        linear-gradient(343deg, rgba(255, 255, 255, 0) 31.89%, #FFF 46%),
        url("../img/hero_liveness.jpg") 89% 424px / 177% 53% no-repeat, #FFF;
        max-height: 900px;
    }
    .hero__content-logo {
        width: 109px;
    }
    .hero__content-description {
        font-size: 14px;
        font-weight: 500;
    }
    .main-title {
        font-size: 32px;
    }
    .hero__content-subtitle--product {
        font-size: 20px;
        font-weight: 600;
        line-height: normal;
    }
    .hero__slide {
        flex-direction: column;
        height: auto;
        padding: 16px;
        gap:16px;
        align-items: flex-start;
    }
    .hero__slide-content {
        gap:4px;
    }
    .hero__slide-title {
        font-size: 18px;
    }
    .hero__slide-description {
        font-size: 14px;
    }
    .profit__content {
        gap:8px;
        flex-direction: column;
    }
    .profit__image {
        border-radius: 20px;
        height: 200px;
    }
    .profit__image-text {
        border-radius: 12px;
        left: 16px;
        bottom: 16px;
        font-size: 16px;
    }
    .profit__cards {
        gap:8px;
    }
    .profit__card {
        height: 110px;
        width: 100%;
        border-radius: 20px;
        padding: 16px;
        font-size: 16px;
    }
    .profit__card::after {
        top:16px;
        left:16px;
        height: 32px;
        width: 32px;
        background-size: cover;
    }
    .tab-item {
        min-width: unset;
        padding: 14px 20px;
    }
    .tab__content-image {
        height: 200px;
    }
    .benefits__item-item::after {
        top: -3px;
    }
    .benefits__item-count {
        font-size: 48px;
    }
    .benefits__item--big:last-of-type {
        padding: 24px;
    }
    .benefits__item--mobile .benefits__item-image {
        height: 220px;
    }
    .trust__info-image {
        height: 240px;
    }
    .trust__info-actions .btn {
        width: 100%;
    }
    .cases__actions .btn,
    .cases__actions .btn-outline{
        width: 100%;
        max-width: unset;
    }
    .reviews__item-author {
        align-items: center;
    }
    .reviews__item-image {
        margin-top: 0;
        width: 100px;
        height: 100px;
    }
    .blog__action .btn {
        max-width: unset;
    }
    .section__actions {
        gap:8px;
        margin-top: 24px;
    }
    .feedback__form {
        gap:8px;
    }
    .feedback__form .btn--submit {
        margin-top: 16px;
    }
    .faq__content-link {
        width: 100%;
        max-width: unset;
        justify-content: space-between;
        padding: 16px 24px;
    }
    .steps__list {
        gap:18px;
    }
    .steps__item {
        gap: 18px;
    }
    .steps__item-card {
        padding: 16px;
    }
    .steps__item-num {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    .steps__item::after {
        top:28px;
        left: 64px;
    }
    .steps__item:last-of-type::before {
        top:28px;
    }
    .feedback__description {
        font-size: 14px;
    }
    .company__item {
        height: 100px;
        border-radius: 20px;
    }
    .cases--kyc .cases__item-title {
        font-size: 24px;
    }
    .tarifs__item-title {
        font-size: 22px;
    }
    .tarifs__item-text {
        font-size: 14px;
    }
    .tarifs__item-price {
        font-size: 28px;
    }
    .tab-content-swiper {
        height: 620px;
    }
    .reasons__item-title {
        font-size: 22px;
    }
    .reasons__item-description {
        font-size: 14px;
    }
    .calc__subtitle {
        font-size: 18px;
    }
    .calc__text:before {
        width: 18px;
        height: 18px;
    }
    .calc__text {
        font-size: 14px;
        padding-left: 32px;
    }
    .calc__range-min,
    .calc__range-max,
    .calc__range-value  {
        font-size: 18px;
    }
    .calc+.feedback {
        padding-top: 8px;
    }
    .calc__actions .calc__subtitle {

    }
    .check .section__subtitle {
        font-size: 18px;
        margin-top: 24px;
    }
    /* .check .section__title-block {
        margin-bottom: 8px;
    } */
    .stories__item-title {
        font-size: 20px;
    }
    .stories__item-text {
        font-size: 14px;
    }
    .stories__item-author-name {
        font-size: 18px;
    }
    .solutions--small-title .solutions__item-title{
        font-size: 20px;
    }
    .page__content p, .page__content table, .page__content ul {
        font-size: 14px;
    }
    .small-table table td, .small-table table th,
    .wp-block-table table td, .wp-block-table table th {
        padding: 12px;
    }
    .page__content .ol-1lv {
        font-size: 18px;
        margin-bottom: 0;
    }
    .ol-1lv+.ol-2lv {
        margin-top: 12px;
    }
    .page__content ul {
        margin-top: 24px;
        margin-bottom: 24px;
    }
    .industries--liveness .industries__item-link {
        width: 32px;
        height: 32px;
    }
    .footer__top {
        padding-top: 120px;
    }
    .footer__logo--partners {
        right: unset;
        top: unset;
        left: 0;
        top: 60px;
    }
}
/* ========================================================================================================== */
@media (max-width: 419.98px) {
    .section__title-block {
        margin-bottom: 24px;
    }
    .section__description {
        margin-top: 8px;
    }
    .hero {
        background: 
        linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)),
        linear-gradient(162deg, rgba(255, 255, 255, 0.00) 58.88%, #FFF 90.71%), linear-gradient(344deg, rgba(255, 255, 255, 0.00) 51.4%, #FFF 67.8%), 
        url('../img/main_bg_small.jpg') center 300px / 110% 70% no-repeat,
        #FFF;
        padding-top: 72px;
    }
    .hero__kyc {
        background:
        linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)),
        linear-gradient(162deg, rgba(255, 255, 255, 0.00) 58.88%, #FFF 90.71%),
        linear-gradient(344deg, rgba(255, 255, 255, 0.00) 51.4%, #FFF 67.8%), 
        url('../img/kyc_main.webp') center 250px / 273% 69% no-repeat, #FFF;
    }
    .hero__kyt {
        background: 
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), 
        linear-gradient(171deg, rgba(255, 255, 255, 0) 68.36%, #FFF 99.65%), 
        linear-gradient(354deg, rgba(255, 255, 255, 0) 41.89%, #FFF 75.11%), 
        url('../img/hero_kyt.jpg') -220px 332px / 225% 62% no-repeat, #FFF;
    }
    .hero__aml {
        background: 
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        linear-gradient(171deg, rgba(255, 255, 255, 0.20) 68.36%, #FFF 86.11%), 
        linear-gradient(354deg, rgba(255, 255, 255, 0.00) 41.89%, #FFF 59.94%), 
        url('../img/hero_aml.jpg') -130px 330px / 170% 60% no-repeat, #FFF;      
    }
    .hero__kyb {
        background: 
        linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)),
        linear-gradient(171deg, rgba(255, 255, 255, 0.20) 68.36%, #FFF 86.11%), 
        linear-gradient(354deg, rgba(255, 255, 255, 0.00) 41.89%, #FFF 59.94%), 
        url('../img/hero_kyb.jpg') -130px 330px / 170% 60% no-repeat, #FFF;      
    }
    .hero__liveness {
        background:
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        linear-gradient(164deg, rgba(255, 255, 255, 0) 70.36%, #FFF 88.65%),
        linear-gradient(343deg, rgba(255, 255, 255, 0) 31.89%, #FFF 46%),
        url("../img/hero_liveness.jpg") 87% 424px / 187% 52% no-repeat, #FFF;
    }
    .hero__kyt .main-title {
        margin-top: 10px;
    }
    .hero__content-subtitle {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .hero__kyt .hero__content-subtitle {
        font-size: 20px;
        font-weight: 600;
    }
    .hero__action-text {
        text-align: center;
    }
    .hero__content-image {
        width: 54px;
        height: 54px;
    }
    .hero__slider {
        margin-top: 16px;
        padding-bottom: 40px;
    }
    .hero .swiper-pagination {
        bottom: 0;
    }
    .about__image {
        height: 220px;
        border-radius: 20px;
    }
    .benefits__item-title {
        margin-bottom: 20px;
    }
    .benefits__item-item {
        margin-bottom: 20px;
    }
    .cases__item-icon {
        width: 30px;
        height: 30px;
    }
    .reviews__item-image {
        width: 80px;
        height: 80px;
    }
    input[type="checkbox"] {
        margin-top: 1px;
    }
    .steps__item-title {
        font-size: 20px;
    }
    .steps__item-description {
        font-size: 14px;
    }
    .tabs__buttons {
        margin-bottom: 24px;
    }
    .tab-item.swiper-slide {
        padding: 10px 14px;
        height: 40px;
        font-size: 14px !important;
    }
    .areas__item-title {
        font-size: 20px;
    }
    .hero__kyc .main-title {
        font-size: 28px;
    }
    .tab-content-swiper {
        height: 600px;
    }
    .section__subtitle {
        font-size: 18px;
    }
    .architect__item-title {
        font-size: 20px;
    }
    .architect .section__row {
        gap:8px;
    }
    .footer__logo--sk {
        right: unset;
        top: 55px;
        left: 0;
    }
    .footer__top {
        padding-top: 110px;
    }
    .cards--four .cards__item-description {
        font-size: 14px;
    }
    .solutions-aml .solutions__item-title {
        font-size: 22px;
    }
    .solutions-aml .solutions__item-description {
        font-size: 14px;
    }
    .solutions__content {
        padding-bottom: 47px;
    }
    .industries__item-title {
        font-size: 20px;
    }
    .industries--four .industries__item-title {
        font-size: 20px;
    }
    .trust+.company {
        padding-top: 0;
        padding-bottom: 0;
    }
    .works__item-content {
        font-size: 14px;
    }
    .company__swiper--before--text {
        padding-bottom: 24px;
    }
    .company__text {
        font-size: 14px;
    }
    .features+.company {
        padding-top: 16px;
    }
    .features--before-company {
        padding-bottom: 8px;
    }
    .cards__item-title {
        font-size: 20px;
    }
    .cards-video__video .video__file {
        border-radius: 24px;
    }
    .feedback__section-small {
        font-size: 24px;
    }
}
/* ========================================================================================================== */



/* ===================================== Запись блога НАЧАЛО=========================================== */
/* Узкий контейнер для основного текста статьи */

.post__content .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.post__container {
    width: 100%;
    max-width: 1010px;
    padding-left: 15px;
    padding-right: 15px;
    margin:0 auto;
    display: flex;
    flex-direction: column;
    gap:24px;
}
.post__content>*{
    max-width: 1010px;
    padding-left: 15px;
    padding-right: 15px;
    margin:0 auto
}
.post__content .wp-block-image  {
    max-width: 1560px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}




.post__article {
    display: flex;
    flex-direction: column;
    gap:48px;
}

.post__header {
    display: flex;
    flex-direction: column;
    gap:24px;
}
.breadcrumbs__block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.breadcrumbs {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-self: start;
    column-gap: 4px;
    row-gap: 8px;
    flex-shrink: 1;      /* <-- может сжиматься */
    flex-grow: 1;
    min-width: 0;
}
.breadcrumbs__link {
    flex-shrink: 0;
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-weight: 500;
    line-height: 112.5%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.breadcrumbs__link:hover {
    color: #FE7338;
}
.breadcrumbs__sep {
    display: block;
    width: 24px;
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-weight: 500;
    line-height: 112.5%;
    text-align: center;
    flex-shrink: 0;
}
.breadcrumbs__current {
    overflow: hidden;
    color: rgba(46, 46, 46, 0.50);
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 500;
    line-height: 112.5%;
    white-space: nowrap;
    display: inline-block;
    max-width: 500px;
    vertical-align: bottom;
    flex-shrink: 1;      /* <-- разрешаем сжимать */
    min-width: 0;        /* <-- без этого не работает обрезка */
    max-width: 100%;
    display: inline-block;
}
.breadcrumbs__back {

}
.breadcrumbs__back-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.breadcrumbs__back-link svg {

}
.breadcrumbs__back-link span {
    color: #F14B13;
    font-size: 16px;
    font-weight: 500;
    line-height: 112.5%;
}
.breadcrumbs__link--mobile {
    display: none;
}
@media (max-width: 767.98px) {
  .breadcrumbs > * {
    display: none;
  }

  .breadcrumbs > .breadcrumbs__link:first-of-type {
    display: inline;
  }

  .breadcrumbs > .breadcrumbs__link:first-of-type + .breadcrumbs__sep {
    display: inline;
  }

  .breadcrumbs > .breadcrumbs__sep:nth-last-child(2) {
    display: inline;
  }

  .breadcrumbs > .breadcrumbs__current:last-child {
    display: inline;
  }

  .breadcrumbs__link--mobile {
    display: block;
  }
}


.post__title {
    font-size: 40px;
}

.post__meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.post__meta-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap:28px;
    color: #2E2E2E;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 157.143%;
}
.post__views,
.post__likes {
    display: flex;
    align-items: center;
    gap:8px;
}
.post__likes {

}
.post__meta-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap:12px;
}
.post__author,
.post__date {
    color: rgba(46, 46, 46, 0.50);
    text-align: right;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}
/* .post__author br {
    display: none;
} */
.post__author-name {
    font-weight: 700;
}
.post__author-position {
    /* text-transform: lowercase; */
}
.post__date {

}
.post__meta-separator {
    display: inline-block;
    width: 1px;
    height: auto;
    min-width: 1px;
    background: #FE7338;
    align-self: stretch;
}

.post__image {
    height: 500px;
}
.post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}
.post__lead {
    color: #2E2E2E;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
    margin-top: 24px;
    text-align: left;
}
.post__content .wp-block-image {
    margin-bottom: 40px;
    margin-top: 12px;
}
.post__content p {
    margin-bottom: 28px;
    color: #2E2E2E;
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
    text-align: left;
}
.post__content p a{
    text-decoration: underline;
    color: #F14B13;
}
.post__content ul,
.post__content ol {
    color: #2E2E2E;
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
    margin-bottom: 8px;
}
.post__content ol li,
.post__content ul li {
    margin-bottom: 20px;
}
.post__content h2 {
    margin-top: 48px;
    margin-bottom: 28px;
    color: #2E2E2E;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
}
.post__content h3 {
    margin-top: 32px;
    margin-bottom: 24px;
    color: #2E2E2E;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
}
.post__content h4 {
    margin-bottom: 20px;
    color: #2E2E2E;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}
.post__content ol {
    counter-reset: nv-counter;
    list-style: none;
}

.post__content ol li {
    counter-increment: nv-counter;
    position: relative;
    display: block;
    padding-left: 32px;
}

.post__content ol li::before {
    content: counter(nv-counter);

    position: absolute;
    left:0;
    top:3px;

    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;

    border-radius: 99px;
    background: rgba(241, 75, 19, 0.10);
    color: #F14B13;

    font-size: 18px;
    font-weight: 600;

    color: #F14B13;
    font-size: 16px;
    font-weight: 500;
    line-height: 112.5%;
    line-height: 1.4;
}
.post__content ul {
    list-style: none;
}
.post__content ul li {
    padding-left: 32px;
    position: relative;
}
.post__content ul li::before {
    content: '';
    position: absolute;
    left: 10px;           /* ← сдвигаешь маркер куда хочешь */
    top: 0.6em;

    width: 8px;
    height: 8px;
    background: #2e2e2e;
    border-radius: 50%;
}
.post__content .toc-block ol li::before {
    display: none;
}

.post__footer {}
.post__footer-meta {
    display: flex;
    justify-content: space-between;
}
.post-meta__like {
    display: flex;
    align-items: center;
    gap:8px;
    background-color: transparent;
    padding: 12px 20px;
    border-radius: 96px;
    border: 1px solid #FE7338;
    backdrop-filter: blur(5px);
}
.post-meta__like svg path {
    fill:#FE7338;
}
.post-meta__like:hover svg path {
    fill:#fff;
}
.post-meta__like:hover {
    border-radius: 96px;
    border: 1px solid #FFF;
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
    backdrop-filter: blur(5px);
}
.post-meta__like:hover .post-meta__like-label {
    color:#fff;
}
.post-meta__like.active:hover{
    background: linear-gradient(180deg, #FE7338 0%, #EA3700 100%);
    backdrop-filter: blur(5px);
}
.post-meta__like.active:hover svg path {
    fill:#fff;
}

.post-meta {}
.post-meta__like {}
.post-meta__like-icon {}
.post-meta__like-label {
    color: #F14B13;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
}
.post-meta__stats {
    display: flex;
    gap:28px;
    justify-content: flex-end;
}
.post-meta__stat {}
.post-meta__stat--views {}
.post-meta__stat--comments {}
.post-meta__stat-icon {}
.post-meta__stat-value {}

.post__footer-author {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-radius: 24px;
    background: rgba(46, 46, 46, 0.03);
    padding: 24px;
}

.post__footer-author:hover {
    background: rgba(46, 46, 46, 0.10);
}
.author-card {}
.author-card--clickable {}
.author-card__body {
    display: flex;
    justify-content: flex-start;
    gap:16px;
    align-items: flex-start;

}
.author-card__avatar {
    width: 88px;
    height: 88px;
    border-radius: 16px;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.author-card__avatar-img {
    width: 100%;
    height: 100%;
}
.author-card__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:8px;
}
.author-card__label {
    color: #F14B13;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.author-card__name {
    color: #2E2E2E;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
}
.author-card__position {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.author-card__cta {}
.author-card__cta-icon {}

.post-meta__like.active {
    background: rgba(254, 115, 56, 0.10);
    backdrop-filter: blur(5px);
}
.post-meta__like.active svg path{
    fill:#FE7338
}
.not-like {
    display: block;
}
.like {
    display: none;
}
.post-meta__like.active .not-like {
    display: none;
}
.post-meta__like.active .like {
    display: block;
}



@media (max-width: 1599.98px) {
    .post__content .wp-block-image {
        max-width: 1310px;   
    }
}

@media (max-width: 1399.98px) {
    .post__content .wp-block-image {
        max-width: 1010px;   
    }
}

@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {
    .post__content .wp-block-image {
        max-width: 960px;   
    }
    .breadcrumbs__current {
        max-width: 250px;
    }
    .post {
        margin-top: 105px;
    }

}

@media (max-width: 767.98px) {
    .post__content .wp-block-image {
        max-width: 754px;   
    }
    .breadcrumbs__current {
        max-width: 250px;
    }
    .post__author br {
        display: block;
    }
    .post__meta-separator {
        height: 42px;
    }
    .breadcrumbs {
        flex-wrap: wrap;
    }
}

@media (max-width: 575.98px) {
    .post__content .wp-block-image {
        max-width: 540px;   
    }
    .post__title {
        font-size: 32px;
    }
    .breadcrumbs__current {
        max-width: 215px;
    }
    .post__meta {
        flex-direction: column-reverse;
        align-items: unset;
        gap:24px;
    }
    .post__image {
        height: 300px;
    }
    .post__content p {
        margin-bottom: 12px;
    }
}

@media (max-width: 478.98px) {
    .post__content .wp-block-image {
        max-width: 100%;   
    }
    .breadcrumbs__back {
        display: none;
    }
    .breadcrumbs__back {
        display: none;
    }
}

@media (max-width: 419.98px) {
    .post__title {
        font-size: 28px;
    }
}

/* ===================================== Запись блога КОНЕЦ=========================================== */


/* ===================================== Страница блога Начало=========================================== */


.page__title {

}
.page__title span {
    color: #F14B13;
}
.category__list {
    display: flex;
    justify-content: flex-start;
    gap:8px;
    flex-wrap: wrap;
}
.category__item {

}
a.category__item-link {
    display: block;
    color: #2E2E2E;
    padding: 8px 16px;
    border-radius: 99px;
    border: 1px solid rgba(46, 46, 46, 0.10);
    text-decoration: none;

}
.category__item-link:hover {
    border: 1px solid #FE7338;
}
.category__item-link.active {
    color: #F14B13;
    border: 1px solid #FE7338;
}
.blog-category__list{
    display: flex;
    flex-direction: column;
    gap:96px;
    padding-top: 96px;
}

.blog-category {
    display: flex;
    flex-direction: column;
    gap:24px;
}
.blog-category__title {
    color: #2E2E2E;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
}
.category__title {
    display: flex;
    gap:20px;
    justify-content: flex-start;
}
.blog-category__count {
    color: rgba(46, 46, 46, 0.30);
    font-size: 32px;
    font-weight: 600;
    line-height: 100%;
}
.category__title h1{
    color: #2E2E2E;
    font-family: Involve;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}
.blog-category__contenet {}

.blog-category .blog__list {
    display: flex;
    justify-content: flex-start;
    gap:16px;
    margin: 0;
}

.blog-category .blog__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap:16px;
    padding: 20px;
    width: calc(33.33% - 10.67px);
    height: auto;
    text-decoration: none;
}
.blog-category .blog__item-image {
    width: 100%;
    height: 220px;
    position: relative;
}
.blog__item-image img {
    border-radius: 16px;
    width: 100%;
}

.blog__item-meta {
    position: absolute;
    left:8px;
    bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: calc(100% - 16px);

}
.blog__item-meta svg path {
    fill: #2E2E2E;
}
.blog__item-meta-left {
    display: flex;
    gap:8px;
}
.blog__item-meta-right {}

.blog__item-views,
.blog__item-likes,
.blog__item-date {
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.60);
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(5px);
    color: #2E2E2E;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 171.429%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:8px;
    padding: 4px 12px;
}

.blog__item-views {}
.blog__item-views svg {}
.blog__item-views-count {}

.blog__item-likes {}
.blog__item-likes svg {}
.blog__item-likes-count {}

.blog__item-date {}

.blog__item-content {
    display: flex;
    flex-direction: column;
    gap:8px;
}

.blog__item-category {
    color: #F14B13;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 4px;
    text-decoration: none;
}
.blog__item-title {
    color: #2E2E2E;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 122.222%;
    text-decoration: none;
}
.blog__item-description {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    text-decoration: none;

    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}
.blog-category__action {

}
.blog-category__link {
    color: #2E2E2E!important;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2E2E2E;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    border-radius: 24px;
    background: rgba(46, 46, 46, 0.10);
    width: 100%;
    text-decoration: none!important;
}

.blog-category__link:hover {
    background: rgba(46, 46, 46, 0.20);
}

.wp-block-math {
    font-size: 46px;
}

/* STYLE 2 START */

.blog-category--style2 {

}

.blog-category--style2 .blog__item:first-of-type,
.blog-category--style2 .blog__item:nth-of-type(2) {
    width: calc(50% - 8px);
}
.blog-category--style2 .blog__item:first-of-type {
    background: #FE7338;
}
.blog-category--style2 .blog__item:nth-of-type(2) {

}
.blog-category--style2 .blog__item:first-of-type .blog__item-category,
.blog-category--style2 .blog__item:first-of-type .blog__item-title,
.blog-category--style2 .blog__item:first-of-type .blog__item-description {
    color:#fff;
}


/* STYLE 2 END */

/* STYLE 3 START */

.blog-category--style3 {

}

.blog-category--style3 .blog__item:first-of-type {
    width: 100%;
    position: relative;
    height: 600px;
}
.blog-category--style3 .blog__item:first-of-type .blog__item-image {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.blog-category--style3 .blog__item:first-of-type .blog__item-image::after {
    content: '';
    display: block;
    position: absolute;
    left:0;
    top:0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.70) 100%);
}
.blog-category--style3 .blog__item:first-of-type .blog__item-content {
    position: absolute;
    bottom: 72px;
    z-index: 2;
}
.blog-category--style3 .blog__item:first-of-type .blog__item-meta {
    bottom: 24px;
    left: 20px;
    width: calc(100% - 40px);
    z-index: 2;
}
.blog-category--style3 .blog__item:first-of-type .blog__item-meta .blog__item-views,
.blog-category--style3 .blog__item:first-of-type .blog__item-meta .blog__item-likes,
.blog-category--style3 .blog__item:first-of-type .blog__item-meta .blog__item-date{
    color:#fff;
}

.blog-category--style3 .blog__item:first-of-type .blog__item-meta svg path{
    fill:#fff;
}

.blog-category--style3 .blog__item:nth-child(n+2) .blog__item-description {
    max-height: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5; /* пример: 5 строк */
}


.blog-category--style3 .blog__item:nth-of-type(2) {

}

.blog-category--style3 .blog__item:first-of-type .blog__item-category,
.blog-category--style3 .blog__item:first-of-type .blog__item-title,
.blog-category--style3 .blog__item:first-of-type .blog__item-description {
    color:#fff;
}
.blog-category--style3 .blog__item-image {
    height: 160px;
}


/* STYLE 3 END */

.category-page {
    margin-top: 36px;
}
.category-page .blog-category {
    margin-top: 36px;
}


@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {
    
}

@media (max-width: 1199.98px) {
    .blog-category .blog__list .blog__item:nth-child(n+3){
        display: none;
    }
    .blog-category .blog__list .blog__item {
        width: calc(50% - 8px);
    }
    .blog-category--style3 .blog__list .blog__item {
        width: calc(33.33% - 10.67px);
    }
    .blog-category--style3 .blog__item:first-of-type {
        width: 100%;
    }
    .blog-category--style3 .blog__list .blog__item:nth-child(n+3){
        display: block;
    }
    
}

@media (max-width: 991.98px) {
    .category-page .category {
        display: none;
    }
    .content-category-page {
        margin-top: 140px;
    }

}

@media (max-width: 767.98px) {
    .blog-category .blog__list .blog__item:nth-child(n+2){
        display: none;
    }
    .blog-category .blog__list .blog__item {
        width: 100%;
    }
    .blog-category .blog__list {
        margin-bottom: 0;
    }

    .category__title {
        justify-content: space-between;
    }
    .blog-category__count {
        font-size: 20px;
    }
    .category__title h1{
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    
}

@media (max-width: 478.98px) {

}

@media (max-width: 419.98px) {

}

/* СТРАНИЦА АВТОРА НАЧАЛО */

.content-page-author {
    margin-top: 140px;
}

.author-page-wrapper {
    display: flex;
    flex-direction: column;
    gap:40px;
}

.authorpage__title-block {
    display: flex;
    flex-direction: column;
    gap:28px;
}

.authorpage__title-block .page__title {
    margin: 0;
}

.authorpage__subtitle {
    display: flex;
    gap:20px;
    justify-content: flex-start;
}

.authorpage__subtitle-name {
    color: #2E2E2E;
    font-size: 32px;
    font-weight: 600;
    line-height: 100%;
}

.authorpage__subtitle-postcount {
    color: rgba(46, 46, 46, 0.30);
    font-size: 32px;
    font-weight: 600;
    line-height: 100%;
}

.authorpage__block {
    display: flex;
    padding: 24px;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    border-radius: 24px;
    background: rgba(46, 46, 46, 0.03);
}

.authorpage__wrapper {
    display: flex;
    gap:16px;
}

.authorpage__image {
    width: 168px;
    height: 168px;
    aspect-ratio: 1/1;
}

.authorpage__image img {
    object-fit: cover;
    border-radius: 16px;
    overflow: hidden;
}

.authorpage__info {
    display: flex;
    flex-direction: column;

}

.authorpage__text {
    color: #F14B13;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
}

.authorpage__name {
    color: #2E2E2E;
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 4px;
}

.authorpage__job {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

.authorpage__description {
    color: rgba(46, 46, 46, 0.50);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {
    
}

@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {
    .authorpage__image {
        width: 230px;
        height: 230px;
    }
}

@media (max-width: 767.98px) {
    .authorpage__wrapper {
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    
}

@media (max-width: 478.98px) {

}

@media (max-width: 419.98px) {

}




/* СТРАНИЦА АВТОРА КОНЕЦ */

/* ===================================== Страница блога Конец=========================================== */

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

@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {
    
}

@media (max-width: 1199.98px) {
    .blog-category .blog__list .blog__item:nth-child(n+3) {
        display: flex;
    }
}

@media (max-width: 991.98px) {

}

@media (max-width: 767.98px) {

}

@media (max-width: 575.98px) {
    
}

@media (max-width: 478.98px) {

}

@media (max-width: 419.98px) {

}




/* MEMBERSHIP START */

.membership {}

.membership__wrapper {
    display: flex;
    gap:16px;
}

.membership__item {
    width: calc(50% - 8px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:48px;
    height: auto;
    border-radius: 24px;
    background: rgba(46, 46, 46, 0.03);
    min-height: 260px;
}

.membership__item-logo {
    max-width: 370px;
}

.membership__item-logo--skolkovo {
    max-width: 340px;
}

.membership__item-text {
    color: rgba(46, 46, 46, 0.80);
    font-family: Involve;
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}

@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {
    
}

@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {
    .membership__wrapper {
        flex-direction: column;
    }
    .membership__item {
        width: 100%;
    }
}

@media (max-width: 767.98px) {

}

@media (max-width: 575.98px) {

}

@media (max-width: 478.98px) {

}

@media (max-width: 419.98px) {

}

/* MEMBERSHIP END */

/* NVAVOUT START */

.main {
    margin-top: 77px;
}
.nvabout {
    padding: 80px 0;
}
.nvabout__wrapper {
    display: flex;
    flex-direction: column;
    gap:40px;
}
.nvabout__title {}
.nvabout__title h2 {
    font-size: 32px;
}
.nvabout__content {
    display: flex;
    gap:52px;
}
.nvabout__image {
    width: calc(50% - 26px);
    max-height: 648px;
}
.nvabout__image img {
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    overflow: hidden;
}
.nvabout__info {
    width: calc(50% - 26px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap:64px;
}
.nvabout__info-text {
    color: var(--Secondary-Black, #2E2E2E);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 155.556%;
    display: flex;
    flex-direction: column;
    gap:24px;
}
.nvabout__info-cards {
    display: flex;
    flex-wrap: wrap;
    gap:12px;
}
.nvabout__info-card {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 24px;
    background: var(--secondary-black-3, rgba(46, 46, 46, 0.03));
    width: calc(50% - 6px);
}
.nvabout__info-card-title {
    color: var(--Secondary-Black, #2E2E2E);
    font-family: Involve;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}
.nvabout__info-card-text {
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    font-family: Involve;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.btn2 {
    display: flex;
    padding: 12px 12px 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    background: var(--Main-Grad, linear-gradient(104deg, #FE7338 0%, #EA3700 100%));
    overflow: hidden;
    color: var(--Text-Primary, #FFF);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    width: fit-content;
    transition: all 0.1s ease-in-out;
    white-space: nowrap;
    flex-shrink: 0;
    height: 48px;
    border: none;
    min-width: 200px;
}
.btn2-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.btn2 svg{
    
}
.btn2:hover {
    opacity: 0.8;
}



.nvabout2 {
    padding: 80px 0;
}

.nvabout2__wrapper {
    display: flex;
    flex-direction: column;
    gap:40px;
}

.nvabout2__top {
    display: flex;
    gap:80px
}
.nvabout2__top-left {
    width: calc(40% - 40px);
    display: flex;
    flex-direction: column;
    gap:24px;
}
.nvabout2__top-title {
    font-size: 32px;
}

.nvabout2__top-right {
    width: calc(60% - 40px);
}
.nvabout2__top-text {
    color: var(--Secondary-Black, #2E2E2E);
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
}

.nvabout2__bottom {
    position: relative;
    height: 560px;
    width: 100%;
}
.nvabout2__bottom-image {
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom: 0;
    z-index: 0;
}
.nvabout2__bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 48px;
    overflow: hidden;
}
.nvabout2__bottom-content {
    position: absolute;
    z-index: 1;
    right: 16px;
    bottom: 64px;
    display: flex;
    width: 500px;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--Main-Grad, linear-gradient(104deg, #FE7338 0%, #EA3700 100%));
}
.nvabout2__bottom-title {
    color: var(--Secondary-White, #FFF);
    font-size: 60px;
    font-weight: 600;
    line-height: 100%;
}
.nvabout2__bottom-description {
    color: var(--Secondary-Light-gray, #F8F8F8);
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}
.nvabout2__bottom-content-line {
    position: relative;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.5);
    flex-shrink: 0;
    margin: 0;
    --line-progress: 0%;
}

.nvabout2__bottom-content-line::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: '';
  display: block;
  width: var(--line-progress);
  height: 4px;
  background-color: #fff;
  transition: width linear 5s;
}

.nvabout2__list {
    display: flex;
    flex-wrap: nowrap;
}

.nvabout2__slider {
    position: relative;
    width: 100%;
}

.nvabout2__slider-arrows {
    position: absolute;
    bottom: 300px;
    right: 32px;
    display: flex;
    gap: 8px;
    width: 88px;
    cursor: pointer;
    align-self: flex-end;
    z-index: 3;
}

.nvabout2__slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.nvabout2__slider-arrow:hover {
    border: 1px solid var(--Secondary-White, #FFF);
    background: rgba(255, 255, 255, 0.40);
}

.nvabout2__slider-arrow.swiper-button-disabled {
    opacity: 0.4;
    cursor: default;
    background: rgba(255, 255, 255, 0.05);
}





@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {
    
}

@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {
    .nvabout__content {
        flex-direction: column;
        gap:24px;
    }
    .nvabout__image,
    .nvabout__info {
        width: 100%;
    }
    .nvabout__image {
        max-height: unset;
    }
    .nvabout2__top {
        flex-direction: column;
        gap:20px;
    }
    .nvabout2__top-left,
    .nvabout2__top-right {
        width: 100%;
    }
    .nvabout2__top-left {
        flex-direction: row;
        gap:40px;
    }
    .nvabout2__bottom-content {
        display: flex;
        width: 320px;
        padding: 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        bottom: 16px;
        height: auto;
    }
    .nvabout2__bottom-image img {
        border-radius: 32px;
    }
}

@media (max-width: 767.98px) {
    .nvabout2__top {
        position: relative;
        padding-bottom: 80px;
    }
    .nvabout2__top-left .btn2 {
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .nvabout2__bottom-image {
        height: 580px;
    }
    .nvabout2__bottom-content {
        width: calc(100% - 32px);
    }
    
}

@media (max-width: 575.98px) {
    .nvabout,
    .nvabout2 {
        padding: 40px 0;
    }
    .nvabout__title h2 {
        font-size: 24px;
    }
    .nvabout__info-text {
        font-size: 16px;
    }
    .btn2 {
        font-size: 16px;
    }
    .nvabout2__top-text {
        font-size: 16px;
    }
}

@media (max-width: 478.98px) {
    .nvabout__info-text {
        font-size: 14px;
    }
    .nvabout__info-card {
        width: 100%;
    }
    .nvabout__info-card-text {
        font-size: 14px;
    }
    .nvabout2__top-text {
        font-size: 14px;
    }
}

@media (max-width: 419.98px) {

}

/* NVAVOUT END */

/* CALLBACK START */

.callback__wrapper {
    display: flex;
    flex-direction: column;
    gap:40px;
}
.callback__title {
    text-align: center;
}
.callback__description {
    text-align: center;
}
.callback .section__title-block {
    margin-bottom: 0;
}

.callback__content {
    padding: 28px;
    border-radius: 32px;
    background: var(--Secondary-White, #FFF);
    box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.20);
}
.callback__content-row {
    display: flex;
    gap:28px;
}
.callback__content-left {
    width: calc(65% - 29px);
}
.callback__line {
    background: rgba(46, 46, 46, 0.10);
    width: 1px;
    height: auto;
    flex-shrink: 0;
}
.callback__content-right {
    width: calc(35% - 28px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.callback__form { }
.callback__form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.callback__form-row {
    display: flex;
    gap:12px;
}
.callback__form-input {
    width: calc(50% - 6px);
    display: flex;
    flex-direction: column;
    gap:8px;
    position: relative;
}
.callback__form-input .input-form {
    padding: 12px 48px 12px 16px;
}
.callback__content-right .callback__form-input {
    align-self: flex-end;
    width: 100%;
    text-align: right;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
.callback__form-del {
    position: absolute;
    right: 16px;
    top:12px;
    z-index: 1;
    cursor: pointer;
}
.callback__form-textarea {
    display: flex;
    flex-direction: column;
    gap:8px;
    position: relative;
}
.input-textarea {
    padding: 12px 48px 16px 16px;
    border-radius: 16px;
    background: var(--secondary-black-3, rgba(46, 46, 46, 0.03));
    width: 100%;
    border:none;
    resize: none;
    height: 100px;
}
.text-message { }

.feedback__form-agree { }
.checkbox-wrapper { }
.feedback__form-label { }

.callback__form2 { }

.input-message {
    opacity: 0;
    display: flex;
    gap:8px;
    align-items: center;
    justify-content: flex-start;
    cursor: auto;
}
.input-message svg {
    flex-shrink: 0;
}
.input-message-text {
    color: var(--Tech-Error, #FF5A5F);
    font-size: 12px;
    font-weight: 500;
    line-height: 133.333%;
}

.callback__form .btn2 {
    align-self: flex-end;
}
.callback__form-agree {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap:8px;
}
.callback__form .checkbox-wrapper {
    justify-content: flex-start;
}
.callback__form-label a {
    color: var(--main-orange-50, rgba(241, 75, 19, 0.50));
    text-decoration: underline;
}

.input-form.no-valid,
.input-textarea.no-valid {
    background: var(--tech-error-10, rgba(255, 90, 95, 0.10));
}
.btn-callback--submit.disabled {
  opacity: 0.6;
  pointer-events: none;
  justify-content: space-between;
}




@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {
    
}

@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {
    .callback__content-row {
        flex-direction: column;
    }
    .callback__content-left,
    .callback__content-right,
    .callback__line {
        width: 100%;
    }
    .callback__content-right {
        gap:20px;
    }
    .callback__line {
        height: 1px;
    }
}

@media (max-width: 767.98px) {
    .callback__form-row {
        flex-direction: column;
    }
    .callback__form-input {
        width: 100%;
    }
    .input-textarea {
        height: 170px;
    }
}

@media (max-width: 575.98px) {
    .callback__content {
        padding: 16px;
    }
}

@media (max-width: 478.98px) {

}

@media (max-width: 419.98px) {

}


/* CALLBACK END */


/* NVCASES START */

.nvcases {}

.nvcases__wrapper {
    display: flex;
    flex-direction: column;
    gap:40px;
}

.nvcases__title-block {
    display: flex;
    flex-direction: column;
    gap:20px;
}

.nvcases__description {
    display: flex;
    gap:80px;
    align-items: flex-end;
}

.nvcases__description-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
}

.nvcases__description-action {}

.nvcases__content {}

.nvcases__list {
    display: flex;
    gap: 16px;
}

.nvcases__item {
    width: calc(33.33% - 10.67px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:49px;
    padding: 32px 24px;
    border-radius: 32px;
    border: 1px solid var(--secondary-black-10, rgba(46, 46, 46, 0.10));
    background: var(--secondary-black-3, rgba(46, 46, 46, 0.03));
}

.nvcases__item-logo {
    width: 106px;
}

.nvcases__item-info {
    display: flex;
    flex-direction: column;
    gap:36px;
}

.nvcases__item-row {
    display: flex;
    flex-direction: column;
    gap:8px;
}

.nvcases__item-subtitle {
    color: var(--Main-Orange, #F14B13);
    font-size: 12px;
    font-weight: 600;
    line-height: 133.333%;
}

.nvcases__item-text p{
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
}

.nvcases__item-text p span{
    color: #F14B13;
}

.nvcases__item-action {
    width: 100%;
}

.nvcases__item-link {
    display: flex;
    flex-wrap: nowrap;
    gap:8px;
    align-items: center;
    justify-content: flex-end;
    color: var(--Secondary-Black, #2E2E2E);
    font-size: 14px;
    font-weight: 500;
    line-height: 142.857%;
}

.nvcases__item-link svg {
    flex-shrink: 0;
}

.nvcases__item-link:hover {
    opacity: 0.8;
}

.nvcases__item-row--top .nvcases__item-text p{
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}


@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {

}

@media (max-width: 1199.98px) {
    .nvcases__description {
        gap:40px;
    }
}

@media (max-width: 991.98px) {
    .nvcases__description {
        flex-direction: column;
        gap:20px;
    }
    .nvcases__list {
        flex-wrap: wrap;
    }
    .nvcases__item {
        width: 100%;
    }
    .nvcases__item-logo {
        align-self: flex-end;
    }
    .nvcases__item-row--top .nvcases__item-text p{
        color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
        font-size: 16px;
        font-weight: 400;
        line-height: 125%;
    }
}

@media (max-width: 767.98px) {
    
}

@media (max-width: 575.98px) {
    .nvcases__item-text p {
        font-size: 16px;
    }
    .nvcases__item {
        gap:20px;
    }
    .nvcases__item-action {
        margin-top: 20px;
    }
}

@media (max-width: 478.98px) {
    .nvcases__item-row--top .nvcases__item-text p {
        font-size: 14px;
    }
    .nvcases__item-text p {
        font-size: 14px;
    }
    
}

@media (max-width: 419.98px) {

}

/* NVCASES END */

/* CASES-TAB START */

.cases-tab {}

.cases-tab__wrapper {
    display: flex;
    flex-direction: column;
    gap:40px;
}

.cases-tab__title-block {
    display: flex;
    gap:40px;
}

.cases-tab__title {
    width: 274px;
    flex-shrink: 0;
    font-weight: 600;
    line-height: 100%;
}

.section__title {}

.cases-tab__description {
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
}

.cases-tab__content {
    display: flex;
    gap:40px;
    border-radius: 32px;
    border: 1px solid var(--secondary-black-10, rgba(46, 46, 46, 0.10));
    background: var(--secondary-black-3, rgba(46, 46, 46, 0.03));
}

.cases-tab__line {
    width: 1px;
    height: auto;
    background: rgba(46, 46, 46, 0.10);
}

.cases-tab__tabs {
    width: 274px;
    padding: 24px 0 24px 24px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cases-tab__tabs-list {
    display: flex;
    flex-direction: column;
    gap:12px;
}

.cases-tab__tabs-item {
    display: flex;
    padding: 12px 20px 12px 20px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 100px;
    border: 1px solid var(--secondary-black-10, rgba(46, 46, 46, 0.10));
    background: var(--Secondary-White, #FFF);
}

.cases-tab__tabs-item:hover {
    opacity: 0.8;
}

.cases-tab__tabs-item span {
    color: var(--Secondary-Black, #2E2E2E);
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
}

.cases-tab__tabs-item svg path {
    fill: #2e2e2e;
}

.cases-tab__tabs-item--active {}

.cases-tab__tabs-action {}

.cases-tab__tabs .btn2 {
    width: 100%;
    max-width: unset;
}

.cases-tab__tabs-link {}

.cases-tab__tabs-content {
    padding: 48px 48px 48px 0;
}

.cases-tab__list {}

.cases-tab__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap:24px;

}

.cases-tab__item-logo {
    width: 142px;
    margin-bottom: 16px;
}

.cases-tab__item-info {
    display: flex;
    flex-direction: column;
}

.cases-tab__item-row {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap:12px;
}

.cases-tab__item-subtitle {
    color: var(--Main-Orange, #F14B13);
    font-size: 12px;
    font-weight: 600;
    line-height: 133.333%;
}

.cases-tab__item-text {
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}

.cases-tab__item-text-info {
    color: var(--Secondary-Black, #2E2E2E);
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
}

.cases-tab__item-text-info span {
    color: #F14B13;
}

.cases-tab__item-action {
    align-self: flex-end;
}

.cases-tab__item-link {
    display: flex;
    gap:8px;
    align-items: center;
}

.cases-tab__item-link:hover {
    opacity: 0.8;
}

.cases-tab__item-link span {
    color: var(--Secondary-Black, #2E2E2E);
    font-size: 14px;
    font-weight: 500;
    line-height: 142.857%;
}

.cases-tab__item-link svg {
    flex-shrink: 0;
}

.cases-tab__item { display: none; }
.cases-tab__item--active { display: flex; }

.cases-tab__tabs-item { cursor: pointer; }
.cases-tab__tabs-item--active span{
    color:#F14B13;
}
.cases-tab__tabs-item--active svg path {
    fill: #F14B13;
}
.cases-tab__tabs-action--mobile {
    display: none;
}




@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {
    
}

@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {
    .cases-tab__title-block {
        flex-direction: column;
        gap:20px;
    }
    .cases-tab__title {
        width: 100%;
    }
    .cases-tab__tabs {
        width: 260px;
    }
    .cases-tab__content {
        gap:24px;
    }
}

@media (max-width: 767.98px) {
    .cases-tab__content {
        flex-direction: column;

    }
    .cases-tab__tabs {
        width: 100%;
    }
    .cases-tab__line {
        width: calc(100% - 32px);
        height: 1px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .cases-tab__tabs {
        padding: 16px 16px 0 16px;
    }
    .cases-tab__tabs-content {
        padding: 0 16px 16px 16px;
    }
    .cases-tab__tabs-action--desktop {
        display: none;
    }
    .cases-tab__tabs-action--mobile {
        display: flex;
        margin-top: 24px;
    }
    .cases-tab__tabs-action--mobile .btn2 {
        width: 100%;
    }
    .cases-tab__item-logo {
        align-self: flex-end;
        margin-bottom: 0;
    }
    .cases-tab__description {
        font-size: 14px;
        font-weight: 400;
        line-height: 157.143%;
    }
    .cases-tab__item-text-info {
        font-size: 16px;
    }
    .cases-tab__item-row {
        margin-top: 24px;
    }
}

@media (max-width: 575.98px) {
    .cases-tab__item-logo {
        width: 83px;
    }
}

@media (max-width: 478.98px) {

}

@media (max-width: 419.98px) {

}

/* CASES-TAB END */

/* NVBLOG START */

.nvblog__wrapper {
    display: flex;
    flex-direction: column;
    gap:40px;
}

.nvblog .blog__list .blog__item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 16px;
    padding: 20px;
    width: calc(33.33% - 10.67px);
    height: auto;
    text-decoration: none;
}

.nvblog__description {
    color: var(--Secondary-Black, #2E2E2E);
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
}

.nvblog__slider-arrows {
    display: flex;
    gap:8px;
    width: 88px;
    cursor: pointer;
}
.nvblog__slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: 1px solid var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    display: flex;
    justify-content: center;
    align-items: center;
}
.nvblog__slider-arrow.swiper-button-disabled {
    cursor: default;
    opacity: 0.4;
}
.nvblog__title-block {
    display: flex;
    gap:80px;
}

.nvblog .blog__list {
    gap: 0;
    flex-wrap: nowrap;
}

.nvblog .blog__item-image {
    width: 100%;
    height: 220px;
    position: relative;
}

.nvblog__content-slider {
    margin-bottom: 20px;
}

.nvblog__action {
    width: 100%;
}

.nvblog__link {
    display: block;
    text-align: center;
    width: 100%;
    padding: 14px 24px;
    border-radius: 100px;
    border: 1px solid var(--secondary-black-10, rgba(46, 46, 46, 0.10));
    background: var(--Secondary-White, #FFF);
    font-size: 18px;
    font-weight: 500;
    line-height: 155.556%;
}

.nvblog__link:hover {
    background: var(--Secondary-Light-gray, #F8F8F8);
}

.nvblog .blog__list {
    margin-bottom: 0;
}


@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {
    
}

@media (max-width: 1199.98px) {
    .nvblog .blog__list .blog__item {
        width: calc(50% - 8px);
    }
    .nvblog__title-block {
        gap:40px;
    }
    .nvblog__slider-arrows {
        align-self: flex-end;
    }
}

@media (max-width: 991.98px) {
    .nvblog__title-block {
        flex-direction: column;
        gap:20px;
    }
}

@media (max-width: 767.98px) {
    
}

@media (max-width: 575.98px) {
    .nvblog__description {
        font-size: 16px;
    }
}

@media (max-width: 478.98px) {

}

@media (max-width: 419.98px) {

}

/* NVBLOG END */

/* NVBLOG2 START */

.nvblog2__list {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}

.nvblog2__item:nth-child(1) {
  grid-row: 1 / 3; /* занимает две строки */
}


.nvblog2 {}

.nvblog2__wrapper {
    display: flex;
    flex-direction: column;
    gap:40px;
}

.nvblog2__title-block {
    display: flex;
    flex-direction: column;
    gap:20px;
}

.nvblog2__title {}

.nvblog2__description {
    color: var(--Secondary-Black, #2E2E2E);
    font-weight: 400;
    line-height: 155.556%;
}

.nvblog2__content {
    position: relative;
    display: flex;
    flex-direction: column;
}

.nvblog2__list {
    margin-bottom: 20px;
}

.nvblog2__item {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    justify-self: stretch;
    border-radius: 24px;
    background: var(--secondary-black-3, rgba(46, 46, 46, 0.03));
}
.nvblog2__item:hover {
    background: var(--secondary-black-10, rgba(46, 46, 46, 0.10));
}
.nvblog2__item-image {
    position: relative;
    height: 182px;
    width: 100%;
}

.nvblog2__item-image img{
    border-radius: 16px;
    height: 100%;
    object-fit: cover;
}

.nvblog2__item-info {
    
}

.nvblog2__item-category {
    color: #F14B13;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
}

.nvblog2__item-title {
    color: #2e2e2e;
    font-size: 18px;
    font-weight: 600;
    line-height: 116.667%;
    margin-top: 12px;
}

.nvblog2__item-description {
    margin-top: 8px;
    color: var(--Secondary-White, #FFF);
    text-overflow: ellipsis;
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.nvblog2__item-meta {
    display: flex;
    justify-content: space-between;
    height: 42px;
    width: calc(100% - 16px);
}

.nvblog2__item-meta-left {
    display: flex;
    gap:8px;
    position: absolute;
    bottom: 8px;
    left:8px;
}

.nvblog2__item-meta-right {
    position: absolute;
    bottom: 8px;
    right: 8px;
}

.nvblog2__item-meta-item {
    display: flex;
    gap:8px;
    border-radius: 100px;
    padding: 4px 12px;
    border: 1px solid var(--secondary-white-50, rgba(255, 255, 255, 0.50));
    background: var(--secondary-white-10, rgba(255, 255, 255, 0.10));
    backdrop-filter: blur(5px);
}

.nvblog2__item-meta-icon {
    width: 24px;
    height: 24px;
}

.nvblog2__item-meta-text {
    color: var(--Secondary-White, #FFF);
    font-size: 14px;
    font-weight: 500;
    line-height: 157.143%;
}

.nvblog2__item--first {
    position: relative;
}
.nvblog2__item--first .nvblog2__item-image {
    position: absolute;
    top:0;
    bottom: 0;
    left:0;
    right: 0;
    z-index: 0;
}
.nvblog2__item--first::after {
    content: '';
    position: absolute;
    z-index: 1;
    bottom: 0;
    left:0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgb(0 0 0) 0%, rgb(255 255 255 / 0%) 100%);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}
.nvblog2__item--first .nvblog2__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}
.nvblog2__item--first .nvblog2__item-info {
    position: absolute;
    bottom: 24px;
    left:20px;
    bottom: 24px;
    width: calc(100% - 40px);
    z-index: 2;
}
.nvblog2__item--first .nvblog2__item-meta {
    position: unset;
}

.nvblog2__item--first .nvblog2__item-category {
    color: #fff;
}

.nvblog2__item--first .nvblog2__item-title {
    color:#fff;
    font-size: 24px;
}
.nvblog2__item--first .nvblog2__item-meta-left {
    left:0;
    bottom: 0;
}
.nvblog2__item--first .nvblog2__item-meta-right {
    right: 0;
    bottom: 0;
}
.nvblog2__item--first .nvblog2__item-image {
    height: 100%;
}

@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {

}

@media (max-width: 1199.98px) {
    .nvblog2__item-meta-right {
        top:8px;
        bottom: unset;
    }
    .nvblog2__item--first .nvblog2__item-meta-right {
        top:unset;
        bottom: 0;
    }
}

@media (max-width: 991.98px) {
    .nvblog2__list {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .nvblog2__item:nth-child(1) {
        grid-column: 1 / -1; /* большая на всю ширину */
        grid-row: auto;
        height: 688px;
    }
}

@media (max-width: 767.98px) {
    .nvblog2__list {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .nvblog2__item:nth-child(1) {
        grid-row: auto;
    }
}

@media (max-width: 575.98px) {

}

@media (max-width: 478.98px) {

}

@media (max-width: 419.98px) {

}

/* NVBLOG2 END */

/* PRODUCT START */

.product {}

.product__wrapper {
    display: flex;
    flex-direction: column;
    gap:24px;
}

.product__title-block {
    display: flex;
    flex-direction: column;
    gap:16px;
}

.product__title {}

.product__subtitle {
    color: var(--main-orange-light, #FE7338);
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
}

.product__description {
    margin-top: 8px;
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
}

.product__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product__image {
    position: relative;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    line-height: 0;
    height: 240px;
}

.product__image img {
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.product__image-links {
    position: absolute;
    bottom: 22px;
    left: 32px;
    display: flex;
    gap:24px;
    z-index: 2;
}

.product__image-link {
    display: flex;
    gap:8px;
    align-items: center;
    height: 32px;
}

.product__image-link span {
    color: var(--Secondary-White, #FFF);
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
    transition: all 0.3s ease;
}

.product__image-link:hover span {
    font-size: 28px;
    font-weight: 600;
    line-height: 100%;
    transform: translateY(-2px);
}

.product__image-link svg {
    flex-shrink: 0;
}

.product__image-line {
    width: 1px;
    height: auto;
    background: #FE7338;
}
.product__image::after {
    content: '';
    display: block;
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
    z-index: 1;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%);
}

.product__info {
    display: flex;
    flex-direction: column;
    gap:24px;
}

.product__info-tabs {
    display: flex;
    border-bottom: solid 1px rgba(46, 46, 46, 0.10);
}

.product__info-tab {
    width: 33.33%;
    color: #2e2e2e;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 122.222%;
    padding: 0 32px;
    border:none;
    background: none;
    padding-bottom: 12px;
}

.product__info-tab:hover {
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
}

.product__info-tab.product__info-tab--active {
    color: var(--main-orange-light, #FE7338);
    font-weight: 700;
    line-height: 155.556%;
    position: relative;
}

.product__info-tab--active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 8px;
    background-color: #FE7338;
    border-radius: 8px;
}

.product__info-contents {}

.product__info-content {}

.product__info-content--active {}

.product__info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.product__info-card {
    width: calc(50% - 8px);
    border-radius: 24px;
    background: var(--secondary-black-3, rgba(46, 46, 46, 0.03));
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap:20px;
}

.product__info-card-num {
    align-self: flex-end;
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}

.product__info-card-title {
    color: var(--Main-Orange, #F14B13);
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
}

.product__info-card-text {
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}

.product__info-tab-arrow {
    display: none;
}

.product__info-content {
  display: none;
}

.product__info-content--active {
  display: block;
}

.product__info-tab {
  cursor: pointer;
}

.product__info-tab--active {
  pointer-events: none;
}


.product2 {}

.product2__wrapper {
    padding: 28px;
    border-radius: 32px;
    background: var(--Secondary-White, #FFF);
    box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.20);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap:64px;
}

.product2__image {
    width: 273px;
    height: 274px;
    position: absolute;
    right: 0;
    top:0;
}

.product2__top {
    margin-bottom: 40px;
    color: var(--Main-Orange, #F14B13);
    font-size: 12px;
    font-weight: 600;
    line-height: 133.333%;
}

.product2__title-block {
    display: flex;
    gap: 104px
}

.product2__title-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product2__title {}

.product2__subtitle {
    margin-bottom: 6px;
    color: var(--main-orange-light, #FE7338);
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
}

.product2__description {
    color: #2e2e2e;
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
}

.product2__title-action {
    width: 245px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap:12px;
    align-items: flex-end;
}

.product2__title-action .btn2 {
    padding: 14px 12px 14px 24px;
}
.product2__title-action .btn2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 155.556%;
}

.product2__title-link {
    display: flex;
    padding: 6px 8px 6px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 100px;
    border: 1px solid var(--secondary-black-10, rgba(46, 46, 46, 0.10));
    background: var(--Secondary-White, #FFF);
}

.product2__title-link:hover {
    opacity: 0.8;
}

.product2__title-link span {
    color: var(--Secondary-Black, #2E2E2E);
    font-size: 14px;
    font-weight: 500;
    line-height: 142.857%;
}

.product2__title-link svg {
    flex-shrink: 0;
}

.product2__content {}

.product2__info-cards {
    display: flex;
    gap:16px;
}

.product2__info-card {
    width: calc(25% - 12px);
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    justify-self: stretch;
    border-radius: 24px;
    background: var(--secondary-black-3, rgba(46, 46, 46, 0.03));
}

.product2__info-card-icon {
    width: 32px;
    height: 32px;
}

.product2__info-card-title {
    color: #2e2e2e;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
}



@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {

}

@media (max-width: 1199.98px) {
    .product2__title-block {
        gap:44px;
    }
    .product2__info-cards {
        flex-wrap: wrap;
    }
    .product2__info-card {
        width: calc(50% - 8px);
    }
}

@media (max-width: 991.98px) {
    .product2__title-block {
        gap:20px;
        flex-direction: column;
    }
    .product2__title-info,
    .product2__title-action {
        width: 100%;
    }
    .product2__image {
        top:-90px;
    }
    .product2__title-action {
        flex-direction: row-reverse;
        justify-content: flex-start;
        align-items: flex-end;
        gap:20px;
    }
    .product2__title-link {
        padding: 12px 12px 12px 20px;
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .product__info-tabs {
        border-bottom: none;
    }
    .product__info-tab-arrow {
        width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        border-radius: 100px;
        border: 1px solid var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    }
    .product__info-tab {
        display: none;
    }
    .product__info-tabs {
        gap:8px;
    }
    .product__info-tab.product__info-tab--active {
        display: block;
        width: 100%;
        border-bottom: solid 1px rgba(46, 46, 46, 0.10);
        padding-bottom: 0;
        font-weight: 600;
        color: #2e2e2e;
    }
    .product__info-tab--active::after {
        display: none;
    }
    .product__info-tab-arrow-disabled {
        cursor: default;
        opacity: 0.4;
    }
    .product__info-card {
        width: 100%;
    }
    .product__image-links {
        flex-direction: column;
        width: calc(100% - 32px);
        left:16px;
        bottom: 16px;
        gap: 8px;
    }
    .product__image-link {
        width: 100%;
        font-size: 16px;
    }
    .product__image-line {
        height: 1px;
        width: 100%;
    }
    .product__description {
        font-size: 16px;
    }
    .product2__image {
        top: -112px;
    }
    .product2__title-action {
        gap:8px;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .product2__title-link {
        padding: 6px 8px 6px 16px;
        font-size: 14px;
        line-height: 142.857%;
    }
    .product2__info-card {
        width: 100%;
    }
    .product2__info-card-title {
        align-self: flex-start;
    }
}

@media (max-width: 575.98px) {
    .product2__wrapper {
        padding: 16px;
    }
}

@media (max-width: 478.98px) {
    .product__subtitle,
    .product2__subtitle {
        font-size: 20px;
    }
    .product__description,
    .product2__description {
        font-size: 14px;
    }
}

@media (max-width: 419.98px) {

}


/* PRODUCT END */


/* INTEGRATE START */


.integrate {}

.integrate__wrapper {
    display: flex;
    flex-direction: column;
    gap:40px;
}

.integrate__title-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.integrate__description {
    color: #2e2e2e;
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
}

.integrate__content {
    display: flex;
    gap:77px;
    padding: 50px 0;
}

.integrate__left {
    width: 672px;
}

.integrate__circle {
    border-radius: 600px;
    border: 2px solid var(--main-orange-50, rgba(241, 75, 19, 0.50));
}

.integrate__info {
    position: absolute;
    top:50%;
    left:50%;
    width: 270px;
    height: 270px;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.integrate__info-title {
    font-size: 120px;
    font-weight: 600;
    line-height: 100%;
}

.integrate__info-subtitle {
    color: var(--Main-Orange, #F14B13);
    font-size: 24px;
    font-weight: 600;
    line-height: 116.667%;
}

.integrate__info-action {
    margin-top: 32px;
}

.btn2 {}

.integrate__info-link {}

.integrate__points {}

.integrate__point {
    width: 100px;
    height: 100px;
    padding: 4px;
    background: #fff;
    border:none;
    border-radius: 50%;
}

.integrate__point svg {

}

.integrate__point svg path{
    fill:#FE7338;
}

.integrate__point-wrapper {
    padding: 8px;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
    border: 1px solid var(--main-orange-10, rgba(241, 75, 19, 0.10));
}

.integrate__point-circle {
    width: 100%;
    height: 100%;
    border-radius: 64px;
    border: 1px solid rgba(241, 75, 19, 0.20);
    background: var(--main-orange-10, rgba(241, 75, 19, 0.10));
    display: flex;
    justify-content: center;
    align-items: center;
}

.integrate__point.integrate__point--active .integrate__point-circle {
    border: 1px solid #F14B13;
    background: var(--Main-Orange, #F14B13);
}

.integrate__point.integrate__point--active svg path{
    fill: #fff;
}   

.integrate__right {}

.integrate__cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.integrate__card {
    display: flex;
    padding: 40px 24px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 24px;
    background: var(--secondary-black-3, rgba(46, 46, 46, 0.03));
}

.integrate__card--active {}

.integrate__card-title {
    color: var(--Main-Orange, #F14B13);
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
}

.integrate__card-description {
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}



.integrate__left { flex: 0 0 auto; }
.integrate__right { flex: 1 1 auto; }

/* круг (контейнер для точек) */
.integrate__circle {
  position: relative;
  width: 600px;   /* подгони под свой дизайн */
  height: 600px;  /* подгони под свой дизайн */
}

/* точки по кругу */
.integrate__points {
  position: absolute;
  inset: 0;
  /* параметры круга */
  --count: 5;        /* JS перезапишет, если точек другое кол-во */
  --radius: 300px;   /* радиус круга (подгони под макет) */
}

.integrate__point {
  position: absolute;
  top: 50%;
  left: 50%;

  /* ключ: размещение по окружности через rotate + translate */
  transform:
  translate(-50%, -50%)
  rotate(calc(-90deg + (var(--i) * 360deg / var(--count))))
  translateX(var(--radius))
  rotate(calc(90deg - (var(--i) * 360deg / var(--count))));

  /* минимально, чтобы было видно/кликабельно (оформление сделаешь сам) */
  cursor: pointer;
}

/* карточки: показываем только активную */
.integrate__card { display: none; }
.integrate__card--active { display: flex; }







/* чтобы псевдоэлементы рисовались относительно кнопки */
.integrate__point {
  position: absolute; /* у тебя уже так */
  overflow: visible;  /* на всякий случай */
  
  /* настройки кольца */
  --ring-size: 92px;        /* диаметр внешнего кольца (подгони) */
  --ring-thickness: 4px;     /* толщина дуги */
  --track-color: rgba(241, 75, 19, 0.15);
  --progress-color: #F14B13;
  --duration: 8000ms;        /* JS выставит */
}

/* контент кнопки поверх кольца */
.integrate__point-wrapper {
  position: relative;
  z-index: 2;
}

/* трек и прогресс только у active */
.integrate__point--active::before,
.integrate__point--active::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--ring-size);
  height: var(--ring-size);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}


/* прогресс-дуга: от 0 до 360 градусов за duration */
.integrate__point--active::after {
  --p: 0; /* 0..1 */

  background: conic-gradient(
    from 0deg,
    var(--progress-color) 0 calc(var(--p) * 1turn),
    transparent 0 1turn
  );

  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - var(--ring-thickness)),
    #000 calc(100% - var(--ring-thickness) + 1px)
  );
  mask: radial-gradient(
    farthest-side,
    transparent calc(100% - var(--ring-thickness)),
    #000 calc(100% - var(--ring-thickness) + 1px)
  );

  animation: integrateRingProgress var(--duration) linear forwards;
}

@keyframes integrateRingProgress {
  from { --p: 0; }
  to   { --p: 1; }
}

@property --p {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}


.integrate__point:hover .integrate__point-circle{
    opacity: 0.7;
}
.integrate__point.integrate__point--active:hover .integrate__point-circle{
    opacity: 1;
}





.integrate2 {}

.integrate2__wrapper {
    display: flex;
    flex-direction: column;
}

.integrate2__title-block {
    display: flex;
    gap:80px;
}

.integrate2__action-block {
    width: 264px;
    display: flex;
    flex-direction: column;
    gap:48px;
}

.integrate2__title {
    line-height: 0.8;
}

.integrate__info-link {}

.integrate2__description {
    color: #2e2e2e;
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
}

.integrate2__content {}

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

.integrate2__slider-arrows {
    display: flex;
    gap: 8px;
    width: 88px;
    cursor: pointer;
    align-self: flex-end;
}

.integrate2__slider-arrow {
    width: 40px;
    height: 40px;
    border-radius: 100px;
    border: 1px solid var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    display: flex;
    justify-content: center;
    align-items: center;
}

.integrate2__slider-arrow:hover {
    opacity: 0.8;
}
.integrate2__slider-arrow.swiper-button-disabled {
    cursor: default;
    opacity: 0.4;
}

.integrate2__slider-arrow-prev {}

.integrate2__slider-arrow-next {}

.integrate2__slider-list {}

.integrate2__slider-item {
    display: flex;
    padding: 40px 24px 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    justify-self: stretch;
    border-radius: 24px;
    background: var(--secondary-black-3, rgba(46, 46, 46, 0.03));
}

.integrate2__slider-title {
    color: var(--Main-Orange, #F14B13);
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
}

.integrate2__slider-description {
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}

.integrate2__action--mobile {
    display: none;
}

@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {
    .integrate__content {
        gap:40px;
    }
    .integrate2__title-block {
        gap: 40px;
    }
    
}

@media (max-width: 1199.98px) {
    .integrate__left {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .integrate__content {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 991.98px) {
    .integrate2__title-block {
        flex-direction: column;
        gap: 24px;
    }
    .integrate2__action-block {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    .integrate2__action .btn2 {
        height: 32px;
        padding: 6px 8px 6px 16px;
    }
    .integrate2__action .btn2 span {
        font-size: 14px;
    }
    .integrate2__action .btn2 svg {
        width: 16px;
    }
}

@media (max-width: 767.98px) {
    .integrate__circle {
        width: 420px;
        height: 420px;
    }
    .integrate__points {
        --radius: 210px;
    }
    .integrate__point {
        width: 80px;
        height: 80px;
        --ring-size: 75px; 
        --ring-thickness: 3px; 
    }
    .integrate__point svg {
        width: 24px;
    }
    .integrate__content {
        padding: 20px 0 0;
    }
    .integrate__description,
    .integrate2__description {
        font-size: 16px;
    }
    .integrate2__action--desktop {
        display: none;
    }
    .integrate2__action--mobile {
        display: flex;
        align-self: flex-end;
    }
    .integrate2__slider-arrows {
        display: none;
    }
    .integrate2__wrapper {
        gap:32px;
    }
    .integrate2__slider-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .integrate2__slider-item {
        width: 100%;
    }
    .integrate2__slider-item:nth-child(n + 3) {
        display: none;
    }
}

@media (max-width: 575.98px) {

}

@media (max-width: 478.98px) {
    .integrate__circle {
        width: 320px;
        height: 320px;
    }
    .integrate__info {
        justify-content: center;
        align-items: center;
        gap:10px;
    }
    .integrate__info-title {
        font-size: 60px;
        text-align: center;
    }
    .integrate__info-subtitle {
        text-align: center;
        font-size: 16px;
    }
    .integrate__info-link {
        padding: 6px 8px 6px 16px;
        font-size: 14px;
        height: 32px;
    }
    .integrate__points {
        --radius: 160px;
    }
    .integrate__info-action {
        margin-top: 10px;
    }
    .integrate__info-action .btn2 svg {
        width: 20px;
        height: 20px;
    }
    .integrate__point {
        width: 64px;
        height: 64px;
        --ring-size: 60px; 
        --ring-thickness: 3px; 
    }
    .integrate__point-wrapper {
        padding: 6px;
    }
    .integrate__point svg {
        width: 19px;
    }
    .integrate__card-title {
        font-size: 20px;
    }
    .integrate2__slider-description {
        font-size: 14px;
    }
}

@media (max-width: 419.98px) {

}
/* INTEGRATE END */

/* CERT START */

.cert {
    background: var(--Secondary-Black, #2E2E2E);
}

.cert__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cert__title-block {}

.cert__title {
    color: var(--Secondary-White, #FFF);
    text-align: center;
    font-weight: 600;
    line-height: 80%;
}

.cert__content {}

.cert__row {
    display: flex;
    gap: 16px;
}

.cert__col {
    width: calc(50% - 8px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert__item {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--secondary-white-50, rgba(255, 255, 255, 0.50));
    display: flex;
    flex-direction: column;
    gap:12px;
    flex-grow: 1;
}

.cert__item-nist {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:20px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.cert__item-nist-image {
    width: 200px;
    margin-bottom: 44px;
    z-index: 1;
}

.cert__item-nist-subtitle {
    margin-bottom: 12px;
    color: var(--Secondary-White, #FFF);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
    z-index: 1;
}

.cert__item-nist-title {
    color: var(--main-orange-light, #FE7338);
    text-align: center;
    font-size: 120px;
    font-weight: 600;
    line-height: 106.667%;
    z-index: 1;
}

.cert__item-nist-select {
    z-index: 1;
}

.nist-select {}

.nist-select__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.nist-select__russian {}

.nist-select__item {
    color: var(--secondary-white-50, rgba(255, 255, 255, 0.50));
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.nist-select__item--active {
    color: var(--Secondary-White, #FFF);
    font-weight: 700;
}

.nist-select__btn {
    width: 84px;
    padding: 4px;
    gap: 4px;
    border-radius: 12px;
    background: var(--secondary-white-5, rgba(255, 255, 255, 0.05));
    cursor: pointer;
}

.nist-select__btn.nist-select__btn--russian .nist-select__btn-select{
    transform: translateX(0);
}
.nist-select__btn.nist-select__btn--world .nist-select__btn-select{
    transform: translateX(40px);
}

.nist-select__btn-select {
    width: 36px;
    height: 36px;
    transition: transform ease-in-out 0.2s;
}

.nist-select__btn-select-russian {
    display: none;
}

.nist-select__btn-select-world {
    display: none;
}

.nist-select__btn.nist-select__btn--russian .nist-select__btn-select-russian {
    display: block;
}

.nist-select__btn.nist-select__btn--world .nist-select__btn-select-world {
    display: block;
}

.nist-select__btn-select--active {
    display: block;
}

.cert__item-nist-bg {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) translateY(64%);
    width: 760px;
    height: 760px;
    border-radius: 760px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(254, 115, 56, 0.50) 0%, rgba(46, 46, 46, 0.00) 100%);
    z-index: 0;
}

.cert__item-text {
    color: var(--Secondary-White, #FFF);
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
    margin-bottom: 12px;
}

.cert__item-num {
    display: flex;
    gap:24px;
}

.cert__item-num-title {
    color: var(--secondary-white-50, rgba(255, 255, 255, 0.50));
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
    width: 200px;
}

.cert__item-num-info {
    height: 32px;
    color: var(--Secondary-Black, #2E2E2E);
    font-size: 14px;
    font-weight: 500;
    line-height: 142.857%;
    display: flex;
    padding: 6px 16px 6px 16px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    border: 1px solid var(--secondary-black-10, rgba(46, 46, 46, 0.10));
    background: var(--Secondary-White, #FFF);
}

.cert__item-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cert__item-item {
    display: flex;
    gap: 16px;
}

.cert__item-icon {
    flex-shrink: 0;
}

.cert__item-info {
    color: var(--Secondary-White, #FFF);
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}

@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {

}

@media (max-width: 1199.98px) {
    .cert__item-num {
        flex-direction: column;
        gap:12px;
        align-items: flex-start;
    }
}

@media (max-width: 991.98px) {
    .cert__row {
        flex-direction: column;
    }
    .cert__col {
        width: 100%;
    }
    .cert__item-num {
        flex-direction: row;
        gap:24px;
    }
}

@media (max-width: 767.98px) {
    .cert__item-num {
        flex-direction: column;
        gap:8px;
        align-items: flex-start;
    }
}

@media (max-width: 575.98px) {
    .cert__item-nist-subtitle,
    .cert__item-text {
        font-size: 16px;
    }

}

@media (max-width: 478.98px) {
    .cert__item {
        padding: 16px;
    }
    .cert__item-nist {
        padding: 24px 16px;
    }
    .cert__item-nist-title {
        font-size: 88px;
    }
    .cert__item-nist-subtitle,
    .cert__item-text,
    .cert__item-info {
        font-size: 14px;
    }
    .nist-select__item {
        font-size: 14px;
    }
}

@media (max-width: 419.98px) {

}


/* CERT STOP */

/* ADVANTAGE START */

/* Настройки палочек через переменные */
.gauge {
  --stroke: 18;     /* толщина “обводки” */
  --tick: 3;       /* длина палочки */
  --gap: 8;        /* расстояние между палочками */

  width: 100%;
  max-width: 660px;
}

.advantage__gauge {
  width: 560px;
  height: 420px;
}

.gauge__svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible!important;
}

/* Палочки (и серые, и оранжевые одинаковые по геометрии) */
.gauge__arc {
  fill: none;
  stroke-width: calc(var(--stroke) * 1px);
  stroke-linecap: butt;
  stroke-dasharray: calc(var(--tick) * 1px) calc(var(--gap) * 1px);
}

/* Серая дуга */
.gauge__arc--base {
  stroke: #e6e6e6;
}

/* Оранжевая дуга */
.gauge__arc--progress {
  stroke: #ff6a2a;
}

/* Маска: это “сплошная” линия, которая открывает участок прогресса */
.gauge__mask {
  fill: none;
  stroke-width: calc(var(--stroke) * 1px);
  stroke-linecap: butt;
  stroke-dasharray: 0 1;
  stroke-dashoffset: 0;
}

/* Ползунок */
.gauge__thumb-shadow { fill: rgba(0, 0, 0, 0.12); }
.gauge__thumb-body   { fill: #ffffff; }
.gauge__thumb-dot    { fill: #ff6a2a; }

.advantage__gauge {
  overflow: visible;
}
.gauge__thumb-ring {
  fill: #F8F8F8;
}
.gauge__thumb-core {
  fill: #FE7338;
}


.advantage {}

.advantage__wrapper {
    display: flex;
    gap: 64px;
    overflow: visible;
}

.advantage__left {
    width: 560px;
}

.advantage__right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: calc(100% - 624px);
}

.advantage__gauge {
    position: relative;
}

.advantage__info {
    width: 356px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom:0;
    left:50%;
    transform: translateX(-50%);
}

.advantage__info-subtitle {
    color: var(--Main-Orange, #F14B13);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 116.667%;
    max-width: 260px;
}

.advantage__info-title {
    display: flex;
    gap: 11px;
    justify-content: center;
    align-items: flex-end;
}

.advantage__info-title-text {
    color: var(--Main-Orange, #F14B13);
    font-size: 24px;
    font-weight: 600;
    line-height: 116.667%;
}

.advantage__info-title-num {
    color: var(--Main-Orange, #F14B13);
    font-size: 184px;
    font-weight: 600;
    line-height: 84%;
}

.advantage__info-text {
    color: var(--Secondary-Black, #2E2E2E);
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    margin-top: 8px;
}

.advantage__info-description {
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 114.286%;
    margin-top: 16px;
}

.advantage__title-block {}

.advantage__title {}

.section__title {}

.advantage__slider {
    position: relative;
    height:  auto;
    width: 100%;
    margin: 0;
}

.swiper {}

.advantage__slider-ui {
    position: absolute;
    top:24px;
    left:24px;
    width: calc(100% - 48px);
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.advantage__slider-counter {
    display: flex;
    gap: 8px;
    position: unset;
}
.swiper-pagination-current,
.advantage__slider-separator,
.swiper-pagination-total {
    color: var(--secondary-black-10, rgba(46, 46, 46, 0.10));
    font-size: 28px;
    font-weight: 400;
    line-height: 128.571%;
}

.swiper-pagination {}

.advantage__slider-arrows {
    display: flex;
    gap: 8px;
}

.advantage__slider-arrow {
    display: flex;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background: var(--Main-Grad, linear-gradient(104deg, #FE7338 0%, #EA3700 100%));
    backdrop-filter: blur(8px);
    border:none;
}

.advantage__slider-arrow svg {
    flex-shrink: 0;
}

.advantage__slider-arrow-prev {}

.advantage__slider-arrow-next {}

.advantage__slider-arrow.swiper-button-disabled {
    opacity: 0.4;
    cursor: default;
}

.advantage__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
}

.swiper-wrapper {}

.advantage__item {
    padding: 24px;  
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: flex-end;
    border-radius: 24px;
    background: var(--secondary-black-3, rgba(46, 46, 46, 0.03));
    padding-top: 160px;
}

.swiper-slide {}

.advantage__item-title {
    color: var(--Main-Orange, #F14B13);
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
}

.advantage__item-info {
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}

.advantage__title-block--mobile {
    display: none;
}


@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {
    .advantage__wrapper {
        gap: 32px;
    }
    .advantage__right {
        width: calc(100% - 592px);
        gap: 20px;
    }
    .advantage__item {
        padding-top: 100px;
    }
}

@media (max-width: 1199.98px) {
    .advantage__wrapper {
        flex-direction: column;
        align-items: center;
    }
    .advantage__right {
        width: 100%;
        padding-top: 30px;
    }
    .advantage__title-block {
        display: none;
    }
    .advantage__title-block--mobile {
        display: block;
        align-self: flex-start;
        margin-bottom: 20px;
    }
}

@media (max-width: 991.98px) {

}

@media (max-width: 767.98px) {
    .advantage__item {
        padding-top: 120px;
    }
}

@media (max-width: 575.98px) {
    .advantage__wrapper {
        gap: 0;
    }
    .advantage__gauge {
        width: 340px;
        height: 430px;
        margin-top: -30px;
    }
    .advantage__left {
        width: unset;
    }
    .advantage__info-title-text,
    .advantage__info-subtitle {
        font-size: 24px;
    }
    .advantage__info-title-num {
        font-size: 88px;
    }
    .advantage__item {
        padding-top: 160px;
    }
    .advantage__title-block {
        margin-bottom: 0;
    }
    .advantage__info-description {
        margin-top: 36px;
    }
}

@media (max-width: 478.98px) {

}

@media (max-width: 419.98px) {

}


/* ADVANTAGE STOP */

/* RESULT START */

.result {
  
}

.result__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.result__title-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result__title {
  
}

.result__description {
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
}

.result__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.result__list {
    width: 100%;
    display: flex;
    gap: 16px;
}

.result__item {
    width: calc(33.33% - 10.67px);
    border-radius: 24px;
    background: var(--Secondary-Light-gray, #F8F8F8);
    display: flex;
    padding: 36px 24px 40px 24px;
    flex-direction: column;
    align-items: center;
    justify-self: stretch;
    height: 420px;
    position: relative;
    overflow: hidden;
}

.result__item-icon {
    border-radius: 8px;
    padding: 8px;
    background: var(--main-orange-10, rgba(241, 75, 19, 0.10));
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
}

.result__item:hover .result__item-icon {
    padding: 6px;
    scale: 0.75;
    display: flex;
    justify-content: center;
    align-items: center;
}

.result__item-info {
    text-align: center;
    position: absolute;
    width: calc(100% - 48px);
    top: 230px;
    transition: all 0.5s ease;
}

.result__item-subtitle {
    color: var(--Main-Orange, #F14B13);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 116.667%;margin-bottom: 8px;
}

.result__item-title {
    color: var(--Main-Orange, #F14B13);
    text-align: center;
    font-size: 84px;
    font-weight: 600;
    line-height: 109.524%;
    padding-bottom: 28px;
    border-bottom: solid 1px rgba(46, 46, 46, 0.10);
    position: relative;
}

.result__item-title::after {
    content:'';
    display: block;
    position: absolute;
    bottom: -2px;
    left:50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    border-radius: 4px;
    background-color: #FE7338;
}

.result__item-description {
    margin-top: 20px;
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}

.result__item:hover .result__item-description{
    opacity: 1;
}

.result__item:hover .result__item-info {
    top:108px;
}

.result__info {
    padding: 100px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;   
    overflow: hidden; 
}

.result__info::after {
    content:'';
    width: 100%;
    height: 170px;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 100%);
    position: absolute;
    bottom: 0;
    left:0;
    width: 100%;
}

.result__info-bg {
    position: absolute;
    left:0;
    top:0;
    right: 0;
    opacity: 0.4;
}

.result__info-bg--mobile {
    display: none;
}

.result__info-content {
    max-width: 768px;
    padding: 24px;
    gap: 16px;
    border-radius: 24px;
    border: 1px solid var(--secondary-black-10, rgba(46, 46, 46, 0.10));
    background: var(--Secondary-Light-gray, #F8F8F8);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.result__info-icon {
    flex-shrink: 0;
}

.result__info-title {
    color: var(--Secondary-Black, #2E2E2E);
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
}

.result__info-description {
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}


@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {
    .result__item-title {
        font-size: 64px;
    }
    .result__item-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 1199.98px) {
    .result__list {
        flex-wrap: wrap;
        justify-content: center;
    }
    .result__item {
        width: calc(50% - 8px);
    }
}

@media (max-width: 991.98px) {
    .result__list {
        flex-direction: column;
    }
    .result__item {
        width: 100%;
        height: auto;
        gap: 20px;
    }
    .result__item-info {
        position:unset;
        width: 100%;
    }
    .result__item-description {
        opacity: 1;
    }
    .result__item-icon-orig {
        opacity: 0;
    }
    .result__item-icon-hover {
        opacity: 1;
    }
    .result__info {
        overflow: visible;
        padding-bottom: 0;
    }
    .result__info-content {
        max-width: unset;
    }
    .result__info-bg {
        left:-60px;
        right: -60px;
    }
    .result__list {
        gap: 30px;
    }
    .result__item-icon {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    .result__item-icon svg{
        width: 24px;
        height: 24px;
    }
    .result__info::after {
        display: none;
    }
}

@media (max-width: 767.98px) {

}

@media (max-width: 575.98px) {
    .result__info {
        padding-top: 220px;
        padding-bottom: 0;
    }
    .result__info-bg--desktop {
        display: none;
    }
    .result__info-bg--mobile {
        display: block;
    }
    .result__info-bg {
        left: -80px;
        right: -80px;
    }
}

@media (max-width: 478.98px) {
    .result__description,
    .result__item-description {
        font-size: 14px;
    }
    .result__item {
        padding-top: 36px;
    }
    .result__info-bg {
        left: -110px;
        right: -110px;
    }
    
}

@media (max-width: 419.98px) {

}

/* RESULT STOP */


/* RESULT-TAB START */

.result-tab {
  
}

.result-tab__wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.result-tab__title-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-tab__title {
    
}

.result-tab__description {
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
}

.result-tab__content-wrapper {
    border-radius: 32px;
    background: var(--Secondary-White, #FFF);
    box-shadow: 0 -4px 40px 0 rgba(0, 0, 0, 0.20);
    display: flex;
    padding: 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
}

.result-tab__tabs {
    display: flex;
    flex-wrap: nowrap;
    border-bottom: solid 1px rgba(46, 46, 46, 0.10);
}

.result-tab__arrow {
    display: none;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 100px;
    border: 1px solid var(--secondary-black-50, rgba(46, 46, 46, 0.50));
}

.result-tab__arrow-prev {
  
}

.result-tab__tab {
    flex: 1 1 0;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
    color: var(--Secondary-Black, #2E2E2E);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 122.222%;
    background-color: transparent;
    border:none;
}

.result-tab__tab--active {
    color: var(--main-orange-light, #FE7338);
    font-weight: 700;
    position: relative;
}
.result-tab__tab--active::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    bottom: -4px;
    left:0;
    height: 8px;
    border-radius: 4px;
    background-color: #FE7338;
}

.result-tab__arrow-next {
  
}

.result-tab__contents {
    
}

.result-tab__content {
    display: flex;
    gap: 64px;
}

.result-tab__content--active {
  
}

.result-tab__content-left {
    width: calc(100% - 358px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.result-tab__content-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: var(--main-orange-10, rgba(241, 75, 19, 0.10));
    padding: 8px;
}

.result-tab__content-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 24px;
}

.result-tab__content-title {
    color: var(--Secondary-Black, #2E2E2E);
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
}

.result-tab__content-description {
    color: var(--Secondary-Black, #2E2E2E);
    font-size: 18px;
    font-weight: 400;
    line-height: 155.556%;
}

.result-tab__content-right {
    width: 294px;
}

.result-tab__content-card {
    display: flex;
    flex-direction: column;
    padding: 24px;
    gap: 40px;
    border-radius: 24px;
    background: var(--secondary-black-3, rgba(46, 46, 46, 0.03));
}

.result-tab__content-card-icon {
    align-self: flex-end;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.result-tab__content-card-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.result-tab__content-card-title {
    color: #2e2e2e;
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
}

.result-tab__content-card-line {
    flex-shrink: 0;
    position: relative;
    width: 100%;
    height: 1px;
    background: rgba(46, 46, 46, 0.10);
}

.result-tab__content-card-line::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    position: absolute;
    bottom: -2px;
    left:0;
    background-color: #FE7338;
    border-radius: 2px;
}

.result-tab__content-card-description {
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
}



.result-tab__tab {
  cursor: pointer;
}

.result-tab__tab--active {
  pointer-events: none;
}

.result-tab__content {
  display: none;
}

.result-tab__content--active {
  display: flex;
}

.result-tab__arrow {
  cursor: pointer;
  user-select: none;
}

.product__info-tab-arrow-disabled {
  opacity: 0.4;
  pointer-events: none;
}

@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {

}

@media (max-width: 1199.98px) {
    .result-tab__arrow {
        display: flex;
    }
    .result-tab__tab {
        display: none;
    }
    .result-tab__tabs {
        width: 100%;
        border-bottom: unset;
    }
    .result-tab__tab.result-tab__tab--active {
        display: block;
        font-weight: 400;
        color: #2E2E2E;
        flex-grow: 1;
        border-bottom: solid 1px rgba(46, 46, 46, 0.10);
        padding-bottom: 4px;
    }
    .result-tab__tab--active::after {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .result-tab__content {
        flex-direction: column;
    }
    .result-tab__content-left,
    .result-tab__content-right {
        width: 100%;
    }
    .result-tab__content-card-info {
        flex-direction: row;
        align-items: flex-end;
    }
    .result-tab__content-card-title {
        font-size: 20px;
        width: 126px;
    }
    .result-tab__content-description {
        font-size: 16px;
    }
    .result-tab__content-card {
        gap: 16px;
    }
    .result-tab__content-card-line {
        height: 100px;
        width: 1px;
    }
    .result-tab__content-card-line::after {
        width: 4px;
        height: 60px;
        bottom: 0;
        left:-1px;
    }
}

@media (max-width: 767.98px) {
    .result-tab__content-left {
        gap: 36px;
    }
    .result-tab__content-card-info {
        flex-direction: column;
        align-items: flex-start;
    }
    .result-tab__content-card-line {
        width: 100%;
        height: 1px;
    }
    .result-tab__content-card-line::after {
        width: 100px;
        height: 4px;
        bottom: -2px;
        left: 0;
    }
}

@media (max-width: 575.98px) {

}

@media (max-width: 478.98px) {

}

@media (max-width: 419.98px) {

}


/* RESULT-TAB STOP */

/* SAFETY START */

.safety {

}

.safety__wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.safety__title-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.safety__title {}

.safety__description {
    color: var(--secondary-black-50, rgba(46, 46, 46, 0.50));
    font-size: 18px;
    line-height: 155.556%;
}

.safety__content {}

.safety__list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.safety__item {
    border-radius: 32px;
    background: var(--Secondary-White, #FFF);
    box-shadow: 0 -4px 30px 0 rgba(0, 0, 0, 0.10);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.safety__item--gray {
    background: var(--Secondary-Light-gray, #F8F8F8);
}

.safety__item-icon {
    border-radius: 8px;
    background: var(--main-orange-10, rgba(241, 75, 19, 0.10));
    padding: 8px;
    width: 48px;
    height: 48px;
    align-self: flex-end;
}

.safety__item-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 80px;
    transition: all 0.3s ease-in-out
}

.safety__item-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 100%;
    padding-right: 56px;
}

.safety__item-line {
    width: 65%;
    height: 1px;
    background: rgba(46, 46, 46, 0.10);
    position: relative;
}

.safety__item-line::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #FE7338;
    border-radius: 4px;
    position: absolute;
    bottom: -1px;
    left:0;
}

.safety__item-description {
    font-size: 18px;
    line-height: 155.556%;
}

.safety__item-num {
    color: var(--main-orange-10, rgba(241, 75, 19, 0.10));
    text-align: right;
    font-size: 180px;
    line-height: 100%;
    position: absolute;
    right: 20px;
    bottom: -80px;
    transition: all 0.3s ease-in-out
}

.safety__item--gray .safety__item-num {
    color: var(--secondary-black-10, rgba(46, 46, 46, 0.10));
}

.safety__item.safety__item-image {
    padding: 0;
    height: auto;
    max-height: 400px;
}

.safety__item-image img {
    border-radius: 32px;
    height: 100%;
    object-fit: cover;
}

.safety__item--col6 {
    width: calc(50% - 12px);
}

.safety__item--col4 {
    width: calc(33.33% - 12px);
}

.safety__item--col8 {
    width: calc(66.66% - 12px);
}

.safety__item--col5 {
    width: calc(41.67% - 16px);
}

.safety__item--col2 {
    width: calc(16.66% - 16px);
}

.safety__item:hover .safety__item-info,
.safety__item:hover .safety__item-num {
    transform: translateY(-80px);
}



@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {
    .safety__item-image {
        max-height: 480px;
    }
}

@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {
   .safety__item--md-col12 {
        width: 100%;
   }
   .safety__item--md-col6 {
        width: calc(50% - 12px);
   }
   .safety__item-image.safety__item--col4 {
        max-height: 540px;
   }
   .safety__item-image.safety__item--col2 {
        max-height: 740px;
   }
   .safety__item:hover .safety__item-info,
    .safety__item:hover .safety__item-num {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .safety__item--col6 {
        width: 100%;
    }
    .safety__item-image {
        width: 100%;
    }
    .safety__item-image.safety__item--col4 {
        max-height: 500px;
    }
    .safety__item {
        width: 100%;
    }
    .safety__item.safety__item--col4 {
        max-height: 500px;
    }
}

@media (max-width: 575.98px) {
    .safety__item-title {
        font-size: 20px;
    }
    .safety__item-description {
        font-size: 14px;
    }
    .safety__item {
        padding: 16px;
    }
    .safety__item-line {
        width: 100%;
    }
}

@media (max-width: 478.98px) {

}

@media (max-width: 419.98px) {

}

/* SAFETY END */


@media (max-width: 1599.98px) {

}

@media (max-width: 1399.98px) {

}

@media (max-width: 1199.98px) {

}

@media (max-width: 991.98px) {
   
}

@media (max-width: 767.98px) {
   
}

@media (max-width: 575.98px) {

}

@media (max-width: 478.98px) {

}

@media (max-width: 419.98px) {

}