/* Кнопка */
.t580__btn {
    transition: all 0.7s ease;
}
@keyframes bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.t580__btn:hover {
    transform: scale(1.15);
    animation: bounce 0.4s ease;
}

/* Меню */
.fixed-menu {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99000 !important;
    background: linear-gradient(90deg, #1E3A8A, #3B82F6);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.hamburger-btn {
    display: none;
    width: 30px;
    cursor: pointer;
}
.hamburger-line {
    width: 100%;
    height: 3px;
    background: #FFFFFF;
    margin: 5px 0;
}
.mobile-menu {
    display: flex;
}
.menu-item {
    color: #FFFFFF;
    font-size: 16px;
    margin: 0 15px;
    text-decoration: none;
}
.menu-item:hover {
    color: #A5B4FC;
}
@media (max-width: 640px) {
    .hamburger-btn {
        display: block;
    }
    .mobile-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #1E3A8A;
        padding: 15px;
        flex-direction: column;
    }
    .mobile-menu.active {
        display: flex;
    }
    .menu-item {
        margin: 10px 0;
        text-align: center;
    }
}
.t580 {
    padding-top: 60px !important;
}

/* Карусель (оставляем без изменений) */
.carousel-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 0;
}
.carousel {
    display: flex;
    animation: slide 12s infinite linear;
}
.carousel-item {
    flex: 0 0 33.33%;
    background: #001c3ab0;
    border-radius: 15px;
    padding: 10px;
    margin: 0 10px;
    text-align: center;
    color: #FFFFFF;
}
.carousel-item h3 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}
.carousel-item p {
    font-size: 16px;
    line-height: 1.5;
}
@keyframes slide {
    0% { transform: translateX(0); }
    25% { transform: translateX(0); }
    33.33% { transform: translateX(-33.33%); }
    58.33% { transform: translateX(-33.33%); }
    66.66% { transform: translateX(-66.66%); }
    91.66% { transform: translateX(-66.66%); }
    100% { transform: translateX(0); }
}
@media (max-width: 640px) {
    .carousel-item {
        flex: 0 0 80%;
        margin: 0 5px;
    }
    .carousel {
        animation: slide-mobile 12s infinite linear;
    }
    @keyframes slide-mobile {
        0% { transform: translateX(0); }
        25% { transform: translateX(0); }
        33.33% { transform: translateX(-85%); }
        58.33% { transform: translateX(-85%); }
        66.66% { transform: translateX(-170%); }
        91.66% { transform: translateX(-170%); }
        100% { transform: translateX(0); }
    }
}


#rec957563076 {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease-in-out;
}

#rec957563076.sticky-bottom {
    top: auto !important;
    bottom: 0 !important;
}

