@font-face {
  font-family: PoppinsLight;
  src: url(Poppins-Light.ttf);
}

@font-face {
  font-family: PoppinsMed;
  src: url(Poppins-Medium.ttf);
}

@font-face {
  font-family: PoppinsSemi;
  src: url(Poppins-SemiBold.ttf);
}

@font-face {
  font-family: PoppinsBold;
  src: url(Poppins-ExtraBold.ttf);
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box;
  font-family: PoppinsLight, PoppinsMed, PoppinsSemi, PoppinsBold, sans-serif;
  transition: all 400ms ease-in;
  list-style: none;
}

body,
html {
  width: 100%;
  height: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
  display: block;
  position: relative;
  -webkit-user-select: none;
  user-select: none;
  background: linear-gradient(white, rgba(138, 255, 247, 0.05));
}

div.overlay {
  display: none;
  pointer-events: none;
}

div.overlay.view {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 999999999999999999999999999999999999999999999999999999;
  padding: 15px;
  background: rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(0.6rem);
  gap: 10px;
  align-items: center;
  display: flex !important;
  pointer-events: all !important;
  flex-direction: column;
  justify-content: space-between;

  .top {
    width: 100%;
    height: max-content;
    transition: all ease 400ms;

    span {
      width: 40px;
      height: 40px;
      padding: 10px;
      background: blue;
      backdrop-filter: blur(1rem);
      display: grid;
      border-radius: 50%;
      place-items: center;
      place-self: flex-end;
      color: white;
      cursor: pointer;
      font-size: 1.2rem;
    }

    :hover {
      transform: scale(1.1);
      border: 1.5px solid rgba(0, 0, 255, 0.5);
      background: white;
      color: blue;
      border-radius: 15px;
    }
  }

  a {
    width: 100%;
    place-content: center;
    display: flex;
  }

  img {
    width: 95%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    max-width: 400px;
  }

  a.join {
    margin-block: 10px;
    background: rgba(0, 0, 255, 0.8);
    backdrop-filter: blur(1rem);
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 20px;
    padding-inline: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: white;
    width: max-content;
  }
}

a.scroll-up {
  position: absolute;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(238, 248, 255, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  bottom: 30px;
  right: 40px;
  font-size: 1.5rem;
  font-family: PoppinsBold;
  color: blue;
  box-shadow: 0 2px 10px rgba(0, 25, 25, 0.3);
}

#body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow: hidden;
  overflow-y: scroll;
  display: block;
}

header#academy-header {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  position: absolute;
  top: 0;
  padding-top: 20px;
  z-index: 99999;
  pointer-events: none;
}

header .main {
  width: 90%;
  max-width: 700px;
  max-height: 70px;
  border: 0.5px solid rgba(128, 128, 255, 0.1);
  place-self: center;
  box-shadow:
    0 0 10px rgba(104, 104, 104, 0.02),
    4px 2px 8px rgba(249, 249, 255, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  padding: 10px;
  padding-inline-end: 15px;
  gap: 12px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(0.8rem);
  pointer-events: all;
  overflow: hidden;
  transition: all ease 600ms;
}

header .main .upper {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

header .main.active {
  box-shadow:
    0 0 10px rgba(104, 104, 104, 0.1),
    4px 2px 12px rgba(249, 249, 255, 0.2);
  max-height: 500px;
}

header#academy-header .upper .left,
header#academy-header .upper .right {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

header#academy-header .upper .right * {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: none;
  font-family: PoppinsSemi;
  font-size: 1.2rem;
  color: rgb(155, 0, 0);
}

#academy-header .upper .right * svg {
  color: blue;
  fill: blue;
  width: 30px;
  height: 30px;
}

