/* [project]/src/styles/components/hero.scss.css [app-client] (css) */
:root {
  --color-primary: #141414;
  --color-secondary: #1f1f25;
  --color-body: #74787c;
  --color-heading-1: #fff;
  --color-white: #fff;
  --color-success: #3eb75e;
  --color-danger: #ff0003;
  --color-warning: #ff8f3c;
  --color-info: #1ba2db;
  --color-facebook: #3b5997;
  --color-twitter: #1ba1f2;
  --color-youtube: #ed4141;
  --color-linkedin: #0077b5;
  --color-pinterest: #e60022;
  --color-instagram: #c231a1;
  --color-vimeo: #00adef;
  --color-twitch: #6441a3;
  --color-discord: #7289da;
  --transition: .3s;
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 12px;
  --font-size-b4: 10px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 2vw + 1rem, 80px);
  align-items: stretch;
}

.hero__image-card {
  position: relative;
  width: 100%;
  height: clamp(638px, 85vh, 1200px);
  border-radius: 30px;
  overflow: hidden;
  background: #f6defc;
  z-index: 2;
}

@keyframes clearSweep {
  0% {
    transform: translateY(-40%);
  }

  100% {
    transform: translateY(50%);
  }
}

.hero__image-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 250%;
  backdrop-filter: blur(32.75px);
  -webkit-mask-image: linear-gradient(#0000 0% 10%, #000 30% 100%);
  mask-image: linear-gradient(#0000 0% 10%, #000 30% 100%);
  z-index: 4;
  pointer-events: none;
  animation: 3s ease-in-out .2s forwards clearSweep;
}

.hero__image-card:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(#73737300 0%, #d9d9d91a 100%);
  backdrop-filter: blur(32.75px);
  -webkit-mask-image: linear-gradient(#0000, #000);
  mask-image: linear-gradient(#0000, #000);
  z-index: 3;
  pointer-events: none;
}

.hero__image {
  object-fit: cover;
  object-position: top center;
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.hero__title {
  position: relative;
  top: 60px;
  z-index: 1;
  font-size: 60px;
  font-weight: 600;
  color: #1a1a1a;
  font-family: var(--font-urbanist), sans-serif;
}

.hero__desc {
  color: #000000b2;
  max-width: 340px;
  text-align: right;
  margin-left: auto;
  font-family: var(--font-urbanist), sans-serif;
}

.hero__btn-group {
  position: relative;
  bottom: 20px;
  display: flex;
  width: 100%;
}

.hero__btn-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #d9d9d933;
  border-radius: 70px;
  padding: 6px;
  width: 100%;
}

.hero__btn {
  flex: 1;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero__feature-card {
  background: #f6defc;
  border-radius: 30px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: 140px;
}

.hero__feature-icon {
  width: 100px;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__feature-label {
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.45;
  font-family: var(--font-urbanist), sans-serif;
}

.hero-mobile {
  display: none;
  flex-direction: column;
  width: 100%;
  padding-top: 50px;
  background: #fff;
}

@media (width <= 991.98px) {
  .hero-mobile {
    display: flex;
  }
}

.hero-mobile__card {
  position: relative;
  background: linear-gradient(#fde7ff 0%, #f5ceff 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}

.hero-mobile__image-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-mobile__image {
  object-fit: cover;
  object-position: top center;
}

.hero-mobile__fade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000 15%, #00000080 45%, #0000 80%);
  z-index: 2;
}

.hero-mobile__content {
  padding-top: min(70vw, 420px);
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}

.hero-mobile__title {
  max-width: 350px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 0;
  font-family: var(--font-urbanist), sans-serif;
}

.hero-mobile__desc {
  color: #ffffffe6;
  line-height: 1.5;
  font-family: var(--font-urbanist), sans-serif;
  max-width: 300px;
  margin-bottom: 0;
}

.hero-mobile__btn-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 24px;
  padding: 0 24px;
}

.hero-mobile__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-urbanist), sans-serif;
  text-decoration: none;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  white-space: nowrap;
}

.hero-mobile__btn--primary {
  background: #cb5ceb !important;
  color: #fff !important;
}

.hero-mobile__btn--primary .btn-primary-text, .hero-mobile__btn--primary .btn-secondary-text span {
  color: #fff !important;
}

.hero-mobile__btn--secondary {
  backdrop-filter: blur(4px);
  background: #fff !important;
  color: #1a1a1a !important;
}

.hero-mobile__btn--secondary .btn-primary-text, .hero-mobile__btn--secondary .btn-secondary-text span {
  color: #1a1a1a !important;
}

.hero-mobile__btn:active {
  transform: scale(.97);
}

.hero-mobile__features {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.hero-mobile__features::-webkit-scrollbar {
  display: none;
}

.hero-mobile__feature-card {
  flex: 0 0 140px;
  background: #f4f4f4;
  border-radius: 16px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 120px;
}

.hero-mobile__feature-icon {
  width: 36px;
  height: 36px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mobile__feature-label {
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  font-family: var(--font-urbanist), sans-serif;
}


/* [project]/src/styles/components/academyOverview.scss.css [app-client] (css) */
:root {
  --color-primary: #141414;
  --color-secondary: #1f1f25;
  --color-body: #74787c;
  --color-heading-1: #fff;
  --color-white: #fff;
  --color-success: #3eb75e;
  --color-danger: #ff0003;
  --color-warning: #ff8f3c;
  --color-info: #1ba2db;
  --color-facebook: #3b5997;
  --color-twitter: #1ba1f2;
  --color-youtube: #ed4141;
  --color-linkedin: #0077b5;
  --color-pinterest: #e60022;
  --color-instagram: #c231a1;
  --color-vimeo: #00adef;
  --color-twitch: #6441a3;
  --color-discord: #7289da;
  --transition: .3s;
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 12px;
  --font-size-b4: 10px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}

.academy-overview {
  position: relative;
  z-index: 2;
  margin-top: 250px;
  background-color: #fff;
  padding: 100px 0;
  padding-bottom: 0;
}

@media (width <= 991.98px) {
  .academy-overview {
    display: none !important;
  }
}

.academy-overview:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to top, #fff, #0000);
  pointer-events: none;
}

.academy-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

@media (width <= 991.98px) {
  .academy-overview__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
  }
}

.academy-overview__left {
  grid-column: 1 / 2;
  grid-row: 1;
  max-width: 650px;
}

@media (width <= 991.98px) {
  .academy-overview__left {
    grid-column: 1 / -1;
  }
}

.academy-overview__heading {
  font-weight: 600;
  font-size: 50px;
  line-height: 1.1;
  color: #1a1a1a;
  max-width: 450px;
  letter-spacing: -.02em;
  margin: 0;
}

.academy-overview__right {
  grid-column: 2 / 3;
  grid-row: 2;
  margin-top: 40px;
  text-align: right;
  margin-left: auto;
}

@media (width <= 991.98px) {
  .academy-overview__right {
    grid-column: 1 / -1;
    grid-row: auto;
    margin-top: 0;
  }
}

.academy-overview__description {
  line-height: 1.6;
  color: #000000b2;
  max-width: 1000px;
  margin: 0;
  font-weight: 400;
}

.academy-overview__link-inline, .academy-overview__link-word {
  text-decoration: none;
  transition: opacity .3s;
  cursor: pointer;
  display: inline-block;
  color: inherit !important;
}

.academy-overview__link-inline:hover, .academy-overview__link-word:hover {
  opacity: .8;
}

.academy-overview__stats-bar {
  background-color: #1a1a1a;
  border-radius: 40px;
  padding: 80px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  gap: 60px;
  color: #fff;
}

@media (width <= 991.98px) {
  .academy-overview__stats-bar {
    flex-direction: column;
    padding: 40px;
    gap: 40px;
    margin-top: 60px;
    border-radius: 30px;
  }
}

.academy-overview__stats-left {
  flex: 1;
}

.academy-overview__stats-text {
  line-height: 1.6;
  color: #ffffffd9;
  margin: 0;
  font-weight: 400;
  max-width: 650px;
}

@media (width <= 991.98px) {
  .academy-overview__stats-text {
    text-align: center;
  }
}

.academy-overview__stats-right {
  display: flex;
  gap: 120px;
  margin-right: 60px;
}

@media (width <= 991.98px) {
  .academy-overview__stats-right {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.academy-overview__stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media (width <= 991.98px) {
  .academy-overview__stat-item {
    align-items: center;
    text-align: center;
  }
}

.academy-overview__stat-number {
  font-size: clamp(50px, 5vw, 70px);
  font-weight: 600;
  line-height: 1;
  color: #cb5ceb;
  letter-spacing: -.02em;
}

.academy-overview__stat-label {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}

@media (width <= 991.98px) {
  .academy-overview__stat-label {
    font-size: 16px;
  }
}

@media (width <= 1399.98px) {
  .academy-overview {
    margin-top: 180px;
    padding: 80px 0;
    padding-bottom: 0;
  }

  .academy-overview__heading {
    max-width: 400px;
  }

  .academy-overview__stats-bar {
    padding: 60px;
    gap: 40px;
    margin-top: 60px;
    border-radius: 34px;
  }

  .academy-overview__stats-right {
    gap: 80px;
    margin-right: 30px;
  }

  .academy-overview__stat-number {
    font-size: clamp(42px, 4.5vw, 60px);
  }
}

@media (width <= 1199.98px) {
  .academy-overview {
    margin-top: 140px;
    padding: 60px 0;
    padding-bottom: 0;
  }

  .academy-overview__heading {
    max-width: 360px;
  }

  .academy-overview__description {
    max-width: 800px;
  }

  .academy-overview__stats-bar {
    padding: 50px 40px;
    gap: 30px;
    margin-top: 50px;
    border-radius: 30px;
  }

  .academy-overview__stats-right {
    gap: 50px;
    margin-right: 20px;
  }

  .academy-overview__stat-number {
    font-size: clamp(36px, 4vw, 52px);
  }

  .academy-overview__stat-label {
    font-size: 16px;
  }
}

.academy-overview-mobile {
  padding: clamp(10px, 4vw, 20px);
  background-color: #0000;
}

@media (width >= 768px) {
  .academy-overview-mobile {
    display: none !important;
  }
}

.academy-overview-mobile__black-box {
  background-color: #1a1a1a;
  border-radius: clamp(30px, 8vw, 40px);
  padding: clamp(24px, 8vw, 40px) clamp(16px, 5vw, 24px);
  width: 100%;
}

.academy-overview-mobile__heading {
  font-size: clamp(24px, 7vw, 32px);
  font-weight: 600;
  color: #fff;
  margin-bottom: clamp(12px, 4vw, 20px);
  line-height: 1.2;
  font-family: var(--font-urbanist), sans-serif;
}

.academy-overview-mobile__description {
  font-size: clamp(13px, 3.5vw, 15px);
  line-height: 1.6;
  color: #fffc;
  margin-bottom: clamp(24px, 8vw, 40px);
  font-family: var(--font-urbanist), sans-serif;
}

.academy-overview-mobile__link {
  color: inherit;
  text-decoration: none;
  font-weight: inherit;
}

.academy-overview-mobile__stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(8px, 3vw, 16px);
}

.academy-overview-mobile__stat-item {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.academy-overview-mobile__stat-number {
  font-size: clamp(24px, 8vw, 36px);
  font-weight: 600;
  color: #cb5ceb;
  margin-bottom: 4px;
  line-height: 1;
  letter-spacing: -.01em;
}

.academy-overview-mobile__stat-label {
  font-size: clamp(10px, 2.5vw, 12px);
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  opacity: .95;
  text-transform: capitalize;
}


/* [project]/src/components/HeroAnimation/heroAnimation.scss.css [app-client] (css) */
:root {
  --color-primary: #141414;
  --color-secondary: #1f1f25;
  --color-body: #74787c;
  --color-heading-1: #fff;
  --color-white: #fff;
  --color-success: #3eb75e;
  --color-danger: #ff0003;
  --color-warning: #ff8f3c;
  --color-info: #1ba2db;
  --color-facebook: #3b5997;
  --color-twitter: #1ba1f2;
  --color-youtube: #ed4141;
  --color-linkedin: #0077b5;
  --color-pinterest: #e60022;
  --color-instagram: #c231a1;
  --color-vimeo: #00adef;
  --color-twitch: #6441a3;
  --color-discord: #7289da;
  --transition: .3s;
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 12px;
  --font-size-b4: 10px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}

.hero-animation {
  position: relative;
}

@media (width <= 767.98px) {
  .hero-animation {
    display: none;
  }
}

.hero-animation > section:first-child {
  position: sticky;
  top: 80px;
  z-index: 1;
  height: calc(100vh - 50px);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: top .8s cubic-bezier(.165, .84, .44, 1);
  padding-top: 40px !important;
  padding-bottom: 20px !important;
}

@media (width >= 1900px) {
  .hero-animation > section:first-child {
    padding-top: 0 !important;
  }
}

.hero-animation.is-overflowing {
  padding-top: 20px;
}

.hero-animation.is-overflowing .hero__image-card {
  min-height: 400px;
  height: 100% !important;
}

.hero-animation.is-overflowing .hero__title {
  margin-bottom: 20px;
  top: 0 !important;
}

.hero-animation.is-overflowing .hero__container {
  gap: 32px !important;
}

.hero-animation.is-overflowing .hero__btn-wrapper {
  flex-wrap: wrap;
  justify-content: center;
}

.hero-animation.is-overflowing > section:first-child {
  top: var(--hero-sticky-top, 80px);
  height: auto;
  min-height: calc(100vh - 50px);
  overflow: visible;
}

.hero-animation > section:nth-child(2) {
  position: relative;
  z-index: 2;
  background-color: #fff;
}


/* [project]/src/styles/components/whatYouLearn.scss.css [app-client] (css) */
:root {
  --color-primary: #141414;
  --color-secondary: #1f1f25;
  --color-body: #74787c;
  --color-heading-1: #fff;
  --color-white: #fff;
  --color-success: #3eb75e;
  --color-danger: #ff0003;
  --color-warning: #ff8f3c;
  --color-info: #1ba2db;
  --color-facebook: #3b5997;
  --color-twitter: #1ba1f2;
  --color-youtube: #ed4141;
  --color-linkedin: #0077b5;
  --color-pinterest: #e60022;
  --color-instagram: #c231a1;
  --color-vimeo: #00adef;
  --color-twitch: #6441a3;
  --color-discord: #7289da;
  --transition: .3s;
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 12px;
  --font-size-b4: 10px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}

.what-you-learn {
  overflow: hidden;
}

@media (width <= 991.98px) {
  .what-you-learn {
    display: none;
  }
}

.what-you-learn__header {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.what-you-learn__heading {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.what-you-learn__description {
  line-height: 160%;
  color: #000000b2;
  margin: 0;
}

.what-you-learn__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

@media (width <= 991.98px) {
  .what-you-learn__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
}

.what-you-learn__card {
  position: relative;
  background: #fff;
  border-radius: 30px;
  padding: 15px;
  box-shadow: 0 0 40px #00000014;
  transition: transform .4s cubic-bezier(.175, .885, .32, 1.275), box-shadow .4s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.what-you-learn__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px #0000001a;
}

.what-you-learn__image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 11;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: inset 0 0 20px #0000000d;
}

.what-you-learn__image-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  pointer-events: none;
}

.what-you-learn__image-wrapper img {
  object-fit: cover;
  transition: transform .6s;
}

.what-you-learn__image-wrapper:hover img {
  transform: scale(1.05);
}

.what-you-learn__content {
  flex: 1;
}

.what-you-learn__card-title {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.what-you-learn__card-desc {
  line-height: 130%;
  color: #000000b2;
  margin: 0;
}

.what-you-learn-mobile {
  display: block;
  padding: 32px 16px;
  background: #f4f4f4;
  border-radius: 24px;
  margin: 10px;
}

@media (width >= 768px) {
  .what-you-learn-mobile {
    display: none;
  }
}

.what-you-learn-mobile__header {
  text-align: left;
  margin-bottom: 20px;
  padding: 0 4px;
}

.what-you-learn-mobile__heading {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.2;
  font-family: var(--font-urbanist), sans-serif;
  letter-spacing: -.5px;
}

.what-you-learn-mobile__description {
  font-size: 14px;
  line-height: 1.5;
  color: #000000b2;
  margin: 0;
  font-family: var(--font-urbanist), sans-serif;
  max-width: 90%;
}

.what-you-learn-mobile__carousel {
  overflow: hidden;
  border-radius: 20px;
  margin-top: 16px;
}

.what-you-learn-mobile__track {
  display: flex;
  transition: transform .4s cubic-bezier(.25, .46, .45, .94);
  will-change: transform;
}

.what-you-learn-mobile__slide {
  min-width: 100%;
  width: 100%;
  flex-shrink: 0;
  padding: 0;
}

.what-you-learn-mobile__card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  padding: 10px;
  box-shadow: 0 10px 30px #00000008;
  margin: 0 4px;
}

.what-you-learn-mobile__image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.what-you-learn-mobile__image-wrapper img {
  object-fit: cover;
}

.what-you-learn-mobile__content {
  padding: 14px 8px 10px;
}

.what-you-learn-mobile__card-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.2;
  font-family: var(--font-urbanist), sans-serif;
}

.what-you-learn-mobile__card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #000000b2;
  margin: 0;
  font-family: var(--font-urbanist), sans-serif;
  max-width: 95%;
}

.what-you-learn-mobile__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.what-you-learn-mobile__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #efc9f9;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .3s;
}

.what-you-learn-mobile__dot--active {
  background: #cb5ceb;
  transform: scale(1.1);
}


/* [project]/src/styles/components/whyChoose.scss.css [app-client] (css) */
:root {
  --color-primary: #141414;
  --color-secondary: #1f1f25;
  --color-body: #74787c;
  --color-heading-1: #fff;
  --color-white: #fff;
  --color-success: #3eb75e;
  --color-danger: #ff0003;
  --color-warning: #ff8f3c;
  --color-info: #1ba2db;
  --color-facebook: #3b5997;
  --color-twitter: #1ba1f2;
  --color-youtube: #ed4141;
  --color-linkedin: #0077b5;
  --color-pinterest: #e60022;
  --color-instagram: #c231a1;
  --color-vimeo: #00adef;
  --color-twitch: #6441a3;
  --color-discord: #7289da;
  --transition: .3s;
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 12px;
  --font-size-b4: 10px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}

.why-choose {
  background: #d9d9d933;
  border-radius: 60px;
  padding: 100px 60px;
  overflow: visible;
}

@media (width <= 1399.98px) {
  .why-choose {
    padding: 80px 40px;
    border-radius: 50px;
  }
}

@media (width <= 1199.98px) {
  .why-choose {
    padding: 60px 30px;
    border-radius: 40px;
  }
}

@media (width <= 991.98px) {
  .why-choose {
    padding: 60px 20px 80px;
    display: none;
  }
}

.why-choose__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(40px, 6vw, 80px);
  gap: 40px;
}

@media (width <= 991.98px) {
  .why-choose__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
}

.why-choose__heading {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: #1a1a1a;
  flex: 1;
  line-height: 1.1;
}

.why-choose__heading span {
  color: #cb5ceb;
}

.why-choose__description {
  max-width: 520px;
  color: #000000b2;
  margin: 0;
  text-align: right;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
}

@media (width <= 991.98px) {
  .why-choose__description {
    max-width: 600px;
    text-align: center;
  }
}

.why-choose__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-choose__item-bar {
  position: sticky;
  top: 100px;
  background: #fff;
  border-radius: 100px;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  box-shadow: 0 15px 50px #00000014;
  margin-bottom: 24px;
  transform-origin: top;
  transition: all .4s cubic-bezier(.165, .84, .44, 1);
}

@media (width <= 1399.98px) {
  .why-choose__item-bar {
    padding: 24px 45px;
  }
}

@media (width <= 1199.98px) {
  .why-choose__item-bar {
    padding: 20px 40px;
    gap: 30px;
  }
}

@media (width <= 991.98px) {
  .why-choose__item-bar {
    border-radius: 40px;
    padding: 40px 30px;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    top: 80px;
  }
}

.why-choose__item-bar:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px #0000001f;
}

