.b-example-divider {
    height: 3rem;
    background-color: rgba(0, 0, 0, .1);
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
  }
  
  .bi {
    vertical-align: -.125em;
    fill: currentColor;
  }
  
  .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #fff;
    border-radius: .75rem;
  }
  
  .icon-link {
    display: inline-flex;
    align-items: center;
  }
  .icon-link > .bi {
    margin-top: .125rem;
    margin-left: .125rem;
    transition: transform .25s ease-in-out;
    fill: currentColor;
  }
  .icon-link:hover > .bi {
    transform: translate(.25rem);
  }
  
  .icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
    border-radius: .75rem;
  }
  
  .rounded-4 { border-radius: .5rem; }
  .rounded-5 { border-radius: 1rem; }
  
  .text-shadow-1 { text-shadow: 0 .125rem .25rem rgba(0, 0, 0, .25); }
  .text-shadow-2 { text-shadow: 0 .25rem .5rem rgba(0, 0, 0, .25); }
  .text-shadow-3 { text-shadow: 0 .5rem 1.5rem rgba(0, 0, 0, .25); }
  
  .card-cover {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

  .bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }

  @media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
  }
  .container-fix-position{
    position: relative !important;
    max-width: 1600px !important;
    width: 100% !important;
    margin: 0 auto !important;
    margin-bottom: 40px !important;
    padding-left: 40px;
    padding-right: 40px;
    border-top: 2px solid black;
    border-bottom: 2px solid black;
  }
  .icon-link{
    color: brown;
  }
  .icon-link:hover{
    color: black;
  }
  .bg-primary{
    background: linear-gradient(to right, #ffb700, #eeab00) !important;
  }


   .advantages {
            max-width: 1200px;
            margin: 50px auto;
            padding: 0 20px;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: #333;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }
        
        .section-title .divider {
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #d4af37, #f9d423);
            margin: 0 auto;
            position: relative;
        }
        
        .section-title .divider:after {
            content: '';
            position: absolute;
            left: 50%;
            top: -5px;
            transform: translateX(-50%);
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d4af37;
            box-shadow: 0 0 10px rgba(212, 175, 55, 0.7);
        }
        
        .advantages-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        
        .advantage-card {
            flex: 1 1 300px;
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .advantage-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #d4af37, #f9d423);
        }
        
        .icon-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(249, 212, 35, 0.1));
            border-radius: 50%;
            position: relative;
        }
        
        .icon-wrapper i {
            font-size: 36px;
            color: #d4af37;
        }
        
        .advantage-card h3 {
            font-size: 22px;
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .advantage-card p {
            color: #666;
            line-height: 1.6;
            font-size: 16px;
        }
        
        @media (max-width: 768px) {
            .advantages-container {
                justify-content: center;
            }
            
            .section-title h2 {
                font-size: 28px;
            }
        }



:root {
            --gold-light: #FFD700;
            --gold-main: #D4AF37;
            --gold-dark: #B8860B;
            --gold-goldenrod: #DAA520;
            --gold-gradient: linear-gradient(135deg, var(--gold-dark), var(--gold-main), var(--gold-light), var(--gold-goldenrod), var(--gold-main));
        }
        
        .promotions-section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
            width: 100%;
            text-transform: uppercase;
        }
        
        .section-title span {
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 900;
            letter-spacing: 2px;
        }
        
        .promotion-scroll-wrapper {
            position: relative;
            padding: 20px 0;
        }
        
        .promotion-track {
            display: flex;
            animation: scroll 40s linear infinite;
            will-change: transform;
        }
        
        .promotion-track:hover {
            animation-play-state: paused;
        }
        
        .promotion-card {
            min-width: 300px;
            height: 380px;
            margin: 0 20px;
            background: rgba(20, 20, 20, 0.8);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .promotion-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
            border: 2px solid transparent;
            background: linear-gradient(#1a1a1a, #1a1a1a), 
                       var(--gold-gradient);
            background-origin: border-box;
            background-clip: padding-box, border-box;
        }
        
        .promotion-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gold-gradient);
            color: #000;
            font-weight: bold;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            z-index: 10;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        }
        
        .card-image {
            height: 160px;
            width: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .card-image::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: linear-gradient(to top, rgba(20, 20, 20, 0.8), transparent);
        }
        
        .card-content {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .promotion-title {
            font-size: 1.6rem;
            margin-bottom: 15px;
            position: relative;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }
        
        .promotion-description {
            font-size: 1rem;
            color: #ccc;
            margin-bottom: 20px;
            flex: 1;
        }
        
        .promotion-date {
            color: var(--gold-light);
            font-size: 0.9rem;
            margin-top: auto;
            display: flex;
            align-items: center;
        }
        
        .promotion-date::before {
            content: '⏱';
            margin-right: 8px;
        }
        
        .promotion-btn {
            display: inline-block;
            padding: 12px 25px;
            background: var(--gold-gradient);
            color: #000;
            text-decoration: none;
            font-weight: bold;
            border-radius: 30px;
            text-transform: uppercase;
            text-align: center;
            margin-top: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .promotion-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }
        
        .gold-divider {
            height: 4px;
            width: 100px;
            background: var(--gold-gradient);
            margin: 20px auto 40px;
            border-radius: 2px;
        }
        
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Адаптивные стили */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .promotion-card {
                min-width: 250px;
                height: 350px;
            }
            
            .promotion-track {
                animation-duration: 35s;
            }
        }
        
        @media (max-width: 576px) {
            .promotions-section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 1.7rem;
                margin-bottom: 30px;
            }
            
            .gold-divider {
                margin: 15px auto 30px;
            }
            
            .promotion-card {
                min-width: 280px;
                height: 320px;
                margin: 0 15px;
            }
            
            .promotion-track {
                animation-duration: 30s;
            }
            
            .card-content {
                padding: 15px;
            }
        }
        
        /* Эффектные детали */
        .gold-particle {
            position: absolute;
            background: var(--gold-light);
            opacity: 0.5;
            border-radius: 50%;
            z-index: -1;
        }
        
        .gold-particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }
                
        .promotion-track {
            display: flex;
            cursor: grab;
            user-select: none;
            will-change: transform;
        }
        
        .promotion-track.grabbing {
            cursor: grabbing;
            animation: none;
        }
.nav-linkss a{
    font-size: unset !important;
}
.footer-section h3{
    font-size: 2rem !important;
}