#blog-slider .container {
    text-align: center;
    margin-bottom: 50px;
}
.blog-slider-wrp {
    margin-bottom: 35px;
}
.blog-slider-title {
    font-family: 'Firenight', sans-serif;
    font-size: 40px;
    color: #820091;
    text-align: center;
    margin-bottom: 35px;
}
@media(max-width: 576px){
    .blog-slider-title {
        margin-bottom: 30px;
    }
}
.blog-slider-item {
    margin: 10px;
    text-align: center;
}
.blog-slider-item-inner {
    max-width: 300px;
    margin: 0 auto;
    background-color: #F6F6F6;
    height: 440px;
} 
.blog-slider-item-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.blog-slider-item-image img {
    object-fit: cover;
    max-width: none;
    height: 300px;
}
.blog-slider-item-image a {
    display: block;
    position: relative;
    height: 300px;
    width: 300px;
}
.blog-slider-item-image a::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    transition: background-color .3s;
}
.blog-slider-item-image a:hover::before {
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    background-image: url("data:image/svg+xml,%3Csvg width='49' height='9' viewBox='0 0 49 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='4.5' cy='4.5' r='4.5' fill='%23FFD909'/%3E%3Ccircle cx='24.5' cy='4.5' r='4.5' fill='%23FFD909'/%3E%3Ccircle cx='44.5' cy='4.5' r='4.5' fill='%23FFD909'/%3E%3C/svg%3E%0A");
}
.blog-slider-item-title {
    display: block;
    margin: 28px auto 15px auto;
    padding: 0px 15px 0px 15px;
    font-size: 18px;
    line-height: 26px;
    color: #222222;
    text-decoration: none;
    min-height: 55px;
    transition: color .3s;
}
@media(max-width: 576px){
    .blog-slider-item-title {
        display: block;
        font-size: 14px;
        line-height: 1.2em;
    }
}
.blog-slider-item-title:hover {
    color: #820091;
}
.blog-slider-item-date {
    color: #a1a1a1;
}
@media(max-width: 1300px){
    #blog-slider .container {
    padding: 0;
    }
}
@media(max-width: 380px){
    .blog-slider-item-inner {
        height: auto;
        padding-bottom: 20px;
    }
    .blog-slider-item-image {
        height: auto;
    }
}