.why-choose__number {
  font-size: clamp(36px, 3.5vw, 54px);
  font-weight: 300;
  color: #cb5ceb;
  min-width: 100px;
}

@media (width <= 1199.98px) {
  .why-choose__number {
    min-width: 80px;
  }
}

@media (width <= 991.98px) {
  .why-choose__number {
    min-width: auto;
    font-size: 42px;
  }
}

.why-choose__oval-image {
  width: clamp(220px, 20vw, 320px);
  height: clamp(110px, 10vw, 160px);
  position: relative;
  border-radius: 200px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 30px #00000026;
}

@media (width <= 991.98px) {
  .why-choose__oval-image {
    width: 100%;
    max-width: 320px;
    height: 160px;
  }
}

.why-choose__oval-image img {
  object-fit: cover;
  transition: transform .5s;
}

.why-choose__oval-image:hover img {
  transform: scale(1.1);
}

.why-choose__content {
  flex: 1;
}

.why-choose__card-title {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.2;
}

@media (width <= 991.98px) {
  .why-choose__card-title {
    font-size: 22px;
  }
}

.why-choose__card-desc {
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
  color: #000000b2;
  margin: 0;
  max-width: 500px;
}

@media (width <= 991.98px) {
  .why-choose__card-desc {
    margin: 0 auto;
    max-width: 100%;
  }
}

