@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&amp;display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Golos Text', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.03em;
    color: #00025B;
    overflow-x: hidden;
    background-color: #AADDE3;
}
body.no-scroll {
    overflow: hidden;
    height: 100vh; 
}
p{
    line-height: 24px;
}
.strongtext {
    font-weight: 700;
}

h1 {
    font-weight: 600;
    font-size: 62px;
    line-height: 72px;
    letter-spacing: 0;
}

h2 {
    font-weight: 700;
    font-size: 32px;

    background: linear-gradient(90deg, #00025B 0%, #00FFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

h3 {
    font-weight: 600;
    font-size: 24px;
}

.my-btn {
    all: unset;
    display: inline-flex;
    padding: 17px 22px;
    background: #73CFD9;
    color: #00025B;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Golos Text", sans-serif;
    font-weight: 600;
    transition: background-color 0.3s ease-in-out;
}

.my-btn:hover {
    background: #37A9B5;
}

.my-btn:focus-visible {
    outline: none;
}

.my-btn:focus-visible {
    outline: 2px solid #37A9B5;
    outline-offset: 2px;
}

.hero-section {
    background: #EBF8F9;
    padding-top: 250px;

    background-image: url('../img/main-01.svg');
    background-repeat: no-repeat;
    background-position: center 40px;
    background-size: 100% auto;
}

.herobox {

    padding-top: 120px;
    background-image: url('../img/main-04.svg');
    background-repeat: no-repeat;
    background-position: center 40px;
    background-size: 100% auto;
}

.herobox-bg {
    background: #BFE7EA;
    padding: 30px 50px;
}

.herobox-content {
    display: flex;
    justify-content: space-between;
    /* Текст слева, кнопка справа */
    align-items: center;
    /* Центрирование по вертикали */
    gap: 30px;
    /* Отступ между текстом и кнопкой */
}

.herobox-text {
    flex: 0 1 33.33%;
    /* Занимает 1/3 ширины, может сжиматься */
}


/* Адаптив: на мобилках текст во всю ширину, кнопка снизу */
@media (max-width: 991px) {
    .herobox-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .herobox-text {
        flex: 1 1 100%;
    }
}

.bg-todark {
    background: linear-gradient(0deg, #AADDE3 0%, #EAF8F9 100%);
    position: sticky;
}

.bg-towhite {
    background: linear-gradient(0deg, #EAF8F9 0%, #AADDE3 100%);

    position: sticky;
}

/* =========================
   SLIDER WRAPPER
========================= */
.slider-wrap {
    position: relative;
    width: 100%;
}

/* NAV BUTTONS */
.slider-nav {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.slider-btn {
    width: 66px;
    height: 66px;
    background: rgba(191, 231, 234, 0.7);
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .2s ease;
    border-radius: 5px;
}

.slider-btn:disabled {
    opacity: .4;
    cursor: default;
}

.slider-btn svg {
    width: 66px;
    height: 66px;
}

/* SLIDER VIEWPORT */
.slider {
    overflow: hidden;
    margin-left: 88px;
    /* gap between nav buttons and cards */
}

/* TRACK */
.slider-track {
    display: flex;
    gap: 20px;
    transition: transform .4s ease;
    will-change: transform;
}

/* CARD */
.slide-card {
    background: #BFE7EA;
    border-radius: 20px;
    padding: 40px 50px 60px;
    box-sizing: border-box;
    flex: 0 0 calc((100% - 24px* (2.5 - 1)) / 2.5);
    /* 2.5 cards visible desktop */
}

.slide-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: left;
    max-width: 250px;
}

.slide-card img {
    border-radius: 0px;
    display: block;
    margin: 55px auto;
    width: 60%;
}

.slide-link {
    display: inline-block;
}

/* MEDIA QUERIES */
@media (max-width: 1111px) {
    .slide-card img {
        width: auto;
    }
}

@media (max-width: 992px) {
    .slide-card {
        flex: 0 0 calc((100% - 20px* (1.5 - 1)) / 1.5);
        /* 1.5 cards tablet */
    }
}

@media (max-width: 576px) {
    .slide-card {
        flex: 0 0 calc((100% - 20px* (1.3 - 1)) / 1.3);
        /* 1.2 cards mobile */
    }
}

.somebg1 {
    background-image: url('../img/main-012.svg');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    padding-bottom: 150px;
}

.somebg2 {
    background-image: url('../img/main-042.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    padding-top: 100px;
}

.somebg3 {
    background-image: url('../img/main-032.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    padding-top: 150px;
}

.somebg4 {
    background-image: url('../img/main-043.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    padding-top: 150px;
    margin-top: 50px;
    padding-bottom: 44px;
}

.somebg5 {
    background-color: #EBF8F9;
    background-image: url('../img/main-033.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    padding-top: 65px;
}

.somebg-footer {
    background-color: #EBF8F9;
    background-image: url('../img/main-013.svg');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    padding-top: 210px;
    position: sticky;
}

.nopadall {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.crypto-form {
    padding-top: 190px;
    margin-top: -50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    background-image: url('../img/main-03.svg');
    background-repeat: no-repeat;
    background-position: center 40px;
    background-size: 100% auto;
}

.crypto-form__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    max-width: 666px;
}

.crypto-input {
    flex: 1;
    padding: 16px 20px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    font-weight: 400;
    color: #00025B;
    outline: none;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

/* Placeholder */
.crypto-input::placeholder {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0;
    color: rgba(0, 28, 88, 0.6);
}

/* Focus */
.crypto-input:focus {
    border-color: #73CFD9;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);

}

/* Кнопка */
.crypto-btn {}

.crypto-btn:hover {}

/* Текст снизу */
.crypto-form__desc {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
}

.fw-600 {
    font-weight: 600;
}
.acclink{
    float:right;
    margin-left: 15px;
}
.nav-link {
    color: #00236E;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: -0.03em;
    margin: 0 13px;
}
.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.navbar.scrolled,
.navbar.opened {

    background-color: rgba(255, 255, 255, 0.2);
    /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);*/
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #00236E;
}
.nav-link:focus, .nav-link:hover {
    color: #00236E;
}
.container-wide {
    max-width: 1920px;
    margin: 0 auto;
    padding-left: 100px;
    padding-right: 100px;
}

.navbar .container-wide {
    width: 100%;
    display: flex;
}

.navbar-toggler {
    float: right;
}

/* 1. Базовый контейнер карточки */
.split-card {
    display: grid;
    /* Левая часть чуть меньше половины */
    grid-template-columns: 0.7fr 1.3fr;
    gap: 70px;
    width: 100%;
    align-items: stretch;
    /* Растягивает обе колонки по высоте самой большой */
    margin-top: 70px;
}

/* 2. Левая часть с картинкой */
.split-card-image-box {
    height: 340px;
    border-radius: 10px;
    overflow: hidden;
    /* Чтобы скруглить углы картинки */
}

.split-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Обрезает лишнее без искажений */
    display: block;
}

/* 3. Правая часть — контейнер контента */
.split-card-content {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

/* 4. Внутренняя группа, которая тянется на всю высоту */
.split-card-info-group {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* Занимает все 340px высоты рядом с фото */
}

/* 5. Иконка на десктопе — прижимаем к верху */
.split-card-top-icon {
    margin-bottom: auto;
    /* Выталкивает иконку вверх, а текст — вниз */
}

.split-card-top-icon img {
    width: 40px;
    height: auto;
    display: block;
}

/* 6. Текстовый блок (H4 + P) */
.split-card-title {
    font-size: 28px;
    font-weight: 600;
    color: #00025B;
    margin-top: 40px;
    /* Гарантированный зазор сверху */
    margin-bottom: 8px;
    margin-right: 70px;
}

.split-card-p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
    padding-top: 15px;
}

/* 7. Адаптив для мобильных устройств (до 768px) */
@media (max-width: 992px) {
    .split-card {
        grid-template-columns: 1fr;
        /* Колонки друг под другом */
        gap: 24px;
    }

    .split-card-image-box {
        height: 250px;
        /* Уменьшаем высоту фото на мобилке */
    }

    /* Переключаем инфо-блок в сетку для выравнивания иконки в ряд с заголовком */
    .split-card-info-group {
        display: grid;
        grid-template-columns: 1fr auto;
        /* Заголовок слева, иконка справа */
        height: auto;
        /* Сбрасываем фиксированную высоту */
        align-items: center;
    }

    .split-card-title {
        grid-column: 1;
        grid-row: 1;
        margin-top: 0;
        margin-right: 15px;
        font-size: 22px;
        /* Уменьшаем шрифт для компактности */
    }

    .split-card-top-icon {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0;
    }

    .split-card-p {
        grid-column: 1 / span 2;
        /* Параграф под ними на всю ширину */
        grid-row: 2;
    }
}

@media (max-width: 768px) {
    .split-card-image-box {
        height: 160px;
        /* Уменьшаем высоту фото на мобилке */
    }
}



.sec-btn {
    display: inline-block;
    text-decoration: none;
    background-color: #FFFFFF;
    font-weight: 600;
    color: #00025B;
    font-size: 16px;

    padding: 16px 32px;
    border-radius: 8px;

    box-shadow: 0px 4px 15px 0px rgba(115, 207, 217, 0.75);
    transition: all 0.3s ease-in-out;
}

.sec-btn:hover {
    background-color: #fcfcfc;
    box-shadow: 0px 4px 20px 0px rgba(115, 207, 217, 1);
    transform: translateY(-1px);
    /* Легкий подъем вверх */
    color: #00025B;
}

/* Эффект при нажатии */
.sec-btn:active {
    transform: translateY(0);
    box-shadow: 0px 2px 10px 0px rgba(115, 207, 217, 0.5);
}
.padforgradbgg{
    padding-left: 15px;
    padding-right: 15px;
}
.gradbgg {
    border-top: 10px solid #73CFD9;
    padding-top: 110px;
    margin-top: 90px;
    padding-bottom: 30px;

    background:
        url('../img/004-qualitybg.svg') no-repeat,
        linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    background-position: right 30px bottom 30px, center;
    background-size: 366px auto, cover;
}

.gradbgg h5 {
    font-size: 24px;
    font-weight: 600;
    line-height: 66px;
}

.gradbgg p {
    max-width: 710px;
    margin-left: auto;
    margin-right: auto;
}

.dynamic-title {
    /* Плавное уменьшение шрифта: от 28px до 48px */
    font-size: 48px;
    font-size: clamp(24px, 4vw, 52px);
    font-weight: 700;
    line-height: 72px;
    text-align: center;
    padding: 0 15px;
    position: relative;
    display: inline-block;
    width: auto;
    z-index: 1;
}

.dynamic-title::after {
    content: "";
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(90deg, rgba(0, 2, 91, 0) 0%, #00025B 100%);
    z-index: 0;
}




/* Контейнер списка */
.oppwhite-list {
    list-style: none;
    padding: 15px 36px;
    margin: 0;
    background-color: #FFFFFF;
    margin-top: 30px;
    margin-bottom: 40px;
}

/* Элемент списка */
.oppwhite-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    /* Отступ между пунктами */
}

/* Контейнер иконки */
.oppwhite-icon {
    display: flex;
    align-items: center;
    margin-right: 32px;
    flex-shrink: 0;
    /* Чтобы галка не сжималась */
}

/* Текст пункта */
.oppwhite-text {
    font-weight: 600;
    font-size: 18px;
    color: #00025B;
    line-height: 1.2;
}

/* Адаптив для мобилок */
@media (max-width: 992px) {

    .oppwhite-icon svg {
        width: 28px;
        height: 28px;
    }
}

.product-img-custom {
    max-width: 100%;
    /* Не дает картинке вылезти за колонку */
    height: auto;
    /* Если картинка кажется слишком маленькой/большой, можно задать ширину: */
    /* width: 80%; */
}



.somebg4 .container-padding {
    padding-left: 90px;
}

/* =========================
   RESET BOOTSTRAP ACCORDION
========================= */

/* убираем рамки и скругления */
.accordion,
.accordion-item,
.accordion-button {
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

/* убираем bootstrap hover/active */
.accordion-button {
    background: transparent !important;
    color: #00025B;
    padding: 32px 80px;
    outline: none !important;
    box-shadow: none !important;
}

/* убираем active focus */
.accordion-button:focus,
.accordion-button:active {
    box-shadow: none !important;
    background: transparent !important;
}

/* body ответов */
.accordion-body {
    padding: 32px 0px;
    margin: 0px 80px;
    font-size: 18px;
    color: #00025B;
    border-top: 1px solid !important;
    border-image-source: linear-gradient(90deg, #EAF8F9 0%, rgba(234, 248, 249, 0) 100%) !important;
    border-image-slice: 1 !important;
}

/* =========================
   QUESTION TYPOGRAPHY
========================= */

.accordion-button {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 1.3;
}

/* =========================
   ALTERNATING BACKGROUNDS
========================= */

/* odd */
.accordion-item:nth-child(odd) {
    background: #73CFD9;
}

/* even */
.accordion-item:nth-child(even) {
    background: #61C9D4;
}

/* =========================
   CUSTOM ARROW 
========================= */

.accordion-button::after {
    display: block;
    flex-shrink: 0;
    background-image: none !important;
    mask: none !important;
    -webkit-mask: none !important;
    content: "";
    width: 60px;
    height: 60px;
    margin-left: auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60' fill='none'%3E%3Cpath d='M47.5 22.5L30 40L12.5 22.5' stroke='%2300025B' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    transition: transform .3s ease;
}

/* поворот стрелки */
.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}



.copyrow {
    padding-top: 60px;
    padding-bottom: 30px;
}

.footterinfo a,
.footterinfo p {
    font-size: 16px;
    font-weight: 400;
    margin-right: 60px;
    text-decoration: none;
    color: #00025B;
}

.footterinfo a:hover {
    color: #00025B;
}

.footterinfo .copy {
    font-weight: 700;
}


.blubg a {
    font-size: 16px;
    font-weight: 700;
    margin-right: 60px;
    text-decoration: none;
    color: #00025B;
}

.blubg a:hover {
    color: #00025B;
}

.blubg.section-bleed-left::before,
.blubg.section-bleed-right::before {
    background: #BFE7EA;
}

.gradbgggg {
    background: url(../img/004start.svg) no-repeat, linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    background-position: right 30px bottom 30px, center;
    background-size: 366px auto, cover;
    padding-bottom: 55px;
}

.gradbgggg p {
    margin-top: 40px;
    margin-bottom: 70px;
    font-weight: 700;
}

.gradbggg {
    background: url(../img/secbl.svg) no-repeat, linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    background-position: right 30px bottom 30px, center;
    background-size: 366px auto, cover;
    padding-bottom: 55px;
}

.gradbggg p {
    margin-top: 40px;
    margin-bottom: 70px;
}

.somebl {
    padding-bottom: 100px !important;
}

.somebl h2 {
    margin-top: 70px;
    margin-bottom: 95px;
}

.somebl h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 40px;
}

.somebl p {
    font-size: 16px;
    font-weight: 500;
    line-height: 32px;
}

.zfocusa.bleed-tr-color.section-right-full::before {}

.zfocusa {
    margin-bottom: -100px;
    z-index: 0;
}

.zfokus {
    padding-top: 150px !important;

}

.posrel {
    position: relative;
}

.new-header-unit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 0;
}

/* Заголовок: убираем лишние отступы h3 */
.new-header-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    padding-right: 15px;
    /* Зазор, если текст дойдет до иконки */
}

/* Ссылка-картинка: чтобы не сжималась */
.new-header-link {
    display: flex;
    flex-shrink: 0;
    transition: 0.2s ease-in-out;
    margin-right: 92px;
    border-radius: 5px;
    width: 66px;
    height: 66px;
    background: rgba(211, 239, 241, 0.7);
}

.new-header-link:hover {
    background: rgba(211, 239, 241, 1);
}

/* Размер изображения */
.new-header-img {
    display: block;
}

.opp-title {
    margin-bottom: 45px;
}

.opp-card-img {
    margin-right: 75px;
    margin-top: 45px;
}


h2.nograd {
    background: none;
    -webkit-background-clip: border-box;
    background-clip: border-box;
    -webkit-text-fill-color: initial;
}


.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #73CFD9;
    /* Фон всего блока */
    padding: 20px 0;
}

.custom-list li {
    display: flex;
    align-items: center;
    /* Центрируем галку и текст по вертикали */
    padding: 0px 0;
    /* Отступы между пунктами */
}

.icon {
    display: flex;
    align-items: center;
    margin-right: 25px;
    /* Расстояние между галкой и текстом */
    flex-shrink: 0;
    /* Чтобы галка не сжималась */
    padding-left: 80px;
}

.text-content {
    flex-grow: 1;
    font-weight: 700;
    font-size: 24px;
    padding: 25px 0;

    /* Кастомная линия под текстом */
    border-bottom: 1px solid;
    border-image-source: linear-gradient(90deg, #EAF8F9 0%, rgba(234, 248, 249, 0) 100%);
    border-image-slice: 1;
}

.custom-list li:last-child .text-content {
    border-bottom: none;
    border-image-source: none;
}





/* ===== core ===== */

.section-bleed {
    position: relative;
    padding: 50px 0;
}

.section-bleed.nopad {
    padding-top: 25px;
    padding-bottom: 25px;
}

.bleed-minpad {
    padding: 50px 0 40px;
}

/* left background */
.section-bleed-left::before,
.section-bleed-right::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    background: #fff;
    z-index: -1;
}

.bleed-grad.section-bleed-left::before,
.bleed-grad.section-bleed-right::before {
    background: linear-gradient(180deg, #FFFFFF 0%, #F2FAFB 77.4%);

}

.bleed-nograd.section-bleed-left::before,
.bleed-nograd.section-bleed-right::before {
    background: #EAF8F9;

}

.bleed-tr-85.section-bleed-left::before,
.bleed-tr-85.section-bleed-right::before {
    background: rgba(255, 255, 255, 0.85);
}

.bleed-tr-65.section-bleed-left::before,
.bleed-tr-65.section-bleed-right::before {
    background: rgba(255, 255, 255, 0.65);
}

.bleed-tr-50.section-bleed-left::before,
.bleed-tr-50.section-bleed-right::before {
    background: rgba(255, 255, 255, 0.50);
}

.bleed-tr-35.section-bleed-left::before,
.bleed-tr-35.section-bleed-right::before {
    background: rgba(255, 255, 255, 0.35);
}

.bleed-tr-20.section-bleed-left::before,
.bleed-tr-20.section-bleed-right::before {
    background: rgba(255, 255, 255, 0.2);
}

.bleed-tr-color.section-bleed-left::before,
.bleed-tr-color.section-bleed-right::before {
    background: #EAF8F9;
}

.bleed-tr-color.section-right-full::before {
    background: #EAF8F9;
}

/* LEFT: edge -> container */
.section-bleed-left::before {
    left: 0;
    right: var(--container-offset);
}

/* RIGHT: container -> edge */
.section-bleed-right::before {
    right: 0;
    left: var(--container-offset);
}

:root {
    --container-offset: 0px;
}

.container-padding {
    padding-left: 60px;
}

/* Уменьшаем на tablet */
@media (max-width: 992px) {
    .container-padding {
        padding-left: 40px;
    }
}

/* Уменьшаем на мобильные */
@media (max-width: 576px) {
    .container-padding {
        padding-left: 20px;
    }

    .section-right-full {
        margin-left: 15px;
    }

    .section-right-full .container-padding {
        padding-right: 15px;
    }

    .section-bleed-right {
        margin-left: 15px;
    }

    .section-bleed-right .container-padding {
        padding-right: 15px;
    }

    .section-bleed-left {
        margin-right: 15px;
    }

    .section-bleed-left .container {
        padding-left: 15px;
    }

}

.section-right-full.section-right-full-toright {
    padding-left: var(--container-offset);
    padding-right: 0px;
}

/* базовый фон для section */
.section-right-full::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: var(--container-offset);
    /* левый край контейнера */
    background: #FFF;
    /* зеленый фон */
    z-index: -1;
}

.gradient-text {
    background: linear-gradient(90deg, #00025B 0%, #00FFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* чтобы градиент работал корректно на нескольких словах */
}
.lineafter{
    top: 56%;
    height: 8px;
}
.logofoot svg{
    width:163px;
    height:72px;
}


@media (max-width: 1399.98px) {
    .container-wide {
        padding-left: 60px;
        padding-right: 60px;
    }
    .hero-section {
        padding-top: 200px;
        background-size: 100% auto;
    }
    
}

@media (max-width: 1279px) {
    .hero-section {
        background-position: left 40px;
        background-size: unset;
    }
    .crypto-form {
        background-position: left 40px;
        background-size: unset;
    }
    .herobox {
        background-position: left 40px;
        background-size: unset;
    }
    .somebg1 {
        background-position: left bottom;
        background-size: unset;
    }
    .somebg2 {
        background-position: left top;
        background-size: unset;
    }
    .somebg3 {
        background-position: left 13px;
        background-size: unset;
        position: sticky;
    }
    .somebg4 {
        background-position: left top;
        background-size: unset;
    }
    .somebg5 {
        background-position: left 20px;
        background-size: unset;
    }
    .somebg-footer {
        background-position: left top;
        background-size: unset;
    }
}
@media (max-width: 767.98px) {
    .crypto-form {
        background-position: left 40px;
        background-size: 800px auto;
    }
    .herobox{
        background-position: left 10px;
        background-size: 800px auto;  
    }
    .somebg1 {
        background-position: left bottom;
        background-size: 800px auto;
    }
    .somebg2 {
        background-position: left top;
        background-size: 800px auto;
    }
    .somebg3 {
        background-position: left top;
        background-size: 800px auto;
    }
    .somebg4 {
        background-position: left top;
        background-size: 800px auto;
    }
    .somebg5 {
        background-position: left 20px;
        background-size: 800px auto;
    }
    .somebg-footer {
        background-position: left top;
        background-size: 800px auto;
    }
}

@media (max-width: 1199.98px) {
    .container-wide {
        padding-left: 30px;
        padding-right: 30px;
    }
}



.contnavbarmax{
    max-width: 220px;
}

.contnavbarmax a,
.contnavbarmax p {
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
    color: #00025B;
    line-height: 18px;
}
.contnavbarmax a{
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
}
.contnavbarmax a.my-btn{
    display: inline-block;
    margin-top: 50px;
    margin-bottom: 50px;
}
.contnavbarmax a:hover {
    color: #00025B;
}
    .navbar-brand svg{
        margin-top: 4px;
    }
.logofoot .lineafter {
    top: 50%;
}
@media (max-width: 991.98px) {
      .collapsing {
    height: auto !important;
    transition: none !important;
    display: none; /* Скрываем во время перехода, чтобы не дергалось */
  }
  .navbar-collapse {
    /* Фиксируем меню на весь экран */
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px)!important;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 0px 0px 40px;    /* Отступ сверху, чтобы не перекрыть лого и кнопку закрытия */
    z-index: 1040;
    
    /* Центрируем пункты меню по вертикали */
    display: flex;
    flex-direction: column;
    
    /* Плавное появление (опционально) */
    transition: all 0.3s ease-in-out;
    overflow-y: auto;
  }
  .navbar-collapse.show {
     height: calc(100vh - 72px)!important;
     
        border-top: 1px solid rgba(0, 2, 91, 0.4);
    }

  .navbar-nav {
    width: 100%;
  }

.navbar.opened{
    background-color: rgba(255, 255, 255, 1);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
    .nav-link {
        margin: 0;
        padding:15px 30px;
        border-bottom: 1px solid rgba(0, 2, 91, 0.4);
        font-size: 18px;
        font-weight: 700;
    }
    .navbar-brand svg{
        width:76px;
        height:34px;
        margin-top: 6px;
    }
    .container-wide {
        padding-left: 30px;
        padding-right: 30px;
    }

    .navbar .container-wide {
        width: 100%;
        display: block;
        margin: 0;
    }
    .contnavbar {
        padding: 20px 30px;
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    body {
        font-size: 14px;
    }
        .nav-link {
        padding:15px 20px;
    }
        .contnavbar {
        padding: 20px 20px;
    }
    .somebl h2 {
        margin-top: 0px;
        margin-bottom: 34px;
    }
    .somebl h3 {
        font-size: 16px;
        margin-bottom: 30px;
    }
    .somebl p {
        font-size: 12px;
        line-height: 24px;
    }
    .somebl img{
        width: 100px;
    }
    .somebl {
        padding-bottom: 39px !important;
    }
    .somebg4 {
        padding-top: 78px;
        margin-top: 14px;
        padding-bottom: 36px;
    }
    .somebg4 .container-padding {
        padding-left: 30px;
    }
    .accordion-button {
        font-size: 16px;
        padding: 10px 20px;
    }
    .accordion-button::after {
        width: 30px;
        height: 30px;
    }
    .accordion-body {
        padding: 8px 0px;
        margin: 0px 20px;
        font-size: 14px;
    }
    .gradbggg p {
        margin-bottom: 15px;
    }
    .dynamic-title {
        line-height: 48px;
    }
    .dynamic-title::after {
        height: 4px;
    }
    .gradbgg p {
        margin-top: 20px;
        font-size: 10px;
    }
    .gradbgggg p {
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .gradbgg {
        margin-top: 45px;
        padding-top: 25px;
        background-size: 150px auto, cover;
    }
    .gradbgg h5 {
        font-size: 16px;
        line-height: 22px;
    }
    .sec-btn {
        font-size: 14px;
        padding: 8px 23px;
    }
    .split-card {
        margin-top: 40px;
        gap: 16px;
    }
    .split-card-p {
        font-size: 12px;
        line-height: 24px;
        margin-bottom: 0;
    }
    .section-bleed.nopad {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .new-header-title {
        font-size: 18px;
    }
    .new-header-link {
        margin-right: 0px;
        width: 40px;
        height: 40px;
    }
    .opp-card{
        padding-top: 10px!important;
        padding-bottom: 0!important;
    }
    .opp-card-img {
        width:50px;
        height:50px;
        margin-top: 27px;
    }
    .opp-title {
        margin-bottom: 25px;
    }
    .somebg1 {
        padding-bottom: 65px;
    }
    .somebg2 {
        padding-top: 44px;
    }
    .somebg3 {
        padding-top: 72px;
    }
    .somebg5 {
        padding-top: 36px;
    }
    .somebg-footer {
        padding-top: 90px;
    }
    .oppwhite-list {
        margin-top: 12px;
        margin-bottom: 20px;
        padding: 15px 15px;
    }
    .oppwhite-item {
        padding: 11px 0;
    }
    .oppwhite-text {
        font-size: 14px;
    }
    .oppwhite-icon svg {
        width: 24px;
        height: 24px;
    }
    .oppwhite-icon {
        margin-right: 22px;
    }
    .product-img-custom {
        max-width: 100px;
    }
    .prodd.section-bleed {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .icon {
        margin-right: 19px;
        padding-left: 26px;
    }
    .text-content {
        font-size: 18px;
        padding: 16px 0;
    }
    .section-bleed {
        padding: 20px 0 30px;
    }
    .bleed-minpad {
        padding: 20px 0 12px;
    }
    .herobox-bg {
        padding: 20px 15px;
    }
    .herobox {
        padding-top: 50px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .herobox .my-btn {
        margin: auto;
    }
    .crypto-input {
        padding: 10px 9px;
        font-size: 12px;
    }
    .crypto-input::placeholder {
        font-size: 12px;
    }
    .my-btn {
        padding: 8px 10px;
        font-size: 14px;
    }
    .crypto-form {
        padding-top: 113px;
        margin-top: -50px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .lineafter{
        height: 4px;
    }
    h1 {
        font-size: 42px;
        line-height: 48px;
    }
    h2 {
        font-size: 21px;
        line-height: 28px;
    }
    .container-wide {
        padding-left: 15px;
        padding-right: 15px;
    }
    .blubg {
        padding: 20px 0 20px;
    }
    .blubg a {
        font-size: 14px;
        margin-right: 39px;
    }
    .copyrow {
        padding-top: 23px;
        padding-bottom: 0px;
    }
    .footterinfo .copy {
       padding-top: 30px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }
    .slider-btn svg {
        width: 40px;
        height: 40px;
    }
    .slider-nav {
        bottom: auto;
        top: 0;
        gap: 10px;
    }
    .slider {
        overflow: hidden;
        margin-left: 57px;
    }
    .slide-card {
        padding: 25px 25px 35px;
    }
    .slide-card img {
        width: 150px;
        height: 150px;
        margin: 30px auto;
    }
    .slide-card h3 {
        font-size: 18px;
    }
}
@media (max-width: 576px) {
    .slider {
        margin-right: -3px;
    }
}
@media (max-width: 480.98px) {
    h1 {
        font-size: 28px;
        line-height: 36px;
    }
    .dynamic-title {
        font-size: 18px;
    }
}


.navbar-toggler {
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:hover svg rect {
    opacity: 0.8;
}
.nobgbleed.section-right-full::before {
    background: transparent;
}