* {
    padding: 0;
    margin: 0;
    border: none;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
section {
  scroll-margin-top: 200px;
}
a {
    color: #fff;
}
a, a:link, a:visited  {
    text-decoration: none;
}
a:hover  {
    text-decoration: none;
}
aside, nav, footer, header, section, main {
    display: block;
}
h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}
ul, ul li {
    list-style: none;
}
img {
    vertical-align: top;
}
img, svg {
    max-width: 100%;
    height: auto;
}
input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}
input::-ms-clear {
    display: none;
}
textarea {
    resize: vertical;
}
button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}
button::-moz-focus-inner {
    padding: 0;
    border: 0;
}
label {
    cursor: pointer;
}
body {
    font-family: "Geist", sans-serif;
    font-weight: 500;
    background-color: #020202;
    color: #fff;
}
.container {
    max-width: 1230px;
    margin: 0 auto;
    padding: 0 15px;
}
.header-container {
    position: fixed;
    max-width: 1790px;
    margin: 0 auto;
    padding: 0 15px;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    width: 100%;
}
.h2{
    font-weight: 600;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
}
.btn-blue {
    font-family: "Geist", sans-serif;
    font-weight: 500;
    font-size: 16px;
    display: block;
    position: relative;
    line-height: 150%;
    letter-spacing: 1;
    box-shadow: inset 0 0 10px 4px rgba(35, 136, 255, 0.29);
    background: rgba(2, 2, 2, 0.8);
    padding: 12px 24px;
    border-radius: 8px;
    transition: .3s;
    max-width: fit-content;
}
.btn-blue:hover {
    box-shadow: inset 0 0 20px 8px rgba(35, 136, 255, 0.29);
    transition: .3s;
}
.btn-blue::before {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    padding: 1.5px;
    border-radius: 10px;
    background: linear-gradient(101.9deg, #468CFF 0.35%, #021535 65.17%, #00EEFF 90.69%);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.btn-blue::after {
    content: "";
    position: absolute;
    background-image: url('/img/ellipse-btn-blue.svg');
    background-repeat: no-repeat;
    background-position: center;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    width: 100%;
    max-width: 190px;
    height: 28px;
    border-radius: 100%;
    filter: blur(10px);
}
.btn-black {
    font-weight: 500;
    font-size: 18px;
    background-color: #020202;
    border-radius: 8px;
    padding: 12px 24px;
    line-height: 133%;
    letter-spacing: -0.01em;
    color: #fff;
    border: 1.5px solid rgba(52, 52, 52, 1);
}
.btn-black:hover {
    box-shadow: inset 0 0 20px 8px rgba(30, 30, 30, 0.29);
    transition: .3s;
}

/* header */
.header {
    padding: 16px;
    border: 1.50px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(2, 2, 2, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.header__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header__logo img {
    width: 48px;
    height: 48px;
}
.header__logo-text {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    color: #fff;
}
.header__logo-text.mobile {
    display: none;
}
.menu__list {
    display: flex;
    align-items: center;
    gap: 24px;
}
.menu__item a {
    font-weight: 500;
    font-size: 18px;
    line-height: 133%;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.7);
    transition: .3s color;
}
.menu__item a:hover {
    color: rgb(255, 255, 255);
}
/* Burger */
.header__burger {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.header__burger-line {
    display: block;
    border-radius: 2px;
    width: 32px;
    height: 3px;
    background: #d9d9d9;
}
.header__menu-mob {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    outline: none;
}
.header__burger {
    position: relative;
    width: 32px;
    height: 18px;
}
.header__burger-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: #d9d9d9;
    transition:
        top 0.25s ease,
        transform 0.25s ease;
}
.header__burger-line:first-child {
    top: 4px;
}
.header__burger-line:last-child {
    top: 14px;
}
.header__menu-mob.active .header__burger-line:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.header__menu-mob.active .header__burger-line:last-child {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
.header.active {
    box-shadow: 0 0 120px 24px rgba(70, 140, 255, 0.45);
    background: rgba(2, 2, 2, 0.6);
}
.header__menu-list--mob {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px);
    margin-top: 0;
    transition:
        max-height 0.3s ease,
        opacity 0.2s ease,
        transform 0.2s ease,
        margin-top 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}
.header.active .header__menu-list--mob {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 24px;
}
body.menu-open {
    overflow: hidden;
}
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 2, 2, 0.85);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
    z-index: 5;
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
.header {
    position: relative;
    z-index: 10;
}

@media (max-width: 1440px){
    .header__logo-text {
        font-size: 18px;
    }
}
@media (max-width: 1250px){
    .header__inner {
        gap: 10px;
    }
    .menu__list {
        gap: 10px;
    }
    .header__logo-text {
        display: none;
    }
    .header__logo-text.mobile {
        display: block;
    }
    .menu__list {
        width: 100%;
    }
    .header__link {
        width: 100%;
        max-width: fit-content;
    }
    .menu__item a {
        font-size: 16px;
    }
    .header__link .btn-blue {
        font-size: 14px;
    }
    .header__logo-text.mobile {
        font-size: 16px;
    }
}
@media (max-width: 1024px){
    .header__menu,
    .header__link {
        display: none;
    }
    .header__menu-mob {
        display: block;
    }
    .header__menu-list--mob ul {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }
    .menu__item--mob a {
        font-weight: 500;
        font-size: 20px;
        line-height: 110%;
        color: #fff;
    }
}

/* HERO */
.hero {
    padding: 196px 0;
    position: relative;
}
.hero::after {
    content: "";
    position: absolute;
    background-image: url(/img/bg-hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
}
.hero-inner {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 15px;
}

.hero__content {
    max-width: 690px;
}
.hero__content-img {
    margin-bottom: 54px;
}
.hero__content-title h1{
    font-weight: 600;
    font-size: 60px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 24px;
}
.hero__content-text p {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
    margin-bottom: 40px;
}
.hero__content-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column;
        align-items: center;
        gap: 64px;
    }
    .hero__content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero__content-title h1,
    .hero__content-text p {
        text-align: center;
    }
    .hero::after {
        background-image: url('/img/bg-hero-mob.png');
    }
    .hero::before {
        content: "";
        background-image: url('/img/hero-bottom.png');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 128px;
        background: linear-gradient(180deg, rgba(2, 2, 2, 0) 0%, #020202 100%);
    }
}
@media (max-width: 768px) {
    .hero {
        padding: 152px 0;
        padding-bottom: 120px;
    }
    .hero__content-img {
        margin-bottom: 32px;
    }
    .hero__content-title h1{
        font-size: 40px;
        margin-bottom: 16px;
    }
    .hero__content-text p {
        font-size: 18px;
        margin-bottom: 32px;
    }
    .hero__content-buttons {
        display: flex;
        align-items: center;
        gap: 16px;
    }
}

/* functional */

.functional {
    padding-bottom: 276px;
}
.top {
    display: flex;
    max-width: 935px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 76px;
}
.top-subtitle {
    font-weight: 500;
    font-size: 14px;
    line-height: 171%;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    border: 1.50px solid rgba(255, 255, 255, 0.2);
    border-radius: 38px;
    padding: 8px 16px;
    background-color: rgba(2, 2, 2, 0.8);
    max-width: fit-content;
    margin-bottom: 40px;
}
.top-title {
    margin-bottom: 24px;
}
.top-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #9a9a9a;
}
.functional__content .container {
    position: relative;
    padding: 24px;
    border: 1.50px solid #343434;
}
.functional__content .functional__content-border svg,
.advantages__content-border svg,
.forwhom__content-border svg,
.faq__content-border svg {
    content: "";
    position: absolute;
    z-index: 1;
}
.functional__content .functional__content-border--topleft svg,
.advantages__content-border--topleft svg,
.forwhom__content-border--topleft svg,
.faq__content-border--topleft svg {
    top: -4px;
    left: -4px;
}
.functional__content .functional__content-border--topright svg,
.advantages__content-border--topright svg,
.forwhom__content-border--topright svg,
.faq__content-border--topright svg {
    top: -4px;
    right: -4px;
}
.functional__content .functional__content-border--bottomleft svg,
.advantages__content-border--bottomleft svg,
.forwhom__content-border--bottomleft svg,
.faq__content-border--bottomleft svg {
    bottom: -4px;
    left: -4px;
}
.functional__content .functional__content-border--bottomright svg,
.advantages__content-border--bottomright svg,
.forwhom__content-border--bottomright svg,
.faq__content-border--bottomright svg {
    bottom: -4px;
    right: -4px;
}
.functional__content-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}
.functional__content-top,
.functional__content-bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.functional__content-bottom .functional__item {
    display: flex;
    justify-content: space-between;
}
.functional__content-bottom .functional__item .functional__item-text {
    padding-right: 24px;
}
.functional__item {
    /* max-width: 768px; */
    width: 100%;
    background-repeat: no-repeat;
}
.functional__item-info {
    position: relative;
    overflow: hidden;
}
.functional__item-info .functional__info-decor--bottom svg {
    content: '';
    position: absolute;
    left: -30%;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.functional__item-info .functional__info-decor--top svg {
    content: '';
    position: absolute;
    right: -50%;
    top: 0;
    width: 100%;
    height: 100%;
}
.functional__item-text {
    max-width: 277px;
}
.functional__item-info,
.functional__content-bottom .functional__item {
    border: 1.50px solid #343434;
    border-radius: 24px;
    background-color: #000000;
    padding: 24px;
}
.functional__item-small {
    max-width: 360px;
}
.functional__item-small img {
    height: 100%;
    width: 100%;
}
.functional__content-bottom .functional__item-small {
    position: relative;
    flex-direction: column;
    justify-content: start;
    background-position: bottom;
    overflow: hidden;
}
.functional__content-bottom .functional__item-small .functional__item-small--decor svg {
    content: "";
    position: absolute;
    left: 0;
    top: -31%;
    width: 100%;
    height: 100%;
}
.functional__item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}
.functional__item-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    color: #9a9a9a;
    margin-bottom: 24px;
}
.functional__baza-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: -65px;
}
.functional__baza-overlay {
    position: absolute;
    bottom: -20px;
    left: 0;
    background: rgba(2, 2, 2, 0.1);
    backdrop-filter: blur(1px);
}
.functional__baza-item,
.functional__baza-item div {
    display: flex;
    align-items: center;
    gap: 16px;
}
.functional__baza-item {
    justify-content: space-between;
    border-radius: 16px;
    padding: 16px 24px;
    background: rgba(94, 94, 94, 0.3);
}
.functional__baza-item div > div {
    flex-direction: column;
    align-items: start;
    gap: 1px;
}
.functional__baza-item div p {
    font-weight: 500;
    font-size: 18px;
    line-height: 100%;
    color: #fff;
}
.functional__baza-item div span {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #9a9a9a;
}