@media (width <= 767.98px) {
  .section-gap-top-bottom:has(.why-choose-mobile) {
    padding-bottom: 0;
  }
}

@media (width >= 768px) {
  .why-choose-mobile {
    display: none !important;
  }
}

.why-choose-mobile__header {
  text-align: left;
  margin-bottom: clamp(24px, 8vw, 32px);
}

.why-choose-mobile__heading {
  font-size: clamp(26px, 8vw, 30px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.1;
}

.why-choose-mobile__heading span {
  color: #cb5ceb;
}

.why-choose-mobile__description {
  font-size: 14px;
  color: #000000b2;
  line-height: 1.5;
  margin: 0;
}

.why-choose-mobile__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-choose-mobile__card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px #0000000a;
  display: flex;
  flex-direction: column;
  border: 1px solid #00000005;
  transition: transform .3s;
}

.why-choose-mobile__card:active {
  transform: scale(.98);
}

.why-choose-mobile__image-box {
  width: 100%;
  aspect-ratio: 16 / 7;
  position: relative;
  overflow: hidden;
}

.why-choose-mobile__image {
  object-fit: cover;
}

.why-choose-mobile__content {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.why-choose-mobile__id {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: .02em;
  margin-bottom: 2px;
}

.why-choose-mobile__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}

