@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --heading-black: #151515;
  --text-black: #333333;
  --white: #ffffff;
  --yellow: #ebef00;
  --light-green: #00ea89;
  --green: #198b52;
  --btn-red-color: #cf0808;
  --light-borownish: #e69b2f;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--white);
  color: var(--text-black);
  overflow-x: hidden;
  overflow-y: auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: unset;
}

.container {
  max-width: 130rem;
  width: 100%;
  padding: 0 1rem;
  margin: 0 auto;
}

.section-container {
  max-width: 114rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */

.header .header-img > img {
  display: block;
  width: 45%;
  margin: 0 auto;
  object-fit: cover;
}

/* Hero-Main */

.hero-main {
  background-color: var(--heading-black);
  color: var(--white);
  padding: 1rem 0;
}

.hero-title > h2 {
  font-size: 3.3rem;
  font-weight: 600;
  text-align: center;
  padding: 1.5rem 0;
}

.hero-title--color {
  color: var(--light-green);
  text-decoration: underline;
}

.hero-video {
  margin: 1.5rem 0;
}

.hero-video-container {
  margin: 0 15rem;
  padding: 0px 0px 0px 0px;
  border-radius: 8px 8px 8px 8px;
}

.hero-video-widget {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}


@media (max-width: 480px) {
    .hero-video-widget > iframe {
        height: 90% !important;
    }
}

.hero-video-widget > iframe {
  display: block;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
}

.spot-book {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2.5rem 0;
}

.btn-spot {
  display: inline-block;
  font-family: 'Montserrat', Sans-serif;
  font-size: 2.7rem;
  font-weight: 600;
  background-color: var(--btn-red-color);
  border-radius: 5px 5px 5px 5px;
  padding: 2rem 11.5rem;
}

.btn-spot-sub {
  font-size: 1.6rem;
  text-align: center;
  padding-top: 0.5rem;
}

.spot-book-title {
  font-size: 2rem;
  margin-top: 1.5rem;
}

.spot-book-title-strong {
  font-weight: 600;
  text-decoration: underline;
}

.requirements-detail {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.5rem;
}

.requirement-box {
  padding: 1rem;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: calc(2.5rem / 2);
  font-size: 2.1rem;
}

.requirement-item > i {
  font-size: 2.4rem;
  color: var(--yellow);
}

.requirement-item-color {
  color: var(--yellow);
  font-weight: 600;
}

/* Checkbox-Section */
.checkbox {
  background-color: #fafafa;
  padding: 1rem 0;
}

.checkbox-title {
  font-size: 4rem;
  text-align: center;
}

.checkbox-flex {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.checkbox-item {
  padding: 1rem;
}

.checkbox-box label {
  padding: 1rem;
  display: flex;
  gap: 1.5rem;
  background-color: var(--white);
  border-radius: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.checkbox-box label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.check-mark {
  position: absolute;
  top: 15px;
  left: 15;
  height: 35px;
  width: 35px;
  background-color: #eee;
  border-radius: 5px 5px 5px 5px;
}

.checkbox-box .label {
  font-size: 2.1rem;
  padding-left: 50px;
}

.checkbox-box label:hover input ~ .check-mark {
  background-color: #ccc;
}

.checkbox-box label input:checked ~ .check-mark {
  background-color: #2eb1ff;
}

.check-mark:after {
  content: '';
  position: absolute;
  display: none;
}

.checkbox-box label input:checked ~ .check-mark:after {
  display: block;
}

.checkbox-box label .check-mark:after {
  left: 12px;
  top: 5px;
  width: 10px;
  height: 18px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 500;
  text-align: center;
  padding: 0 1rem;
}

.checkbox-sub--color {
  color: var(--green);
  font-weight: 700;
}

.checkbox .spot-book-item {
  color: var(--white);
}

.checkbox .btn-spot {
  font-size: 3rem;
  padding: 3rem 15rem;
}

.checkbox .spot-book-title {
  color: var(--heading-black);
  font-weight: 600;
}

.checkbox .spot-book-title-strong {
  font-weight: 700;
  color: var(--light-borownish);
}

/* Reviews-Section */
.reviews {
  padding: 1rem 0;
}

.reviews-title {
  font-size: 4rem;
  text-align: center;
}

.reviews-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.review-item {  
    flex: 1 1 33.333%;  
    padding: 1rem 3rem; 
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%); 
}

.review-item > img {  
  display: block; 
  width: 100%;  
    
  object-fit: cover;  
}

.reviews .spot-book-item {
  color: var(--white);
}

.reviews .btn-spot {
  font-size: 3rem;
  padding: 3rem 15rem;
}

/* Learn-Section */

.learn {
  padding: 1rem 0;
}

.learn-title {
  font-size: 4rem;
  text-align: center;
}

.learn-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.learn-box {
  flex: 1 1 33.333%;
  padding: 2.5rem;
  padding-bottom: 1rem;
  background-color: transparent;
  background-image: linear-gradient(210deg, #f0f0f0 0%, #ffffff 100%);
  border-radius: 1.5rem;
  border: 2px solid #dadada;
}

.learn-icon {
  margin-bottom: 2rem;
}

.learn-icon > svg {
  width: 4rem;
  height: 4rem;
  position: relative;
  display: block;
}

.learn-box--heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 600;
  margin: 1rem 0;
  margin-bottom: 2rem;
  color: var(--green);
}

.learn-box--text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
}

.learn .spot-book-item {
  color: var(--white);
}

.learn .btn-spot {
  font-size: 3rem;
  padding: 3rem 15rem;
}

.learn .spot-book-title {
  color: var(--heading-black);
  font-weight: 600;
}

.learn .spot-book-title-strong {
  font-weight: 700;
  color: var(--light-borownish);
}

/* Register-Section  */
.register {
  padding: 1rem 0;
}

.register-header {
  background-color: var(--heading-black);
  color: var(--white);
  padding: 2rem;
}

.register-title {
  font-size: 4rem;
  text-align: center;
}

.register-text {
  text-align: center;
  color: var(--yellow);
  font-family: 'Poppins', Sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}

/* Video-Slider */

.video-slider {
  margin: 2.5rem 0;
}

.video-image-slide {
  position: relative;
}

.thumbnail-bg {
  border-radius: 1rem;
}

.video-image-slide .play-icon {
  display: block;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  object-fit: cover;
}

#dialog-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

#dialog-content > iframe, #dialog-content2 > iframe, #dialog-content3 > iframe, #dialog-content4 > iframe, #dialog-content5 > iframe , #dialog-content6 > iframe {
  
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 600px;
}


