
/* 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 */

.hero {
  position: relative;
  background-color: #3a3a3a;
  color: #fff;
  z-index: 0;
  padding: 24px 40px 80px 40px;
  margin-bottom: 43px;
}

.hero__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

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

.hero__heading {
  font-size: 35.2px;
  text-align: center;
  font-family: var(--font-raleway);
  font-weight: 700;
}

.hero__info {
  color: rgb(185, 185, 185);
  text-align: center;
  font-family: var(--font-base);
}

.hero__btn {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 232px;
  height: 65px;
  gap: 5px;
  border-radius: 10px;
  border: 2px solid #000;
}

.hero__btn > span {
  max-width: 101px;
  color: #000!important;
}

.hero__container > img {
  padding-top: 25px;
}
.tutor__list a, .info__text a {
  color: #181622;
  text-decoration: underline;
}

.hero__container a {
    color: #000!important;
}

/* MOBILE */

/* 768 */

@media screen and (min-width: 768px) {
  .hero__container {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1032px;
    margin: 0 auto;
    gap: 5px;
  }

  .hero__info__container {
    justify-content: start;
    align-items: start;
  }

  .hero__info {
    text-align: left;
    max-width: 629px;
  }

  .hero__heading {
    font-size: 41.6px;
  }
 
}

/* 768 */

/* 1024 */

@media screen and (min-width: 1024px) {
  .hero__heading {
    font-size: 49.6px;
  }
}

/* 1024 */

/* 1200 */

@media screen and (min-width: 1200px) {
  .hero__container {
    max-width: 1290px;
  }

  .hero__heading {
    font-size: 62px;
  }

  .hero__info {
    font-size: 20px;
  }

  .hero__btn > span {
    font-size: 20px;
    max-width: 127px;
    color: #000;
  }

  .hero__btn {
    width: 220px;
    height: 60px;
  }
}

/* 1200 */

/* HERO */

/* INFO */

/* MOBILE */

.info {
  padding: 0 10.4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 14.4px;
  margin-bottom: 40px;
}

.info__text {
  padding: 0 16px 16px 16px;
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 23px;
  color: rgb(24, 22, 34);
}

.info__heading {
  font-size: 28.8px;
  font-family: var(--font-poppins);
  letter-spacing: -1.5px;
  line-height: 43.2px;
  color: rgb(42, 44, 57);
}

/* MOBILE */

/* 1024 */

@media screen and (min-width: 1024px) {
  .info__text {
    max-width: 693px;
  }
}

/* 1024 */

/* 1200 */

@media screen and (min-width: 1200px) {
  .info__heading {
    font-size: 36px;
  }

  .info__text {
    font-size: 18px;
    max-width: 815px;
  }
  .info {
    gap: 18px;
    margin-bottom: 50px;
  }
}

/* 1200 */

/* INFO */

/* FEATURE */

/* MOBILE */

.features {
  padding: 0 10.4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.features__heading {
  font-size: 28.8px;
  font-family: var(--font-poppins);
  letter-spacing: -1.5px;
  line-height: 43.2px;
  color: rgb(42, 44, 57);
}

.features__info {
  padding: 0 16px 16px 16px;
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 23px;
  color: rgb(24, 22, 34);
  text-align: center;
}

.features__card {
  padding: 20px;
  background-color: rgb(247, 247, 247);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-direction: column;
  border-radius: 20px;
}

.features__cards__list {
  max-width: 60%;
  margin: 0 auto;
  gap: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.features__card__heading {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 19px;
  line-height: 31px;
  color: rgb(68, 68, 68);
}

.features__card__info {
  color: rgb(13, 13, 13);
  font-family: var(--font-base);
  line-height: 20.48px;
  font-size: 12.8px;
}

.features__card__info > span {
  color: rgb(255, 51, 153);
}

.features_ul img {
  width: 20px;
}
/* MOBILE */

/* 768 */

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

  .features__info {
    max-width: 90%;
    margin: 0 auto;
  }

  .features__card {
    flex: 0 0 50%;
    height: 100%;
    justify-content: start;
    align-items: start;
  }
} /* 768 */

/* 1024 */

@media screen and (min-width: 1024px) {
  .features__cards__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .features__info {
    max-width: 80%;
  }
}

/* 1024 */

/* 1200 */

@media screen and (min-width: 1200px) {
  .features__info {
    max-width: 70%;
    font-size: 18px;
    margin-bottom: 14px;
  }

  .features__heading {
    font-size: 36px;
  }

  .features__card__heading {
    font-size: 24px;
  }
  .features__card__info {
    font-size: 16px;
  }

  .features {
    margin-bottom: 80px;
  }
}

/* 1200 */

/* FEATURE */

/* TUTOR */

/* MOBILE */

.tutor {
  padding: 0 10.4px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  max-width: 90%;
  margin: 0 auto;
  padding-bottom: 40px;
  position: relative;
}

.tutor__heading {
  font-size: 28.8px;
  font-family: var(--font-poppins);
  letter-spacing: -1.5px;
  line-height: 43.2px;
  color: rgb(42, 44, 57);
  text-align: center;
  margin-bottom: 30px;
}

.tutor__info {
  padding: 0 16px 16px 16px;
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 23px;
  color: rgb(24, 22, 34);
}

.tutor__after__info {
  margin-top: 16px;
}

.tutor__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
}

.tutor__list__item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.tutor__list__item__text {
  color: rgb(68, 68, 68);
  font-family: var(--font-base);
  font-size: 12.8px;
  line-height: 24px;
}

