body {
    font-family: 'Montserrat', sans-serif;
}
.investment-banner {
    min-height: 80vh;
    background: #fff;
    color: rgb(0, 0, 0);
    padding-top: 80px;
}

.banner-container {
    display: flex;
    flex-direction: column; /* Меняем с row на column */
    height: auto; /* Автоматическая высота */
    margin: 0 auto;
    gap: 20px; /* Отступ между текстом и картинкой */
    padding: 40px 20px; /* Добавляем внутренние отступы */
}

.banner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Меняем с flex-start на center */
    text-align: center; /* Выравнивание текста по центру */
    padding: 0 20px; /* Уменьшаем отступы для мобильных */
}

.banner-badge {
    color: #040505;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
}

.banner-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.banner-title-2 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, #ff5050 0%, #fa8b8b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-description {
    font-size: 1.5rem;
    line-height: 1.1;
    color: #040505;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    width: auto;           
    max-width: fit-content;
    padding: 14px 32px;
    border-radius: 50px;
    background: #CCA26D;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: 0.3s ease;
}

.banner-button:hover {
    transform: translateY(-2px);
    background: #bb894d;
    color: white;
    text-decoration: none;
}

.banner-button i {
    font-size: 16px;
    transition: transform 0.3s;
}

.banner-button:hover i {
    transform: translateX(5px);
}