@media (max-width: 1024px) {
    .functional__content-top,
    .functional__content-bottom {
        flex-direction: column;
    }
    .functional__content-bottom .functional__item-small {
        position: relative;
        flex-direction: column;
        justify-content: start;
        background-position: bottom;
        overflow: hidden;
        max-width: 100%;
        background-size: cover;
        min-height: 295px;
    }
    .functional__item {
        max-width: 100%;
    }
    .functional__item-text {
        max-width: 50%;
    }
    .functional__content-bottom .functional__item .functional__item-text {
        padding-right: 0;
    }
    .functional {
        padding-bottom: 120px;
    }
}
@media (max-width: 768px) {
    .functional__content-bottom .functional__item {
        flex-direction: column;
        align-items: center;
    }
    .functional__content-bottom .functional__item-small {
        align-items: start;
    }
    .functional__item-text {
        max-width: 100%;
    }
    .functional__top-title {
        font-size: 32px;
    }
    .functional__top-text {
        font-size: 16px;
    }
    .functional__item-title {
        font-size: 20px;
    }
    .functional__content-inner {
        padding: 0;
    }
}

/* PATH */
.path {
    padding: 128px 0;
}
.path-top {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}
.path__title {
    margin-bottom: 40px;
}
.path-top img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
}
.path__list {
    margin-top: 370px;
    position: relative;
    z-index: 3;
}
.path__item {
    width: 100%;
}
.path__item:nth-child(2n){
    display: flex;
    justify-content: end;
}
.path__item-inner {
    max-width: 384px;
    background: rgba(19, 19, 20, 0.7);
    border: 1.50px solid #343434;
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(10px);
}
.path__item-icon {
    margin-bottom: 80px;
}
.path__item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 12px;
}
.path__item-descr {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #fff;
}
.path-top {
    position: relative;
    z-index: 2;
}

