/* MAIN BANNER */
.main-banner {
  background: url(/assets/img/courses/bg-banner-courses.jpg) center / cover;
  background-position-y: center;
}

/* MAIN BANNER */

/* INTRO */
.intro-courses {
  padding-block: 13vh;
}

.intro-courses p {
  max-width: 76%;
  font-size: 28px;
}

@media (max-width: 756px) {
  .intro-courses p {
    max-width: 100%;
    font-size: 16px;
  }
}

/* INTRO */

/* MODAL COURSES */
.modalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000000;
  background-color: rgb(0, 0, 0);
  opacity: 0.7;
}

.modalCourses {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #333333;
  width: 75%;
  z-index: 10000000;
}

.modalCourses .exit {
  position: absolute;
  right: 2%;
  top: 3%;
}

.modalCourses .exit:hover {
  cursor: pointer;
  background-color: rgb(34, 33, 33);
  border-radius: 3px;
}

.modalCourses .card h3 {
  font-size: 38px;
  font-weight: 300;
}

.modalCourses .card h3 strong {
  font-weight: 700;
}

.modalCourses .info h3 {
  font-size: 38px;
  line-height: 43px;
}

.modalCourses .info h4 {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 5px;
}

.modalCourses .info p {
  font-size: 16px;
  padding-inline: 10px;
  width: 100%;
}

.modalCourses .infos .columnOne {
  width: 50%;
}

.modalCourses .card {
  background-color: #e32652;
  border-radius: 30px;
  padding: 75px;
}

@media (max-width: 1680px) {
  .modalCourses {
    width: 85%;
  }
}

@media (max-width: 1440px) {
  .modalCourses {
    width: 100%;
  }

  .modalCourses .card h3 {
    font-size: 32px;
  }

  .modalCourses .card {
    padding: 50px;
  }
}

@media (max-width: 992px) {
  .modalCourses .card {
    padding: 40px;
  }
  .modalCourses {
    position: fixed;
    top: 0%;
    left: 0%;
    transform: translate(0, 0);
    height: 100vh;
    overflow: auto;
  }
}

/* MODAL COURSES */

/* COURSES LIST */
.courses-list img {
  width: 95%;
  height: 600px;
  object-fit: cover;
  border-radius: 30px;
}

.courses-list .infos {
  padding-inline-start: 6%;
}

.courses-list .infos p {
  line-height: 32px;
}

.courses-list .infos .audience {
  width: 100%;
}

@media (max-width: 992px) {
  .courses-list .infos {
    padding-inline-start: 0%;
  }
}

@media (max-width: 756px) {
  .courses-list img {
    width: 100%;
    height: 380px;
  }
}

/* COURSES LIST */

/* HOW IT WORKS */
.how-it-works {
  padding-block: 13vh;
}

.how-it-works .dark-pink {
  color: #7d152d;
  font-weight: 400;
}

.how-it-works .step-number {
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works .step-number h3 {
  color: #fff;
  font-size: 60px;
  font-weight: 300;
}

.how-it-works h2 {
  line-height: 50px;
}

.how-it-works p {
  font-size: clamp(20px, 1.7vw, 28px);
  line-height: 28px;
  width: 60%;
  color: #fff;
}

.how-it-works .btn-primary {
  background-color: #a11b3a;
}

@media (max-width: 992px) {
  .how-it-works br {
    display: none;
  }
}

@media (max-width: 756px) {
  .how-it-works p {
    width: 100%;
  }
}

/* HOW IT WORKS */

/* EXCLUSIVE BENEFITS */
.exclusive-benefits {
  padding-block: 10vh;
}

.exclusive-benefits h3 {
  color: #fff;
  font-weight: 700;
}

.exclusive-benefits p {
  color: #fff;
  font-weight: 500;
  margin-top: 30px;
}

.exclusive-benefits .benefits {
  padding-inline-start: 13%;
  margin-top: 10%;
}

@media (max-width: 992px) {
  .exclusive-benefits .benefits {
    padding-inline-start: 0%;
  }
}

/* EXCLUSIVE BENEFITS */

/* CHOOSE TO GROW */
.choose-to-grow {
  height: 70vh;
  background: url(/assets/img/courses/choose-to-grow.jpg) center / cover;
}

@media (max-width: 992px) {
  .choose-to-grow br {
    display: none;
  }

  .choose-to-grow h2 {
    font-size: 32px;
  }
}

/* CHOOSE TO GROW */
