.carousel {
  width: 100%;
  max-width: 178px;
  height: 230px;
  overflow: hidden;
  background-color: #063077;
  padding: 10px;
  border: 4px double rgba(255, 255, 255, 0.674);
  border-radius: 3px;
  margin-top: 8px;
}

.carousel-track-container {
  overflow: hidden;
  width: 100%;
  max-width: 200px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carousel-slide {
  width: 100%;
  max-width: 200px;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
}

.carousel-buttons-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  padding: 0;
  width: 100%;
  max-width: 200px;
}

.carousel-button {
  width: fit-content;
}
button.carousel-button.prev {
  text-align: left;
}
button.carousel-button.next {
  text-align: right;
}

@media (max-width: 1199px) {
  .carousel {
    max-width: 150px;
    height: 200px;
  }
}
@media (max-width: 991px) {
  .carousel {
    max-width: 120px;
    height: 170px;
  }
}
@media (max-width: 687px) {
  .carousel {
    margin: auto;
    margin-bottom: 8px;
  }
}