.path__crousel-mob {
    display: none;
}
.path__crousel-mob .swiper-notification {
    display: none;
}
.path__link-mob {
    display: none;
}
@media (max-width: 1024px) {
    .path__list {
        display: none;
    }
    .path-top {
        z-index: 0;
    }
    .path__crousel-mob {
        display: block;
    }
    .path__crousel-mob .swiper {
        display: flex;
    }
    .path__list-item-mob {
        height: 100%;
    }
    .path__item-inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        max-width: 100%;
        min-height: 275px;
    }
    .path__link {
        display: none;
    }
    .path__link.path__link-mob {
        display: flex;
        justify-content: center;
        margin-top: 24px;
    }
    .path__crousel-mob .swiper-slide {
        height: auto;
    }
    .path__item-icon {
        margin-bottom: 40px;
    }
    .path__crousel-mob .swiper-wrapper {
        align-items: stretch;
    }
}

/* advantages */
.advantages {
    margin-bottom: 196px;
}
#advantages .container {
    max-width: 1278px;
}
.advantages__content {
    position: relative;
    padding: 24px;
    border: 1.50px solid #343434;
}
.advantages__inner {
    display: flex;
    gap: 24px;
}

.advantages__left,
.advantages__right {
    width: 100%;
}
.advantages__list {
    width: 100%;
    height: 100%;
    padding: 24px;
    border-radius: 24px;
    border: 1.50px solid #343434;
}

