/* Highlights */
.main-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-highlights a {
  text-decoration: none;
  color: var(--secondary-color);
}
.main-highlights .main-highlights-item {
  display: grid;
  grid-template-columns: 8fr 2fr;
  gap: 40px;
  /* align-items: center;
  justify-content: center; */
}

.main-highlights-left {
  padding: 25px;
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--secondary-color);
  line-height: 1.5;
  text-align: left;
  align-self: center;
}
.main-highlights-right {
  align-self: center;
  justify-self: center;
}
.main-highlights-right img {
  padding: 25px;
  width: 200px;
  height: auto;
}
.main-body-text {
  align-self: center;
}
.main-body-text p {
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  font-size: 18px;
  color: var(--secondary-color);
  line-height: 1.5;
  text-align: left;
}
#main-carousel {
  margin-bottom: 4rem;
  width: 100%;
}
#main-carousel .carousel-indicators {
  bottom: -10%;
}
#main-carousel .carousel-indicators li {
  background-color: var(--menu-color);
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
#main-carousel .carousel-control-prev-icon {
  height: 60%;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  flex: 0 1 50%;
}
#main-carousel .carousel-control-next-icon {
  height: 60%;
  background-repeat: no-repeat;
  background-size: 32px 32px;
  flex: 0 1 50%;
}

@media (max-width: 991px) {
  .carousel-indicators {
    display: none;
  }
  #main-carousel {
    padding-top: 40%;
  }
  .carousel-control-next,
  .carousel-control-prev {
    top: 45%;
  }
  main {
    padding-top: 0;
  }
  /* .main-highlights .main-highlights-item {
    display: grid;
    grid-template-rows: auto auto; 
    grid-row-gap: 5px; 
  }
  .main-highlights .main-highlights-right {
    grid-row: 1; 
    width: 80%;
  }
  .main-highlights .main-highlights-left {
    grid-row: 2; 
    width: 80%;
  } */
  .container-wrapper .main-highlights .main-highlights-item {
    display: flex;
    flex-direction: column; /* Stacks child elements as rows */
    gap: 5px; /* Adjust the gap between items as needed */
  }
  .container-wrapper .main-highlights-right {
    order: 1;
  }

  .container-wrapper .main-highlights-left {
    order: 2;
  }
  /* .main-highlights .main-highlights-right,
  .main-highlights .main-highlights-left {
    width: 80%; 
  } */
}
