.infrastructure-section .inner-container .para {
  width: 70%;
  text-align: center;
  margin: auto;
  margin-bottom: 20px;
  font-size: 18px;
}

.home-banner-section {
  position: relative;
  /* height: calc(100vh - var(--header-height)); */
}

.banner-bg-carousel {
  height: 100%;
  width: 100%;
  margin: auto;
}
.banner-bg-carousel .item {
  width: 100%;
  height: 50vh;
  padding: 0 5px;
  /* height: calc(100vh - var(--header-height)); */
}
.banner-bg-carousel .img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.banner-bg-carousel .arrow {
  width: 50px;
  height: 50px;
  color: white;
  background-color: rgba(39, 39, 39, 0.868);
  border-radius: 50%;
  border: 0;
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}

.banner-bg-carousel .next-arrow {
  right: 5px;
}

.banner-bg-carousel .prev-arrow {
  left: 5px;
}

.home-banner-section .center-container .carousel-contianer {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.banner-text-carousel {
  width: 100%;
  text-align: center;
}

.banner-bg-carousel .slick-dots li button {
  width: 10px;
  height: 10px;
  content: "";
  background-color: var(--theme-color-1);
  border-radius: 50%;
  opacity: 0.75;
  transition: all 0.2s linear;
}
.banner-bg-carousel .slick-dots li.slick-active button {
  width: 50px;
  border-radius: 5px;
  opacity: 1;
}
.banner-bg-carousel .slick-dots li {
  width: auto;
  height: auto;
}
.banner-bg-carousel .slick-dots li button::before {
  content: "";
}

/* *************************** */
/*         Media Queries      */
/* ************************* */

/* Large laptop */
@media screen and (max-width: 1400px) {
}
/* Small laptop */
@media screen and (max-width: 1200px) {
}
/* Tablet */
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
}
/* Large mobile */
@media screen and (max-width: 576px) {
  .infrastructure-section .inner-container .para {
    width: 100%;
  }
}
/* Small mobile */
@media screen and (max-width: 375px) {
}
@media screen and (max-width: 320px) {
}
