/* @font-face {
  font-family: "outfit-light";
  src: url("../fonts/Outfit-Light.ttf") format('truetype');
}

@font-face {
  font-family: "outfit-medium";
  src: url("../fonts/Outfit-Medium.ttf") format('truetype');
}

@font-face {
  font-family: "outfit-semibold";
  src: url("../fonts/Outfit-SemiBold.ttf") format('truetype');
}

@font-face {
  font-family: "outfit-regular";
  src: url("../fonts/Outfit-Regular.ttf") format('truetype');
} */

@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* COMMON */
:root {
  --primary: #5a39d6;
  --secondary-text: #98a2b3;
  --white: #ffffff;
  --content-width: 80%;
}

.baloo-text {
  font-family: "Baloo 2", sans-serif;
}

textarea {
  /* font-family: "outfit-regular", sans-serif; */
  font-family: "Outfit", sans-serif;
}

html {
  /* font-family: "outfit-regular", sans-serif; 1 */
  font-family: "Outfit", sans-serif;
  -webkit-text-size-adjust: 100%; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
}

body {
  /* font-family: "outfit-regular", sans-serif; */
  font-family: "Outfit", sans-serif;
  margin: 0px;
  padding: 0px;
}

ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
a {
  text-decoration: none;
  color: black;
}

*:focus {
  outline: none;
}

.no-margin {
  margin: 0px;
}

.no-padding {
  padding: 0px;
}

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

.logo {
  width: 88px;
  display: block;
}

