@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.3, 1.3);
  }
}

.carousel-item {
  transition: transform .6s ease-in-out;
  animation-duration: .9s;
}

.carousel-inner .carousel-item > img {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}

@media (max-width: 575px) {
  #carousel-1 {
    height: 200px;
  }
}

@media (min-width: 576px) {
  #carousel-1 {
    height: 350px;
  }
}

@media (min-width: 992px) {
  #carousel-1 {
    height: 450px;
  }
}

@media (min-width: 1200px) {
  #carousel-1 {
    height: 600px;
  }
}

@media (min-width: 1400px) {
  #carousel-1 {
    height: 600px;
  }
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #393020;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity .6s ease;
}

.carousel-indicators .active {
  background-color: #ffa300;
}