.why-choose-mobile__desc {
  font-size: 13px;
  color: #000000b2;
  line-height: 1.4;
  margin: 0;
}


/* [project]/src/styles/components/toolsMaster.scss.css [app-client] (css) */
:root {
  --color-primary: #141414;
  --color-secondary: #1f1f25;
  --color-body: #74787c;
  --color-heading-1: #fff;
  --color-white: #fff;
  --color-success: #3eb75e;
  --color-danger: #ff0003;
  --color-warning: #ff8f3c;
  --color-info: #1ba2db;
  --color-facebook: #3b5997;
  --color-twitter: #1ba1f2;
  --color-youtube: #ed4141;
  --color-linkedin: #0077b5;
  --color-pinterest: #e60022;
  --color-instagram: #c231a1;
  --color-vimeo: #00adef;
  --color-twitch: #6441a3;
  --color-discord: #7289da;
  --transition: .3s;
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 12px;
  --font-size-b4: 10px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}

.tools-master {
  padding-top: 0;
  text-align: center;
}

@media (width <= 991.98px) {
  .tools-master {
    display: none !important;
  }
}

.tools-master__header {
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tools-master__heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.tools-master__description {
  font-size: 16px;
  line-height: 1.5;
  color: #000000b2;
  margin: 0;
}

.tools-master__marquee-container {
  overflow: hidden;
  width: 100%;
  margin-top: 40px;
  position: relative;
}

.tools-master__marquee-container:before, .tools-master__marquee-container:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.tools-master__marquee-container:before {
  left: 0;
  background: linear-gradient(to right, #fff, #0000);
}

.tools-master__marquee-container:after {
  right: 0;
  background: linear-gradient(to left, #fff, #0000);
}

.tools-master__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 80px;
  width: fit-content;
}

.tools-master__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  flex-shrink: 0;
  transition: transform .3s;
}

.tools-master__item img {
  max-width: 160px;
  height: 100%;
  object-fit: contain;
}

.tools-master-mobile {
  padding: 50px 0;
  background-color: #f4f4f4;
  overflow: hidden;
}

@media (width >= 768px) {
  .tools-master-mobile {
    display: none !important;
  }
}

.tools-master-mobile__header {
  text-align: left;
  margin-bottom: 32px;
  padding: 0 15px;
}

.tools-master-mobile__heading {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.25;
}

.tools-master-mobile__description {
  font-size: 14px;
  color: #000000b2;
  line-height: 1.5;
  max-width: 90%;
}

.tools-master-mobile__marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 10px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tools-master-mobile__marquee-row {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
}

.tools-master-mobile__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  width: max-content;
  padding: 0 12px;
}