.header {
  background-color: var(--white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-container {
  width: var(--content-width);
  margin: auto;
  display: flex;
  align-items: center;
  height: 70px;
  /* padding: 16px 0px; */
}

.nav-container {
  height: 100%;
}

.nav-container > ul {
  list-style-type: none;
  display: flex;
  height: 100%;
}

.nav-container > ul > li {
  display: flex;
  align-items: center;
}

.nav-menu-item {
  margin-right: 48px;
}

.nav-item-with-dropdown {
  position: relative;
}

.nav-dropdown-container {
  position: fixed;
  right: 0px;
  left: 0;
  bottom: 0;
  top: 70px;
  /* height: 400px; */
  overflow-y: auto;

  display: flex;
  justify-content: center;
}

.nav-dropdown-container-active {
  background-color: rgba(0, 0, 0, 0.5);
}

.nav-dropdown-container .content {
  height: fit-content;
}

.nav-dropdown-container .menu-container {
  width: 1032px;
  border-radius: 8px;
  border: 1px solid var(--Grey-300, #d0d5dd);
  background: var(--White, #fff);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
}

.nav-menu-item-with-icon {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 10px;
}

.price-text {
  color: var(--Grey-900, #101828) !important;
  font-size: 16px !important;
  font-style: normal !important;
  line-height: normal !important;
}
.nav-item-with-dropdown .hidden {
  /* top: -1000px; */
  display: none;
}

.nav-menu-item-with-icon img {
  /* margin-left: 8px; */
}

.active-nav-item a {
  color: #4b17d5;
}

.flex-spacer {
  flex-grow: 1;
}

.content-bg {
  background-image: url("../images/bg.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

.btn {
  border: none;
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 18px;
}

.btn-inverted {
  color: var(--primary);
  background-color: var(--white);
}

.btn-inverted-outline {
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid #5a39d6;
}

.small-btn-text {
  font-size: 16px;
}

.standard-width {
  width: var(--content-width);
  margin: auto;
}

.divide-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.flex-content-right {
  display: flex;
}

input {
  padding: 16px;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  width: 92%;
  margin: 8px 0px;
}

input:focus {
  border: 1px solid #6a39ea;
}

input::placeholder {
  letter-spacing: 1px;
} /* Chrome, Firefox, Opera, Safari 10.1+ */

textarea {
  padding: 16px;
  gap: 8px;
  /* height: 56px; */
  background: #ffffff;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  width: 92%;
  margin: 4px 0px;
}

.green-text {
  color: #027a48;
}

textarea:focus {
  border: 1px solid #6a39ea;
}

textarea::placeholder {
  letter-spacing: 1px;
  /* font-family: "outfit-regular", sans-serif; */
  font-family: "Outfit", sans-serif;
} /* Chrome, Firefox, Opera, Safari 10.1+ */

/* COMMON END */
.mobile-nav {
  display: none;
}
.copyright-container {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 0px;
}

.footer-container {
  width: var(--content-width);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 70px 0px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.social-links {
  margin-top: 30px;
  margin-left: 7px;
}

.twitter {
  margin: 0px 20px;
}

.social-logo {
  width: 24px;
  height: 24px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
}

.footer-container ul li {
  margin-top: 16px;
}

.footer-link-item {
  color: black;
}

.footer-link-header {
  color: var(--secondary-text);
}

.footer-link-item {
  /* font-family: "outfit-medium"; */
  font-family: "Outfit", sans-serif;
}

.footer-policy {
  display: flex;
  align-items: center;
  justify-content: center;
}

.copyright-container p {
  color: var(--secondary-text);
}

.row-wrap-items-4,
.row-wrap-items-2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-right: -40px;
}

.speak-curriculam-highlights {
  width: var(--content-width);
  margin: auto;
}

.speak-curriculam-highlights .title {
  text-align: center;
  margin-bottom: 50px;
}
.speak-curriculam-highlights .title h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
}

.speak-curriculam-highlights .title .home-text-graphic {
  left: 0;
  bottom: -20px;
  width: 100%;
}

.rotate-explore-e {
  margin-top: 5px;
  margin-right: 5px;
  transform: rotate(-20deg);
}

.row-wrap-items-4 .row-wrap-item {
  width: 24%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.row-wrap-items-2 .row-wrap-item {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.row-wrap-items-4 .row-wrap-item .top-image,
.row-wrap-items-2 .row-wrap-item .top-image {
  height: 220px;
}

.row-wrap-items-4 .row-wrap-item .top-image img {
  width: 100%;
}

.row-wrap-items-2 .row-wrap-item .top-image img {
  position: absolute;
  height: 220px;
  width: 227px;
  transform: translate(-67%, 0%);
  scale: 0.8;
}

.row-wrap-items-4 .row-wrap-item h3,
.row-wrap-items-2 .row-wrap-item h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
  text-align: left;
  margin-bottom: 5px;
}

.row-wrap-items-4 .row-wrap-item p,
.row-wrap-items-2 .row-wrap-item p {
  font-weight: 400;
  font-size: 24px;
  line-height: 28px;
  color: #475467;
  text-align: left;
}

.row-wrap-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* ____________________ */

.interested-container {
  background-image: url("../images/interested-bg.svg");
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 470px;
  background-size: 100%;
  background-position: right 0px bottom 0px;

  background-size: cover;
}

.interested-container h1 {
  color: var(--white);
  font-weight: 600;
  font-size: 48px;
  line-height: 64px;
}

.interested-container a {
  margin-top: 48px;
}

.media-container {
  text-align: center;
  padding: 50px 0px 70px 0px;
  margin-top: 50px;
}

.media-container .media-title h1 {
  margin-bottom: 72px;

  color: #000;

  text-align: center;
  font-family: Outfit;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 80% */
}

.media-content {
  width: var(--content-width);
  margin: auto;
}

.media-items {
  /* display: grid;
  grid-template-columns: repeat(5, 1fr); */

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.media-item-grey {
  filter: grayscale(100%);
}

.media-item-grey:hover {
  filter: unset;
}

.media-items .media-item {
  width: 19%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.media-item img {
  max-width: 100%;
}

.products-container {
  /* text-align: center; */
}

.products-container .product-title {
  /* width: 54%; */
  margin: auto;
  margin-bottom: 90px;
  position: relative;
  max-width: 1128px;
  width: fit-content;
}

.product-title {
  /* margin-bottom: 120px; */
  text-align: center;
}

.products-container .product-title h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
}

.products-container .home-text-graphic {
  bottom: -20px;
  right: 0;
  max-width: 100%;
  scale: 1.4;
  position: absolute;
}

.graphic-text {
  position: relative;
  display: inline-block;
}

.graphic-text-img {
  position: absolute;
  right: -60px;
  top: 0px;
}

.product-item-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 156px;
}

.product-item-content .description {
  padding-left: 60px;
  height: 71%;
  display: flex;
  flex-direction: column;
}

.product-item-content .description h1 {
  font-size: 40px;
}

.product-item-content .description p {
  font-size: 24px;
  line-height: 40px;
  color: #475467;
}

.product-item-action {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-speak,
.product-teckie,
.product-school-platform {
  width: var(--content-width);
  margin: auto;
  background-color: #ffd7c9;
  border-radius: 20px;
}

.product-teckie {
  background-color: #d6e7ff;
}

.product-explore {
  background-color: #fee5ac;
}

.product-school-platform {
  background-color: #e1d8fa;
}

.product-item-content .graphic img {
  transform: scale(1.3);
}

.school-carousel {
  text-align: center;
}

.school-carousel .title h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
}

.school-carousel .title {
  margin-bottom: 48px;
}

/* .owl-carousel {
  height: 200px;
} */

/* .school-carousel .owl-carousel-s .owl-carousel-item-s {
  height: 140px;
  padding: 5px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  margin: 8px 8px;
}

.school-carousel .owl-carousel-s .owl-carousel-item-s img {
  height: 100%;
  width: auto;
}

.school-carousel .owl-carousel .owl-carousel-item {
  height: 140px;
  padding: 5px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  margin: 8px 8px;
} */

/* EXPERIMENT */
.school-carousel .owl-carousel-item img {
  height: 100%;
  width: auto;
}

.school-carousel .owl-carousel-item {
  height: 140px;
  padding: 5px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  margin: 8px 8px;
}

.school-carousel .owl-carousel-item img {
  height: 100%;
  width: auto;
}

.slick-slide {
  margin: 0;
  padding: 0;
}

.app-review {
  margin-top: 80px;
  position: relative;
}

.app-review .heading {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  width: var(--content-width);
  margin: auto;
  margin-bottom: 70px;
}

.app-review .heading h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
}

.app-review .download-details .downloads {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.app-review .download-details .downloads .figure-box {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.app-review .download-details .downloads .figure {
  position: absolute;
  right: 10px;
  top: 20px;
}

.app-review .download-details .downloads .figure h1 {
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;

  color: #027a48;
}

.app-review .download-details .downloads .figure h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #344054;
}

.app-review .app-rating {
  width: var(--content-width);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 18px;
}

.app-review .app-rating .app-rating-item {
  background: #ffffff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 36px 24px;
  margin-bottom: 20px;
}

.app-review .app-rating-desc {
  margin-top: 18px;
}

.app-review .app-rating-desc p {
  color: rgba(0, 0, 0, 0.6);
}

.app-review .app-rating .rating {
  display: flex;
  margin-top: 24px;
}

.app-review .overlay-mask {
  position: absolute;
  height: 230px;
  bottom: 0;
  width: 100%;
  background: linear-gradient(
    0deg,
    #ffffff 24.55%,
    rgba(255, 255, 255, 0) 100%
  );
}

.home-hero-section {
  text-align: center;
}

.home-hero-container .description {
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
}
.hero-title {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.hero-title h1 {
  font-size: 44px;
}

.home-hero-container {
  text-align: center;
  position: relative;
}

.home-success-text {
  position: relative;
}

.home-hero-container p {
  font-size: 26px;
  color: #4f4f4f;
}

.home-hero-container h1 {
  font-weight: 600;
  font-size: 44px;
  line-height: 55px;
}

.hero-home-main .crown {
  top: -23px;
  right: 20%;
}

.home-hero-container button {
  margin-top: 50px;
}

.home-hero-container .home-success-text {
  margin-left: 7px;
}

.home-hero-container .home-success-text .curly-arrow {
  position: absolute;
  right: 145px;
  bottom: -132px;
}

.home-hero-container .home-success-text .crown {
  right: 22px;
  top: -25px;
}

.app-rating .user-details {
  display: flex;
  align-items: center;
}

.app-rating .user-details img {
  margin-right: 10px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

/* Hero Section with left Description and Right image */
.hero-container {
  display: grid;
  grid-template-columns: 2.5fr 2fr;
  height: 100%;
}

.hero-container .hero-description {
  /* width: 70%; */
  display: flex;
  /* justify-content: flex-end; */
  align-items: center;
  margin-left: 19%;
  margin-right: 64px;
}

.home-hero .hero-description .hero-container .hero-description h1 {
  margin-bottom: 16px;
}

.teckie-hero .hero-description {
  /* width: 100%;
  margin-left: -6px; */
}

.teckie-hero .hero-description-box {
  width: 78%;
}

.hero-action {
  margin-top: 44px;
}

/* PARTNERWith us */

.partner-with-us-container {
  margin-top: 85px;
}

.partner-page-block {
  margin-bottom: 164px;
  width: 80%;
  margin: auto;
  margin-bottom: 140px;
}

.partner-page-block .image-div {
  display: flex;
}

.partner-text-with-background {
  background-color: #e3dafb;
  padding: 10px 10px 10px 10px;
  border-radius: 10px;
  margin-left: -10px;
}

.partner-page-block .image-div img {
  margin: auto;
  width: 100%;
}

.partner-page-block .content-div .title h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 32px;
}

.partner-page-block .content-div .sub-title h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: #4b17d5;
}

.partner-page-block .content-div {
  width: 70%;
}

.right-aligned-partner .content-div {
  margin-left: auto;
}

.partner-page-block .content-div p,
.partner-page-block .content-div h4 {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #475467;
  margin-top: 30px;
}

.partner-page-block .content-div h4 {
  color: #34383d;
}

.partner-page-block .content-div .content-with-grapic .color-text {
  color: #005edf;
}

/* .partner-page-block .content-div .block-1 {
  background-image: url("../images/partner-text-bg1.svg");
  background-repeat: no-repeat;
} */

.partner-page-block .content-div .content-with-grapic {
  position: relative;
  margin-top: 13px;
}

.partner-page-block .content-div .block-1 .background-image img {
  transform: scale(1.1);
}

.content-with-grapic .cloud-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.partner-page-block .content-div .block-1 .arrow {
  position: absolute;
  top: 61%;
  right: 25%;
}

.partner-page-block .content-div .block-2 .background-image img {
  transform: scale(1.3);
}

.partner-page-block .content-div .block-3 .background-image img {
  transform: scale(1.1);
}

.partner-page-block .content-div .with-content-left .background-image {
  display: flex;
  justify-content: center;
}

.partner-page-block .content-div .block-2 .arrow {
  position: absolute;
  top: 87%;
  right: 4%;
}

.partner-page-block .content-div .block-3 .arrow {
  position: absolute;
  top: 75%;
  right: 24%;
}

.partner-page-block .content-div .text-11 {
  font-family: "Kalam", cursive;
  color: #039855;
  font-weight: 700;
  font-size: 36px;
  line-height: 24px;
  margin-bottom: 16px;
}

.partner-page-block .content-div .block-4 .arrow {
  position: absolute;
  top: 52%;
  right: 24%;
}

.partner-page-block .content-div .content .bold {
  font-weight: bolder;
}

.partner-page-block .content-div .content ul li {
  list-style-type: disc;
  margin-left: 20px;
  color: #475467;
}

.partner-page-block .content-div .block-4 .background-image img {
  transform: scale(1.2);
}

.partner-with-us-container:first-child {
  margin-top: 200px;
}

.terms-page {
  margin-bottom: 270px;
}

.terms-page .top-section .title {
  position: absolute;
  left: 20%;
  top: 57%;
}

.terms-page .top-section .background {
  position: relative;
}

.terms-page .top-section {
  margin-top: -120px;
}

.terms-header {
  background-color: transparent;
}

.terms-page .terms-content {
  width: 80%;
  margin: auto;
  margin-top: 80px;
}

.terms-page .terms-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #667085;
  margin-bottom: 30px;
}

.terms-page .terms-content h1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 30px;
  margin-top: 72px;
}

.terms-page .terms-content .subheading {
  margin-top: 20px;
}

.terms-page .terms-content ul li {
  list-style-type: disc;
  margin-left: 20px;
  color: #475467;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #667085;
  /* margin-bottom: 100px; */
}

.text-with-image {
  position: relative;
}

.about .top {
  text-align: center;
  padding: 80px 0px;
}

.text-with-image img {
  position: absolute;
}

.about .top .text-with-image img {
  top: 14px;
  left: -20px;
}

.about .top .heading {
  margin-bottom: 30px;
}

.about .top h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
}

.about p {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #475467;
}

.primary-colo-text {
  color: #4b17d5;
}

.about-uolo {
  margin-bottom: 126px;
}

.about-uolo h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 32px;
  margin-bottom: 24px;
}

.about-uolo .divide-2 {
  width: var(--content-width);
  margin: auto;
}

.about-uolo .divide-2 .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.about-uolo .graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about .our-mission .text-with-image img {
  top: -70%;
  right: -12%;
}

.about .our-mission {
  width: var(--content-width);
  margin: auto;
  text-align: center;
}

.about .our-mission .content {
  padding: 85px;
  margin: 100px;
  background: #f1ecfd;
  border-radius: 24px;
}

.aboutus-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0px 100px 0px;
}

.aboutus-hero img {
  max-width: 90%;
}

.leader-box {
  background: url("/images/leader-bg.svg"),
    linear-gradient(180deg, #fff5de 0%, #ffe6ae 100%);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  padding: 80px 0px;
}

.leader-header {
  margin: auto;
  text-align: center;
  margin-bottom: 34px;
}

.leader-header h2 {
  color: #000;
  text-align: center;
  font-family: Outfit;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 70% */
}

.leader-items {
  display: flex;
  justify-content: center;
  gap: 100px;
}

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

.leader-item .leader-img {
  width: 240px;
}

.leader-item .leader-name {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 160%;
  margin-top: 23px;
}

.leader-item .leader-position {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}

.leader-item .leader-edu {
  color: #000;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 160%;
}

.leader-item .leader-linkedin {
  margin-top: 6px;
  cursor: pointer;
}

.leader-item .leader-linkedin img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.about .our-mission .content h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 28px;
  margin-bottom: 16px;
}

.demo-header {
  background-color: transparent;
}

.demo-menus {
  display: none;
}

.demo .demo-book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* padding: px 0px; */
  margin-top: -100px;
}

.demo .demo-book .description {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
}

.demo .form-content {
  background: #ffffff;
  box-shadow: 0px 4px 36px rgba(0, 0, 0, 0.16);
  border-radius: 24px;
  width: 55%;
  margin: auto;
  /* padding: 50px; */
  position: absolute;
  top: 15%;
  text-align: left;
}

.demo .demo-book .form-box {
  position: relative;
  text-align: right;
}

.demo .demo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 200px;
  margin-left: 20%;
}