.advantages__left .advantages__list {
    padding-bottom: 15px;
    background-color: #020202;
}
.advantages__item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}
.advantages__left .advantages__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #9a9a9a;
    margin-bottom: 24px;
}
.advantages__left .advantages__item-title {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #ed4444;
    margin-bottom: 10px;
}
.advantages__left .advantages__item-descr {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #9a9a9a;
}

.advantages__right .advantages__list {
    position: relative;
    border: 1.50px solid #325CA1;
    box-shadow: 0 0 120px 24px rgba(70, 140, 255, 0.45);
    /* background-color: #131314; */
    overflow: hidden;
}
.advantages__right .advantages__list::before {
    content: '';
    background-image: url('/img/bg-advantages-right.png');
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.advantages__right .advantages__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 24px;
}
.advantages__right .advantages__item-title {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #05e3d8;
    margin-bottom: 10px;
}
.advantages__right .advantages__item-descr {
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #fff;
}
.advantages__right .btn-blue {
    margin-top: 10px;
    width: 100%;
    max-width: 100%;
    text-align: center;
}
.advantages__right .btn-blue::after {
    background-size: cover;
    max-width: 160%;
    width: 135%;
}
@media (max-width: 1024px){
    .advantages__inner {
        flex-direction: column;
    }
}
@media (max-width: 768px){
    .advantages {
        margin-bottom: 116px;
    }
    .advantages__inner {
        gap: 8px;
    }
    .advantages__left,
    .advantages__right {
        width: 100%;
    }
    .advantages__list {
        padding: 16px;
    }
    .advantages__item {
        padding: 16px 0;
    }

    .advantages__left .advantages__title,
    .advantages__right .advantages__title {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .advantages__left .advantages__item-title,
    .advantages__right .advantages__item-title {
        font-size: 20px;
        margin-bottom: 4px;
    }
    .advantages__left .advantages__item-descr,
    .advantages__right .advantages__item-descr {
        font-size: 14px;
    }
}

@media (max-width: 768px){
    .h2{
        font-size: 32px;
        margin-bottom: 16px;
    }
    .top-text {
        font-size: 18px;
    }
    .top {
        margin-bottom: 36px;
    }
}

/* forwhom */
.forwhom {
    margin-bottom: 196px;
}
.forwhom .container {
    max-width: 1278px;
}
.forwhom .top {
    margin-bottom: 160px;
}
.forwhom__inner {
    position: relative;
    padding: 24px;
    border: 1.50px solid #343434;
}
.forwhom__inner picture > img {
    position: absolute;
    bottom: 0;
}
.forwhom__list {
    position: relative;
    padding-bottom: 84px;
    padding-top: 80px;
}
.forwhom__list .swiper-pagination {
    display: none;
}
.forwhom__item {
    display: flex;
    justify-content: center;
}
.forwhom__item > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 588px;
}
.forwhom__item img {
    max-width: 160px;
    margin-bottom: 48px;
}
.forwhom__item-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    margin-bottom: 16px;
}
.forwhom__item-text {
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #9a9a9a;
}
.forwhom__list .custom-button-next,
.forwhom__list .custom-button-prev {
    position: absolute;
    top: 50%;
    z-index: 99;
    transform: translateY(-50%);
    cursor: pointer;
}
.forwhom__list .custom-button-next {
    right: 0;
}
@media (max-width: 1024px) {
    .forwhom {
        margin-bottom: 120px;
    }
    .forwhom__list {
        padding-bottom: 76px;
    }
}
@media (max-width: 600px) {
    .forwhom .top {
        margin-bottom: 100px;
    }
    .forwhom__inner picture > img {
        width: 100%;
        max-height: 248px;
    }
    .forwhom__item > div {
        max-width: 400px;
    }
    .forwhom__item img {
        max-width: 80px;
        margin-bottom: 40px;
    }
    .forwhom__item-title {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .forwhom__item-text {
        font-size: 14px;
    }
    .forwhom__list .swiper-pagination {
        display: block;
        bottom: 0;
    }
    .forwhom__list .custom-button-next,
    .forwhom__list .custom-button-prev {
        display: none;
    }
}
@media (max-width: 435px){
    .forwhom__item > div {
        max-width: 342px;
    }
}

.panel {
    margin-bottom: 200px;
}
.panel__carusel {
    position: relative;
}
.panel__carusel .swiper {
    border-radius: 24px;
    margin-bottom: 68px;
}
.swiper-wrapper {
    display: flex;
    border-radius: 24px;
}
.panel__carusel .swiper-slide {
    overflow: hidden;
    border-radius: 24px;
}
.swiper-pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.panel .panel__carusel .swiper-pagination {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);

}
.swiper-pagination-bullet {
  width: 80px;
  height: 4px;
  background: rgba(35, 136, 255, 0.3);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  opacity: 1;
}
.swiper-pagination-bullet .progress {
  position: absolute;
  inset: 0;
  background: #2388ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.1s linear;
}
@media (max-width: 640px) {
    .swiper-pagination-bullet {
        width: 70px;
    }
}
.panel__content {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.panel__content-item {
    cursor: pointer;
}
.panel__content-item.active h4,
.panel__content-item.active p {
    color: #ffffff;
    transition: .3s ease-in-out;
}
.panel__content-item h4{
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: #9a9a9a;
    margin-bottom: 8px;
}
.panel__content-item p {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: #9a9a9a;
}
@media (max-width: 1024px) {
    .panel {
        margin-bottom: 120px;
    }
    .panel__content {
        flex-direction: column;
    }
    .panel__carusel .swiper-wrapper {
        min-height: 240px;
    }
    .panel__carusel .swiper-slide {
        height: 100%;
    }
}
@media (max-width: 768px){
    .panel {
        margin-bottom: 120px;
    }
    .panel__carusel .swiper-slide img {
        width: 100%;
        height: 100%;
    }
    .panel__content-item p {
        font-size: 14px;
    }
}
.utp {
    margin-bottom: 200px;
}
.utp__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.utp__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background-color: #131314;
    border: 1.50px solid #343434;
    border-radius: 24px;
    padding-right: 24px;
}
.utp__item:nth-child(2){
    padding-right: 0;
    padding-left: 24px;
}
.utp__content {
    max-width: 508px;
    padding: 80px;
    padding-right: 0;
}
.utp__item:nth-child(2) .utp__content {
    padding: 80px;
    padding-left: 0;
}
.utp__icon {
    margin-bottom: 40px;
}
.utp__title {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}
.utp__descr {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #9a9a9a;
    margin-bottom: 24px;
}
.utp__link .btn-blue-arrow {
    font-weight: 500;
    font-size: 18px;
    line-height: 133%;
    letter-spacing: -0.01em;
    color: #2388ff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}
.utp__link .btn-blue-arrow span {
    display: inline-block;
    transition: transform 0.3s ease;
}
.utp__link .btn-blue-arrow span svg {
    vertical-align: bottom;
}
.utp__link .btn-blue-arrow:hover span {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .utp {
        margin-bottom: 160px;
    }
    .utp__content {
        max-width: 355px;
        padding: 40px;
        padding-right: 0;
    }
    .utp__item:nth-child(2) .utp__content {
        padding: 40px;
        padding-left: 0;
    }
    .utp__icon {
        margin-bottom: 20px;
    }
    .utp__title {
        font-size: 24px;
    }
}
@media (max-width: 768px) {
   .utp {
        margin-bottom: 120px;
    }
    .utp__item {
        flex-direction: column;
        gap: 16px;
    }
    .utp__content {
        max-width: 100%;
    }
    .utp__item:nth-child(2){
        flex-direction: column-reverse;
        padding-right: 16px;
        padding-left: 16px;
    }
    .utp__item {
        padding: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
    }
    .utp__content {
        padding: 0;
    }
    .utp__item:nth-child(2) .utp__content {
        padding: 0;
    }
    .utp__img {
        width: 100%;
    }
    .utp__img img {
        width: 100%;
    }
    .utp__icon {
        max-width: 40px;
        margin-bottom: 8px;
    }
    .utp__title,
    .utp__descr {
        margin-bottom: 8px;
    }
    .utp__list {
        gap: 8px;
    }
    .utp__link .btn-blue-arrow {
        font-size: 16px;
    }
    .utp__title {
        font-size: 20px;
    }
    .utp__descr {
        font-size: 14px;
    }
}

.security {
    margin-bottom: 200px;
}
.security__list {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.security__item {
    padding: 24px;
    background: rgba(19, 19, 20, 0.7);
    border: 1.50px solid #343434;
    border-radius: 24px;
}
.security__item-img {
    margin-bottom: 24px;
}
.security__item-img img {
    width: 100%;
}
.security__item-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 12px;
}
.security__item-descr {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #fff;
}
@media (max-width: 1024px) {
    .security__list {
        gap: 8px;
    }
    .security__item {
        padding: 16px;
    }
    .security__item-title {
        font-size: 20px;
    }
    .security__item-descr {
        font-size: 14px;
    }
}
@media (max-width: 768px){
    .security {
        margin-bottom: 120px;
    }
    .security__list {
        flex-direction: column;
    }
}
#faq .container {
    max-width: 1278px;
}
.faq__content {
    position: relative;
    padding: 24px;
    border: 1.50px solid #343434;
}
.faq__item {
    background: #020202;
    border-radius: 24px;
    border: 1px solid #343434;
}
.faq__item.active,
.faq__item.active {
    background-color: #131314;
    overflow: hidden;
    border: 1px solid #3E97FF;
}
.faq__item:not(:last-child){
    margin-bottom: 8px;
}
.faq__accordion-button {
    padding: 27px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    outline: none;
}
.faq__accordion-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: #fff;
}
.faq__accordion-button svg {
    vertical-align: bottom;
}
.faq__accordion-wrap p {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    color: #9a9a9a;
    padding: 27px 24px;
    padding-top: 0;
}