.banner-image {
    width: 100%;
    max-width: 78%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Адаптация для планшетов */
@media (max-width: 768px) {

    .investment-banner {
        min-height: 60vh;
        padding-top: 60px;
    }
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-title-2 {
        font-size: 2.5rem;
    }
    
    .banner-description {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .banner-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    .banner-image {
        width: 100%;
        max-width: 100%;
    }
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.3;
}

.check-list i {
    color: #1a8347;
    font-size: 22px;
    margin-top: 2px;
}



/* Адаптация для мобильных */
@media (max-width: 480px) {
    .investment-banner {
        min-height: 60vh;
        padding-top: 60px;
    }
    
    .features-section {
        padding: 20px 0 !important;
    }

    .banner-title {
        font-size: 1.5rem !important;
    }
    
    .banner-title-2 {
        font-size: 1.8rem;
    }
    
    .banner-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo-container img {
    height: 45px;
    width: auto;
}

.navbar {
    display: flex;
    gap: 30px;
}

.nav-item {
    color: #3e5270;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #CCA26D;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #CCA26D;
    transition: width 0.3s;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-item.active {
    color: #CCA26D;
    font-weight: 600;
    position: relative;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #CCA26D;
    border-radius: 2px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #3e5270;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.mobile-menu-btn:hover {
    color: #CCA26D;
}

.lang-switcher {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid #CCA26D;
    color: #CCA26D;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    
}

.lang-btn:hover {
    background: #bb894d;
    border: 2px solid #eee;
    color: #eee;
}

.lang-btn i {
    font-size: 14px;
    color: #CCA26D;
    transition: all 0.3s;
}

.lang-btn:hover i {
    color: #eee;
}

.lang-dropdown {
    position: absolute;
    text-align: center;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    min-width: 80px;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1001;
    border: 1px solid #E5E7EB;
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 8px 16px;
    color: #3e5270;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.lang-option:hover {
    background: #eee;
    color: #CCA26D;
}

.login-btn {
    background: transparent;
    color: #CCA26D;
    border: 2px solid #CCA26D;
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.login-btn:hover {
    background: #bb894d;
    border: 2px solid #eee;
    color: #eee;
}

/* ========== АДАПТИВНОСТЬ ========== */

@media (min-width: 769px) {
    .desktop-nav {
        display: flex !important;
    }
    
    .mobile-nav {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        display: none !important;
        z-index: 999;
        overflow-y: auto;
        height: calc(100vh - 70px);
    }
    
    .mobile-nav.active {
        display: flex !important;
        justify-content: flex-start;
    }

    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
    .mobile-nav .nav-item {
        padding: 18px 0;
        border-bottom: 1px solid rgba(229, 231, 235, 0.5);
        width: 100%;
        font-size: 18px;
        font-weight: 600;
    }
    
    .mobile-nav .nav-item:last-child {
        border-bottom: none;
    }
    

}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .header-content {
        padding: 0 15px;
    }
    
    .mobile-nav {
        padding: 20px 15px;
    }
    
    .mobile-nav .nav-item {
        font-size: 16px;
        padding: 16px 0;
    }
}



/* Футер с темным фоном */
.footer {
    background: #101522;
    color: #CCA26D;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer-top-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    width: auto;
    height: 40px;
    transition: transform 0.3s;
}

.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}

.footer-nav-link:hover {
    color: #CCA26D;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #CCA26D;
    transition: width 0.3s;
}

.footer-nav-link:hover::after {
    width: 100%;
}

.footer-btn {
    display: inline-block;
    background: transparent;
    color: #CCA26D;
    border: 2px solid #CCA26D;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    white-space: nowrap;
}

.footer-btn:hover {
    background: #CCA26D;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.footer-title {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 122px;
    height: 2px;
    background: #CCA26D;
}

.footer-text {
    color: #CCA26D;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-text:last-child {
    margin-bottom: 0;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.copyright-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-copyright .copyright-container {
    color: #9CA3AF;
    font-size: 12px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .footer-nav {
        gap: 20px;
    }
    
    .footer-columns {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-top-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-nav-link {
        font-size: 14px;
    }
    
    .footer-btn {
        padding: 6px 20px;
        font-size: 13px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom-content {
        margin-bottom: 20px;
    }
    
    .footer-copyright {
        padding-top: 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .footer-top-container,
    .footer-bottom-content,
    .copyright-container {
        padding: 0 15px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-text {
        font-size: 13px;
    }
    
    .footer-btn {
        margin-top: 10px;
    }
}

.footer-text strong {
    color: white;
    font-weight: 600;
}

.footer-text a {
    color: #60A5FA;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-text a:hover {
    color: #DC2626;
    text-decoration: underline;
}


/* Секция 3 */
.features-section {
    background: white;
    padding: 50px 0;
}

.icon-section {
    background: white;
    padding: 80px 0;
    
}
.icon-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
    background: #C7D9FD;
    border-radius: 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.3;
}

.section-subtitle-p {
    font-size: 22px;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.features-grid-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: #F9FAFB;
    border-radius: 40px;
    padding: 20px 25px;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3E5270;
}

.feature-icon {
    text-align: center; 
    margin-bottom: 20px;
}

.feature-icon img {
    display: block;
    margin: 0 auto; /* Центрирование */
    max-width: 100%; /* Адаптивность */
    height: auto; /* Сохранение пропорций */
}




.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
    line-height: 1.3;    
}
.icon-title-h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 30px;
    line-height: 1.1;
    text-align: center;
}
.icon-title {
    font-size: 30px;
    font-weight: 700;
    color: #1F2937;
    line-height: 1.1;
}

.icon-description {
    color: #000;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 24px;
    flex-grow: 1;
    text-align: center;
}

/* Секция 4 */
.diversification-section {
    background: white;
    border-radius: 20px;
    color: #040505;
    padding: 50px 0;
}
.about-section {
    background: #f5f6f6;
    border-radius: 40px;
    color: #040505;
    padding: 50px 0;
}

.diversification-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.diversification-text {
    padding-right: 20px;
}

.diversification-title {
    font-size: 36px;
    font-weight: 700;
    color: #040505;
    margin-bottom: 24px;
    line-height: 1.2;
}

.diversification-description {
    color: #040505;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.diversification-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #040505;
    color: white;
    font-weight: 600;
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.diversification-btn:hover {
    transform: translateY(-2px);
    background: #8b0101;
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(246, 59, 59, 0.4);
    gap: 16px;
}

.diversification-btn i {
    font-size: 16px;
    transition: transform 0.3s;
}

.diversification-btn:hover i {
    transform: translateX(5px);
}

.diversification-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.diversification-image img {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

/* круг с цифрой */
.step-icon {
    min-width: 35px;
    height: 35px;
    background: #065BDB;
    color: #fff;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* текст */
.step-content h3 {
    margin: 0;
    font-size: 18px;
}

.step-content p {
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

.plarform-conteiner {
    background: #f2f2f2;
    border-radius: 40px;
    padding: 20px;
    max-width: 1600px;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .experience-title,
    .section-subtitle,
    .diversification-title {
        font-size: 42px;
    }
    .experience-content {
        gap: 30px;
    }
    
    .features-grid {
        gap: 30px;
    }
    .features-grid-2 {
        gap: 30px;
    }

    .icon-title-h2 {
        font-size: 28px;
        font-weight: 700;
        color: #1F2937;
        margin-bottom: 15px;
        line-height: 1.1;
        text-align: center;
    }
    .icon-grid {
        gap: 15px;
    }

    .icon-title {
        font-size: 25px;
        font-weight: 700;
        color: #1F2937;
        line-height: 1.1;
    }
    .diversification-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .icon-section {
        padding: 60px 20px !important;
    }
    .icon-title-h2 {
        font-size: 22px !important;
        font-weight: 700;
        color: #1F2937;
        margin-bottom: 15px;
        line-height: 1.1;
        text-align: center;
    }
    .icon-title {
        font-size: 25px;
        font-weight: 700;
        color: #1F2937;
        line-height: 1.1;
    }
    section {
        padding: 60px 0;
    }
    .experience-section {
        padding: 60px 0;
    }
    
    .experience-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .experience-title {
        font-size: 36px;
    }
    
    .experience-btn {
        justify-content: center;
    }
    
    .experience-title,
    .section-subtitle,
    .diversification-title {
        font-size: 36px;
    }

    .icon-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .features-grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .icon-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .diversification-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .diversification-text {
        padding-right: 0;
    }
    
    .diversification-btn,
    .experience-btn {
        justify-content: center;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

    .round {
        border-radius: 40px;
        background: #9eefff;
        padding: 25px;
    }

@media (max-width: 480px) {
    section {
        padding: 0;
    }
    .experience-section {
        padding: 40px 0;
    }
    
    .experience-title {
        font-size: 28px;
    }
    
    .experience-btn {
        font-size: 16px;
        padding: 14px 32px;
    }
    
    .experience-title,
    .section-subtitle,
    .diversification-title {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    .icon-title {
        font-size: 25px;
    }

    
    .feature-description {
        font-size: 15px;
    }
    .icon-description {
        font-size: 15px;
        text-align: center;
        margin-bottom: 0;
    }
    
    .diversification-description {
        font-size: 16px;
    }
    
    .experience-btn,
    .diversification-btn {
        font-size: 16px;
        padding: 14px 32px;
    }
}

/* Анимации для появления */
.experience-content,
.feature-card,
.diversification-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.experience-content {
    animation-delay: 0.1s;
}

.feature-card:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.diversification-content {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}






.define-path-section {
    background: #f5f6f6;
    padding: 80px 0;
}

.path-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Левая колонка */
.path-left {
    padding-right: 40px;
}

.path-title {
    font-size: 36px;
    font-weight: 700;
    color: #1F2937;   
    line-height: 1.2;
}

.path-description {
    font-size: 18px;
    color: #6B7280;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Правая колонка */
.path-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.path-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 25px;
    border-bottom: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}



.path-item:hover {
    border-bottom-color: #DC2626;
}

.path-question {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    padding-right: 20px;
}

.question-category {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.question-text {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    line-height: 1.5;
}

.path-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #DC2626;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.path-link:hover {
    background: #B91C1C;
    transform: translateX(5px);
    color: white;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .path-container {
        gap: 40px;
    }
    
    .path-title {
        font-size: 32px;
    }
    
    .question-text {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .define-path-section {
        padding: 60px 0;
    }
    
    .path-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .path-left {
        padding-right: 0;
        text-align: center;
    }
    
    .path-title {
        font-size: 28px;
    }
    
    .path-description {
        font-size: 17px;
    }
    
    .path-item {
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .define-path-section {
        padding: 40px 0;
    }
    
    .path-title {
        font-size: 24px;
    }
    
    .path-description {
        font-size: 16px;
    }
    
    .question-text {
        font-size: 16px;
    }
    
    .question-category {
        font-size: 13px;
    }
    
    .path-link {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* Анимации */
.path-left,
.path-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.path-left {
    animation-delay: 0.1s;
}

.path-item:nth-child(1) {
    animation-delay: 0.2s;
}

.path-item:nth-child(2) {
    animation-delay: 0.3s;
}

.path-item:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Секция: Торгуйте на нашей инновационной трейдинговой платформе */
.platform-section {
    background: white;
    color: #0F172A;
    padding: 50px 0;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 20px;
}

.platform-text {
    padding-right: 20px;
}

.platform-title {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 24px;
    line-height: 1.1;
}

.platform-description {
    color: #0F172A;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #26272f;
    color: white;
    font-weight: 600;
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.platform-btn:hover {
    transform: translateY(-2px);
    background: #8b0101;
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(246, 59, 59, 0.4);
    gap: 16px;
}

.platform-btn i {
    font-size: 16px;
    transition: transform 0.3s;
}

.platform-btn:hover i {
    transform: translateX(5px);
}

.platform-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.box,
.platform-image img {
    max-width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .section-title,
    .platform-title {
        font-size: 32px;
    }
    
    .platform-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .platform-section {
        padding: 60px 0;
    }
    
    .section-title,
    .platform-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .platform-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .platform-text {
        padding-right: 0;
    }
    
    .platform-btn {
        justify-content: center;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .platform-section {
        padding: 40px 20px;
    }
    
    .section-title,
    .platform-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .platform-description {
        font-size: 16px;
    }
    
    .platform-btn {
        font-size: 16px;
        padding: 14px 32px;
    }

}

/* Анимации для появления */
.platform-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trade-section {
  position: relative;
  min-height: 420px;
  background: url('/assets/site/images/bg/1.png') right center / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
}

.trade-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.8) 40%,
    rgba(0,0,0,0.3) 70%,
    rgba(0,0,0,0.1) 100%
  );
}

.trade-container {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 10%;
}

.trade-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 40px;
}

.trade-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.trade-box {
  max-width: 520px;
}

.trade-text {
  font-size: 16px;
  line-height: 1.6;
  color: #dcdcdc;
  margin-bottom: 24px;
}

.divider {
  width: 1px;
  height: 120px;
  background: rgba(255,255,255,0.3);
}

.trade-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #DC2626;
    color: white;
    font-weight: 600;
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.trade-btn:hover {
    transform: translateY(-2px);
    background: #8b0101;
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(246, 59, 59, 0.4);
    gap: 16px;
}

.trade-btn i {
    font-size: 16px;
    transition: transform 0.3s;
}

.trade-btn:hover i {
    transform: translateX(5px);
}
.trade-btn-login {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #040505;
    font-weight: 600;
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.trade-btn-login:hover {
    transform: translateY(-2px);
    background: #8b0101;
    color: #ffffff;
    box-shadow: 0 6px 25px rgba(246, 59, 59, 0.4);
    gap: 16px;
}

.trade-btn-login i {
    font-size: 16px;
    transition: transform 0.3s;
}

.trade-btn-login:hover i {
    transform: translateX(5px);
}


@media (max-width: 768px) {
  .trade-content {
    flex-direction: column;
    gap: 30px;
  }

  .divider {
    width: 100%;
    height: 1px;
  }

  .trade-title {
    font-size: 32px;
  }
}



.plans {
  padding: 50px 20px;
  background: #fff;
}

.plans-container {
  max-width: 1200px;
  margin: 0 auto;
}

.plans-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.plans-subtitle {
  color: #666;
  margin-bottom: 50px;
  text-align: center;
}


/* Контейнер для 3 блоков */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Карточка */
.plan-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 500px;
}


/* Фоновая картинка */
.plan-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/bg/original-size-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Для разных карточек свои картинки */
.plan-card:nth-child(1) .plan-bg-image {
    background-image: url('../images/bg/original-size-1.png');
}
.plan-card:nth-child(2) .plan-bg-image {
    background-image:  url('../images/bg/original-size-2.png');
}

.plan-card:nth-child(3) .plan-bg-image {
    background-image:  url('../images/bg/original-size-3.png');
}

/* Затемнение фона */
.plan-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;   
    z-index: 1;
}

/* Контент (текст внизу) */
.plan-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 30px 20px 25px;
    text-align: center;
    color: #fff;
}

/* Заголовок */
.plan-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

/* Описание */
.plan-desc {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Адаптация для планшетов */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .plan-card {
        height: 350px;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
}

/* Адаптация для мобильных */
@media (max-width: 480px) {
    .plan-card {
        height: 300px;
    }
    
    .plan-name {
        font-size: 1.3rem;
    }
    
    .plan-desc {
        font-size: 0.9rem;
    }
}





/* pages */
/* Layout */
.dfcol {
    display: flex;
    flex-direction: column;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.overflow-hidden {
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.text-lg-start {
    text-align: left;
}

@media (max-width: 991px) {
    .text-lg-start {
        text-align: center;
    }
}

/* Width */
.w1920 {
    max-width: 1600px;
    margin: 0 auto;
}

.top80 {
    margin-top: 80px;
}
.top120 {
    margin-top: 120px;
}

.p50-150 {
    padding: 50px 150px;
}

.p80-216 {
    padding: 80px 216px;
}

.p80-148 {
    padding: 80px 148px;
}

.gap64-32 {
    gap: 40px;
}

.gap32-24 {
    gap: 32px;
}

@media (max-width: 1200px) {
    .p120-216,
    .p80-216 {
        padding: 80px 40px;
    }

    .p80-148 {
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .p50-150,
    .p80-216,
    .p80-148 {
        padding: 40px 20px;
    }

    .gap64-32 {
        gap: 32px;
    }

    .gap32-24 {
        gap: 24px;
    }
}
.bg-circles {
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.bg-circles img {
    position: absolute;
    opacity: 0.35;
}
.banner {
    position: relative;
    z-index: 2;
}

.ban-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .ban-title {
        font-size: 22px;
    }
}
.bl-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
}

.bl-description {
    font-size: 18px;
    line-height: 1.6;
    color: #040505;
}

@media (max-width: 768px) {
    .bl-title {
        font-size: 26px;
    }

    .bl-description {
        font-size: 15px;
    }
}
.wht-bg-block {
    background: #F9FAFB;
    border-radius: 40px;
    border: 1px solid #efefef;
}

.wht-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.left,
.right {
    flex: 1;
}

.img-wrap img {
    max-width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
    .wht-wrap {
        flex-direction: column;
    }
}
.stats-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #F9FAFB;
    border: 2px solid #d6002f;
    border-radius: 10px;
    padding: 20px;
}

.stat-item .title {
    font-size: 28px;
    font-weight: 700;
}

.stat-item .description {
    color: #666;
    font-size: 14px;
}

@media (max-width: 991px) {
    .stats-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-wrap {
        grid-template-columns: 1fr;
    }
}
.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.grad {
    color: #3e5270;
}

.ben-item {
    display: flex;
    gap: 20px;
    background: #F9FAFB;
    border: 2px solid #CCA26D;
    border-radius: 40px;
    padding: 20px;
}
.ben-icon,
.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon,
.ben-icon i {
    color: #d6002f;
    font-size: 45px;
}

.ben-item .title {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 8px;
    color: #3e5270;
}

.ben-item .description {
    font-size: 18px;
    color: #666;
}
.message {
    margin-top: 10px;
    text-align: center;
}

@media (max-width: 991px) {
    .benefits {
        grid-template-columns: 1fr;
    }
}
.any-q {
    background: #0e0e0e;
    color: #fff;
    padding: 60px;
    border-radius: 20px;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
}

.inputs-wrap {
    display: flex;
    gap: 20px;
    margin-top: 32px;
    align-items: center;
}

.form-input {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-input label {
    font-size: 14px;
    margin-bottom: 6px;
}

.form-input input {
    padding: 14px 16px;
    border-radius: 10px;
    border: none;
}

.any-q-btn {
    padding: 14px 36px;
    border-radius: 30px;
    background: #d6002f;
    color: #fff;
    border: none;
    font-weight: 600;
}

@media (max-width: 768px) {
    .inputs-wrap {
        flex-direction: column;
        align-items: center;
    }
    .form-input {
        flex-basis: auto;
        width: 100%;
    }


    .any-q {
        padding: 40px 20px;
        text-align: center;
    }
}
.contacts-wrap {
    
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

/* Обертка контента */
.content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.content-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

/* Левая часть (заголовок) */
.content .left {
    align-items: center;
    text-align: center;
}

/* Заголовок */
.bl-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #3e5270;
}

/* Правая часть (изображение) */
.content .right {
    display: flex;
    justify-content: center;
}

.img-wrapper img {
    width: 100%;
    display: block;
}


/* Карточка контакта */
.contact-item {
    text-align: center;
}

/* Заголовок */
.contact-item .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #CCA26D;
}

/* Основной текст */
.contact-item .description {
    font-size: 16px;
    font-weight: 500;
    color: #CCA26D;
    margin-bottom: 8px;
}

/* Подпись */
.contact-item .sub-title {
    font-size: 18px;
    color: #3e5270;
}

.tac {
     margin-top: 10px;
}
@media (max-width: 768px) {

    .content-contact,
    .content {
        flex-direction: column;
        gap: 15px;
    }

    .ben-item .title {
        font-weight: 600;
        font-size: 20px;
        margin-bottom: 0;
    }

    .bl-title {
        font-size: 22px;
    }

    .contacts-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .markets-2 {
        grid-template-columns: 5fr !important;
        gap: 32px !important;
    }
    .knowing {
        text-align: center;
        flex-direction: column;
    }
    .description-market {
       margin-top: -25px;
    }
    .security,
    .steps {
        flex-direction: column;
    }
    .steps-wrap {   
        grid-template-columns: 1fr !important;
    }
    .step-item {
        align-items: center !important;
    }
    .step-description {
        text-align: center;
    }
    .tac {
        text-align: center;
        margin-top: 0;
    }
    .plan-badge {
        top: 10px;
        right: 10px;
    }
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.knowing {
    display: flex;
    align-items: center;
    gap: 50px;
}
.time-to-trade {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.markets-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.market-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.title-market {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    color: #CCA26D;
}
.description-market {
    text-align: center;
}

.market-item .icon {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.market-item .icon img {
    height: 100%;
    object-fit: contain;
}
.security,
.steps {
    display: flex;
    gap: 50px;
}
.steps-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-num i{
    color: #CCA26D;
    width: 30px;
    height: 30px;
}
.step-title {
    font-size: 22px;
    font-weight: 700;
}

.secur-wrap {
    max-width: 550px;
    gap: 12px;
}
.secur-href {
    position: relative;
    padding: 16px 48px 16px 24px;
    text-decoration: none;
    font-size: clamp(1.25rem, 0.9828rem + 0.431vw, 1.5rem);
    color: #586074;
    border-radius: 30px;
    transition: 0.3s all linear;
    font-weight: 600;
    text-align: left !important;
}
.secur-href:hover {
    background: #fff9f9;
    font-weight: 700;
    color: #dc2626;
}
.secur-subtitle {
    font-size: clamp(1.1rem, 0.9828rem + 0.431vw, 1.5rem);
    color: #1F2937;
}


.modern-accordion {
    --primary-color: #dc2626;
    --primary-light: #fedbdb;
    --text-primary: #371f1f;
    --text-secondary: #6b7280;
    --border-color: #ff9f9f;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --radius-lg: 12px;
    --radius-md: 10px;
}

.modern-accordion .accordion-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.modern-accordion .accordion-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.modern-accordion .accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color), var(--shadow-md);
}

.modern-accordion .accordion-header {
    margin: 0;
}

.modern-accordion .accordion-button {
    width: 100%;
    padding: 24px 28px;
    text-align: left;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition);
    position: relative;
}

.modern-accordion .accordion-button:not(.collapsed) {
    background-color: #f8fafc;
}

.modern-accordion .accordion-button:hover {
    background-color: #f8fafc;
}

.modern-accordion .accordion-button::after {
    content: '';
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.modern-accordion .accordion-button:not(.collapsed)::after {
    transform: translateY(-50%) rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23dc2626'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
}

.modern-accordion .question-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modern-accordion .question-category {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
}

.modern-accordion .category-beginner {
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

.modern-accordion .category-advanced {
    background-color: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.modern-accordion .category-general {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.modern-accordion .question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    padding-right: 30px;
}

.modern-accordion .accordion-button:not(.collapsed) .question-text {
    color: var(--primary-color);
}

.modern-accordion .accordion-collapse {
    transition: height 0.3s ease;
}

.modern-accordion .accordion-body {
    padding: 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 16px;
    animation: fadeIn 0.3s ease-out;
}

.modern-accordion .accordion-body p {
    margin-bottom: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

    /* Эффект при открытии */
.modern-accordion .accordion-collapse.show {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .step-title {
        font-size: 18px;
        font-weight: 700;
    }
}

    @media (max-width: 768px) {
        .modern-accordion .accordion-button {
            padding: 20px 24px;
        }
        
        .modern-accordion .question-text {
            font-size: 16px;
        }
        
        .modern-accordion .accordion-body {
            padding: 0 24px 20px;
            font-size: 15px;
        }
    }


.error-message {
    color: #ff6b6b;
    font-size: 12px;
    margin-bottom: 4px;
    padding: 4px 8px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    display: none;
}

.input-error {
    border-color: #ff6b6b !important;
}

.system-message {
    padding: 12px 20px;
    border-radius: 8px;
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeIn 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.system-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.system-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.system-message .message-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
}

.system-message .close-message {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.system-message .close-message:hover {
    opacity: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.char-counter {
    font-size: 12px;
    color: #0e0e0e;
    text-align: right;
    margin-top: 4px;
    opacity: 0.7;
}

.binance-widget__footer {
    display: none !important;
}

@media (max-width:850px) {
        .banner-content {
        padding: 0px 30px;
    }
}
@media (max-width: 1088px) {
    .banner-description {
        font-size: 1.05rem;
        line-height: 1.1;
        color: #040505;
        margin-top: 1rem;
        margin-bottom: 1rem;
        font-weight: 500;
    }
    .banner-badge {
        font-size: 1rem;           
    }
    .banner-title {
        font-size: 3rem;
    }
    .banner-title-2 {
        font-size: 3rem;
    }
}