.demo .demo-title .demo-star {
  top: -16%;
  right: 3%;
}

.demo .demo-title h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
}

.demo-form .form-box {
  min-height: 840px;
}

.demo-form .form-box img {
  width: 100%;
}

.demo .need-help {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: #fef0ce;
  border-radius: 24px;
  width: var(--content-width);
  margin: auto;
  margin-bottom: 70px;
}

.demo .need-help h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 24px;
}

.demo .need-help .detail-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.demo .need-help .detail-box .details {
  display: grid;
  grid-template-columns: 2fr 0fr 2fr 1fr;
}

.demo .need-help .detail-box .details p {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #475467;
}

.demo .need-help .detail-box .address-details p {
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #475467;
}

.demo .need-help .detail-box .address-details {
  margin-top: 16px;
}

.demo .need-help .detail-box .address-details h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
  color: #4315c0;
}

.demo .need-help .detail-box h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 24px;
  margin-bottom: 30px;
}

.demo .need-help .detail-box .details h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 32px;
  color: #4315c0;
}

.demo .need-help .graphic-box {
  display: flex;
  justify-content: center;
}

.demo .need-help .graphic-box img {
  transform: scale(1.2) translateY(-16px);
}

.demo .need-help .detail-box .details .helpline {
  margin-left: 40px;
}

.speak-data h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
}

.speak-data-container {
  margin: 55px 0px;
}

.aware-data-container {
  margin-top: 0px;
}

