/* ===== FORTUNETRADES ANIMATIONS ===== */

.ft-animate{
    margin:60px auto;
    text-align:center;
}

/* Slider */
.ft-slider{
    position:relative;
    max-width:1200px;
    height:420px;
    margin:auto;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.ft-slide{
    position:absolute;
    inset:0;
    opacity:0;
    transform:scale(1.08);
    transition:opacity 1.2s ease, transform 1.4s ease;
}

.ft-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ft-slide.active{
    opacity:1;
    transform:scale(1);
}

/* Fade on scroll */
.ft-fade{
    opacity:0;
    transform:translateY(35px);
    transition:.9s ease;
}

.ft-fade.show{
    opacity:1;
    transform:translateY(0);
}

/* Mobile */
@media(max-width:768px){
    .ft-slider{height:260px}
}
