        body {font-family: "Montserrat", sans-serif !important;background:#1c1c1c !important;color:#fff;}
        hr {border-top: 1px solid rgb(28 152 237) !important;}
        .bottom_white {border: 1px solid #fff;
        color: #fff;
        padding: 15px 20px;
        border-radius: 15px;}
        .bottom_white:hover {color:#1c98ed;background:#fff;text-decoration: none;font-weight: 600;}
        h2  {
        font-size: 5rem !important;
        font-weight: 700 !important;
        line-height: 70px;
        }
        h3 {
        font-weight: 600 !important;
        font-size: 2.35rem !important;
        }
        .calculator-container {
            background: #44434352;
            padding: 5%;
            border-radius: 5%;
            box-shadow: #1c98ed 7px 7px 10px;}
        .first_block {margin-top:15%;}
        .news_block-title {margin-top:10%;}
        @media (max-width:991px) {
            .first_block {margin-top:170px !important;}
            
        }
        .size3rem{font-size:3rem;}
        .blue {color:#1c98ed !important;}
        .bg-blue {background:#1c98ed !important;}
        .navbar {
            transition: all 0.3s ease;
            padding: 20px 0;
            /* background-color: white !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
        } 
        
        .navbar.scrolled {
            padding: 10px 0;
        }
        
        /* Контейнер занимает всю ширину */
        .navbar-container {
            width: 100%;
            padding-left: 15px;
            padding-right: 15px;
            transition: all 0.3s ease;
        }
        
        /* При прокрутке добавляем ограничение по ширине */
        .navbar.scrolled .navbar-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Логотип */
        .navbar-brand {
            font-weight: 700;
            font-size: 24px;
            color: #2c3e50 !important;
            margin-right: 30px;
            flex-shrink: 0;
        }
        
        /* Центральное меню для десктопа */
        .navbar-nav.desktop-menu {
            display: flex;
            justify-content: center;
            flex-grow: 1;
        }
        
        /* Пункты меню */
        .navbar-nav .nav-link {
            color: #fff !important;
            font-weight: 500;
            padding: 0 15px !important;
            transition: color 0.3s ease;
            white-space: nowrap;
            text-transform: uppercase;
    letter-spacing: 2px;
        }
        
        .navbar-nav .nav-link:hover {
            color: #000 !important;
        }
        
        /* Кнопка телеграм */
        .telegram-btn {
            background: linear-gradient(135deg, #0088cc, #34b7f1);
            color: white !important;
            border-radius: 50px;
            padding: 10px 25px !important;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            text-decoration: none !important;
            display: inline-flex;
            align-items: center;
            flex-shrink: 0;
        }
        
        .telegram-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 183, 241, 0.4);
            color: white;
        }
        
        /* Бургер меню */
        .navbar-toggler {
            border: none;
            padding: 0;
            margin-left: 15px;
        }
        
        .navbar-toggler:focus {
            outline: none;
        }
        
        /* Для мобильной версии */
        @media (max-width: 991.98px) {
            .desktop-menu {
                display: none !important;
            }
            
            .mobile-menu .navbar-nav {
                text-align: left;
                padding: 20px 0;
            }
            
            .mobile-menu .nav-link {
                padding: 10px 0 !important;
            }
            
            .mobile-menu .telegram-btn {
                margin: 10px 0;
            }
        }
        
        /* Для десктопа */
        @media (min-width: 992px) {
            .mobile-menu {
                display: none !important;
            }
            
            /* Основной контейнер с flex */
            .navbar-content {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                background: #1c98ed;
                padding: 0px 30px;
                border-radius: 20px;
                margin-top: 10px;
            }
            
            /* Центрирование меню */
            .menu-center-container {
                display: flex;
                justify-content: center;
                flex-grow: 1;
            }
        }
        
        /* Контент для демонстрации прокрутки */
        .content {
            height: 1500px;
            padding-top: 100px;
        }
        
        .demo-section {
            padding: 100px 20px;
            text-align: center;
        }
        
        h1 {
            color: #2c3e50;
            margin-bottom: 30px;
        }
        .dot {height: 100%;
    background: url(/template/image/dots.png);
    background-position: right;
    background-repeat: no-repeat;
    background-position-y: top;}
    .feature-block {
            padding: 20px;
            text-align: center;
            position: relative;
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 15px;
        }
        
        .feature-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: #2c3e50;
        }
        
        .feature-description {
            color: #7f8c8d;
            line-height: 1.6;
        }
        
        /* Стрелка для десктопной версии */
        .desktop-arrow {
            position: absolute;
            top: 40px;
            right: -20px;
            color: #95a5a6;
            font-size: 1.8rem;
            z-index: 1;
        }
        
        /* Стрелка для мобильной версии */
        .mobile-arrow {
            display: none;
            color: #95a5a6;
            font-size: 1.8rem;
            margin: 15px 0;
        }
        
        /* Адаптивность */
        @media (max-width: 767.98px) {
            .desktop-arrow {
                display: none;
            }
            
            .mobile-arrow {
                display: block;
            }
            
            .feature-block {
                margin-bottom: 10px;
            }
            
            .last-block .mobile-arrow {
                display: none;
            }
        }
        
        @media (min-width: 768px) {
            .feature-block {
                padding: 25px 15px;
            }
        }
        /* Скрываем стрелки в последнем блоке */
.col-md-4:last-child .desktop-arrow,
.col-md-4:last-child .mobile-arrow {
    display: none;
}

/* Адаптивность */
@media (max-width: 767.98px) {
    .desktop-arrow {
        display: none;
    }
    
    .mobile-arrow {
        display: block;
    }
    
    /* Скрываем стрелку у последнего блока на мобильных */
    .col-md-4:last-child .mobile-arrow {
        display: none;
    }
}

@media (min-width: 768px) {
    /* Скрываем стрелку у последнего блока на десктопе */
    .col-md-4:last-child .desktop-arrow {
        display: none;
    }
}
footer a {color:#fff;text-decoration: none;font-width:700; padding:15px;letter-spacing: 2px;}
.zero {font-size: 5rem !important;font-weight: 700 !important;line-height: 70px;}
.pfon {background:url(/template/image/pfon.avif);}
.backpfon {background: linear-gradient(135deg, #000000cf 35%, #ffffff91, #000000cf 70%);
    height: 100%;
    min-height: 500px;}
.owl-carousel .item { 
            background: #3498db; 
            color: white; 
            margin: 10px; 
            text-align: center; 
            border-radius: 10px; 
        }
.bg-news {height:30vh;width:100%;background-repeat: no-repeat !important;background-size: cover !important;background-position: center !important;position: absolute;z-index: -1;top: 0;}

.gradient-news {height:100%;width:100%;background:#000000b3;}
.news-item {background: #1c98ed;
    border-radius: 10px;
    margin-bottom: 40px;
    color: #fff;
    padding: 15px;}
.news-item a {color:#fff;}
.currency-group {background:padding: 20px;
    background: #1c1c1c96;
    border-radius: 20px;;}
    .currency-group label {color: #858585;}