.explore-data-container {
  margin-top: 0px;
}

.speak-data-box {
  margin-top: 0px;
}

.tekie-data-container {
  margin-top: 2px;
  margin-bottom: 0px;
}

.speak-data {
  padding: 70px 0px;
  position: relative;
  width: 61%;
  margin: auto;
  max-width: 995px;
  padding-top: 55px;
}

.imagine-data-box {
  margin-top: 0px;
}

.speak-data .left {
  position: absolute;
  /* left: -75px; */
  left: -58px;
  top: 34%;
}

.speak-data .right {
  position: absolute;
  right: -40px;
  top: 34%;
}

.speak-data .bottom {
  position: absolute;
  right: 45%;
  top: 80%;
}

.speak-data-box .bottom {
  right: 38%;
}

.speak-data .home-text-graphic {
  top: -18px;
  left: 0;
}
/* 
.speak-data img {
  height: 100px;
} */

.how-speak-works {
  width: 70%;
  margin: auto;
}

.video-box {
  width: 100%;
  height: 500px;
  /* background-repeat: no-repeat; */
  /* background-size: cover; */
  /* background-position: center center; */
  /* border: 1px solid #e5e5e5; */
  /* border-radius: 10px; */
  /* margin-top: 35px; */
}

.video-tag {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.how-speak-works {
  margin-bottom: 100px;
  padding-top: 57px;
}

.how-speak-works .title {
  text-align: center;
  margin-bottom: 60px;
}

.how-speak-works .title h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
}

.how-speak-works .title .home-text-graphic {
  left: 0;
  bottom: -10px;
}

.how-speak-works .text-with-image .drop-down-arrow {
  left: 40%;
  bottom: -35px;
}

.speak-hero {
  background-image: url("../images/speak-hero-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.aware-hero {
  /* background-image: url("../images/hero-bg-manage.svg"); */
  background-image: url("../images/all-products-bg.jpg");

  background-repeat: no-repeat;
  background-size: cover;
}

.teckie-hero {
  background-image: url("../images/hero-teckie.svg");
}

.home-hero {
  background-image: url("../images/hero-home-bg.svg");
  min-height: 600px;
}

.home-hero .hero-container .desc {
  margin-top: 24px;
}

.explore-hero {
  background-image: url("../images/explore-hero.svg");
}

.imagine-hero {
  background-image: url("../images/imagine-hero-bg.svg");
}

.manage-hero {
  background-image: url("../images/hero-bg-manage.svg");
}

.speak-hero .hero-container .home-text-graphic {
  top: -27px;
  right: -42px;
}

.speak-hero .hero-container .index-banner-icon {
  right: 19px;
}

.speak-hero .hero-image img {
  width: 100%;
}

.manage-hero .hero-image img {
  width: 100%;
}

.speak-hero .hero-container h1 {
  font-weight: 600;
  font-size: 32px;
}

.speak-hero .hero-container p {
  font-weight: 500;
  font-size: 22px;
  line-height: 28px;

  color: #4f4f4f;

  font-family: Outfit;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.all-products-hero .hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-right: 100px; */
}

.speak-hero .hero-image {
  position: relative;
  text-align: right;
}

.speak-hero .hero-action-video {
  position: absolute;
  bottom: 59px;
  right: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coding-text {
  color: #00ade6;
}

.speak-tab .home-text-graphic {
  top: -25px;
  left: 34px;
}

.tab-container {
  text-align: center;
  width: var(--content-width);
  margin: auto;
  max-width: 1128px;
}

.tab-container .tab-content .title {
  margin-bottom: 50px;
  margin-top: 75px;
}
.tab-container .tab-content .title h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
}

.tab-heading {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.tab-heading-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0px;
  height: 124px;
  position: relative;
  cursor: pointer;
  font-size: 18px;
}

.tab-heading-item .tab-arrow {
  position: absolute;
  bottom: 0;
  right: 41%;
  display: none;
}

.show-tab-arrow {
  display: block !important;
}

.active-tab {
  background: #ffbca3;
  border-radius: 8px 8px 0px 0px;
  font-size: 20px !important;
}

.tab-heading-content {
  padding: 15px 0px;
  width: 100%;

  height: 74px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #475467;
}
.border-heading {
  border-left: 2px solid #bebebe;
}

.first-tab {
  border-left: none;
}

.active-tab > .tab-heading-content {
  border-left: none;
  color: #101828;
  font-weight: 500;
}

.tab-content {
  min-height: 500px;
}

.tab-content-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.active-tab-content {
  /* background-image: url("../images/slide-background-speak.svg"); */
  background-color: #ffe8df;
  display: none;
  color: #475467;
  border-radius: 16px;
}

.show-tab-content {
  display: block;
}

.active-tab-content .divide-2 {
  min-height: 590px;
}

.speak-tab-container,
.manage-tab-container,
.teckie-tab {
  margin-bottom: 50px;
}

.explore-tab-container {
  margin-bottom: 0px;
}

.speak-tab-container {
  margin-bottom: 40px;
}

.explore-heading {
  color: #101828;
}

.tab-content-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-content-right img {
  width: 81%;
}

.explore-logo-enhancement {
  margin: 40px;
  margin-left: 120px;
  transform: scale(1.3);
}

.graphic-explore-card {
  transform: scale(1.5) !important;
}

.explore-gif {
  width: 100%;
}

.tab-content-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  width: 89%;
  margin-left: auto;
  text-align: left;
}

.tab-content-box h1 {
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 25px;
}

.tab-content-box h2 {
  font-weight: 500;
  font-size: 26px;
  line-height: 33px;
}

.tab-content-box p {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #344054;
}

.tab-content-box .checked-tab-content {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #1d2939;
  /* display: flex;
  align-items: center; */
}

.tab-content-box span {
  margin-top: 50px;
}

.speak-tab-container .active-tab-content {
  /* background-image: url("../images/speak-tab-bg.svg"); */
  background-color: #ded0fe;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 16px;
}