.tutor__list__item__number {
  height: 22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(
    135deg,
    rgba(75, 121, 161, 0.72) 0%,
    rgba(40, 62, 81, 0.35) 100%
  );
  min-width: 22px;
  margin-top: 7px;
  color: #fff;
}

.tutor a:hover {
  color: rgb(0, 184, 153);
}
/* MOBILE */

/* 768 */

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

/* 768 */

/* 1024 */

@media screen and (min-width: 1024px) {
  .tutor {
    max-width: 70%;
  }
}

/* 1024 */

/* 1200 */

@media screen and (min-width: 1200px) {
  .tutor__heading {
    font-size: 36px;
  }

  .tutor__info {
    font-size: 18px;
  }

  .tutor__after__info {
    margin-top: 20px;
  }

  .tutor__list__item__number {
    width: 24px;
    height: 24px;
  }

  .tutor__list__item__text {
    font-size: 16px;
  }

  .tutor {
    margin-bottom: 80px;
  }
}

/* 1200 */

/* TUTOR */

/* RELEASE */

/* MOBILE */

.release__btn-tg {
  width: 327px;
  height: 39px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(23, 162, 184);
  color: #fff;
  transition: background-color 0.3s ease-in-out;
  border-radius: 40px;
  gap: 5px;
}

.release .release__btn-tg:hover {
  background-color: rgb(19, 132, 150);
}

.download__img {
  cursor: pointer;
}

.release {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 100px;
}

.release__info__container {
  padding: 51px 10.4px;
  background-color: #f7f7f7;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.release__heading {
  color: rgb(58, 58, 58);
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -1.5px;
  line-height: 36px;
}

.version__item:hover .version__title {
  color: rgb(0, 166, 237);
}

.release__info__container > span {
  color: rgb(68, 68, 68);
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -2px;
  line-height: 31px;
}

.release__info__list {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 0;
}

.version__info {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 4px;
}

.release__info__list > li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: rgb(68, 68, 68);
  font-family: var(--font-base);
  font-size: 14px;
  line-height: 23px;
}

.versions__container {
  padding: 16px;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  width: 100%;
}

.versions__container__heading {
  color: rgb(42, 44, 57);
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 17px;
  align-self: self-start;
  margin-bottom: 9px;
}

.versions__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.version__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgb(240, 242, 244);
  padding-bottom: 12px;
  cursor: pointer;
}

.version__title {
  color: rgb(75, 75, 75);
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}

.version__subtitle {
  color: rgb(88, 88, 88);
  font-family: var(--font-base);
  font-size: 12px;
  line-height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.version__btn {
  display: flex;
  justify-content: center;
  padding: 6px 8px;
  background-color: rgb(49, 77, 107);
  border-radius: 5px;
  color: #fff;
  font-family: var(--font-base);
  font-size: 12px;
  line-height: 16px;
  align-items: center;
  gap: 4px;
}

/* MOBILE */

/* 768 */

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

/* 768 */

/* 1024 */

@media screen and (min-width: 1024px) {
  .versions__container {
    max-width: 70%;
  }
}

/* 1024 */

/* 1200 */

@media screen and (min-width: 1200px) {
  .release__heading {
    font-size: 30px;
  }

  .release__info__container > span {
    font-size: 24px;
  }

  .release__info__list > li {
    font-size: 18px;
  }
}

/* 1200 */

/* RELEASE */

/* FAQ */

/* MOBILE */

.faq {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 83px 0 38px 0;
  background-color: rgb(247, 247, 247);
  position: relative;
}

.faq__heading {
  color: rgb(42, 44, 57);
  font-family: var(--font-poppins);
  font-weight: 700;
  font-size: 29px;
  line-height: 43px;
  letter-spacing: -1.5px;
  max-width: 60%;
  margin: 0 auto;
  text-align: center;
}

.faq__dropdown__list {
  max-width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.dropdown {
  width: 100%;
  overflow: hidden;
}

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

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

.dropdown-toggle {
  cursor: pointer;
  display: block;
}

.dropdown-toggle > div {
  width: 100%;
  background-color: #fff;
  height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 12px;
  border-radius: 20px 20px 0 0;
}

.dropdown-toggle > div > span {
  max-width: 80%;
  color: #3a3a3a;
  font-family: var(--font-base);
  font-weight: 700;
}

.dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: rgb(58, 58, 58);
  font-size: 14.4px;
  font-family: var(--font-base);
  line-height: 23px;
  border-top: 1px solid rgb(245, 245, 245);
  background-color: #fff;
}

.dropdown-menu > p {
  padding: 19px;
}
input:checked ~ .dropdown-menu {
  max-height: 300px;
}

input:checked ~ .dropdown-toggle > div img {
  transform: rotate(180deg);
}

/* MOBILE */

/* 768 */

@media screen and (min-width: 768px) {
  .faq > .divider > svg {
    max-width: 120%;
  }

  .faq__heading {
    max-width: 100%;
  }

  .faq__dropdown__list {
    max-width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .hero__btn {
   
      width: 190px;
      height: 55px;
    
  }
}
/* 768 */

/* 1024 */

@media screen and (min-width: 1024px) {
  .faq__dropdown__list {
    max-width: 70%;
  }
}

/* 1024 */

/* 1200 */

@media screen and (min-width: 1200px) {
  .faq__heading {
    font-size: 36px;
  }

  label span {
    font-size: 20px;
  }

  .dropdown-menu {
    font-size: 18px;
  }
}

/* 1200 */

/* FAQ */