.tools-master-mobile__card {
  border-radius: 24px;
  padding: 20px 0;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px #0000000f, 0 4px 12px #00000005;
  background-color: #fff;
  border: none;
  flex-shrink: 0;
  transition: transform .3s, box-shadow .3s;
}

.tools-master-mobile__logo-box {
  height: 32px;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tools-master-mobile__logo-box img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}


/* [project]/src/styles/components/courseModules.scss.css [app-client] (css) */
:root {
  --color-primary: #141414;
  --color-secondary: #1f1f25;
  --color-body: #74787c;
  --color-heading-1: #fff;
  --color-white: #fff;
  --color-success: #3eb75e;
  --color-danger: #ff0003;
  --color-warning: #ff8f3c;
  --color-info: #1ba2db;
  --color-facebook: #3b5997;
  --color-twitter: #1ba1f2;
  --color-youtube: #ed4141;
  --color-linkedin: #0077b5;
  --color-pinterest: #e60022;
  --color-instagram: #c231a1;
  --color-vimeo: #00adef;
  --color-twitch: #6441a3;
  --color-discord: #7289da;
  --transition: .3s;
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 12px;
  --font-size-b4: 10px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}

.course-modules {
  padding: 80px 0;
  background-image: url("/image/course-modules/module-banner.jpeg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

@media (width <= 1399.98px) {
  .course-modules {
    padding: 60px 0;
    border-radius: 40px;
  }
}

@media (width <= 1199.98px) {
  .course-modules {
    padding: 50px 0;
    border-radius: 32px;
  }
}

@media (width <= 991.98px) {
  .course-modules {
    padding: 40px 0;
    border-radius: 24px;
  }
}

.course-modules__header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

@media (width <= 1199.98px) {
  .course-modules__header {
    margin-bottom: 30px;
  }
}

@media (width <= 991.98px) {
  .course-modules__header {
    margin-bottom: 24px;
  }
}

.course-modules__heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: #fff;
}

.course-modules__description {
  color: #ffffffb3;
  margin-bottom: 30px;
  font-size: clamp(14px, 1.2vw, 16px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (width <= 991.98px) {
  .course-modules__description {
    margin-bottom: 20px;
  }
}

.course-modules__slider-wrapper {
  background: #fff;
  border-radius: 80px;
  padding: 10px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 98%;
  margin: 0 auto;
}

@media (width <= 1399.98px) {
  .course-modules__slider-wrapper {
    border-radius: 60px;
  }
}

@media (width <= 1199.98px) {
  .course-modules__slider-wrapper {
    border-radius: 40px;
    padding: 10px;
    gap: 10px;
  }
}

@media (width <= 991.98px) {
  .course-modules__slider-wrapper {
    border-radius: 28px;
    padding: 16px;
    flex-direction: column;
    max-width: 94%;
  }
}

.course-modules__controls {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

@media (width <= 991.98px) {
  .course-modules__controls {
    display: none;
  }
}

.course-modules__control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
  color: #1a1a1a;
}

@media (width <= 1199.98px) {
  .course-modules__control-btn {
    width: 36px;
    height: 36px;
  }

  .course-modules__control-btn svg {
    width: 20px;
    height: 20px;
  }
}

.course-modules__control-btn:hover {
  background: #f4f4f4;
}

.course-modules__items-container {
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
}

.course-modules__items-container::-webkit-scrollbar {
  display: none;
}

@media (width <= 991.98px) {
  .course-modules__items-container {
    width: 100%;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

.course-modules__list {
  display: flex;
  gap: 16px;
  padding: 10px 0;
}

@media (width <= 1199.98px) {
  .course-modules__list {
    gap: 12px;
  }
}

@media (width <= 991.98px) {
  .course-modules__list {
    flex-wrap: wrap;
    gap: 10px;
    padding: 6px 0;
  }
}

.course-modules__item {
  flex: none;
  background: #efc9f9;
  padding: 25px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .3s;
  cursor: pointer;
  flex-wrap: nowrap;
}

@media (width <= 1399.98px) {
  .course-modules__item {
    padding: 20px;
  }
}

@media (width <= 1199.98px) {
  .course-modules__item {
    padding: 16px 18px;
    gap: 10px;
  }
}

@media (width <= 991.98px) {
  .course-modules__item {
    padding: 12px 16px;
    border-radius: 60px;
    gap: 10px;
  }
}

.course-modules__item:hover {
  background: #f6e0fc;
  transform: scale(.98);
}

.course-modules__id {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #1a1a1a;
  flex-shrink: 0;
}

@media (width <= 1199.98px) {
  .course-modules__id {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

@media (width <= 991.98px) {
  .course-modules__id {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}

.course-modules__item-title {
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  margin: 0;
}

@media (width <= 1199.98px) {
  .course-modules__item-title {
    font-size: 13px;
  }
}

@media (width <= 991.98px) {
  .course-modules__item-title {
    font-size: 14px;
  }
}

.course-modules-mobile {
  padding: 0 10px;
  padding-top: 50px;
  background-color: #0000;
}

.course-modules-mobile__black-box {
  background-color: #1a1a1a;
  border-radius: 40px;
  padding: 40px 20px 30px;
  width: 100%;
  margin: 0 auto;
}

.course-modules-mobile__header {
  text-align: left;
  margin-bottom: 24px;
  padding-left: 10px;
}

.course-modules-mobile__heading {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  font-family: var(--font-urbanist), sans-serif;
}

.course-modules-mobile__description {
  font-size: 14px;
  color: #ffffffe6;
  line-height: 1.4;
  margin: 0;
  font-family: var(--font-urbanist), sans-serif;
  max-width: 95%;
}

.course-modules-mobile__white-box {
  background-color: #fff;
  border-radius: 32px;
  padding: 30px 12px;
  width: 100%;
}

.course-modules-mobile__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.course-modules-mobile__item {
  background: #efc9f9;
  border-radius: 100px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #00000005;
}

.course-modules-mobile__id {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 16px;
  box-shadow: 0 4px 12px #0000000f;
  flex-shrink: 0;
}

.course-modules-mobile__item-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  font-family: var(--font-urbanist), sans-serif;
  line-height: 1.2;
}

.course-modules-mobile__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.course-modules-mobile__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #efc9f9;
  border: none;
  padding: 0;
  transition: all .3s;
  cursor: pointer;
}

.course-modules-mobile__dot--active {
  background: #cb5ceb;
  width: 20px;
  border-radius: 4px;
}


/* [project]/src/styles/components/careerGuidance.scss.css [app-client] (css) */
:root {
  --color-primary: #141414;
  --color-secondary: #1f1f25;
  --color-body: #74787c;
  --color-heading-1: #fff;
  --color-white: #fff;
  --color-success: #3eb75e;
  --color-danger: #ff0003;
  --color-warning: #ff8f3c;
  --color-info: #1ba2db;
  --color-facebook: #3b5997;
  --color-twitter: #1ba1f2;
  --color-youtube: #ed4141;
  --color-linkedin: #0077b5;
  --color-pinterest: #e60022;
  --color-instagram: #c231a1;
  --color-vimeo: #00adef;
  --color-twitch: #6441a3;
  --color-discord: #7289da;
  --transition: .3s;
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 12px;
  --font-size-b4: 10px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}

@media (width <= 991.98px) {
  .career-guidance {
    display: none !important;
  }
}

.career-guidance__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 40px;
}

@media (width <= 991.98px) {
  .career-guidance__header {
    flex-direction: column;
    gap: 20px;
  }
}

.career-guidance__heading {
  flex: 1;
  font-weight: 600;
  max-width: 600px;
}

.career-guidance__description {
  flex: 1;
  color: #000000b2;
  line-height: 1.6;
  max-width: 700px;
  text-align: right;
}

@media (width <= 991.98px) {
  .career-guidance__description {
    text-align: left;
    max-width: 100%;
  }
}

.career-guidance__container {
  background-color: #f4f4f4;
  border-radius: 30px;
  padding: 20px;
}

.career-guidance__content {
  display: flex;
  gap: 40px;
  align-items: center;
}

@media (width <= 991.98px) {
  .career-guidance__content {
    flex-direction: column-reverse;
    gap: 40px;
  }
}

.career-guidance__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.career-guidance__card {
  background: #fff;
  border-radius: 80px;
  margin: 0 20px;
  padding: 20px;
  text-align: center;
  transition: all .3s;
  cursor: pointer;
}

@media (width <= 1199.98px) {
  .career-guidance__card {
    margin: 0 10px;
  }
}

@media (width <= 991.98px) {
  .career-guidance__card {
    margin: 0;
  }
}

.career-guidance__card:hover {
  background: #fcfcfc;
  transform: scale(.99);
}

.career-guidance__card-title {
  font-weight: 600;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.career-guidance__card-desc {
  color: #000000b2;
  font-size: 16px;
  line-height: 1.4;
  max-width: 80%;
  margin: 0 auto;
}

@media (width <= 1199.98px) {
  .career-guidance__card-desc {
    max-width: 90%;
  }
}

.career-guidance__image-wrapper {
  flex: 1.1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 600px;
  width: 100%;
}

@media (width <= 1199.98px) {
  .career-guidance__image-wrapper {
    height: 500px;
  }
}

@media (width <= 991.98px) {
  .career-guidance__image-wrapper {
    height: 400px;
  }
}

.career-guidance__image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale();
}

.career-guidance-mobile {
  padding: 40px 16px;
  background-color: #f4f4f4;
  position: relative;
  border-radius: 20px;
}

@media (width >= 768px) {
  .career-guidance-mobile {
    display: none !important;
  }
}

.career-guidance-mobile__header {
  text-align: left;
  margin-bottom: 24px;
  padding: 0 4px;
}

.career-guidance-mobile__heading {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.1;
}

.career-guidance-mobile__description {
  font-size: 14px;
  color: #000000b2;
  line-height: 1.5;
  max-width: 95%;
}

.career-guidance-mobile__image-box {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16 / 8;
  box-shadow: 0 10px 30px #0000000d;
}

.career-guidance-mobile__image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.career-guidance-mobile__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.career-guidance-mobile__card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 8px 30px #00000008;
  transition: transform .3s;
}

.career-guidance-mobile__card:active {
  transform: scale(.98);
}

.career-guidance-mobile__card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.25;
}

.career-guidance-mobile__card-desc {
  font-size: 14px;
  color: #000000b2;
  line-height: 1.5;
}


/* [project]/src/styles/components/certifications.scss.css [app-client] (css) */
:root {
  --color-primary: #141414;
  --color-secondary: #1f1f25;
  --color-body: #74787c;
  --color-heading-1: #fff;
  --color-white: #fff;
  --color-success: #3eb75e;
  --color-danger: #ff0003;
  --color-warning: #ff8f3c;
  --color-info: #1ba2db;
  --color-facebook: #3b5997;
  --color-twitter: #1ba1f2;
  --color-youtube: #ed4141;
  --color-linkedin: #0077b5;
  --color-pinterest: #e60022;
  --color-instagram: #c231a1;
  --color-vimeo: #00adef;
  --color-twitch: #6441a3;
  --color-discord: #7289da;
  --transition: .3s;
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 12px;
  --font-size-b4: 10px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}

@media (width <= 991.98px) {
  .certifications-section {
    display: none !important;
  }
}

.certifications-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1800px;
  margin: 0 auto;
  align-items: stretch;
}

.certs__heading {
  font-weight: 600;
  margin-bottom: 40px;
  color: #1a1a1a;
}

@media (width >= 1600px) {
  .certs__heading {
    font-size: 54px;
  }
}

.certs__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.certs__card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.165, .84, .44, 1);
  box-shadow: 0 0 40px #00000014;
  cursor: pointer;
}