.fancybox__content {
  padding: 0 !important;
  background-color: transparent !important;
}

.video-slider .swiper {
  width: 100%;
  height: 100%;
}

.video-slider .swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.register-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.register-card {
  flex: 1 1 33.333%;
  padding: 1.5rem;
  background-color: transparent;
  background-image: linear-gradient(210deg, #151515 0%, #198b52 100%);
  border-radius: 1.5rem;
  border: 1px solid #e0e0e091;
  color: var(--white);
  box-shadow: 0px 0px 20px -5px rgb(0 0 0 / 11%);
}

.register-card-header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.register-card-header > i {
  font-size: 5rem;
}

.register-card-header > h3 {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.register-card p {
  margin: 1.5rem 0;
  font-size: 2rem;
  font-weight: 400;
}

.register-card > h3 {
  font-size: 2.5rem;
  text-decoration: line-through;
  font-weight: 600;
}

/* Timeout-Section */

.timeout {
  padding: 1rem 0;
}

.timeout-title {
  font-size: 4rem;
  text-align: center;
}

.time-box {
  margin-top: 1rem;
}

.time-box-widget {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.5rem;
}

.time-box-widget li {
  text-align: center;
  background: var(--heading-black);
  color: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  width: 19.2rem;
}

.digits {
  display: block;
  color: var(--yellow);
  font-size: 5.4rem;
  line-height: 1;
  text-align: center;
}

.time-alpha {
  display: block;
  font-size: 1.8rem;
  text-align: center;
}

.timeout .spot-book-item {
  color: var(--white);
}

.timeout .btn-spot {
  font-size: 3rem;
  padding: 3rem 15rem;
}

.timeout .spot-book-title {
  color: var(--heading-black);
  font-weight: 600;
}

.timeout .spot-book-title-strong {
  font-weight: 700;
  color: var(--light-borownish);
}

/* Expert-Section */

.expert {
  background-color: var(--heading-black);
  color: var(--white);
  padding: 1rem 0;
}

.expert-title {
  font-size: 4rem;
  text-align: center;
  color: var(--light-green);
}

.expert-text {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5rem;
}

.expert-text-color {
  color: var(--yellow);
  font-weight: 600;
  text-decoration: underline;
}

.expert-img {
  max-width: 767px;
  width: 100%;
  margin: 0 auto;
}

.expert-img > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.expert .btn-spot {
  font-size: 3rem;
  padding: 3rem 15rem;
}

.expert .spot-book-title {
  color: var(--white);
  font-weight: 600;
}

.expert .spot-book-title-strong {
  font-weight: 700;
  color: var(--yellow);
}

.mentor-flex {
  display: flex;
  justify-content: space-between;
  gap: 3.5rem;
  margin-top: 3.5rem;
}

.mentor-images {
  padding: 1rem 3.5rem;
  flex: 1 1 33.333%;
}

.mentor-description {
  padding: 1rem;
  flex: 1 1 33.333%;
}

.mentor-images > img {
  display: block;
  width: 85%;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 8px;
}

.mentor-img {
  display: flex;
  gap: 1rem;
  width: 85%;
  margin: 0 auto;
}

.img-bg {
  background-color: var(--white);
  width: 50%;
  padding: 1rem;
  margin-top: 1.5rem;
  border-radius: 8px;
}

.img-bg > img {
  display: block;
  width: 60%;
  margin: 0 auto;
  object-fit: cover;
}

.mentor-title {
  font-size: 4rem;
  color: var(--light-green);
}

.mentor-services {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.mentor-services li {
  display: flex;
  gap: 1.2rem;
  padding: 0.35rem 0;
  align-items: center;
}

.mentor-services li > i {
  font-size: 2rem;
  color: var(--light-green);
}

.service-name {
  font-size: 1.7rem;
}

.mentor-para {
  margin-top: 1rem;
}

.mentor-para p {
  font-size: 1.9rem;
  font-weight: 600;
}

.mentor-para p:nth-child(2) {
  margin: 1.5rem 0;
}

.sp-text {
  color: var(--yellow);
}

/* WorkShop-Section */
.workshop {
  padding: 1rem 0;
}

.workshop-title {
  font-size: 4rem;
  text-align: center;
}

.workshop-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 2.5rem 0;
}

.workshop-card {
  flex: 1 1 33.333%;
  display: flex;
  column-gap: 2.5rem;
  align-items: center;
  border-radius: 10px 10px 10px 10px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #cdcdcd;
  padding: 1rem;
}

.workshop-card-img > svg {
  display: block;
  width: 4rem;
  height: 4rem;
}

.workshop-card-text {
  font-size: 2rem;
  font-weight: normal;
}

/* Proof-Section */
.proof {
  padding: 1rem 0;
}

.proof-title {
  font-size: 4rem;
  text-align: center;
}

.proof-text {
  font-size: 1.7rem;
  font-weight: 400;
  margin: 1rem 0;
}

.proof-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1rem;
}

.proof-card {
  flex: 1 1 33.3333%;
  background-color: var(--white);
  padding: 1rem;
  box-shadow: 0px 0px 20px -5px rgb(0 0 0 / 20%);
}

.proof-card > img {
  display: block;
  width: 100%;
}

.proof-card > h4 {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  padding: 1.5rem 0;
}

.proof .btn-spot {
  font-size: 3rem;
  padding: 3rem 15rem;
  color: var(--white);
}

.proof .spot-book-title {
  color: var(--heading-black);
  font-weight: 600;
}

.proof .spot-book-title-strong {
  font-weight: 700;
  color: var(--light-borownish);
}

/* FAQ-Section */

.faq-title {
  font-size: 4rem;
  text-align: center;
}

.faq-text {
  font-size: 1.7rem;
  text-align: center;
  margin: 1rem 0;
}

.accordion {
  margin: 2.5rem 0;
}

.accordion .accordion-item {
  border: 1px solid #000000;
  border-bottom: 0;
  background-color: #f4f4f4;
}

.accordion .accordion-item:last-child {
  border-bottom: 1px solid #000000;
}

.accordion button {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  width: 100%;
  padding: 1.2rem 0;
  color: var(--text-black);
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
}

.accordion button .accordion-title {
  padding: 0.8rem 0 0.8rem 4.5rem;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  left: 15px;
  width: 22px;
  height: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 11px;
  height: 3px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 3px;
  height: 11px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}

.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: fit-content;
  transition: all 200ms linear;
  will-change: opacity, max-height;
  background-color: var(--white);
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1.6rem;
  font-weight: 400;
  padding: 1.2rem 1.5rem;
  border-top: 1px solid #000000;
}

