.body-container {
    /* padding: 20px; */
    margin: 0 auto;
    max-width: unset;
    padding: 73px 0px 0px 0px;
}

    .carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  /* width: 300%;  */
}

.slide {
  flex-shrink: 0;
  width: 100%;
  position: relative;
}

.slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    357.94deg,
    #202936 -3%,
    rgba(32, 41, 54, 0) 96.82%
  );
  pointer-events: none; /* allows clicks through overlay */
}
.slide img {
  width: 100%;
  height: auto;
  display: block;
   max-height: 400px !important;
   object-fit: contain;
  
}



.carousel-title {
  position: absolute;
  bottom: 0px;
  text-align: center;
  width: 100%;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 0;
  z-index: 1000;
}

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #717171;
}

@media (max-width: 768px) {
   
}


@media (max-width: 480px) {}