.imagine-tab .active-tab-content {
  background-color: var(--Imagine-300, #fed2c1);
  /* background-image: url("../images/imagine-tab-card-bg.svg"); */
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 16px;
}

.manage-tab-container .active-tab-content {
  /* background-image: url("../images/slide-background-speak.svg"); */
  background-color: #e2dafa;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 16px;
}

.teckie-tab .active-tab-content {
  /* background-image: url("../images/teckie-tabs-bg.svg"); */
  background-color: #e2dafa;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 16px;
}

.explore-tab-container .active-tab-content {
  /* background-image: url("../images/explore-tab-bg.svg"); */
  background-color: #fee5ac;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 16px;
}

.aware-tab .active-tab-content {
  /* background-image: url("../images/aware-tab-bg.svg"); */

  background-color: #aae3df;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 16px;
  background-position: top;
}

.imagine-tab .active-tab {
  border-radius: 8px 8px 0px 0px;
  background: var(--Imagine-200, #ffe8db);
}

.aware-tab .active-tab {
  border-radius: 8px 8px 0px 0px;
  background: var(--Imagine-200, #f0faf9);
}

.manage-tab-container .active-tab {
  background: #c6b3f7;
  border-radius: 8px 8px 0px 0px;
}

.speak-tab-container .active-tab {
  background: #f2ecfe;
  border-radius: 8px 8px 0px 0px;
}

.teckie-tab .active-tab {
  background: #c6b3f7;
  border-radius: 8px 8px 0px 0px;
}

.explore-tab-container .active-tab {
  background: #fdd270;
  border-radius: 8px 8px 0px 0px;
}

.checked-tab-content-box {
  display: flex;
  align-items: flex-start;
}

.checked-tab-content-box img {
  margin-top: 2px;
  margin-right: 10px;
}

.checked-tab-content {
  /* display: flex;
  align-items: flex-start; */
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #1d2939;
}

.checked-tab-content img {
  margin-right: 10px;
}

.tab-content .divide-2 {
  grid-template-columns: 3fr 2fr;
}

.manage-partner .title {
  text-align: center;
}

.manage-partner .title h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
}

.we-do {
  width: var(--content-width);
  margin: auto;
  margin-top: 100px;
  max-width: 1128px;
}

.we-do .row-wrap-item-content {
  height: 220px;
  width: 70%;
  display: grid;
  grid-template-columns: 0.6fr 2fr;
  margin: 0px 50px;
  border: 3px solid #ffbca3;
  border-radius: 20px;
  padding: 10px;
  background: white;
}

.we-do .row-wrap-item-content img {
  transform: translate(-100px, 0px);
}

.we-do .title {
  position: relative;
  text-align: center;
  margin-top: 50px;
}

.we-do .title h1 {
  font-weight: 600;
  font-size: 32px;
  line-height: 52px;
}

.we-do.title.icon {
  position: absolute;
}

.school-videos {
  width: var(--content-width);
  margin: auto;
  margin-bottom: 120px;
}

.school-videos .title {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 50px;
}

.school-videos .title h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
}

.school-videos .title p {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #475467;
}

.school-videos .home-text-graphic {
  top: -24px;
  left: -24px;
}

.school-videos-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 20px;
}

.school-videos-item {
  border: 1px solid #000000;
  border-radius: 12px;
}

.school-videos-content .video-description {
  padding: 20px;
}

.school-videos-content .video-description h2 {
  font-weight: 600;
  font-size: 22px;
  line-height: 36px;
}

.school-videos-content .video-description p {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #475467;
}

.teckie-hero .hero-container .icon-1 {
  top: -15px;
  right: 68px;
}

.teckie-hero .hero-container .icon-2 {
  top: 12px;
  left: -5px;
}

.teckie-hero .hero-container .icon-3 {
  top: 12px;
  right: -22px;
}

.teckie-hero .hero-container .coding {
  margin-left: 21px;
}

.teckie-hero .hero-image img {
  width: 100%;
}

/* REMOVE */
.testimonial {
  width: var(--content-width);
  margin: auto;
  margin-top: 70px;
}
/* REMOVE */

.testimonial .title {
  text-align: center;
  margin-bottom: 70px;
}
/* REMOVE */

.testimonial .title h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
}
/* REMOVE */

.testimonial-item {
  border: 2px solid #d0d5dd;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr 4fr;
  margin-bottom: 90px;
}
/* REMOVE */

.testimonial-item .profile img {
  width: 100%;
}
/* REMOVE */

.testimonial-item .testimonial-content p {
  font-weight: 400;
  font-size: 24px;
  color: #101828;
}
/* REMOVE */

.testimonial-item .school-name {
  font-weight: 600;
}
/* REMOVE */

.testimonial-item .testimonial-desc {
  padding: 44px 44px 0px 0px;
  position: relative;
}
/* REMOVE */

.testimonial-item .testimonial-desc .double-quote {
  position: absolute;
  top: -43px;
  left: -11px;
}
/* REMOVE */

.testimonial-name {
  display: flex;
  justify-content: space-between;
}
/* REMOVE */

.testimonial-name .school-logo img {
  width: 100%;
}
/* REMOVE */

.testimonial-name .name-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* REMOVE */

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* MODAL */
.modal-container {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  padding: 30px;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s linear 0.1s, opacity 0.3s ease;
}

