@font-face {
    font-family: 'Minion Pro';
    src: local('Minion Pro Regular'), local('Minion-Pro-Regular'),
        url('../fonts/minion_pro_regular/MinionPro-Regular.woff2') format('woff2'),
        url('../fonts/minion_pro_regular/MinionPro-Regular.woff') format('woff'),
        url('../fonts/minion_pro_regular/MinionPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
  }
  
@font-face {
    font-family: 'Helios Cond Regular';
    src: url('../fonts/helios_cond/HeliosCond.eot');
    src: url('../fonts/helios_cond/HeliosCond.eot?#iefix') format('embedded-opentype'),
    url('../fonts/helios_cond/HeliosCond.woff') format('woff'),
    url('../fonts/helios_cond/HeliosCond.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    }
@font-face {
    font-family: 'Helios Cond Bold';
    src: url('../fonts/helios_cond_bold/HeliosCond-Bold.eot');
    src: url('../fonts/helios_cond_bold/HeliosCond-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/helios_cond_bold/HeliosCond-Bold.woff') format('woff'),
    url('../fonts/helios_cond_bold/HeliosCond-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    }
@font-face {
    font-family: 'Minion Pro Bold';
    src: url('../fonts/minion_pro_bold/MinionPro-Bold.eot');
    src: url('../fonts/minion_pro_bold/MinionPro-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/minion_pro_bold/MinionPro-Bold.woff') format('woff'),
    url('../fonts/minion_pro_bold/MinionPro-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    }
    
.breadcrumbs-block a {
 color: #002454;
}
.breadcrumbs-block a:hover {
 color: #00aaac;
 }
 
.w-desktop {
    display: none;
}
@media screen and (min-width: 1201px) {
    .w-desktop {
        display: block;
    }
}
.w-tablet {
    display: none;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
    .w-tablet {
        display: block; 
    }
}
.w-mobile {
    display: none; /* По умолчанию скрываем */
}
@media screen and (max-width: 767px) {
    .w-mobile {
        display: block;
    }
}



        #loadBanner {
            position: relative;
            width: 100%;
            height: 300px; /* Высота баннера */
            overflow: hidden;
        }
        @media screen and (max-width: 767px) {
        #loadBanner {
            position: relative;
            width: 100%;
            height: 450px; 
            overflow: hidden;
        }
        }
        #loadBanner div.banner-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }
        #loadBanner div.banner-content.active {
            opacity: 1;
        }
        #loadBanner a {
            display: block;
            width: 100%;
            height: 100%;
        }
        #loadBanner .ad-label {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: 80px;
            height: 30px;
            background-color: rgba(0, 0, 0, 0.7);
            color: white;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 3px;
        }
        #loadBanner .ad-label i {
            margin-left: 5px;
        }
        .bnr-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: white;
            padding: 20px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            z-index: 1000;
            max-width: 400px;
            width: 100%;
        }
        .bnr-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
        }
        .bnr-modal.active, .bnr-modal-overlay.active {
            display: block;
        }
        
                
        