.faq .btn-spot {
  font-size: 3rem;
  padding: 3rem 15rem;
  color: var(--white);
}

.faq .spot-book-title {
  color: var(--heading-black);
  font-weight: 600;
}

.faq .spot-book-title-strong {
  font-weight: 700;
  color: var(--light-borownish);
}

.mobile-show {
  display: none;
}

/* ---------------Responsive Design---------------- */

@media (max-width: 1092px) {
  .mentor-images {
    padding: 1rem;
  }

  .mentor-images > img,
  .mentor-img {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .mentor-flex {
    flex-direction: column;
    gap: 0;
  }

  .mentor-images > img,
  .mentor-img {
    width: 85%;
  }

  .mobile-show {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
  }

  .mobile-hide {
    display: none;
  }
}

@media (max-width: 767px) {
  .header .header-img > img {
    width: 75%;
  }

  .hero-video-container {
    margin: 0;
  }

  .spot-book {
    display: block;
    text-align: center;
  }

  .btn-spot {
    display: block;
    padding: 1.5rem 3.5rem;
    font-size: 2.1rem;
  }

  .hero-title > h2 {
    font-size: 2rem;
  }

  .spot-book-title {
    font-size: 1.6rem;
  }

  .requirements-detail {
    flex-direction: column;
    gap: 0;
  }

  .requirement-box {
    padding: 0;
  }

  .requirement-item {
    font-size: 1.7rem;
  }

  .checkbox-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .checkbox-flex {
    flex-direction: column;
  }

  .checkbox-item {
    padding: 0;
  }

  .checkbox-sub {
    font-size: 1.7rem;
  }

  .checkbox .btn-spot,
  .reviews .btn-spot,
  .learn .btn-spot,
  .timeout .btn-spot,
  .faq .btn-spot,
  .proof .btn-spot,
  .expert .btn-spot {
    font-size: 2.1rem;
    padding: 2.3rem 4rem;
  }

  .reviews-title,
  .learn-title,
  .faq-title,
  .proof-title,
  .expert-title,
  .mentor-title {
    font-size: 2.5rem;
  }

  .faq-text,
  .proof-text,
  .expert-text {
    font-size: 1.6rem;
  }

  .reviews-content,
  .learn-content,
  .register-content,
  .proof-flex {
    flex-direction: column;
  }

  .review-item {
    width: 100%;
    flex: 0;
  }

  .learn-icon {
    margin-bottom: 1.5rem;
  }

  .learn-box--heading {
    font-size: 2.2rem;
    margin: 0;
    margin-bottom: 0;
  }

  .register-title,
  .timeout-title {
    font-size: 2.2rem;
  }

  .register-text {
    font-size: 1.6rem;
  }

  .register-card-header > h3 {
    font-size: 1.9rem;
  }

  .register-card-header > i {
    font-size: 3.5rem;
  }

  .register-card p {
    font-size: 1.6rem;
  }

  .time-box-widget {
    gap: 1rem;
  }

  .digits {
    font-size: 4rem;
  }

  .time-alpha {
    font-size: 1.4rem;
  }

  .time-box {
    width: 100%;
  }

  .mentor-para p {
    font-size: 1.6rem;
  }

  .workshop-card {
    flex-direction: column;
    row-gap: 0.75rem;
  }

  .workshop-card-text {
    font-size: 1.5rem;
    text-align: center;
  }
}

@media (max-width: 463px) {
  .mentor-services {
    row-gap: 0;
  }
}

@media (max-width: 390px) {
  .workshop-content {
    flex-direction: column;
  }

  .workshop-card {
    width: 100%;
  }
}