.open-modal {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 21;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-box {
  position: relative;
  z-index: 22;
  width: 80%;
  height: 70vh;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}

.modal-action {
  padding: 10px 20px 0px 20px;
  display: flex;
  justify-content: flex-end;
}

.modal-close {
  border: 2px solid #5a39d6;
  border-radius: 30px;
  display: inline-block;
  padding: 8px 10px;
  width: 14px;
  height: 20px;
  cursor: pointer;
}

.modal-content {
  padding: 0px 30px 30px 30px;
  height: 100%;
}

.modal-trigger {
  cursor: pointer;
}

.input-error {
  color: red;
  font-size: 12px;
  display: none;
}

.show-error {
  display: inline-block;
}

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

.form-success-box,
.actual-form {
  padding: 50px;
  min-height: 300px;
}

.show {
  display: block;
}

.hide {
  display: none;
}

.form-success-box {
  background: #ecfdf3;
  margin: 36px;
}

.form-success-box .form-success .success-desc {
  margin: auto;
  margin-bottom: 80px;
  margin-top: 50px;
  width: 90%;
  text-align: center;
}

.form-success-box .form-success p {
  font-weight: 400;
  font-size: 16px;

  color: #475467;
}

.form-success-box .form-success a {
  color: #4315c0;
}

.teckie-hero-image .btn-with-image {
  display: flex;
}

.school-revolution {
  width: 59px;
  height: 80px;
  top: 49px;
  right: -8% !important;
}

.show-desktop {
  display: block;
}

.show-mobile {
  display: none;
}
/* REMOVE */

.testimonial-review {
  margin-top: 200px;
}

.testimonial-review-container {
  /* width: var(--content-width);
  margin: auto; */
}

.rotate-explore-l {
  margin-left: 35px;
  transform: rotate(0);
}
/* REMOVE */

.testimonial-review-carousel {
  height: 100%;
  display: flex;
  padding: 55px 0px;
}
/* REMOVE */

.testimonial-review-carousel .owl-item {
  padding: 50px 0px;
}
/* REMOVE */

.testimonial-review-carousel
  .owl-stage
  .center
  > .testimonial-review-carousel-item {
  background: #f8f5fe;
}
/* REMOVE */

.testimonial-review-carousel .owl-dots .owl-dot span {
  width: 16px;
}
/* REMOVE */

.testimonial-review-carousel .owl-dots .active span {
  background-color: #4b17d5 !important;
  width: 32px;
}
/* REMOVE */

.testimonial-review-carousel-item {
  position: relative;
  border: 2px solid #c6b3f7;
  border-radius: 16px;
  text-align: center;
  padding: 64px 0px;
  max-width: 70vw;

  margin: auto;
  margin: 0px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* REMOVE */

.testimonial-review-carousel-item .quote-image {
  position: absolute;
  top: -9%;
  left: 48%;
}
/* REMOVE */

.testimonial-review-carousel-item .platform-type {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  font-family: "Kalam";
  font-style: normal;
  color: #b23891;
}
/* REMOVE */

.testimonial-review-carousel-item .reviewer-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
}
/* REMOVE */

.testimonial-review-carousel-item p {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #475467;
}
/* REMOVE */

.testimonial-review-carousel-item .test-review-text {
  width: 50%;
  margin: auto;
}

.learning-products-testimonial .testimonial-review-heading h1 {
  font-size: 32px;
}

.testimonial-review-heading p {
  color: var(--Grey-600, #475467);
  text-align: center;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 133.333%*/
  padding: 0px 10px;
}

.near-footer-request-demo {
  margin-top: 50px;
}

.video-tag-hero {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.mobile-sticker-section {
  width: 100%;
  height: 80px;
  margin: 30px 0px;
}

.mobile-sticker-tekie {
  border-radius: 70px 0px 0px 70px;
  background: #92e8ff;
  position: relative;
  left: 45%;
  height: 100%;
  width: 45%;
  display: flex;
  align-items: center;
  padding-left: 10%;
}

.mobile-sticker-speak {
  border-radius: 70px 0px 0px 70px;
  background: #ffdd88;
  position: relative;
  left: 45%;
  height: 100%;
  width: 45%;
  display: flex;
  align-items: center;
  padding-left: 10%;
}

.sticker-img {
  height: 40%;
}

.brochure-title-section {
  width: 100%;
  height: fit-content;
  margin: 30px 0px;
}

.brochure-title {
  width: 100%;
  height: fit-content;
  font-family: Outfit;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: center;
}

.brochure-video-tekie {
  width: 80%;
  margin: auto;
  padding: 4%;

  @media (max-width: 767.98px) {
    background: #dbf7ff;
    border-radius: 24px;
  }
}
.brochure-video-speak {
  width: 80%;
  margin: auto;
  padding: 4%;

  @media (max-width: 767.98px) {
    background: #ffefc7;
    border-radius: 24px;
  }
}

.brochure-video-disc-2 {
  font-family: Outfit;
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: center;
}

.brochure-video-disc-1 {
  font-family: Outfit;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 20px;
}

.tekie-brochure {
  width: 100%;
}

.tekie-brochure-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 560px;
}

.brochure-tekie-disc {
  font-family: Outfit;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: 0em;
  text-align: center;
  color: #ffffff;
}

.mobile-view {
  display: none;
  @media (max-width: 767.98px) {
    display: grid;
  }
}

/* new css */
.products-box {
  width: var(--content-width);
  margin: auto;
  border-radius: 24px;
  background: #eff6ff;
  padding: 32px 32px;
  height: 366px;
  margin-bottom: 203px;
  max-width: 1064px;
}

.products-box .head {
  display: flex;
  justify-content: space-between;
  padding: 0px 32px;
}

.products-box .head .title {
  color: var(--Grey-600, #475467);
  font-family: Outfit;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.products-box .splide__pagination {
  bottom: -3.5em;
}

#school-management-items .splide__pagination {
  bottom: -4em;
}

#learning-products-items .splide__pagination {
  bottom: -3em;
}

.products-box .head .action-btn {
  color: var(--Primary-600, #561fe7);
  font-feature-settings: "clig" off, "liga" off;
  /* Heading 6/medium */
  font-family: Outfit;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.15px;
}

.products-wrap-box {
  padding: 16px 17px 15px 16px;
  border-radius: 16px;
  border: 1px solid var(--Grey-300, #d0d5dd);
  background: #fff;
  box-shadow: 0px 4px 0px 0px #d0d5dd;
  margin-top: 31px;
}

.products-wrap {
  display: flex;
  justify-content: stretch;
  /* align-items: stretch; */

  gap: 15px;
  /* flex-shrink: 0; */

  /* width: 98% !important; */
  /* width: 1064px !important; */
  /* margin-left: auto;
  margin-right: auto; */
  width: 100%;
}

.products-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 17px;
  gap: 15px;
  width: 194px;
  background-color: white;
  font-size: 14px;
  transition: background-color 0.3s ease;
  /* margin-right: 14px; */
}

/* .uolo_products{
  height: ;
} */

/* OVER-ride owl  */
.products-item {
  height: 90%;
}

.products-wrap .owl-stage {
  display: flex;
  align-items: stretch;
}

.products-item .tekie-icon,
.products-item .speak-icon,
.products-item .imagine-icon {
  width: 97px;
  height: 90px;
  padding: 42px 0px 36px 0px;
}

.products-wrap .products-item-name {
  color: #000;
  text-align: center;
  font-family: Outfit;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.products-item .desc {
  color: var(--Grey-700, #344054);
  text-align: center;
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  flex-grow: 1;
}

.products-item .action {
  color: var(--Primary-600, #561fe7);
  text-align: center;
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.products-wrap .tekie {
  border-radius: 20px;
  background: #e5f0ff;
}

.products-wrap .speak {
  border-radius: 20px;
  background: #f2ecfe;
}

.products-wrap .imagine {
  border-radius: 20px;
  background: #fff0ea;
}

.products-wrap .explore {
  border-radius: 20px;
  background: #fff7e3;
}

.products-wrap .aware {
  border-radius: 20px;
  background: #f0faf9;
}

/* School management */

.school-management-card {
  width: var(--content-width);
  margin: auto;
  border-radius: 24px;
  background: #f1ecfd;
  padding: 32px;
  height: 366px;
  margin-bottom: 58px;
  max-width: 1064px;
}

.school-management-card .head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 47px;
}

.school-management-card .head .title {
  color: var(--Grey-600, #475467);
  font-family: Outfit;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.school-management-card .head .action-btn {
  color: var(--Primary-600, #561fe7);
  font-feature-settings: "clig" off, "liga" off;
  /* Heading 6/medium */
  font-family: Outfit;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.15px;
}

.school-management-card-wrap {
  /* display: flex; */
  padding: 16px 17px 15px 16px;
  /* justify-content: center; */
  /* align-items: stretch; */
  /* gap: 15px; */
  /* flex-shrink: 0; */
  border-radius: 16px;
  /* border: 1px solid var(--Grey-300, #d0d5dd); */
  /* background: #fff; */
  /* box-shadow: 0px 4px 0px 0px #d0d5dd; */
  margin-top: 31px;
}

.school-management-card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 25%;
  padding: 17px 30px 17px 30px;
  gap: 15px;
  border-radius: 20px;
  border: 1px solid var(--Blue-200, #99c4ff);
  background: #fff;
  width: 192px;
}

.school-management-card-item .item-name {
  color: #000;

  text-align: center;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.school-management-card-item .desc {
  color: var(--Grey-700, #344054);
  text-align: center;
  font-family: Outfit;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 47px;
}

.school-management-card-item .icon {
  padding: 28px 0px 36px 0px;
}

.school-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 98px;
  margin-top: -10px;
}

.school-stats-item {
  border-radius: 24px;
  border: 3px solid #e3dafb;
  background: #fff;
  display: flex;
  width: 250px;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.school-stats-item .count {
  color: #7e53ed;
  text-align: center;
  font-family: Outfit;
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.school-stats-item .desc {
  color: #000;
  text-align: center;
  font-family: Outfit;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* AWARD START */
.award {
  width: var(--content-width);
  margin: auto;
  margin-top: 115px;
}

.award-content {
  display: flex;
  border-radius: 150px;
  background-color: #f1ecfd;
}

.award-content .left {
  height: 305px;
  width: 305px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #9437ff;
}

.award-content .left .icon {
  width: 92.075px;
  height: 116.95px;
}

.award-content .left .text {
  color: #fff;
  font-family: Outfit;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.award-content .center {
  flex-grow: 1;
}

.award-content .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 102px;
  padding-left: 72px;
  border-left: 1px dashed grey;
  height: fit-content;
  margin-top: auto;
  margin-bottom: auto;
}

.award-content .right .top-img {
  width: 125.301px;
  height: 96.926px;
}

.award-content .right .mid-img {
  width: 170.287px;
  height: 94.517px;
}

.award-content .right .text {
  color: var(--Primary-600, #561fe7);
  font-family: Outfit;
  font-size: 33.849px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

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

.award-content .center .holon {
  width: 170.807px;
  height: 33.879px;
  margin-bottom: 28px;
}

.award-content .center .text {
  color: var(--Grey-800, #1d2939);
  font-family: Outfit;
  font-size: 24.04px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}

.award-content .center .text-container {
  margin-bottom: 39px;
}

.award-content .center .dates-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 68px;
}

.award-content .center .dates-container .year {
  color: var(--Primary-600, #561fe7);
  font-family: Outfit;
  font-size: 33.849px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* AWARD END */

/* ENDORSEMENT */

.testimonial-review-heading {
  text-align: center;
}

.testimonial-review-heading h1 {
  font-weight: 500;
  font-size: 40px;
  line-height: 52px;
  color: #101828;
  position: relative;
}

.endorsement-subheading {
  color: #475467;
  text-align: center;
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 133.333% */
}
.testimonial-review-heading .text-with-image {
  position: unset;
}

.testimonial-review-heading .img {
  top: -19px;
}

.endorsement {
  /* width: var(--content-width); */
  margin: auto;
  margin-top: 120px;
  margin-bottom: 160px;
  /* overflow-x: hidden; */
}
.endorsement-content {
  /* display: flex; */
  /* flex-wrap: nowrap; */
  /* white-space: nowrap; */
  /* overflow-x: auto; */
  /* justify-content: space-between; */
  /* gap: 32px; */
  margin-top: 60px;
  height: 560px;
}

.endorsement-content .item {
  width: 363px;
  border-radius: 20px;
  border: 1px solid var(--Grey-400, #98a2b3);
  padding-left: 23.5px;
  padding-right: 23.5px;
  height: 504px;
  overflow: hidden;
  /* margin: 0px 16px; */

  display: flex;
  flex-direction: column;
}

.endorsement-first-item {
  margin-left: 80px !important;
}

.endorsement-last-item {
  margin-right: 30px !important;
}

.endorsement-content .item .platform {
  color: #893df6;
  font-family: "Baloo 2";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;

  margin-bottom: 22px;
  padding-top: 49px;
  padding-bottom: 22px;
}

.endorsement-content .item .desc {
  color: var(--Grey-700, #344054);
  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  width: inherit;
  flex-grow: 1;
}

.endorsement-content .item .designation {
  display: grid;
  grid-template-columns: 0.7fr 0.3fr;
}

.endorsement-content .item .designation .name {
  color: #000;

  font-family: Outfit;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 111.111% */
}

.endorsement-content .item .designation .details {
  padding-bottom: 49px;
}

.endorsement-content .item .designation .grey-text {
  color: var(--Grey-600, #475467);
  font-family: Outfit;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.endorsement-content .item .designation .image {
  position: relative;
}

.endorsement-content .item .designation img {
  width: 100%;
  scale: 2.5;
  margin-right: 32px;
  position: absolute;

  /* top: -184px; */
  right: 26px;
  bottom: 58px;
}

.tekie-endorsement {
  margin-bottom: 90px;
  margin-top: 60px;
}

.manage-endorsement {
  margin-bottom: 90px;
}

.speak-endorsement {
  margin-top: 8px;
  margin-bottom: 80px;
}

/* ENDORSEMENT END */

/* NEW MEMU */
.menu-item {
  display: flex;
  align-items: center;
  padding: 16px 0px;
  border-bottom: 1px solid var(--Grey-300, #d0d5dd) !important;
}

.popular-courses-menu-container {
  /* border-right: 1px solid var(--Grey-300, #d0d5dd); */
}

.menu-item-main {
  padding: 0;
  padding: 8px 0px;
  border-bottom: none !important;
}

.menu-item:last-of-type {
  border-bottom: none;
}

.menu-container {
  padding: 0px 16px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5px;
}

.collapsed-content {
  display: grid;
  grid-template-columns: 1px 1fr 1px 1fr;
  height: 100%;
  gap: 8px;
}

.collapsed-main-menu {
  height: 95%;
}

.menu-item .left-icon img {
  /* width: 40px;
  height: 40px; */
  width: 75%;
}

.display-none {
  display: none;
}

.learning-products {
  color: var(--Primary-600, #561fe7);
  font-feature-settings: "clig" off, "liga" off;
  /* Heading 6/medium */
  font-family: Outfit;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.15px;
  margin-left: 22px;
}

.menu-item .center .name {
  color: var(--Grey-700, #344054);
  font-feature-settings: "clig" off, "liga" off;
  /* font-family: "Open Sans"; */
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.5px;
}

.menu-item .center {
  margin-left: 12px;
  margin-right: 12px;
  flex-grow: 1;
  word-wrap: break-word;
}

.menu-item .left-icon {
  display: flex;
  align-items: flex-end;
  min-width: 105px;
  min-height: 102px;
  max-height: 102px;
  border-radius: var(--Size-Small, 16px);
  background: #e6f7fd;
  position: relative;
  justify-content: center;
  max-width: 105px;
}

.popular-subjects-menu {
  border-bottom: none !important;
}

.menu-item .right {
  display: flex;
  align-items: flex-start;
}

.menu-item .center .desc {
  color: var(--Grey-700, #344054);
  font-feature-settings: "clig" off, "liga" off;
  /* font-family: "Open Sans"; */
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.5px;

  margin-top: 8px;
}
/* NEW MENU END */

/* LEARNING PRODUCTS */

.learning-products-content {
  display: flex;
  /* gap: 30px; */
  overflow-x: auto;
  height: 620px;
  width: var(--content-width);
}
.all-products-hero {
  /* background-image: url("/images/learning-products-bg.svg"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  height: 550px;
}

.all-products-hero-new h1 {
  font-size: 40px;
  width: 49%;
  margin-left: auto;
  margin-right: auto;
}

.learning-products-item {
  width: 315px;
  height: 515px;

  border-radius: 20px;

  padding: 24px;

  display: flex;
  flex-direction: column;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.learning-products-item .heading {
  color: #000;
  font-family: Outfit;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.learning-products-item .desc {
  color: var(--Grey-600, #475467);
  font-family: Outfit;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 136.364% */

  margin-top: 25px;
  min-height: 88px;
}

.learning-products-item .img {
  flex-grow: 1;
  display: flex;
  align-items: flex-end;

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-position: bottom;

  margin-top: 50px;
}

.learning-products-item .img img {
  max-width: 100%;
  height: auto;
}

.learning-products-item .action a {
  color: var(--Primary-600, #561fe7);
}

.learning-products-item .action {
  color: var(--Primary-600, #561fe7);
  text-align: center;
  font-family: Outfit;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;

  margin-top: 50px;
}

.learning-products-box .head {
  color: var(--Grey-700, #344054);
  font-family: Outfit;
  font-size: 32px;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  line-height: 56px; /* 175% */

  margin: 42px 0px;
}
/* LEARNING PRODUCTS ENDS */

/* STRATEGIC-PARTNER */
.strategic-partner {
  margin-top: 55px;
}
.strategic-partner .head {
  color: var(--Grey-700, #344054);
  text-align: center;
  font-family: Outfit;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 56px; /* 175% */
}

.strategic-partner .content {
  display: flex;
  overflow: auto;
  gap: 20px;
  margin-top: 22px;
  height: 163px;
  align-items: center;
}

.strategic-partner .item {
  display: flex;
  width: 240px;
  height: 100px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 10px 0px;

  border-radius: 16px;
  background: #fff;

  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 20px 90px;
}

.strategic-partner .item img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
/* STRATEGIC-PARTNER END*/

/* NEW TAB  */
.tab-content-box {
  display: grid;
  /* grid-template-columns: 1fr 1px 1fr; */
  grid-template-columns: 1fr 1fr;

  height: 500px;
  margin-left: 0px;
  width: 100%;
  gap: 20px;
}

.tab-content-box .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* height: calc(100% - 74px); */
  height: 100%;
  /* padding: 37px 0px; */
  padding: 0px 0px;
  margin-left: -36px;
  margin-right: 72px;

  /* position: relative; */
}

.tab-content-box .right .sub-content-box .separator {
  height: 1px;
  background: #98a2b3;

  margin: 26px 14px;
  margin-left: 28px;
}

.tab-content-box .image {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

  height: 84%;
  margin-top: auto;
  margin-bottom: auto;

  width: 80%;
  margin: auto;
}

.tab-content-container ul {
  list-style: disc;
  margin-left: 20px;
}

.tab-content-container ul li {
  margin-bottom: 16px;
}

.tab-content-box .right .sub-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  /* height: 33%; */
  /* flex-grow: 1; */
}

.tab-content-box .right .hide-sub-item {
  display: none;
}

.tab-content-box .right .sub-item .dot {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 5px;
  height: 100%;
  position: relative;
}
.tab-content-box .right .sub-item .dot .dot-img-container {
  margin-top: 0px;
  margin-right: 10px;
}

.tab-content-box .right .sub-item .dot img {
  /* position: absolute; */
  /* top: 0; */
  /* top: 35%;
  z-index: 3; */
}

.tab-content-box .progress-bar {
  background-color: #ac90f3;
  width: 80%;
  height: 3px !important;
  /* height: calc(100% - 74px); */
  /* height: 100%; */
  /* margin: 37px 0px; */
  /* position: absolute; */
  /* z-index: 2; */
  /* top: 35%; */
  margin-left: 60px;
  position: relative;
}

.tab-content-box .progress-bar .mobile-dots {
  /* position: absolute;
  top: -16px;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between; */
}

.progress-height-100 {
  height: 100%;
}

.tab-content-box .progress-active {
  position: absolute;
  top: 0;
  height: 3px !important;
  background: #561fe7;
  width: 100%;
}

.tab-content-box .sub-content {
  display: flex;
}

.tab-content-box .sub-content-box {
  margin-left: 16px;
}

.tab-content-box .sub-content-active {
  color: #000;

  font-feature-settings: "clig" off, "liga" off;
  /* Heading 5/medium */
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tab-content-box .sub-content-inactive {
  color: var(--Grey-400, #98a2b3);
  font-feature-settings: "clig" off, "liga" off;
  /* Heading 5/medium */
  font-family: Outfit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.tab-content-box .sub-component-desc {
  margin-left: 28px;
  margin-bottom: 20px;
  margin-top: 8px;
  color: var(--Grey-700, #344054);
  font-feature-settings: "clig" off, "liga" off;
  /* Heading 6/regular */
  font-family: Outfit;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.15px;
}
.hide-sub-component-desc {
  display: none;
}
/* NEW TAB END */

/* TEKIE BOXES */
.boxes .head {
  color: #101828;
  font-family: Outfit;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 52px;
  text-align: center;
}

.boxes .content {
  /* display: flex;
  overflow-x: auto; */
  /* gap: 32px; */
  padding: 8px 8px;

  margin-top: 32px;
}

.boxes .content .item {
  display: flex;
  width: 228px;
  height: 60px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;

  border-radius: 16px;
  background: #fff;

  box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.12);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 20px 30px;
  margin: 10px 0px;
}

.boxes .content .item img {
  width: 69%;
  /* width: auto; */
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
/* TEKIE BOXES  END */

/* RESPONSIVE MENU */

/* RESPONSIVE MENU END*/

/* Add hover effect to expand the border */
.underline-on-hover:hover {
  text-decoration-line: underline;
}

.underline-on-hover a {
  color: #561fe7;
}

.verticalLine {
  position: absolute;
  background-color: black;
  width: 2px; /* Adjust as needed */
}

.childItem {
  margin-bottom: 20px; /* Adjust as needed */
  border: 1px solid black; /* Just for visualization */
  padding: 10px; /* Just for visualization */
}

#explore-more {
  padding-top: 50px;
}

.learning-products-testimonial {
  margin-top: 65px;
  margin-bottom: 100px;
}