.certs__card:first-child, .certs__card:nth-child(4) {
  grid-column: span 5;
}

.certs__card:nth-child(2), .certs__card:nth-child(3) {
  grid-column: span 7;
}

.certs__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 40px #00000014;
}

.certs__card:hover .certs__image-box img {
  transform: scale(1.08);
}

.certs__image-box {
  width: calc(100% - 24px);
  height: 170px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  margin: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
}

@media (width >= 1600px) {
  .certs__image-box {
    height: 230px;
  }
}

.certs__image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.165, .84, .44, 1);
}

.certs__title {
  padding: 0 16px 20px;
  max-width: 200px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
}

@media (width >= 1600px) {
  .certs__title {
    font-size: 20px;
    max-width: 320px;
  }
}

.who-join {
  background: #fff;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 0 40px #00000014;
}

.who-join__heading {
  display: block;
  text-align: right;
  font-weight: 600;
  margin-bottom: 40px;
}

@media (width >= 1600px) {
  .who-join__heading {
    font-size: 54px;
  }
}

.who-join__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.who-join__card {
  background: #f6defc33;
  border-radius: 30px;
  padding: 30px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (width >= 1600px) {
  .who-join__card {
    padding: 50px 20px;
  }
}

.who-join__card:hover {
  background: #f6defc33;
}

.who-join__icon {
  margin-bottom: 5px;
}

.who-join__title {
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

@media (width >= 1600px) {
  .who-join__title {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

.who-join__desc {
  font-size: 14px;
  color: #000000b2;
  line-height: 1.4;
  margin: 0;
  max-width: 150px;
}

@media (width >= 1600px) {
  .who-join__desc {
    font-size: 18px;
    max-width: 220px;
  }
}

.certifications-mobile {
  padding: 60px 0;
  background-color: #fff;
}

@media (width >= 768px) {
  .certifications-mobile {
    display: none !important;
  }
}

.certifications-mobile__section {
  margin-bottom: 60px;
}

.certifications-mobile__section:last-child {
  margin-bottom: 0;
}

.certifications-mobile__heading {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
}

.certifications-mobile__cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.certifications-mobile__cert-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px #00000008;
  padding: 5px;
}

.certifications-mobile__cert-image {
  width: 100%;
  aspect-ratio: 1 / .8;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
}

.certifications-mobile__cert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certifications-mobile__cert-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  padding: 8px;
}

.certifications-mobile__join-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 4px;
}

.certifications-mobile__join-card {
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 25px #00000005;
}

.certifications-mobile__join-icon {
  width: 52px;
  height: 52px;
  background: #efc9f9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 10px;
}

.certifications-mobile__join-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.certifications-mobile__join-content {
  flex: 1;
}

.certifications-mobile__join-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
  line-height: 1.2;
}