header .search-view {
  width: 100%;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

header .search-view input[type='search'] {
  width: 100%;
  border: 1.5px solid powderblue;
  padding: 10px;
  border-radius: 15px;
  color: black;
  font-family: PoppinsLight;
  outline: none;
}

header .search-view input[type='search']:focus {
  border-color: blue;
}

header .search-view .lower {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

header .search-view .lower p {
  min-width: 100%;
  margin-bottom: -5px;
  padding-inline: 10px;
  font-family: PoppinsSemi;
}

header .search-view .lower a {
  width: auto;
  height: max-content;
  max-width: 200px;
  background-color: rgba(250, 250, 250, 0.8);
  border-radius: 20px;
  padding: 4px;
  padding-inline: 18px;
  font-family: PoppinsMed;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 255, 0.192);
  transition: all ease 300ms;
  color: blue;
}

header .search-view .lower a:hover {
  border: 1px solid blue;
  transform: translateY(-4px);
}

.company-image {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  place-content: center;
  overflow: hidden;
}

.company-image img {
  width: 380%;
  height: 380%;
  object-fit: cover;
}

.company-title .upper {
  margin-bottom: -6px;
  font-size: 14px;
  font-family: PoppinsSemi;
  color: rgba(0, 0, 255, 0.685);
}

.company-title .lower {
  color: blue;
  font-family: PoppinsBold;
  font-size: 18px;
}

.section {
  width: 100%;
  height: max-content;
  padding: 1.2rem;
  padding-block: 2rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}

#academy-banner {
  padding-top: 160px;
  padding-inline: 10%;
  position: relative;
  min-height: 100%;
  align-items: center;
}

div.circle {
  width: 60%;
  height: 60%;
  max-width: 400px;
  max-height: 400px;
  position: absolute;
  background-color: rgba(0, 255, 255, 0.43);
  z-index: -99;
  border-radius: 50%;
  top: -2%;
  left: -8%;
  filter: blur(5rem);
}

div.circle-cover1 {
  width: 80%;
  height: 70%;
  max-width: 600px;
  max-height: 400px;
  position: absolute;
  background: linear-gradient(rgb(255, 255, 255), rgb(225, 255, 0), white);
  z-index: -9;
  border-radius: 50%;
  top: 15%;
  left: 4%;
  filter: blur(6rem);
}

div.circle-cover2 {
  width: 60%;
  height: 60%;
  max-width: 450px;
  max-height: 450px;
  position: absolute;
  background-color: white;
  z-index: -9;
  border-radius: 50%;
  top: 30%;
  left: 12%;
  filter: blur(5rem);
}

div.angle {
  width: 30%;
  height: 30%;
  max-width: 180px;
  max-height: 180px;
  background-color: rgba(0, 0, 255);
  border-radius: 20px;
  z-index: 999;
  position: absolute;
  rotate: 10deg;
  bottom: -8%;
  right: -2.5%;
}

div.angle2 {
  width: 20%;
  height: 20%;
  max-width: 140px;
  max-height: 140px;
  background-color: aqua;
  border-radius: 20px;
  z-index: 999;
  position: absolute;
  rotate: 10deg;
  bottom: -10%;
  right: -2.5%;
  box-shadow: 0 -4px 60px rgb(0, 2, 109, 0.5);
}

#academy-banner .banner-left {
  display: flex;
  flex-direction: column;
  padding-block: 10px;
  width: 90%;
  max-width: 500px;
  font-family: PoppinsSemi;
}

.banner-left p {
  font-family: PoppinsBold;
  -webkit-user-select: text;
  user-select: text;
  font-size: 1.6rem;
  font-size: calc(100% + 30px);
  line-height: calc(100% + 8px);
  margin-bottom: 15px;
}

.banner-left span.highlight {
  color: blue;
  font-family: PoppinsBold;
}

.banner-left .under {
  font-family: PoppinsSemi;
  margin-bottom: 30%;
  font-size: 1rem;
  color: #272727;
  line-height: 1.2rem;
  width: 90%;
}

.banner-left .bottom {
  width: 100%;
  padding: 10px;
  align-items: center;
  display: flex;
  justify-content: flex-start;
}

.banner-left .bottom a#register {
  display: flex;
  align-items: center;
  background-color: blue;
  padding-inline: 22px;
  border-radius: 30px;
  color: white;
  font-family: PoppinsSemi;
  border: none;
  width: max-content;
  font-size: 1rem;
  flex-wrap: wrap;
  height: 50px;
  gap: 12px;
  text-align: left;
  word-spacing: 4px;
  cursor: pointer;
  box-shadow: 2px 5px 10px rgba(48, 114, 255, 0.3);
  transition: all ease 300ms;
}

