.store-box {

}
.store-box__slide{
    position: relative;
    padding-bottom: 66.666%;
}
.store-box__slide:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 74.51%, rgba(0, 0, 0, 0.3) 100%);
}
.store-box__slider img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
}
.store-box .slick-dots{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    position: absolute;
    bottom: 0px;
    left: 50%;
    padding: 0;
    transform: translate(-50%, 0);
    margin: 0;
}
.store-box .slick-dots li{
    margin: 0 8px;
}
.store-box .slick-dots button{
    height: 48px;
    font-size: 0;
    text-indent: -9999px;
    overflow: hidden;
    background: none;
    border: none;
    padding: 0;
    width: 48px;
    position: relative;
    cursor: pointer;
}
.store-box .slick-dots button:before{
    content: '';
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    height: 4px;
    opacity: 0.5;
    transition: all 0.3s ease-out;
    display: block;
    left: 0;
    width: 100%;
    background: #fff;
}
.store-box .slick-dots .slick-active button:before,
.store-box .slick-dots button:hover:before{
    opacity: 1;
}
@media only screen and (min-width: 1000px){
    .store-box__slide{
        padding-bottom: 0;
        height: 570px;
    }
    .store-box .slick-dots{
        bottom: 14px;
    }
    .store-box .slick-dots button{
        width: 40px;
        height: 40px;
    }
}