.certifications-mobile__join-desc {
  font-size: 13px;
  color: #000000b2;
  line-height: 1.4;
}


/* [project]/src/styles/components/faq.scss.css [app-client] (css) */
:root {
  --color-primary: #141414;
  --color-secondary: #1f1f25;
  --color-body: #74787c;
  --color-heading-1: #fff;
  --color-white: #fff;
  --color-success: #3eb75e;
  --color-danger: #ff0003;
  --color-warning: #ff8f3c;
  --color-info: #1ba2db;
  --color-facebook: #3b5997;
  --color-twitter: #1ba1f2;
  --color-youtube: #ed4141;
  --color-linkedin: #0077b5;
  --color-pinterest: #e60022;
  --color-instagram: #c231a1;
  --color-vimeo: #00adef;
  --color-twitch: #6441a3;
  --color-discord: #7289da;
  --transition: .3s;
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 12px;
  --font-size-b4: 10px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 30px;
  --h4: 26px;
  --h5: 24px;
  --h6: 18px;
}

.faq-section {
  background-color: #fff;
  padding-bottom: 100px;
}

@media (width <= 767.98px) {
  .faq-section:not(.mobile-faq-section) {
    display: none !important;
  }
}

.faq-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.faq-section .section-title h2 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 500;
  color: #000;
  margin: 0;
}