.banner-left .bottom a#register:hover {
  transform: translateY(-5px);
  box-shadow: 2px 5px 10px rgba(48, 114, 255, 0.8);
}

.banner-left .bottom a.join {
  margin-inline-start: 10px;
  font-weight: bolder;
  gap: 10px;
  margin-top: -6px;
  align-items: center;
  display: flex;
  letter-spacing: 0.6px;
  font-size: 0.9rem;
  transition: all ease-in 400ms;

  svg {
    font-size: 0.9rem;
    width: 0.9rem;
    height: 0.9rem;
  }
}

.banner-left .bottom a.join:hover {
  text-decoration: underline;
  scale: 1.09;
  margin-top: 2px;
}

.banner-image {
  width: 90%;
  max-width: 600px;
  height: 90%;
  max-height: 600px;
  display: flex;
  box-shadow: inset 50px -10px 20px rgba(208, 246, 255, 0.685);
  border-bottom-left-radius: 500px;
  border-top-left-radius: 250px;
  justify-content: flex-start;
  align-items: center;
  object-fit: fill;
  z-index: -9999;
  position: absolute;
  right: 0%;
  overflow: hidden;
}

.banner-image img {
  z-index: -999;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: brightness(110%) saturate(120%) contrast(102%);
}

.wrap {
  display: flex;
  flex-direction: column;
  margin: 0 !important;
}

#free-video {
  justify-content: space-evenly;
  align-items: center;
  margin-top: 10%;
  height: max-content;
  align-items: flex-start;
  max-height: 100%;
}

#free-video .floater {
  top: 0;
  left: -0.5%;
  position: absolute;
  z-index: -99999;
  font-size: calc(25vw / 1.2);
  color: rgba(0, 183, 255, 0.35);
  filter: blur(0.25rem);
}

#free-video .circle-video {
  width: 60%;
  height: 60%;
  max-width: 400px;
  max-height: 400px;
  position: absolute;
  background-color: rgba(255, 247, 0, 0.5);
  z-index: -99;
  border-radius: 50%;
  bottom: -20%;
  right: -10%;
  filter: blur(5rem);
}

.section p.title {
  min-width: 100%;
  text-align: center;
  font-size: 2rem;
  font-family: PoppinsBold;
  margin-bottom: 2%;
}

#free-video .video-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  margin-bottom: 2%;
  font-size: 1.2rem;
}

.video-text a {
  font-family: PoppinsSemi;
  color: blue;
}

#free-video .video-div {
  width: 100%;
  max-width: 600px;
  border: 1px solid rgba(0, 81, 255, 0.86);
  border-radius: 20px;
  height: 100%;
  max-height: 300px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  position: relative;
  overflow: hidden;
}

.video-wrapper iframe {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#about {
  display: flex;
  flex-direction: column;
  justify-content: center;

  svg {
    color: blue;
    width: 15vmax;
    height: 15vmax;
    position: absolute;
    z-index: -9;
    right: -5%;
    top: 10%;
    opacity: 0.2;
    rotate: -20deg;
    filter: blur(0.1rem);
  }
}

#about .about-text {
  max-width: 1250px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  place-self: center;
  -webkit-user-select: text;
  user-select: text;
}

#about .achievements .about-text {
  margin-bottom: 30px;
}

.highlight {
  color: blue;
  font-weight: bolder;
}

.bold {
  font-weight: bolder;
}

#about .about-text .under {
  font-size: 1.2rem;
}

ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 1.2rem;
  text-align: left;
}

ul p.highlight-title {
  font-family: PoppinsSemi;
  color: blue;
  text-align: left;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 3px;
}

ul li {
  list-style: disc;
  margin-bottom: 6px;
  margin-inline-start: 20px;
}

#about .floater {
  bottom: -5%;
  left: -5%;
  position: absolute;
  z-index: -99999;
  font-size: calc(24vw / 1.5);
  color: rgba(238, 255, 0, 0.35);
  filter: blur(0.15rem);
}

