.center-carousel {
     width: 100%;
}

@media (max-width: 768px) {
     .center-carousel {
          height: 250px;
     }
}

@media (min-width: 768px) {
     .center-carousel {
          height: 400px;
     }
}

@media (min-width: 1440px) {
     .center-carousel {
          height: 500px;
     }
}

@media (min-width: 1920px) {
     .center-carousel {
          height: 600px;
     }
}

.center-carousel .carousel-cell {
     height: 100%;
     padding-left: 10px;
     padding-right: 10px;
}

.center-carousel .carousel-cell .center-carousel-container {
     height: 100%;
     display: flex;
     flex-direction: row;
     align-items: center;
     justify-content: center;
}

.center-carousel .carousel-cell .center-carousel-container img {
     height: 80%;
     object-fit: cover;
}

@media (max-width: 768px) {
     .center-carousel .carousel-cell .center-carousel-container img {
          width: 250px;
     }
}

@media (min-width: 768px) {
     .center-carousel .carousel-cell .center-carousel-container img {
          width: 500px;
     }
}

@media (min-width: 1440px) {
     .center-carousel .carousel-cell .center-carousel-container img {
          width: 700px;
     }
}

@media (min-width: 1920px) {
     .center-carousel .carousel-cell .center-carousel-container img {
          width: 900px;
     }
}

.center-carousel .carousel-cell.is-selected .center-carousel-container img {
     height: 100%;
}

.center-carousel .flickity-page-dots {
     display: flex;
     align-items: center;
     justify-content: center;
}

.center-carousel .flickity-page-dots::before {
     content: "";
     display: inline-block;
     min-width: 40px;
     min-height: 1px;
     background-color: #926D39;
     margin-right: 20px;
}

.center-carousel .flickity-page-dots::after {
     content: "";
     display: inline-block;
     min-width: 40px;
     min-height: 1px;
     background-color: #926D39;
     margin-left: 20px;
}

.center-carousel .flickity-page-dots .dot {
     background-color: #926D39;
     border-radius: 0;
     transform: rotate(45deg);
     width: 7px;
     height: 7px;
}

.center-carousel .flickity-page-dots .dot.is-selected {
     width: 10px;
     height: 10px;
}

.center-carousel .flickity-prev-next-button svg {
     fill: #926D39;
}


/*# sourceMappingURL=style.css.map */