/********************CAROUSEL********************/
@media (min-width: 576px) {
  .carousel-container .carousel {
    width: calc(100% - 80px);
    margin: 15px auto 0;
  }
}
.carousel-container .carousel-control-next,
.carousel-container .carousel-control-prev {
  transition: opacity 1s ease;
}
.carousel-container .carousel-control-next:focus,
.carousel-container .carousel-control-next:hover,
.carousel-container .carousel-control-prev:focus,
.carousel-container .carousel-control-prev:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  .carousel-container .carousel {
    width: 100%;
  }
}
.carousel-container .carousel-control-next,
.carousel-container .carousel-control-prev {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 30px;
}
.carousel-container .carousel-item.active,
.carousel-container .carousel-item-next,
.carousel-container .carousel-item-prev {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.carousel-container .carousel-control-prev {
  left: -25px;
}
.carousel-container .carousel-control-next {
  right: -25px;
}
.carousel-container .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 18.48' fill='%23000'%3e%3cpath d='M0,9.24L16,0,5.03,9.28l10.97,9.2L0,9.24Z'/%3e%3c/svg%3e")!important;
}
.carousel-container .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 18.48' fill='%23000'%3e%3cpath d='M0,18.48L10.97,9.28,0,0,16,9.24,0,18.48Z'/%3e%3c/svg%3e")!important;
}
.carousel-container.text-reversed .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 18.48' fill='%23fff'%3e%3cpath d='M0,9.24L16,0,5.03,9.28l10.97,9.2L0,9.24Z'/%3e%3c/svg%3e")!important;
}
.carousel-container.text-reversed .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 18.48' fill='%23fff'%3e%3cpath d='M0,18.48L10.97,9.28,0,0,16,9.24,0,18.48Z'/%3e%3c/svg%3e")!important;
}
.carousel-container.has-background-images .carousel .carousel-card {
  position: relative;
  aspect-ratio: 1 / 1;
}
@media (min-width: 576px) {
  .has-desktop-one-across.carousel-container .carousel .carousel-card {
    aspect-ratio: 3 / 1;
  }
}
.carousel-container.has-background-images .carousel .carousel-card a {
  text-decoration: none;
}
.carousel-container .carousel img {
  max-width: 75%;
  height: 50vw;
  object-fit: contain;
  width: 100%;
}
.carousel-container.has-background-images .carousel img {
  max-width: calc(100% - 2rem);
  height: 100%;
  top: 0;
  left: 1rem;
  position: absolute;
  object-fit: cover;
}
.carousel-container .carousel .carousel-text {
  margin-top: 1rem;
}
.carousel-container.has-background-images .carousel .carousel-text {
  color: white;
  font-weight: 900;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top: 0;
  padding: 3rem 2rem;
  position: relative;
}
@media (min-width: 576px) {
  .carousel-container.has-background-images .carousel .carousel-text {
    font-size: 40px;
    line-height: 1;
  }
}
@media (min-width: 1400px) {
  .carousel-container.has-background-images .carousel .carousel-text {
    font-size: 46px;
    line-height: 1;
  }
}
.carousel-container .carousel-desktop {
  display: none;
}
.carousel-container .carousel-tablet {
  display: none;
}
@media (min-width: 992px) {
  .carousel-container .carousel-desktop {
    display: none;
  }
  .carousel-container .carousel-tablet {
    display: block;
  }
  .carousel-container .carousel-mobile {
    display: none;
  }
  .carousel-container:not(.has-background-images) .carousel img {
    height: 32vw;
  }
}
@media (min-width: 1200px) {
  .carousel-container .carousel-desktop {
    display: block;
  }
  .carousel-container .carousel-mobile {
    display: none;
  }
  .carousel-container .carousel-tablet {
    display: none;
  }
  .carousel-container:not(.has-background-images) .carousel img {
    height: 17vw;
  }
}
