@charset "utf-8";

.main_gallery_latest{
    position:relative;
    width:100%;
    height:600px;
    overflow:visible;
}

.main_gallery_latest_track{
    display:flex;
    align-items:flex-start;
    gap:30px;
    width:max-content;
    height:600px;
    transform:translate3d(0,0,0);
    transition:transform .7s ease;
}

.main_gallery_latest_item{
    position:relative;
    flex:0 0 380px;
    width:380px;
    height:600px;
    overflow:hidden;
    border-radius:15px;
}

.main_gallery_latest_item a{
    display:block;
    width:100%;
    height:100%;
}

.main_gallery_latest_item img{
    display:block;
    width:380px;
    height:600px;
    object-fit:cover;
    object-position:center center;
    transition:transform .6s ease;
}

.main_gallery_latest_item:hover img{
    transform:scale(1.05);
}