.carousel {
    height: 400px;
    width: 100%;
}

.carousel-cell {
    height: 350px;
    width: 290px;
    margin-left: 20px;
}

.carousel-image {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.carousel-content {
    position: absolute;
    bottom: 30px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}

.carousel-link, .carousel-link:hover {
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
}

.flickity-button {
    background-color: white;
    box-shadow: 0px 0px 10px grey;
    height: 65px;
    width: 65px;
}


.show-nav .carousel .flickity-prev-next-button {
    display: block;
}

.carousel .flickity-prev-next-button svg {
    width: 40px;
    height: 40px;
}
.flickity-prev-next-button.next {
    right: -80px;

}

.flickity-prev-next-button.previous{
    left: -80px;
}

@media screen and (max-width: 1280px) {
    .flickity-button {
        display: none;
    }
}

@media screen and (max-width: 360px) {
    .carousel-cell {
        padding-left: 5px;
    }
    .flickity-slider {
        left: -20px !important;
    }
}