.faq__accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.32s ease;
    will-change: height;
}
.faq__accordion-button svg {
    transition: transform 0.3s ease;
}

.faq__accordion-button[aria-expanded="true"] svg {
    transform: rotate(180deg);
}
@media (max-width: 768px) {
    .faq__accordion-title {
        font-size: 16px;
        text-align: start;
        line-height: 120%;
    }
    .faq__accordion-wrap p {
        font-size: 14px;
    }
    .faq__accordion-button,
    .faq__accordion-wrap p {
        padding: 16px;
    }
    .faq__accordion-wrap p {
        padding-top: 0;
    }
}

.footer {
    background-image: url('/img/bg-footer.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 200px;
    padding-bottom: 16px;
}
.footer__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 200px;
}
.footer__top .top-text {
    color: #fff;
}
.footer__top > img {
    margin-bottom: 65px;
}
.footer__inner .top-text {
    margin-bottom: 40px;
}
.footer__bottom {
    padding: 40px;
    border-radius: 24px;
    background-color: #020202;
}
.footer__content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.footer__info {
    max-width: 446px;
}
.footer__info-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.footer__info-logo p {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: -0.01em;
    color: #fff;
}
.footer__info-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #9a9a9a;
}
.footer__form {
    max-width: 548px;
    width: 100%;
}
.callback__form-item {
    width: 100%;
}
.callback__form-input {
    background: rgba(19, 19, 20, 0.7);
    padding: 15px 16px;
    border: 1px solid #343434;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 16px;
}
.callback__form-input:focus {
    outline: 1px solid #3E97FF;
}
.callback__form-input:autofill {
    background-color: rgba(19, 19, 20, 0.7) !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgba(19, 19, 20, 0.7) inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff;
  transition: background-color 9999s ease-in-out 0s;
}
.callback__form-group {
    display: flex;
    gap: 16px;
}
.callback__form-policy {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.callback__form-policy a {
    text-decoration: underline;
}
.footer__policy *{
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
}
.callback__form-policy .custom-checkbox {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-width: 41px;
}
.callback__form-policy .custom-checkbox:hover .dot-box {
    background: #292929;
}
.callback__form-policy .custom-checkbox:hover .dot-box .dot {
    background: #fff;
}
.callback__form-policy .custom-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    cursor: pointer;
}
.callback__form-policy .custom-checkbox input:checked + .dot-box {
    background: #2388FF;
}
.callback__form-policy .custom-checkbox input:checked + .dot-box .dot {
    left: calc(100% - 16px - 5px);
}
.callback__form-policy .custom-checkbox .dot-box {
    position: relative;
    padding: 0;
    width: 41px;
    height: 24px;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: 0.25s;
    background: #343434;
}
.callback__form-policy .custom-checkbox .dot-box .dot {
    width: 16px;
    height: 16px;
    border-radius: 34px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    transition: 0.25s;
}
.footer__policy {
    display: flex;
    justify-content: space-between;
    padding-top: 40px;
    border-top: 1.50px solid #343434;
}
.footer__policy-link {
    display: flex;
    justify-content: space-between;
    max-width: 548px;
    width: 100%;
}
.footer__policy-link a {
    display: block;
    transition: .3s color;
}
.footer__policy-link a:hover {
    color: rgba(175, 175, 175, 0.7);
}

