.heroSlide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 95vh;
  color: #fff;
  /* padding-bottom: 5em; */
}
.heroCarousel {
  position: relative;
}

.heroTitle {
  font-size: 65px;
  line-height: 1.1;
}

.airoplaneSection {
  position: absolute;
  z-index: 5;
  bottom: 0;
}

.heroContent {
  position: relative;
  z-index: 99999999;
  color: white;
  width: 100%;
  top: 5em;
  display: flex;
  flex-direction: column;
  gap: 8em;
  padding-bottom: 6em;
}

.customIndicators {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}

.indicator {
  width: 40px;
  height: 4px;
  background: #ffffff80;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicatorLineDefault {
  /* width: 30px; */
  height: 7px;
  background-color: #cccccc63;
  cursor: pointer;
  transition: background-color 0.3s ease;
  /* border-radius: 2px; */
}

.indicator.active {
  background: #ffffff;
  opacity: 1;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.2) 100%,
      rgba(0, 0, 0, 0.3) 60%,
      rgba(0, 0, 0, 0) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0) 60%,
      rgba(0, 0, 0, 0) 100%
    );
  z-index: 1;
  pointer-events: none;
}

.airoplaneWrapper {
  position: relative;
  width: 100%;
  margin-top: -10.3vw;
  z-index: 5;
  padding: 0;
  pointer-events: none;
}

.airoplaneImg {
  display: block;
  width: 100%;
  height: auto;
}

.noMarginHtml p {
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 1300px) {
  .heroTitle {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .heroTitle {
    font-size: 50px;
  }
  .heroSlide {
    min-height: 800px;
  }
}

@media (max-width: 768px) {
  .airoplaneWrapper {
    margin-top: -10.4vw;
  }
}

@media (max-width: 576px) {
  /* .heroSlide {
    height: auto;
  } */
  .airoplaneWrapper {
    margin-top: -10.3vw;
  }

  .heroSlide {
    min-height: 430px;
    background-position: right;
  }
  .heroTitle {
    font-size: 25px;
  }
  .heroContent {
    gap: 3em;
  }
}
