/*==============================
BANKS
==============================*/

.banks{

    padding:80px 0;

    background:#ffffff;

}

.banks-title{

    text-align:center;

    margin-bottom:50px;

}

.banks-title span{

    color:#0B3558;

    font-weight:700;

    letter-spacing:2px;

    font-size:.85rem;

}

.banks-title h2{

    margin:15px 0;

    font-size:2.2rem;

    color:#222;

}

.banks-title p{

    color:#666;

    max-width:650px;

    margin:auto;

}

.banks-slider{

    overflow:hidden;

    position:relative;

}

.banks-track{

    display:flex;

    align-items:center;

    gap:80px;

    width:max-content;

    animation:scrollBanks 28s linear infinite;

}

.banks-track img{

    height:50px;

    width:auto;

    opacity:.85;

    transition:.3s;

}

.banks-track img:hover{

    opacity:1;

    transform:scale(1.08);

}

@keyframes scrollBanks{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}