@media (max-width: 1024px) {
    .footer__info {
        max-width: 347px;
    }
    .footer__info-logo img {
        width: 48px;
    }
    .footer__info-logo p {
        font-size: 20px;
    }
    .footer__policy,
    .footer__policy-link {
        flex-direction: column;
    }
    .footer__policy {
        gap: 24px;
    }
    .footer__top {
        margin-bottom: 120px;
    }
    .footer__top > img {
        max-width: 195px;
        margin-bottom: 24px;
    }
}
@media (max-width: 767.9px) {
    .footer {
        padding-top: 88px;
    }
    .footer__info {
        max-width: 100%;
    }
    .footer__content {
        flex-direction: column;
        gap: 40px;
    }
    .footer__form {
        max-width: 100%;
    }
    .callback__form-policy {
        margin-bottom: 32px;
    }
    .footer__inner .top-text {
        margin-bottom: 24px;
    }
}
@media (max-width: 600px) {
    .footer {
        background-image: url('/img/footer-bg-mob.svg');
    }
    .footer__bottom {
        padding: 16px;
    }
    .footer__content {
        margin-bottom: 32px;
    }
    .footer__info-logo {
        margin-bottom: 8px;
    }
    .footer__policy {
        padding-top: 16px;
    }
    .callback__form-group {
        flex-direction: column;
        gap: 0;
    }
    .callback__form-policy.error {
        margin-bottom: 47px;
    }
    .container,
    .functional__content .container,
    .advantages__content,
    .forwhom__inner,
    .faq__content {
        padding: 8px;
    }
    .functional__content .container {
        margin: 0 8px;
    }
}

/* FORM */

.callback__form-item {
    position: relative;
}
.callback__form-input.error {
    margin-bottom: 38px;
    outline: 1px solid #ed4444;
}
.callback__form-error {
    font-size: 14px;
    margin-bottom: 16px;
    display: inline-block;
    background-color: #ff4757;
    padding: 0.25rem 0.75rem;
    border-radius: 2.5rem;
    position: absolute;
    bottom: 0;
    left: 10px;
}
.callback__form-policy .callback__form-error {
    bottom: auto;
    top: 110%;
    left: 0;
}
