.main_gallery_slide{
    position:relative;
    width:1560px;
    height:400px;
    margin:0 auto;
    overflow:hidden;
}

.main_gallery_view{
    width:100%;
    height:400px;
    overflow:visible;
}

.main_gallery_track{
    display:flex;
    gap:30px;
    width:max-content;
    height:400px;
    margin:0;
    padding:0;
    list-style:none;
    transition:transform .55s ease;
}

.main_gallery_item{
    flex:0 0 500px;
    width:500px;
    height:400px;
    overflow:hidden;
    opacity:.3;
    transition:opacity .45s ease;
}

.main_gallery_item.is-center{
    opacity:1;
}

.main_gallery_item a{
    display:block;
    width:100%;
    height:100%;
}

.main_gallery_item img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
}

.main_gallery_btn{
    position:absolute;
    top:185px;
    width:30px;
    height:30px;
    padding:0;
    border:1px solid #c8d8e3;
    border-radius:50%;
    background:#fff;
    cursor:pointer;
    z-index:20;
}

.main_gallery_prev{
    left:500px;
}

.main_gallery_next{
    right:500px;
}

.main_gallery_btn:before{
    content:"";
    position:absolute;
    top:9px;
    width:9px;
    height:9px;
    border-top:1px solid #49b5e3;
    border-right:1px solid #49b5e3;
}

.main_gallery_prev:before{
    left:11px;
    transform:rotate(-135deg);
}

.main_gallery_next:before{
    right:11px;
    transform:rotate(45deg);
}