/* Booking */
.book-form,
.stalls {
  background: var(--secondary);
  padding: 50px 0px;
}

.stall {
  background: var(--secondary);
  padding: 50px 0px;
}

.book-form-div,
.webinar-table {
  padding: 50px 0px;
}

.book-form-div,
.stall-div,
.webinar-table {
  width: 95%;
  margin: auto;
}

.stall-div {
  display: grid;
  align-items: center;
  justify-content: space-between;
}

.stall-right {
  background: linear-gradient(135deg, #667eea 0%, #1a3b86 100%), #fff;
  height: 100%;
  padding: 20px;
  border-radius: 15px;
}

.stall-right h2 {
  color: var(--secondary);
  font-weight: var(--fw-xxxl);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.stall-right ul li {
  color: var(--secondary);
  font-weight: var(--fw-md);
  margin-bottom: 10px;
}

/* About Info Cards */
.stalls {
  background: var(--bg);
  width: 100%;
}

.stalls-div {
  margin: auto;
}

.about-cards {
  display: grid;
  gap: 20px;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
}

.about-info-card {
  border-radius: 15px;
  background: var(--secondary);
  border: 2px solid var(--border);
  height: 100%;
}

.about-info-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 15px;
  position: relative;
  border-radius: 15px;
}

.about-info-top h2 {
  color: var(--text-dark);
  font-weight: var(--fw-xl);
  margin-bottom: 0px;
  text-align: center;
}

.about-info-top h4 {
  color: var(--text-dark);
  font-weight: var(--fw-lg);
  margin-bottom: 0px;
  text-align: center;
}

.about-info-bottom {
  padding: 0px 15px 15px 15px;
}

.about-info-bottom h6 {
  text-align: center;
}

@media screen and (min-width: 1098px) {
  .stall-right ul li {
    font-size: 18px;
  }

  .stall-div {
    grid-template-columns: repeat(2, 1fr);
  }

  .stall-left img {
    height: 450px;
  }

  .stall-right h2 {
    font-size: 30px;
  }

  /* About Info Cards */
  .stalls-div {
    width: 85%;
  }

  .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-info-top h2 {
    font-size: 25px;
  }

  .about-info-top h4,
  .about-info-bottom h6 {
    font-size: 16px;
  }
}

@media screen and (min-width: 767px) and (max-width: 1098px) {
  .stall-right ul li {
    font-size: 16px;
  }

  .stall-div {
    grid-template-columns: repeat(2, 1fr);
  }

  .stall-left img {
    height: 400px;
  }

  .stall-right h2 {
    font-size: 30px;
  }

  /* About Info Cards */
  .stalls-div {
    width: 90%;
  }

  .about-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-info-top h2 {
    font-size: 20px;
  }

  .about-info-top h4,
  .about-info-bottom h6 {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .stall-right ul li {
    font-size: 14px;
  }

  .stall-div {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }

  .stall-left img {
    height: 300px;
  }

  .stall-right h2 {
    font-size: 25px;
  }

  /* About Info Cards */
  .stalls-div {
    width: 95%;
  }

  .about-cards {
    grid-template-columns: repeat(1, 1fr);
  }

  .about-info-top h2 {
    font-size: 25px;
  }

  .about-info-top h4,
  .about-info-bottom h6 {
    font-size: 16px;
  }
}