.faq-section .section-title h2 span {
  font-weight: 500;
}

.faq-section .section-title h2 span:first-child {
  text-transform: lowercase;
}

.faq-section .section-title h2 span.capitalized {
  text-transform: none;
}

.faq-section .faq-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-section .faq-item {
  background: #fdf8fe;
  border-radius: 40px;
  overflow: hidden;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  border: none;
  box-shadow: none;
}

.faq-section .faq-item.active {
  background: #f6defc;
}

.faq-section .faq-question {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-section .faq-question h4 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin: 0;
  flex: 1;
}

.faq-section .faq-question .icon-wrapper {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
  box-shadow: 0 4px 10px #00000008;
  transition: transform .4s;
}

.faq-section .faq-question .icon-wrapper .icon {
  font-size: 24px;
  font-weight: 300;
  color: #000;
  line-height: 1;
  margin-bottom: 2px;
  transition: transform .4s;
}

.faq-section .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(.4, 0, .2, 1);
  padding: 0 40px;
}

.faq-section .faq-answer p {
  padding-bottom: 30px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  max-width: 90%;
}

.faq-section .faq-item.active .faq-answer {
  max-height: 500px;
}

.mobile-faq-section {
  padding: 60px 0;
}

@media (width >= 768px) {
  .mobile-faq-section {
    display: none !important;
  }
}

@media (width <= 767.98px) {
  .mobile-faq-section {
    display: block !important;
  }
}

.mobile-faq-section .section-title {
  margin-bottom: 30px;
}

.mobile-faq-section .section-title h2 {
  font-size: 32px;
}

.mobile-faq-section .faq-container {
  padding: 0 15px;
}

.mobile-faq-section .faq-item {
  border-radius: 40px;
}

.mobile-faq-section .faq-item .faq-question {
  padding: 18px 25px;
}

.mobile-faq-section .faq-item .faq-question h4 {
  font-size: 16px;
}

.mobile-faq-section .faq-item .faq-question .icon-wrapper {
  width: 36px;
  height: 36px;
}

.mobile-faq-section .faq-item .faq-question .icon-wrapper .icon {
  font-size: 20px;
}

.mobile-faq-section .faq-item .faq-answer {
  padding: 0 25px;
}

.mobile-faq-section .faq-item .faq-answer p {
  font-size: 14px;
  padding-bottom: 20px;
  max-width: 100%;
}


/*# sourceMappingURL=src_e5242442._.css.map*/