#about .achievements {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  max-width: 1250px;
  place-self: center;
}

.achievements .achievement {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-evenly;
  align-items: flex-start;
  margin-block-end: 6%;
  transition: all ease-in 400ms;
  position: relative;
}

.achievement .achievement-text {
  width: 100%;
  font-family: PoppinsLight;
  color: rgb(50, 50, 50);
  font-size: 1.2rem;
  max-width: 500px;
  text-shadow: 0px 1px 1px white;
}

.achievement-text p.achievement-title {
  font-family: PoppinsSemi;
  color: blue;
  font-size: 1.5rem;
}

.achievement .achievement-pics {
  width: 100%;
  height: max-content;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  position: relative;
  /* overflow: hidden; */

  .glow-back {
    width: max(400px, 17rem);
    height: max(400px, 17rem);
    background: linear-gradient(rgb(0, 255, 157), yellow);
    border-radius: 50%;
    filter: blur(1.8rem) opacity(0.3);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -9;
  }
}

.achievement-pics img,
.achievement-pics video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(115%) saturate(105%) contrast(101%);
}

#newsletter .others {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-evenly;
  align-items: center;
}

#newsletter .others p {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
}

#newsletter .others a {
  width: 80%;
  max-width: 250px;
  border-radius: 20px;
  color: white;
  background-color: blue;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-family: PoppinsSemi;
  box-shadow: 2px 5px 10px rgba(48, 114, 255, 0.3);
  transition: all ease 300ms;
}

#newsletter .others a:hover {
  transform: translateY(-5px);
  box-shadow: 2px 5px 10px rgba(48, 114, 255, 0.8);
}

footer {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  padding: 2%;
  padding-block: 3%;
  padding-bottom: 4%;
  border-top: 1px solid rgba(56, 56, 56, 0.05);
  background-color: rgba(202, 235, 255, 0.01);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

footer .upper {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

footer .upper div.logo {
  width: 35px;
  height: 35px;
  border-radius: 15px;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  place-content: center;
}

footer .upper img {
  width: 370%;
  height: 370%;
}

footer .upper p.company-name {
  font-size: 1.4rem;
  font-family: PoppinsMed;
  line-height: 1.5rem;
}

footer .flex {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  height: auto;
  align-items: flex-start;
}

footer .flex div.footer-tab {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 2.5px;
}

.flex .footer-tab p.title {
  font-size: 1.5rem;
  font-family: PoppinsSemi;
  font-weight: bolder;
  color: blue;
}

.flex .footer-tab .footer-tab-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all ease 400ms;
}

.flex .footer-tab-content a {
  font-family: PoppinsMed;
  color: rgb(50, 50, 50);
  word-break: break-all;
  align-items: center;
  display: flex;
  gap: 10px;
  text-align: left;
}

.footer-tab-content *:hover {
  text-decoration: underline;
  color: blue !important;
  font-weight: bold;
}

footer .under {
  padding: 10px;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-top: 1px solid rgba(0, 21, 255, 0.2);
  padding-top: 25px;

  span {
    font-weight: bolder;
  }
}

.title.highlight {
  text-shadow: 2px 1px 10px rgba(152, 240, 255, 0.4);
}

/* testimonial */

.section .testimonials {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: max(10px, 30px);
  flex-wrap: wrap;
  flex-shrink: 1;
  align-items: center;
  justify-content: center;
  margin-top: 20px;

.testimonial {
    width: 90%;
    max-width: 25rem;
    overflow: hidden;
    background: white;
    backdrop-filter: blur(1.1rem);
    border-radius: 18px;
    box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.3);
    align-self: center;

    img {
      width: 100%;
      object-fit: cover;
    }

    img:hover,
    img:active {
      scale: 1.05;
      border-radius: 28px;
      margin-bottom: 10px;
    }

    p.name {
      width: 100%;
      text-align: center;
      font-size: 0.7rem;
      padding: 0.3rem;
      letter-spacing: 1px;
      opacity: 0.9;
      margin-bottom: 0.6rem;
    }

    .review {
      padding: 12px;
      padding-top: 0;
      font-size: 0.99rem;
    }
  }
}
