.image-carousel {
    margin: 0 -27px;
}
.image-carousel .splide__slide {
    padding: 10px 15px;
}
.image-carousel .slide-content {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
}
.image-carousel .slide-content::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    bottom: 15px;
    background-color: #fff;
    opacity: 0.7;
    border-radius: 12px;
    transition: opacity 0.4s;
}
.image-carousel .splide__slide.is-active .slide-content::after {
    opacity: 0;
}
.image-carousel img {
    width: 100%;
    height: 270px;
    position: relative;
    z-index: 0;
    object-fit: cover;
    transition: height 0.2s;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.16);
}
.image-carousel .splide__slide.is-active img {
    height: 300px;
}
.image-carousel .splide__arrows {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: calc(100% / 3 - 30px);
    height: 15px;
    transform: translateX(-50%);
}
.image-carousel .splide__arrow, .image-carousel .splide__arrow:hover, .image-carousel .splide__arrow:focus {
    width: 25px;
    height: 15px;
    top: 0;
    transform: none;
    padding: 0;
    background: url(../images/slider-arrow.svg) no-repeat;
    background-size: cover;
    opacity: 1;
}
.image-carousel .splide__arrow--prev, .image-carousel .splide__arrow--prev:hover {
    left: 0;
    transform: rotateZ(180deg);
}
.image-carousel .splide__arrow--next {
    right: 0;
}
.image-carousel .carousel-nav {
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    width: calc(100% / 3 - 30px);
    padding: 0 9%;
    height: 15px;
    line-height: 15px;
    font-size: 14px;
}
.image-carousel .splide__pagination {
    bottom: 5px;
    left: 50%;
    width: 8%;
    transform: translateX(-50%);
}
.image-carousel .splide__pagination li {
    flex-grow: 1;
    height: 3px;
    background-color: #ccd6c8;
}
.image-carousel .splide__pagination li.is-active {
    background-color: #89908a;
}
.image-carousel .splide__arrow svg, .image-carousel .splide__pagination button {
    display: none;
}
@media(max-width: 1024px) {
    .image-carousel {
        margin: 0 -300px;
    }
    .image-carousel .splide__slide {
        padding-left: 8px;
        padding-right: 8px;
    }
    .image-carousel .splide__arrows {
        width: calc(100% / 3 - 16px);
    }
}
@media(max-width: 767px) {
    .image-carousel {
        margin: 0 -60vw;
    }
    .image-carousel .splide__slide {
        padding-left: 5px;
        padding-right: 5px;
    }
    .image-carousel .splide__arrows {
        width: calc(100% / 3 - 10px);
    }
    .image-carousel .carousel-nav {
        padding: 0 6%;
    }
    .image-carousel .splide__pagination {
        width: 15%;
    }
}