/* =========================================
   REVOLUTION SLIDER MIMIC STYLES
   ========================================= */

/* Animations */
@keyframes slideFromLeft {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.rev-anim-left {
    opacity: 0;
    /* Start hidden */
    animation: slideFromLeft 1s cubic-bezier(0.45, 0, 0.55, 1) forwards;
}

.delay-300 {
    animation-delay: 300ms;
}

.delay-360 {
    animation-delay: 360ms;
}

.delay-580 {
    animation-delay: 580ms;
}

.delay-740 {
    animation-delay: 740ms;
}


/* Ken Burns Effect */
@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

.carousel-item.active .hero-bg {
    animation: kenBurns 10s ease-out forwards;
}

/* Typography & Elements */
.rev-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 72px;
    /* Desktop */
    line-height: 80px;
    color: #ffffff;
    margin-bottom: 20px;
}


/* Responsive Adjustments based on JSON (d:72, n:55, t:45, m:35) */

/* Notebook */
@media (max-width: 1200px) {
    .rev-title {
        font-size: 55px;
        line-height: 65px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .rev-title {
        font-size: 45px;
        line-height: 60px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .rev-title {
        font-size: 35px;
        line-height: 40px;
    }
}