
/* FONTS */
@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Regular"), local("OpenSans-Regular"),
    url("../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Medium"), local("OpenSans-Medium"),
    url("../fonts/OpenSans-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: local("Open Sans Bold"), local("OpenSans-Bold"),
    url("../fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: local("Poppins Bold"), local("Poppins-Bold"),
    url("../fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: local("Raleway Bold"), local("Raleway-Bold"),
    url("../fonts/Raleway-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* HERO */

/* MOBILE */

.pc__hero {
  background-image: url(../img/PC/hero/bg.webp);
  background-size: contain;
  background-position: 54% 53%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #3a3a3a;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.pc__hero__layer {
  background: linear-gradient(135deg, rgb(58, 58, 58) 0%, rgb(58, 58, 58) 100%);
  opacity: 0.93;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.pc__hero__container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-attachment: fixed;
  padding: 12px 10.4px 40px 10.4px;
  z-index: 2;
  position: relative;
  max-width: 355px;
  margin: 0 auto;
  gap: 16px;
}

.pc__hero > .divider {
  position: absolute;
  height: 22px;
  bottom: -1px;
  left: 0;
  overflow: hidden;
  right: 0;
  z-index: 1;
}

.pc__hero > .divider > svg {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  display: block;
  fill: #fff;
}

.pc__hero__heading {
  font-family: var(--font-raleway);
  font-weight: 700;
  font-size: 38px;
  line-height: 58px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  row-gap: 5px;
}

.pc__hero__heading > span {
  color: #afaef4;
}

.pc__hero__version {
  font-family: var(--font-base);
  font-size: 20px;
  line-height: 32px;
}

.pc__hero__btn {
  width: 195px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background-color: rgb(41, 119, 208);
  color: #fff;
  border-radius: 20px;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.pc__hero__btn:hover {
  background-color: #000;
  border: 1px solid rgb(41, 119, 208);
}

/* MOBILE */

/* 1200 */

@media screen and (min-width: 1200px) {
  .pc__hero > .divider {
    height: 27px;
  }

  .pc__hero__heading {
    font-size: 48px;
  }

  .pc__hero__container {
    gap: 20px;
  }
}

/* 1200 */

/* HERO */

/* ABOUT */

/* MOBILE */

.about {
  padding: 52px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.ios-h1 {
  background-clip: text;
  color: transparent !important;
  text-shadow: 1px 1.5px 0px #005fd6;
  background-image: linear-gradient(to right top, #0e6ba8, #0066c1, #005fd6, #0052e7, #473bf0);
  font-size: 35px !important;
  text-align: center;
}
.about__heading {
  color: rgb(42, 44, 57);
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 30px;
  line-height: 45px;
  text-shadow: 2px 3px 0px #eaeaea;
  align-self: self-start;
}

.about__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-direction: column;
}

.about__list__item {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
  color: rgb(68, 68, 68);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 25px;
}

.about__list__item > img {
  padding-top: 7px;
}

.about__info__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
/* MOBILE */

/* 768 */

@media screen and (min-width: 768px) {
  .about {
    max-width: 80%;
    margin: 0 auto;
  }
}

/* 768 */

/* 1024 */

@media screen and (min-width: 1024px) {
  .about {
    flex-direction: row-reverse;
  }

  .about > img {
    max-width: 308px;
  }

  .about__info__container {
    gap: 20px;
  }
}

/* 1024 */

/* ABOUT */

/* FEATURES */

/* MOBILE */

.pc__features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  position: relative;
  background-color: rgb(13, 14, 31);
  color: #fff;
  padding: 40px 10.4px 50px 10.4px;
}

.pc__features__heading {
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 30px;
  line-height: 45px;
  text-align: center;
}

.pc__features > .divider {
  position: absolute;
  height: 30px;
  top: -1px;
  left: 0;
  overflow: hidden;
  right: 0;
  z-index: 1;
}

.pc__features > .divider > svg {
  width: 160%;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  height: 100%;
  display: block;
  fill: #fff;
}

.pc__features__list__item {
  background-image: linear-gradient(
    135deg,
    rgba(75, 121, 161, 0.72) 0%,
    rgba(40, 62, 81, 0.35) 100%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  gap: 14px;
  border-radius: 20px;
  width: 100%;
}

.pc__features__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 90%;
  margin: 0 auto;
  gap: 10px;
}

.pc__features__list__item > img {
  margin-bottom: 16px;
  height: 45px;
}

.pc__features__list__item > span {
  color: rgb(178, 178, 235);
  font-family: var(--font-raleway);
  font-weight: 700;
  font-size: 28px;
  line-height: 42px;
}

.pc__features__list__item > p {
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 23px;
  text-align: center;
}

.pc__features__list__item > p > a {
  color: #9ac2ff;
}

.pc__features > .divider-bottom {
  position: absolute;
  height: 30px;
  bottom: -1px;
  left: 0;
  overflow: hidden;
  right: 0;
  z-index: 1;
}

.pc__features > .divider-bottom > svg {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 119%;
  height: 100%;
  display: block;
  fill: #fff;
}

/* MOBILE */

/* 768 */

@media screen and (min-width: 768px) {
  .pc__features__list {
    max-width: 65%;
  }
}

/* 768 */

/* 1024 */

@media screen and (min-width: 1024px) {
  .pc__features__list {
    max-width: 80%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 15px;
    gap: 15px;
  }

  .pc__features__list__item {
    flex: 0 0 50%;
    height: 100%;
  }
}

/* 1024 */

/* 1200 */

@media screen and (min-width: 1200px) {
  .pc__features__list__item > p {
    font-size: 18px;
  }
}

/* 1200 */

/* FEATURES */

/* TUTOR */

/* MOBILE */

.pc__tutor {
  padding-top: 50px;
}

.pc__tutor > .tutor__heading {
  text-shadow: rgb(234, 234, 234) 2px 3px 0px;
}

/* MOBILE */

/* TUTOR */

/* FAQ */

/* MOBILE */

.pc__faq > .faq__heading {
  text-shadow: rgb(120, 110, 110) 1px 1.5px 0px;
}

.pc__faq a {
  color: rgb(79, 113, 157);
}

/* MOBILE */

/* FAQ */