/*==============================
        GALLERY
===============================*/

.gallery-section{
    padding:70px 0;
    background:#fff;
}

.section-title{
    text-align:center;
    margin-bottom:35px;
}

.section-title h2{
    font-size:34px;
    font-weight:700;
    color:#0B3D91;
}

.gallery-slider{
    overflow:hidden;
    position:relative;
}

.gallery-track{
    display:flex;
    width:max-content;
    animation:scrollGallery 30s linear infinite;
}

.gallery-slider:hover .gallery-track{
    animation-play-state:paused;
}

.gallery-item{
    width:260px;
    margin-right:20px;
    flex-shrink:0;
}

.gallery-item img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 6px 15px rgba(0,0,0,.15);
    transition:.3s;
}

.gallery-item img:hover{
    transform:scale(1.05);
}

@keyframes scrollGallery{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

/* Tablet */

@media(max-width:768px){

.gallery-item{
width:220px;
}

.gallery-item img{
height:150px;
}

}

/* Mobile */

@media(max-width:576px){

.gallery-item{
width:180px;
margin-right:15px;
}

.gallery-item img{
height:130px;
}

.section-title h2{
font-size:26px;
}

}