/* ------------------------------------------Index Page------------------------------------------------------- */
.main-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--page-banner-background-color);
  /* height: var(--main-banner-height); */
  color: var(--page-banner-text-color);
}
.main-banner .desktop-banner {
  display: none;
}
.main-banner .mobile-banner {
  display: block;
}

.categories-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--page-banner-background-color);
  height: var(--section-banner-height);
}

.index-fold-2 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: center;
  /* padding: 100px; */
  padding: 20px;
  background-color: var(--colour-1);
  color: black;
  position: relative;
}
.div-1 {
  position: relative;
  /* text-align: justify; */
  text-justify: inter-word;
  /* width: 500px; */
  width: 80%;
}
.div-1 p {
  font-size: 1.3rem;
}
.float-dot {
  display: none;

  /* position: absolute;
  background-color: var(--colour-3);
  border-radius: 50%;
  z-index: 0; */
}
/* .dot-1 {
  top: 50px;
  right: -50px;
}
.dot-2 {
  bottom: 100px;
  left: -100px;
}
.dot-3 {
  bottom: 200px;
  right: -80px;
}
.dot-4 {
  bottom: 50px;
  left: 50px;
} */

.div-2 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  align-items: start;
  /* width: 100%; */
  /* height: 250px; */
  position: relative;
}
.div-2 .calendar-link,
.div-2 .packages-link {
  width: 80%;
  margin: auto;
}
.div-2 .calendar-link p,
.div-2 .packages-link p {
  width: 90%;
  padding-top: 10px;
  margin: auto;
}
/* .separator {
  position: relative;
  height: 150px;
} */
.astronaut-2 {
  /* position: relative;
  width: 150px;
  height: 150px;
  top: 0;
  right: 150px;
  z-index: 2; */
  display: none;
}

.div-2 .class-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.div-2 .class-image h2 {
  position: absolute;
  color: var(--colour-3);
  text-align: center;
  font-size: 2.7rem;
  line-height: 3rem;
  /* top: 50%; */
}
.div-2 .class-image .image1,
.div-2 .class-image .image2 {
  width: 250px;
  border-radius: 20px;
  border: 5px solid transparent;
}
.div-2 .class-image .image1:hover,
.div-2 .class-image .image2:hover {
  border: 5px solid var(--colour-3);
}


.cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1rem;
  place-content: start;
  width: 100vw;
  margin: 100px auto;
  padding: 20px;
  justify-items: center;
}
.cards .title {
  grid-column: 1 / 4;
  color: var(--colour-3);
  text-align: center;
}
.cards .title h2{
  font-size: 3rem;
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  width: min(100%, 300px);
  border: 1px solid var(--colour-6);
  border-radius: 20px;
  text-align: center;
  padding: 20px;
}
.card .stars {
  padding: 20px 0;
}
.card .bi {
  font-size: 1rem;
  color: var(--colour-3);
}
.card .profile {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 20px 0;
}
.card .profile-photo {
  width: 80px;
  border-radius: 50%;
}
.card h4 {
  margin: 0.5em 0;
}
.index-banner {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1rem;
  justify-items: center;
  width: 100vw;
  margin: 100px auto;
}

.card-banner {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 300px;
  aspect-ratio: 5/3;
  border: 1px solid var(--product-thumbnail-border-color);
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding-left: 170px;
}


@media screen and (min-width: 425px) {
  .card-banner {
    width: 400px;
    padding-left: 230px;
  }
  .div-2 .class-image h2 {
    font-size: 3.2rem;
  }
  .div-2 .class-image .image1,
  .div-2 .class-image .image2 {
    width: 300px;
  }
}
@media screen and (min-width: 769px) {
  .main-banner .desktop-banner {
    display: block;
  }
  .main-banner .mobile-banner {
    display: none;
  }

  .index-fold-2 {
    padding: 100px 20px;
  }
  .div-1 {
    text-align: justify;
    width: min(80vw, 1000px);
  }
  .div-2 {
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: center;
    align-items: start;
    width: 650px;
    /* height: 250px; */
    position: relative;
  }
  .separator {
    position: relative;
    height: 150px;
  }
  .astronaut-2 {
    display: block;
    position: absolute;
    width: 200px;
    height: 200px;
    right: 150px;
    z-index: 2;
  }

  .float-dot {
    display: block;
    position: absolute;
    background-color: var(--colour-3);
    border-radius: 50%;
    z-index: 0;
  }
  .dot-1 {
    top: 50px;
    right: -50px;
  }
  .dot-2 {
    bottom: 100px;
    left: -100px;
  }
  .dot-3 {
    bottom: 200px;
    right: -80px;
  }
  .dot-4 {
    bottom: 50px;
    left: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
    width: min(90vw, 900px);
    grid-gap: 20px;
  }
  .card-banner {
    width: 450px;
    padding-left: 280px;
  }
  .index-banner {
    grid-template-columns: repeat(2, 1fr);
    width: min(90vw, 1100px);
  }

}
@media screen and (min-width: 1200px) {
  /* Extra */
  .card-banner {
    width: 500px;
    padding-left: 300px;
  }
}
