body {
  margin: 0;

  padding: 0;
}

/** Header Start **/

.header {
  background-color: #161519;

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 1000;

  height: 90px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  opacity: 0;

  transition: all ease 0.3s;
}

.header.in-view {
  opacity: 1;
}

.header.is-sticky {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 1000;

  box-shadow: 0 5px 16px rgba(#fff, #fff, #fff, 0.1);

  height: 80px;

  backdrop-filter: blur(10px);

  animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header .header__wrapper {
  display: flex;

  align-items: center;

  justify-content: space-between;
}

.header.is-sticky .header__wrapper .logo {
  transform: scale(0.9);
}

.header .header__wrapper .logo {
  display: flex;

  align-items: center;

  justify-content: space-between;

  overflow: hidden;
}

.header .header__wrapper .logo img {
  opacity: 0;

  transition: all ease 0.5s;

  transition-delay: 0.3s;
}

.header.in-view .header__wrapper .logo img {
  opacity: 1;

  animation: pulse 2s 1;
}

@keyframes pulse {
  0% {
    transform: scale(0.55);
  }

  50% {
    transform: scale(1);
  }

  80% {
    transform: scale(0.75);
  }

  100% {
    transform: scale(1);
  }
}

.header .header__wrapper .logo h1 {
  font-family: "Zen Dots", sans-serif;

  font-style: normal;

  font-weight: 400;

  font-size: 14.8941px;

  line-height: 18px;

  letter-spacing: 0.08em;

  color: #ffffff;

  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

  margin-bottom: 0;

  padding-left: 8px;

  overflow: hidden;

  opacity: 0;

  transform: translateX(-50%);

  transition: all ease 0.6s;
}

.header.in-view .header__wrapper .logo h1 {
  opacity: 1;

  overflow: visible;

  transform: translateX(0);
}

.header .header__wrapper .menu {
  display: flex;

  align-items: center;

  opacity: 0;

  transition: opacity ease 0.6s;

  transition-delay: 0.3s;
}

.header.is-sticky .header__wrapper .menu {
  transform: scale(0.9);
}

.header.in-view .header__wrapper .menu {
  opacity: 1;
}

.header .header__wrapper .menu ul {
  display: flex;

  align-items: center;

  margin: 0;

  padding: 0;
}

.header .header__wrapper .menu ul li {
  display: flex;

  align-items: center;

  padding-right: 32px;
}

.header .header__wrapper .menu ul li a {
  color: #c2c2c2;

  font-family: "Rubik";

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: normal;

  letter-spacing: 0.192px;

  text-decoration: none;
}

.header .header__wrapper .menu ul li a.active {
  color: #fff;

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

  -webkit-text-stroke-width: 1;

  -webkit-text-stroke-color: #000;

  font-family: "Ubuntu";

  font-size: 16px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

  letter-spacing: 0.192px;
}

.header .header__wrapper .login__button {
  border-radius: 4px;

  background: linear-gradient(90deg, #00f5a0 0%, #00d9f5 100%);

  display: flex;

  padding: 12px 24px;

  align-items: flex-start;

  gap: 10px;

  cursor: pointer;

  border: 1px solid transparent;

  transition: all 0.5s ease;
}

.header .header__wrapper .login__button:hover {
  background: transparent;

  border: 1px solid var(--c2a_grad_2, #00d9f5);
}

.header .header__wrapper .login__button:hover a {
  color: #fff;
}

.header .header__wrapper .login__button a {
  color: #161519;

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 14px;

  font-style: normal;

  font-weight: 500;

  line-height: normal;

  letter-spacing: 0.14px;

  text-decoration: none;

  text-transform: uppercase;

  transition: all 0.5s ease;
}

/** Header End **/

/** Hero Start **/

.hero {
  position: relative;

  width: 100%;

  height: 100vh;
}

.hero .hero__wrapper {
  width: 100%;

  height: 100%;

  position: relative;

  background-image: url("images/fi_office_4k_2.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000;

  opacity: 0;

  transition: all ease 0.6s;
}

.hero.in-view .hero__wrapper {
  opacity: 1;
}

.hero .hero__wrapper::after {
  content: "";

  position: absolute;

  width: 100%;

  height: 100%;

  background: linear-gradient(
    3600deg,
    #0b0d14 13.93%,
    rgba(15, 26, 58, 0) 100%
  );
}

.hero .description {
  position: absolute;

  bottom: 40px;

  padding-top: 64px;

  padding-bottom: 96px;

  z-index: 3;
}

.hero .description h2 {
  color: #fff;

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);

  font-family: "Ubuntu";

  font-size: 64px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

  letter-spacing: 0.25px;

  opacity: 0;

  transform: translateY(50px);

  transition: all ease 0.6s;
}

.hero.in-view .description h2 {
  transition-delay: 0.5s;

  opacity: 1;

  transform: translateY(0);
}

.hero .description p {
  color: #fff;

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.32);

  font-family: "Ubuntu";

  font-size: 20px;

  font-style: normal;

  font-weight: 400;

  line-height: 180%;

  letter-spacing: 0.24px;

  max-width: 70%;

  opacity: 0;

  transform: translateY(50px);

  transition: all ease 0.9s;
}

.hero.in-view .description p {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 0.7s;
}

.marquee {
  --gap: 1rem;
  position: absolute;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  z-index: 9;
  bottom: 50px;
  width: 100%;
  opacity: 0;
  transition: all ease 0.9s;
}

.hero.in-view .marquee {
  opacity: 1;
  transition-delay: 1.2s;
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
}

.marquee .marquee-slide {
  width: fit-content;
  height: 40px;
  margin: 0 50px;
}

.marquee .marquee-slide img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__content {
    animation-play-state: paused !important;
  }
}

/* Enable animation */
.enable-animation .marquee__content {
  animation: scroll 14s linear infinite;
}

/* Pause on hover */
.marquee:hover .marquee__content {
  animation-play-state: paused;
}

.marquee--fit-content {
  max-width: fit-content;
}

/** Hero End **/

/** Courses Start **/

.courses {
  position: relative;

  background: #161519;

  border-top: 1px solid #000;
}

.courses .courses__wrapper {
  padding: 96px 0;
}

.courses .courses__description h3 {
  color: #fff;

  text-align: left;

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);

  font-family: "Ubuntu";

  font-size: 36px;

  font-style: normal;

  font-weight: 700;

  line-height: 140%;

  letter-spacing: 0.504px;

  opacity: 0;

  transform: translateY(50px);

  transition: all ease 0.6s;
}

.courses.in-view .courses__description h3 {
  opacity: 1;
  transform: translateY(0);
}

.courses .courses__description p {
  color: #fff;

  font-family: "Rubik";

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  max-width: 90%;

  padding-top: 40px;

  opacity: 0;

  transform: translateY(50px);

  transition: all ease 0.9s;
}

.courses.in-view .courses__description p {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 0.3s;
}

.courses .courses__list {
  padding-top: 60px;
}

.courses__list {
  display: flex;

  flex-wrap: wrap;

  gap: 30px;
}

.courses .courses__list .list-item {
  flex: 0 1 calc(33.333% - 30px);

  flex-direction: column;

  border-radius: 4px;

  border: 1px solid #000;

  background: #161519;

  position: relative;

  padding: 40px 30px;
}

.courses .courses__list .list-item:nth-child(1) {
  opacity: 0;

  transition: all ease 0.9s;
}

.courses .courses__list .list-item:nth-child(2) {
  opacity: 0;

  transition: all ease 1.2s;
}

.courses .courses__list .list-item:nth-child(3) {
  opacity: 0;

  transition: all ease 1.5s;
}

.courses.in-view .courses__list .list-item:nth-child(1) {
  opacity: 1;

  transition-delay: 0.5s;
}

.courses.in-view .courses__list .list-item:nth-child(2) {
  opacity: 0.5;

  transition-delay: 0.7s;
}

.courses.in-view .courses__list .list-item:nth-child(3) {
  opacity: 0.5;

  transition-delay: 0.9s;
}

.courses .courses__list .list-item .list-item__wrapper {
  position: relative;

  width: 100%;

  height: 100%;

  display: block;

  min-height: 540px;
}

.courses .courses__list .list-item .list-item__wrapper .bottom_section {
  position: absolute;

  bottom: 0;

  width: 100%;

  min-width: fit-content;

  height: fit-content;
}

/* .courses .courses__list .list-item:nth-child(n+2) {

    opacity: 0.5;

} */

.courses .courses__list .list-item .title h4 {
  color: #fff;

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 24px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

  letter-spacing: 0.24px;
}

.courses .courses__list .list-item .title p {
  color: #fff;

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 160%;

  letter-spacing: 0.14px;

  padding-top: 10px;
}

.courses .courses__list .list-item .desc {
  color: #fff;

  font-family: "Ubuntu";

  font-size: 14px;

  font-style: normal;

  font-weight: 300;

  line-height: 210%;

  letter-spacing: 0.224px;

  margin-top: 25px;
}

.courses .courses__list .list-item .next-course {
  display: flex;

  justify-content: space-between;

  margin-top: 50px;
}

.courses .courses__list .list-item .next-course p {
  color: #00d9f5;

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 14px;

  font-style: normal;

  font-weight: 500;

  line-height: 157%;

  letter-spacing: 0.14px;

  margin-bottom: 0;

  display: flex;

  align-items: flex-end;
}

.courses .courses__list .list-item .next-course a {
  border-radius: 4px;

  border: 1px solid #00f5a0;

  color: #00f5a0;

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: normal;

  letter-spacing: 0.14px;

  text-decoration: none;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 10px 16px;

  cursor: pointer;
}

.courses .courses__list .list-item:nth-child(n + 2) .next-course a {
  border-radius: 4px;

  border: 1px solid #e34e44;

  background-color: #e34e44;

  color: #161519;

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: normal;

  letter-spacing: 0.14px;

  text-decoration: none;

  display: flex;

  align-items: center;

  justify-content: center;

  padding: 10px 16px;

  border-radius: 4px;
}

.courses .courses__list .list-item .author {
  margin-top: 25px;

  position: relative;

  display: block;
}

.courses .courses__list .list-item .author h5 {
  color: #fff;

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 14px;

  font-style: normal;

  font-weight: 500;

  line-height: 157%;

  letter-spacing: 0.14px;
}

.courses .courses__list .list-item .author p {
  color: #fff;

  font-family: "Ubuntu";

  font-size: 14px;

  font-style: normal;

  font-weight: 300;

  line-height: 210%;

  letter-spacing: 0.224px;
}

.courses .courses__list .list-item .footer {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  color: #fff;

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 160%;

  letter-spacing: 0.14px;

  justify-content: space-between;

  padding-top: 15px;
}

.courses .courses__list .list-item .footer .duration,
.courses .courses__list .list-item .footer .level,
.courses .courses__list .list-item .footer .lang,
.courses .courses__list .list-item .footer .extra {
  display: flex;

  align-items: center;
}

.courses .courses__list .list-item .footer .duration span,
.courses .courses__list .list-item .footer .level span,
.courses .courses__list .list-item .footer .lang span,
.courses .courses__list .list-item .footer .extra span {
  padding-left: 5px;
}

/** Courses End **/

/** Talents Start **/

.talents {
  position: relative;

  background: #161519;

  border-top: 1px solid #000;
}

.talents .talents__wrapper {
  position: relative;

  padding: 96px 0;

  display: flex;

  gap: 5%;
}

.talents .description {
  width: 50%;
}

.talents .description .content h4 {
  color: var(--white_grey, #c2c2c2);

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 14px;

  font-style: normal;

  font-weight: 500;

  line-height: 200%;

  letter-spacing: 0.7px;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateY(50px);
}

.talents.in-view .description .content h4 {
  opacity: 1;

  transition-delay: 0s;

  transform: translateY(0);
}

.talents .description .content h3 {
  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);

  -webkit-text-stroke-width: 1;

  -webkit-text-stroke-color: #000;

  font-family: "Ubuntu";

  font-size: 64px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

  letter-spacing: 0.25px;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateY(50px);
}

.talents.in-view .description .content h3 {
  opacity: 1;

  transition-delay: 0.3s;

  transform: translateY(0);
}

.talents .description .content p {
  color: var(--white_true, #fff);

  font-family: Rubik;

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  margin-top: 40px;

  opacity: 0;

  transition: all ease 0.5s;
}

.talents.in-view .description .content p {
  opacity: 1;

  transition-delay: 0.5s;
}

.talents .description .details {
  padding-top: 90px;

  opacity: 0;

  transition: all ease 0.5s;
}

.talents.in-view .description .details {
  opacity: 1;

  transition-delay: 0.9s;
}

.talents .description .details .instructor {
  display: flex;

  align-items: center;

  gap: 25px;
}

.talents .description .details .instructor .name_role h4 {
  color: #fff;

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 16px;

  font-style: normal;

  font-weight: 500;

  line-height: 160%;

  letter-spacing: 0.192px;
}

.talents .description .details .instructor .name_role h5 {
  color: #fff;

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 160%;

  letter-spacing: 0.14px;
}

.talents .description .details .instructor img {
  border-radius: 100%;

  width: 50px;

  height: 50px;

  flex-shrink: 0;

  fill: #c2c2c2;
}

.talents .description .details .footer {
  display: flex;

  align-items: center;

  gap: 25px;

  margin-top: 25px;
}

.talents .description .details .footer .duration,
.talents .description .details .footer .level,
.talents .description .details .footer .lang,
.talents .description .details .footer .extra {
  display: flex;

  align-items: center;

  padding-right: 15px;
}

.talents .description .details .footer .duration span,
.talents .description .details .footer .level span,
.talents .description .details .footer .lang span,
.talents .description .details .footer .extra span {
  padding-left: 5px;

  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 500;

  line-height: 200%;

  letter-spacing: 0.7px;
}

.talents .description .details .button {
  display: flex;

  align-items: stretch;

  gap: 36px;

  margin-top: 25px;
}

.talents .description .details .button a {
  display: flex;

  padding: 16px 32px;

  align-items: center;

  gap: 10px;

  text-decoration: none;

  border-radius: 4px;

  background: var(--c2a_grad, linear-gradient(90deg, #00f5a0 0%, #00d9f5 100%));

  color: var(--black_bg, #161519);

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 500;

  line-height: normal;

  letter-spacing: 0.14px;

  text-transform: uppercase;

  border: 1px solid transparent;

  cursor: pointer;

  transition: all ease 0.5s;
}

.talents .description .details .button a:hover {
  background: transparent;

  border: 1px solid var(--c2a_grad_2, #00d9f5);

  color: #fff;
}

.talents .description .details .button .next_course {
  border-radius: 4px;

  border: 1px solid var(--c2a_green, #00f5a0);

  color: var(--c2a_green, #00f5a0);

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 500;

  line-height: 157%;

  letter-spacing: 0.14px;

  display: flex;

  padding: 16px 36px;

  align-items: center;

  gap: 10px;

  align-self: stretch;
}

.talents .slider {
  width: 45%;

  position: relative;

  padding: 30px;

  opacity: 0;

  transition: all ease 0.5s;
}

.talents.in-view .slider {
  opacity: 1;

  transition-delay: 0.9s;
}

.talents .swiper {
  width: 100%;

  height: 100%;
}

.talents .swiper-slide {
  text-align: center;

  font-size: 18px;

  background: #fff;

  display: flex;

  justify-content: center;

  align-items: center;
}

.talents .swiper-slide img {
  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.talents .slider .swiper-pagination-bullet-active.swiper-pagination-bullet {
  width: 14px;

  height: 14px;

  background-color: #00f5a0;

  border: 1px solid #00f5a0;
}

.talents .slider .swiper-pagination-bullet {
  width: 10px;

  height: 10px;

  background-color: transparent;

  border: 1px solid #777;

  opacity: 1;
}

.talents .slider .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -10px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.talents .swiper-button-next,
.swiper-button-prev {
  position: absolute;

  margin-top: unset !important;
}

.talents .swiper-button-prev {
  left: -8px !important;

  background-image: url("./images/arrow_left.png") !important;

  background-repeat: no-repeat;

  right: auto;
}

.talents .swiper-button-next {
  right: -15px !important;

  background-image: url("./images/arrow_right.png") !important;

  background-repeat: no-repeat;

  left: auto;
}

.talents .swiper-button-next::after,
.swiper-button-prev::after {
  content: "";

  display: none;
}

/** Talents End **/

/** Talents Monile **/
.talents__mobile {
  position: relative;

  background: #161519;

  border-top: 1px solid #000;
}

.talents__mobile .talents__wrapper {
  position: relative;

  padding: 96px 0;

  display: flex;

  gap: 5%;
}

.talents__mobile .description {
  width: 50%;
}

.talents__mobile .description .content h4 {
  color: var(--white_grey, #c2c2c2);

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 14px;

  font-style: normal;

  font-weight: 500;

  line-height: 200%;

  letter-spacing: 0.7px;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateY(50px);
}

.talents__mobile.in-view .description .content h4 {
  opacity: 1;

  transition-delay: 0s;

  transform: translateY(0);
}

.talents__mobile .description .content h3 {
  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);

  -webkit-text-stroke-width: 1;

  -webkit-text-stroke-color: #000;

  font-family: "Ubuntu";

  font-size: 64px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

  letter-spacing: 0.25px;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateY(50px);
}

.talents__mobile.in-view .description .content h3 {
  opacity: 1;

  transition-delay: 0.3s;

  transform: translateY(0);
}

.talents__mobile .description .content p {
  color: var(--white_true, #fff);

  font-family: Rubik;

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  margin-top: 40px;

  opacity: 0;

  transition: all ease 0.5s;
}

.talents__mobile.in-view .description .content p {
  opacity: 1;

  transition-delay: 0.5s;
}

.talents__mobile .description .details {
  padding-top: 90px;

  opacity: 0;

  transition: all ease 0.5s;
}

.talents__mobile.in-view .description .details {
  opacity: 1;

  transition-delay: 0.7s;
}

.talents__mobile .description .details .instructor {
  display: flex;

  align-items: center;

  gap: 25px;
}

.talents__mobile .description .details .instructor .name_role h4 {
  color: #fff;

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 16px;

  font-style: normal;

  font-weight: 500;

  line-height: 160%;

  letter-spacing: 0.192px;
}

.talents__mobile .description .details .instructor .name_role h5 {
  color: #fff;

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 160%;

  letter-spacing: 0.14px;
}

.talents__mobile .description .details .instructor img {
  border-radius: 100%;

  width: 50px;

  height: 50px;

  flex-shrink: 0;

  fill: #c2c2c2;
}

.talents__mobile .description .details .footer {
  display: flex;

  align-items: center;

  gap: 25px;

  margin-top: 25px;
}

.talents__mobile .description .details .footer .duration,
.talents__mobile .description .details .footer .level,
.talents__mobile .description .details .footer .lang,
.talents__mobile .description .details .footer .extra {
  display: flex;

  align-items: center;

  padding-right: 15px;
}

.talents__mobile .description .details .footer .duration span,
.talents__mobile .description .details .footer .level span,
.talents__mobile .description .details .footer .lang span,
.talents__mobile .description .details .footer .extra span {
  padding-left: 5px;

  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 500;

  line-height: 200%;

  letter-spacing: 0.7px;
}

.talents__mobile .description .details .button {
  display: flex;

  align-items: stretch;

  gap: 36px;

  margin-top: 25px;
}

.talents__mobile .description .details .button a {
  display: flex;

  padding: 16px 32px;

  align-items: center;

  gap: 10px;

  text-decoration: none;

  border-radius: 4px;

  background: var(--c2a_grad, linear-gradient(90deg, #00f5a0 0%, #00d9f5 100%));

  color: var(--black_bg, #161519);

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 500;

  line-height: normal;

  letter-spacing: 0.14px;

  text-transform: uppercase;

  border: 1px solid transparent;

  cursor: pointer;

  transition: all ease 0.5s;
}

.talents__mobile .description .details .button a:hover {
  background: transparent;

  border: 1px solid var(--c2a_grad_2, #00d9f5);

  color: #fff;
}

.talents__mobile .description .details .button .next_course {
  border-radius: 4px;

  border: 1px solid var(--c2a_green, #00f5a0);

  color: var(--c2a_green, #00f5a0);

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 500;

  line-height: 157%;

  letter-spacing: 0.14px;

  display: flex;

  padding: 16px 36px;

  align-items: center;

  gap: 10px;

  align-self: stretch;
}

/** End Talents Mobile **/

/** Schedule Start **/

.schedule {
  position: relative;

  background: #161519;

  padding: 96px 0;

  border-top: 1px solid #000;
}

.schedule .description h3 {
  color: var(--white_true, #fff);

  text-align: left;

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);

  font-family: Ubuntu;

  font-size: 36px;

  font-style: normal;

  font-weight: 700;

  line-height: 140%;

  letter-spacing: 0.504px;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateY(50px);
}

.schedule.in-view .description h3 {
  opacity: 1;

  transition-delay: 0s;

  transform: translateY(0);
}

.schedule .description p {
  color: var(--white_true, #fff);

  font-family: Rubik;

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  padding-top: 40px;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateY(50px);
}

.schedule.in-view .description p {
  opacity: 1;

  transition-delay: 0.3s;

  transform: translateY(0);
}

.schedule .schedule__wrapper {
  position: relative;

  margin-top: 65px;
}

.schedule .schedule__wrapper .week-one {
  display: flex;

  align-items: stretch;

  gap: 60px;

  flex-wrap: wrap;
}

.schedule .schedule__wrapper .week-one.first-table {
  margin-bottom: 50px;
}

.schedule .schedule__wrapper .week-one .table {
  width: calc(50% - 30px);

  margin-bottom: 0;
}

.schedule .schedule__wrapper .week-one .image {
  width: calc(50% - 30px);
}

.schedule .schedule__wrapper .first-table__wrapper .week-one .image img {
  object-fit: cover;

  width: 100%;

  height: 100%;

  opacity: 0;

  transition: all ease 0.5s;
}

.schedule .schedule__wrapper .second-table__wrapper .week-one .image img {
  object-fit: cover;

  width: 100%;

  height: 100%;

  opacity: 0;

  transition: all ease 0.5s;
}

.schedule
  .schedule__wrapper
  .first-table__wrapper.in-view
  .week-one
  .image
  img {
  opacity: 1;

  transition-delay: 0.5s;
}

.schedule
  .schedule__wrapper
  .second-table__wrapper.in-view
  .week-one
  .image
  img {
  opacity: 1;

  transition-delay: 0.5s;
}

.schedule .slider {
  width: 45%;

  position: relative;

  padding: 0 30px;

  opacity: 0;

  transition: all ease 0.5s;
  height: 410px;
}

.schedule .schedule__wrapper .first-table__wrapper.in-view .week-one .slider {
  opacity: 1;

  transition-delay: 0.7s;
}

.schedule .schedule__wrapper .second-table__wrapper.in-view .week-one .slider {
  opacity: 1;

  transition-delay: 0.9s;
}

/* .schedule.in-view .slider:first-child {
  opacity: 1;

  transition-delay: 0.9s;
}

.schedule.in-view .slider:last-child {
  opacity: 1;

  transition-delay: 1.5s;
} */

.schedule .swiper {
  width: 100%;

  height: 100%;
}

.schedule .swiper-slide {
  text-align: center;

  font-size: 18px;

  background: #fff;

  display: flex;

  justify-content: center;

  align-items: center;
}

.schedule .swiper-slide img {
  display: block;

  width: 100%;

  height: 100%;

  object-fit: cover;
}

.schedule .slider .swiper-pagination-bullet-active.swiper-pagination-bullet {
  width: 14px;

  height: 14px;

  background-color: #00f5a0;

  border: 1px solid #00f5a0;
}

.schedule .slider .swiper-pagination-bullet {
  width: 10px;

  height: 10px;

  background-color: transparent;

  border: 1px solid #777;

  opacity: 1;
}

.schedule .slider .swiper-pagination-bullets.swiper-pagination-horizontal {
  display: flex;

  align-items: center;

  justify-content: center;
  position: absolute;
  bottom: -25px;
}

.schedule .youngSliderOne-button-next,
.youngSliderOne-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: unset !important;
}

.schedule .youngSliderOne-button-prev {
  left: -8px !important;

  background-image: url("./images/arrow_left.png") !important;

  background-repeat: no-repeat;

  right: auto;
}

.schedule .youngSliderOne-button-next {
  right: -15px !important;

  background-image: url("./images/arrow_right.png") !important;

  background-repeat: no-repeat;

  left: auto;
}

.schedule .youngSliderOne-button-next::after,
.youngSliderOne-button-prev::after {
  content: "";

  display: none;
}

.youngSliderOne-button-next.swiper-button-disabled,
.youngSliderOne-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

/** Slider Two **/
.schedule .youngSliderTwo-button-next,
.youngSliderTwo-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: unset !important;
}

.schedule .youngSliderTwo-button-prev {
  left: -8px !important;

  background-image: url("./images/arrow_left.png") !important;

  background-repeat: no-repeat;

  right: auto;
}

.schedule .youngSliderTwo-button-next {
  right: -15px !important;

  background-image: url("./images/arrow_right.png") !important;

  background-repeat: no-repeat;

  left: auto;
}

.schedule .youngSliderTwo-button-next::after,
.youngSliderTwo-button-prev::after {
  content: "";

  display: none;
}

.youngSliderTwo-button-next.swiper-button-disabled,
.youngSliderTwo-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.schedule .schedule__wrapper .first-table__wrapper table {
  width: 100%;

  border-collapse: collapse;

  border: 2px solid var(--black_true, #000);

  opacity: 0;

  transition: all ease 0.5s;
}

.schedule .schedule__wrapper .second-table__wrapper table {
  width: 100%;

  border-collapse: collapse;

  border: 2px solid var(--black_true, #000);

  opacity: 0;

  transition: all ease 0.5s;
}

.schedule .schedule__wrapper .first-table__wrapper.in-view table {
  opacity: 1;

  transition-delay: 0.3s;
}

.schedule .schedule__wrapper .second-table__wrapper.in-view table {
  opacity: 1;

  transition-delay: 0.5s;
}

.schedule .schedule__wrapper table,
.schedule .schedule__wrapper td {
  padding: 10px;

  border: 2px solid #000;

  border-radius: 5px;

  background-color: #161519;

  text-align: center;

  border-width: 1px !important;
}

.schedule .schedule__wrapper td.days {
  color: var(--white_true, #fff);

  font-family: "Ubuntu";

  font-size: 14px;

  font-style: normal;

  font-weight: 300;

  line-height: 210%; /* 29.4px */

  letter-spacing: 0.224px;

  width: fit-content;

  text-align: center;

  padding: 14px 24px;
  width: 122px;
}

.schedule .schedule__wrapper td.intro {
  color: #fff;

  font-family: "Ubuntu";

  font-size: 14px;

  font-style: normal;

  font-weight: 300;

  line-height: 210%;

  letter-spacing: 0.224px;

  text-align: left;

  padding: 14px 24px;
}

.schedule .schedule__wrapper .table > :not(caption) > * > * {
  background-color: #161519;
}

.schedule .first-table__wrapper .week__title {
  color: #fff;

  text-align: center;

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);

  font-family: "Ubuntu";

  font-size: 16px;

  font-style: normal;

  font-weight: 500;

  line-height: 160%;

  letter-spacing: 0.192px;

  text-align: left;

  margin-bottom: 16px;

  opacity: 0;

  transition: all ease 0.5s;
}

.schedule .first-table__wrapper.in-view .week__title {
  opacity: 1;
}

.schedule .second-table__wrapper .week__title {
  color: #fff;

  text-align: center;

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);

  font-family: "Ubuntu";

  font-size: 16px;

  font-style: normal;

  font-weight: 500;

  line-height: 160%;

  letter-spacing: 0.192px;

  text-align: left;

  margin-bottom: 16px;

  opacity: 0;

  transition: all ease 0.5s;
}

.schedule .second-table__wrapper.in-view .week__title {
  opacity: 1;
}

/** Schedule End **/

/** Value Start **/

.value {
  position: relative;

  background: #161519;

  border-top: 1px solid #000;
}

.value .value__wrapper {
  position: relative;

  padding: 96px 0;
}

.value .value__wrapper .title {
  text-align: left;
}

.value .value__wrapper .title h3 {
  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);

  font-family: "Ubuntu";

  font-size: 36px;

  font-style: normal;

  font-weight: 700;

  line-height: 140%;

  letter-spacing: 0.504px;

  opacity: 0;

  transform: translateY(50px);

  transition: all ease 0.5s;
}

.value.in-view .value__wrapper .title h3 {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 0s;
}

.value .value__wrapper .title p {
  color: var(--white_true, #fff);

  font-family: "Rubik";

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  padding-top: 40px;

  max-width: 90%;

  opacity: 0;

  transform: translateY(50px);

  transition: all ease 0.5s;
}

.value.in-view .value__wrapper .title p {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 0.3s;
}

.value .value__wrapper .value-items {
  display: flex;

  align-items: flex-start;

  align-items: stretch;

  gap: 20px;

  padding-top: 60px;

  outline: unset;

  pointer-events: none;
}

.value .value__wrapper .value-items .item {
  border-radius: 4px;

  border: 1px solid #000;

  background: var(--newblack, #161519);

  width: 25%;

  padding: 64px 24px;

  opacity: 0;

  transition: all ease 0.5s;
}

.value.in-view .value__wrapper .value-items .item:nth-child(1) {
  opacity: 1;

  transition-delay: 0.5s;
}

.value.in-view .value__wrapper .value-items .item:nth-child(2) {
  opacity: 1;

  transition-delay: 0.7s;
}

.value.in-view .value__wrapper .value-items .item:nth-child(3) {
  opacity: 1;

  transition-delay: 0.9s;
}

.value.in-view .value__wrapper .value-items .item:nth-child(4) {
  opacity: 1;

  transition-delay: 1.1s;
}

.value .value__wrapper .value-items .item h4 {
  margin-top: 15px;

  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 20px;

  font-style: normal;

  font-weight: 500;

  line-height: 180%;

  letter-spacing: 0.24px;
}

.value .value__wrapper .value-items .item p {
  color: var(--white_true, #fff);

  font-family: "Ubuntu";

  font-size: 14px;

  font-style: normal;

  font-weight: 300;

  line-height: 210%;

  letter-spacing: 0.224px;

  margin-top: 15px;
}

/** Value End **/

/** Instructors Start **/

.instructors {
  position: relative;

  background: #161519;

  border-top: 1px solid #000;
}

.instructors .instructors__wrapper {
  position: relative;

  padding: 96px 0;
}

.instructors .instructors__wrapper .title {
  text-align: left;
}

.instructors .instructors__wrapper .title h3 {
  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);

  font-family: "Ubuntu";

  font-size: 36px;

  font-style: normal;

  font-weight: 700;

  line-height: 140%;

  letter-spacing: 0.504px;

  opacity: 0;

  transition: all ease 0.5s;
  transform: translateY(50px);
}

.instructors.in-view .instructors__wrapper .title h3 {
  opacity: 1;

  transition-delay: 0s;

  transform: translateY(0);
}

.instructors .instructors__wrapper .title p {
  color: var(--white_true, #fff);

  font-family: "Rubik";

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  padding-top: 40px;

  max-width: 90%;

  opacity: 0;

  transition: all ease 0.5s;
  transform: translateY(50px);
}

.instructors.in-view .instructors__wrapper .title p {
  opacity: 1;

  transition-delay: 0.3s;

  transform: translateY(0);
}

.instructors .instructors__wrapper .instructors-items {
  display: flex;

  align-items: stretch;

  margin-top: 65px;

  justify-content: space-between;
}

.instructors .instructors__wrapper .instructors-items .item {
  width: calc(33.3% - 90px);

  object-fit: cover;

  opacity: 0;

  transition: all ease 0.5s;
}

.instructors.in-view
  .instructors__wrapper
  .instructors-items
  .item:nth-child(1) {
  opacity: 1;

  transition-delay: 0.5s;
}

.instructors.in-view
  .instructors__wrapper
  .instructors-items
  .item:nth-child(2) {
  opacity: 1;

  transition-delay: 0.7s;
}

.instructors.in-view
  .instructors__wrapper
  .instructors-items
  .item:nth-child(3) {
  opacity: 1;

  transition-delay: 0.9s;
}

.instructors .instructors__wrapper .instructors-items .item img {
  width: 100%;

  height: 320px;

  object-fit: cover;
}

.instructors .instructors__wrapper .instructors-items .item h4 {
  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 24px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

  letter-spacing: 0.24px;

  margin-top: 30px;
}

.instructors .instructors__wrapper .instructors-items .item p {
  color: var(--white_true, #fff);

  font-family: "Ubuntu";

  font-size: 14px;

  font-style: normal;

  font-weight: 300;

  line-height: 210%;

  letter-spacing: 0.224px;

  margin-top: 15px;
}

/** Instructors End **/

/** Unreal-future Start **/

.unreal-future {
  background: var(--newblack, #161519);

  position: relative;

  padding: 96px 0;

  border-top: 1px solid #000;
}

.unreal-future .unreal-future__wrapper {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: space-between;
}

.unreal-future .description {
  width: calc(40% - 60px);
}

.unreal-future .description h3 {
  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);

  font-family: "Ubuntu";

  font-size: 36px;

  font-style: normal;

  font-weight: 700;

  line-height: 140%;

  letter-spacing: 0.504px;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateY(50px);
}

.unreal-future.in-view .description h3 {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 0s;
}

.unreal-future .description p {
  color: var(--white_true, #fff);

  font-family: "Rubik";

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  margin-top: 40px;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateY(50px);
}

.unreal-future.in-view .description p {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 0.3s;
}

.unreal-future .image {
  width: calc(60% - 60px);
}

.unreal-future .image img {
  width: 100%;

  height: 680px;

  object-fit: contain;

  opacity: 0;

  transition: all ease 0.5s;
}

.unreal-future.in-view .image img {
  opacity: 1;

  transition-delay: 0.5s;
}

/** Unreal-future End **/

/** Future-Job Start **/

.future-job {
  background: var(--newblack, #161519);

  position: relative;

  padding: 96px 0;

  border-top: 1px solid #000;
}

.future-job .future-job__wrapper {
  display: flex;

  flex-wrap: wrap;

  align-items: flex-start;

  justify-content: space-between;
}

.future-job .description {
  width: calc(45% - 60px);
}

.future-job .description h3 {
  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);

  font-family: "Ubuntu";

  font-size: 36px;

  font-style: normal;

  font-weight: 700;

  line-height: 140%;

  letter-spacing: 0.504px;

  opacity: 0;

  transform: translateY(50px);

  transition: all ease 0.5s;
}

.future-job.in-view .description h3 {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 0s;
}

.future-job .description p.desc {
  color: var(--white_true, #fff);

  font-family: "Rubik";

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  margin-top: 40px;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateY(50px);
}

.future-job.in-view .description p.desc {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 0.3s;
}

.future-job .description .items {
  margin-top: 35px;
}

.future-job .description .items .item {
  margin-top: 15px;

  opacity: 0;

  transition: all ease 0.5s;
}

.future-job.in-view .description .items .item:nth-child(1) {
  opacity: 1;

  transition-delay: 0.3s;
}

.future-job.in-view .description .items .item:nth-child(2) {
  opacity: 1;

  transition-delay: 0.5s;
}

.future-job.in-view .description .items .item:nth-child(3) {
  opacity: 1;

  transition-delay: 0.7s;
}

.future-job.in-view .description .items .item:nth-child(4) {
  opacity: 1;

  transition-delay: 0.9s;
}

.future-job.in-view .description .items .item:nth-child(5) {
  opacity: 1;

  transition-delay: 1.1s;
}

.future-job.in-view .description .items .item:nth-child(6) {
  opacity: 1;

  transition-delay: 1.3s;
}

.future-job .description .items .item h4 {
  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 16px;

  font-style: normal;

  font-weight: 500;

  line-height: 160%;

  letter-spacing: 0.192px;

  margin-bottom: 0;
}

.future-job .description .items .item p {
  color: var(--white_true, #fff);

  font-family: "Rubik";

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  margin-bottom: 0;
}

.future-job .image {
  width: calc(55% - 60px);
}

.future-job .image img {
  width: 100%;

  height: 680px;

  object-fit: cover;

  opacity: 0;

  transition: all ease 0.5s;
}

.future-job.in-view .image img {
  opacity: 1;

  transition-delay: 0.5s;
}

/** Future-Job End **/

/** Unreal-future Start **/

.discord {
  background: var(--newblack, #161519);

  position: relative;

  padding: 96px 0;

  border-top: 1px solid #000;
}

.discord .discord__wrapper {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: space-between;
}

.discord .description {
  width: calc(45% - 60px);

  overflow: hidden;
}

.discord .description h3 {
  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);

  font-family: "Ubuntu";

  font-size: 36px;

  font-style: normal;

  font-weight: 700;

  line-height: 140%;

  letter-spacing: 0.504px;

  opacity: 0;

  transform: translateY(50px);

  transition: all ease 0.5s;
}

.discord.in-view .description h3 {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 0s;
}

.discord .description p {
  color: var(--white_true, #fff);

  font-family: "Rubik";

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  margin-top: 40px;

  margin-bottom: 30px;

  opacity: 0;

  transform: translateY(50px);

  transition: all ease 0.5s;
}

.discord.in-view .description p {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 0.3s;
}

.discord .description a {
  display: block;

  color: var(--c2a_blue, #00d9f5);

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 16px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

  letter-spacing: 0.192px;

  text-decoration: none;

  opacity: 0;

  transform: translateX(-50px);

  transition: all ease 0.5s;
}

.discord.in-view .description a {
  opacity: 1;

  transform: translateX(0);

  transition-delay: 0.7s;
}

.discord .image {
  width: calc(55% - 60px);
}

.discord .image img {
  width: 100%;

  height: 680px;

  object-fit: cover;

  opacity: 0;

  transition: all ease 0.5s;
}

.discord.in-view .image img {
  opacity: 1;

  transition-delay: 0.7s;
}

/** Unreal-future End **/

/** partners Start **/

.partners {
  background: var(--newblack, #161519);

  position: relative;

  padding: 96px 0;

  border-top: 1px solid #000;
}

.partners .partners__wrapper {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: space-between;
}

.partners .partners__wrapper .description h3 {
  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);

  font-family: "Ubuntu";

  font-size: 36px;

  font-style: normal;

  font-weight: 700;

  line-height: 140%;

  letter-spacing: 0.504px;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateY(50px);
}

.partners.in-view .partners__wrapper .description h3 {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 0s;
}

.partners .partners__wrapper .description p {
  color: var(--white_true, #fff);

  font-family: Rubik;

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  margin-top: 20px;

  max-width: 70%;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateY(50px);
}

.partners.in-view .partners__wrapper .description h3 {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 0s;
}

.partners.in-view .partners__wrapper .description p {
  opacity: 1;

  transform: translateY(0);

  transition-delay: 0.3s;
}

.partners .partners__wrapper .lists {
  position: relative;

  margin-top: 90px;

  opacity: 0;

  transition: all ease 0.5s;
}

.partners.in-view .partners__wrapper .lists {
  opacity: 1;

  transition-delay: 0.5s;
}

.partners .partners__wrapper .lists .list-item {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  row-gap: 25px;

  column-gap: 90px;
}

.partners .partners__wrapper .lists .list-item img {
  object-fit: cover;

  max-width: 105px;

  width: fit-content;

  height: 100%;
}

/** Unreal-future End **/

/** Singup Start **/

.signup {
  position: relative;

  background: #161519;

  border-top: 1px solid #000;
}

.signup .container {
  padding-top: 96px;

  padding-bottom: 96px;
}

.signup .title-wrapper {
  max-width: 80%;

  margin-bottom: 64px;
}

.signup .title-wrapper h1 {
  width: fit-content;

  color: var(--white_true, #fff);

  text-align: center;

  font-feature-settings: "clig" off, "liga" off;

  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.32);

  font-family: Ubuntu;

  font-size: 64px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

  letter-spacing: 0.25px;

  margin-bottom: 25px;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateY(50px);
}

.signup.in-view .title-wrapper h1 {
  opacity: 1;
  transition-delay: 0.3s;

  transform: translateY(0);
}

.signup .content-wrapper {
  display: flex;
  gap: 65px;
  width: 100%;
}

.signup .title-wrapper p {
  color: var(--white_true, #fff);

  font-family: Rubik;

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateY(50px);
}

.signup.in-view .title-wrapper p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.signup .content-wrapper .left-section {
  border-radius: 4px;
  width: 45%;
  border: 1px solid var(--black_true, #000);
  padding: 40px;
  height: max-content;
  opacity: 0;
  transition: all ease 0.5s;
}

.signup.in-view .content-wrapper .left-section {
  opacity: 1;

  transition-delay: 0.5s;
}

.signup .content-wrapper .left-section h3 {
  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 24px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

  letter-spacing: 0.24px;
}

.signup .content-wrapper .left-section .attributes {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  color: #fff;

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 160%;

  letter-spacing: 0.14px;

  margin: 16px 0;

  gap: 24px;
}

.signup .content-wrapper .left-section .attributes .duration,
.signup .content-wrapper .left-section .attributes .level,
.signup .content-wrapper .left-section .attributes .lang,
.signup .content-wrapper .left-section .attributes .extra {
  display: flex;

  align-items: center;
}

.signup .content-wrapper .left-section .attributes .duration span,
.signup .content-wrapper .left-section .attributes .level span,
.signup .content-wrapper .left-section .attributes .lang span,
.signup .content-wrapper .left-section .attributes .extra span {
  padding-left: 5px;
}

.signup .content-wrapper .left-section .list {
  margin: 32px 0;
}

.signup .content-wrapper .left-section .list .list-item {
  display: flex;

  gap: 16px;
}

.signup .content-wrapper .left-section .list .list-item .content h4 {
  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 16px;

  font-style: normal;

  font-weight: 500;

  line-height: 160%;

  letter-spacing: 0.192px;
}

.signup .content-wrapper .left-section .list .list-item .content p {
  color: var(--white_true, #fff);

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 300;

  line-height: 210%;

  letter-spacing: 0.224px;
}

.signup .content-wrapper .left-section .button button {
  padding: 16px 24px;

  width: 100%;

  background: transparent;

  border-radius: 4px;

  border: 1px solid var(--c2a_grad_2, #00d9f5);

  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: 160%;

  letter-spacing: 0.14px;

  transition: all ease 0.5s;
}

.signup .content-wrapper .left-section .button button span {
  text-decoration: underline;
}

.signup .content-wrapper .left-section .button button:hover {
  background: linear-gradient(90deg, #00f5a0 0%, #00d9f5 100%);

  color: #161519;
}

.signup .content-wrapper .row {
  justify-content: space-between;
}

.signup .content-wrapper .right-section {
  border-radius: 4px;
  width: 55%;
  border: 1px solid var(--black_true, #000);
  padding: 40px;
  opacity: 0;
  transition: all ease 0.5s;
}

.signup.in-view .content-wrapper .right-section {
  opacity: 1;

  transition: all ease 0.5s;

  transition-delay: 0.5s;
}

.signup .content-wrapper .right-section h3 {
  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 24px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

  letter-spacing: 0.24px;
}

.signup .content-wrapper .right-section .form-wrapper {
  margin-top: 32px;
}

.signup .content-wrapper .right-section .form-wrapper .input-item {
  margin-bottom: 20px;

  width: fit-content;
}

.signup .content-wrapper .right-section .form-wrapper .input-item label {
  width: 100%;

  color: var(--white_true, #fff);

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 500;

  line-height: 157%;

  letter-spacing: 0.14px;

  margin-bottom: 8px;
}

.signup .content-wrapper .right-section .form-wrapper .input-item label.error {
  color: red;
}

.signup .content-wrapper .right-section .form-wrapper .input-item input {
  padding: 10px 16px;

  border-radius: 4px;

  background: var(--white_true, #fff);

  border: none;

  color: var(--grey_inactive, #000);

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 400;

  line-height: normal;

  letter-spacing: 0.14px;

  width: 270px;
}

.signup
  .content-wrapper
  .right-section
  .form-wrapper
  .input-item
  input:focus-visible {
  outline: none;
}

.signup .content-wrapper .right-section .form-wrapper .input-wrapper {
  display: flex;

  gap: 32px;
}

.signup
  .content-wrapper
  .right-section
  .form-wrapper
  .input-wrapper
  .input-item {
  width: min-content;
}

.signup
  .content-wrapper
  .right-section
  .form-wrapper
  .input-wrapper
  .input-item
  .zip {
  width: 190px;
}

.signup .content-wrapper .right-section .form-wrapper .description {
  padding-top: 12px;

  padding-bottom: 32px;
}

.signup .content-wrapper .right-section .form-wrapper .description p {
  color: var(--white_true, #fff);

  font-family: Rubik;

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  margin-bottom: 0;
}

.signup .content-wrapper .right-section .form-wrapper .description a {
  color: var(--c2a_blue, #00d9f5);
  font-feature-settings: "clig" off, "liga" off;
  font-family: Ubuntu;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.192px;
  text-decoration: none;
  display: block;
}

.signup .content-wrapper .right-section .form-wrapper .terms {
  display: flex;

  flex-direction: row-reverse;

  gap: 10px;
}

.signup .content-wrapper .right-section .form-wrapper .terms label {
  display: flex;

  flex-direction: row-reverse;

  gap: 10px;

  color: var(--white_true, #fff);

  font-family: Rubik;

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  margin: 0;
}

.signup .content-wrapper .right-section .form-wrapper .terms input {
  width: 18px;
}

.signup .content-wrapper .right-section .form-wrapper .button-wrapper {
  display: flex;

  align-items: center;

  padding-top: 12px;

  gap: 15px;
}

.signup .content-wrapper .right-section .form-wrapper .button-wrapper button {
  padding: 16px 32px;

  border-radius: 4px;

  background: var(--c2a_grad, linear-gradient(90deg, #00f5a0 0%, #00d9f5 100%));

  border: none;

  color: var(--black_bg, #161519);

  font-feature-settings: "clig" off, "liga" off;

  font-family: Ubuntu;

  font-size: 14px;

  font-style: normal;

  font-weight: 500;

  line-height: normal;

  letter-spacing: 0.14px;
}

.loading-spinner {
  display: none;

  width: 30px;

  height: 30px;
}

.loading-spinner.active {
  display: inline-block;
}

.loading-spinner:before {
  content: "";

  box-sizing: border-box;

  position: absolute;

  width: 30px;

  height: 30px;

  border-radius: 50%;

  border: 2px solid #ccc;

  border-top-color: #333;

  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

/** Singup End **/

/** Footer End **/

.footer-future-island {
  padding: 80px 0;

  background: #1d1d20;
}

.footer-future-island .footer__wrapper {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  overflow: hidden;
}

.footer-future-island .footer__wrapper .logo h3 {
  color: #f6f6f6;

  -webkit-text-stroke-width: 0.20000000298023224;

  -webkit-text-stroke-color: #f6f6f6;

  font-family: "Zen Dots";

  font-size: 18px;

  font-style: normal;

  font-weight: 400;

  line-height: normal;

  letter-spacing: 1.44px;

  text-align: left;

  margin-bottom: 20px;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateX(-50px);
}

.footer-future-island.in-view .footer__wrapper .logo h3 {
  opacity: 1;

  transition-delay: 0.1s;

  transform: translateX(0);
}

.footer-future-island .footer__wrapper .logo p {
  color: #f6f6f6;

  font-family: "Rubik";

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  opacity: 0;

  transition: all ease 0.7s;

  transform: translateX(-50px);
}

.footer-future-island.in-view .footer__wrapper .logo p {
  opacity: 1;

  transition-delay: 0.3s;

  transform: translateX(0);
}

.footer-future-island .footer__wrapper .menu {
  width: fit-content;
}

.footer-future-island .footer__wrapper .menu .menu__wrapper {
  display: flex;

  gap: 60px;
}

.footer-future-island .footer__wrapper .menu .menu__wrapper .join_discord {
  position: relative;

  opacity: 0;

  transition: all ease 0.5s;
}

.footer-future-island.in-view
  .footer__wrapper
  .menu
  .menu__wrapper
  .join_discord {
  opacity: 1;

  transition-delay: 0.5s;
}

.footer-future-island .footer__wrapper .menu .menu__wrapper .join_discord h4 {
  color: #f6f6f6;

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 24px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

  letter-spacing: 0.24px;
}

.footer-future-island
  .footer__wrapper
  .menu
  .menu__wrapper
  .join_discord
  .join_discord__links {
  display: flex;

  flex-direction: column;
}

.footer-future-island
  .footer__wrapper
  .menu
  .menu__wrapper
  .join_discord
  .join_discord__links
  a {
  color: #f6f6f6;

  font-family: "Rubik";

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  text-decoration: none;

  margin-bottom: 10px;
}

.footer-future-island .footer__wrapper .menu .menu__wrapper .future_sland_hq {
  position: relative;

  opacity: 0;

  transition: all ease 0.5s;
}

.footer-future-island.in-view
  .footer__wrapper
  .menu
  .menu__wrapper
  .future_sland_hq {
  opacity: 1;

  transition-delay: 0.7s;
}

.footer-future-island
  .footer__wrapper
  .menu
  .menu__wrapper
  .future_sland_hq
  h4 {
  color: #f6f6f6;

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 24px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

  letter-spacing: 0.24px;
}

.footer-future-island
  .footer__wrapper
  .menu
  .menu__wrapper
  .future_sland_hq
  .future_sland_hq__address {
  display: flex;

  flex-direction: column;
}

.footer-future-island
  .footer__wrapper
  .menu
  .menu__wrapper
  .future_sland_hq
  .future_sland_hq__address
  .address {
  color: #f6f6f6;

  font-family: "Rubik";

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;
}

.footer-future-island
  .footer__wrapper
  .menu
  .menu__wrapper
  .future_sland_hq
  .future_sland_hq__address
  a {
  color: #f6f6f6;

  font-family: "Rubik";

  font-size: 16px;

  font-style: normal;

  font-weight: 300;

  line-height: 180%;

  letter-spacing: 0.192px;

  text-decoration: none;

  display: block;
}

.footer-future-island
  .footer__wrapper
  .menu
  .menu__wrapper
  .future_sland_hq
  .future_sland_hq__address
  a.tel {
  margin-top: 30px;

  margin-bottom: 10px;
}

.footer-future-island .footer__wrapper .menu .menu__wrapper .social_media {
  display: flex;

  flex-direction: column;

  opacity: 0;

  transition: all ease 0.5s;
}

.footer-future-island.in-view
  .footer__wrapper
  .menu
  .menu__wrapper
  .social_media {
  opacity: 1;

  transition-delay: 0.9s;
}

.footer-future-island .footer__wrapper .menu .menu__wrapper .social_media a {
  color: #f6f6f6;

  text-align: left;

  font-feature-settings: "clig" off, "liga" off;

  font-family: "Ubuntu";

  font-size: 16px;

  font-style: normal;

  font-weight: 700;

  line-height: normal;

  letter-spacing: 0.192px;

  text-decoration: none;

  display: block;

  margin-bottom: 15px;
}

/** Footer End **/

/** Discord Button Start **/

.button-discord {
  position: fixed;

  right: 40px;

  bottom: 50px;

  width: 70px;

  opacity: 0;

  transition: all ease 0.5s;

  transform: translateX(70px);
  z-index: 99;
}

.button-discord a {
  display: block;

  width: 100%;

  height: 100%;
}

.button-discord img {
  width: 100%;

  height: 100%;

  animation-name: discordAnimationPulse;

  animation-duration: 3s;

  animation-iteration-count: infinite;

  animation: discordAnimationPulse 10s ease-in-out 5s infinite;

  animation-delay: 5s;

  transition-delay: 0.5s;
}

@keyframes discordAnimationPulse {
  0%,
  100% {
    transform: scale(1);
  }

  15% {
    transform: scale(0.9);
  }

  25% {
    transform: scale(1);
  }

  35% {
    transform: scale(0.9);
  }

  45% {
    transform: scale(1);
  }

  55% {
    transform: scale(0.9);
  }

  60% {
    transform: scale(1);
  }

  80% {
    transform: scale(1);
  }
}

.button-discord.in-view {
  opacity: 1;

  transform: translateX(0);
}

/** Discord Button End **/
