@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Raleway", sans-serif;
}

html {
  overflow-x: hidden;
}

html body {
  overflow: hidden;
}

:root {
  --green-very-dark: #183820;
  --green-dark: #006922;
  --gren-semi-dark: #2a9f43;
  --green-normal: #2a9f43;
  --green-semi-light: #55d073;
  --green-q-light: #8dd691;
  --green-overlay: #dffee8;
}

.theme-btn {
  background: var(--green-dark);
  color: white;
}

.theme-btn:hover {
  background: #00501a;
  color: white;
}

.theme-btn-outline {
  background: white;
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
}

.theme-btn-outline:hover {
  background: var(--green-dark);
  color: white;
}

@media screen and (min-width: 800px) {
  nav#navbar .navbar-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  nav#navbar .navbar-container > .navbar-brand {
    color: white;
  }
  nav#navbar .navbar-container .navbar-items-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  nav#navbar .navbar-container .navbar-items-container .navbar-item div.dropdown-wrapper {
    position: relative;
    z-index: 1;
  }
  nav#navbar .navbar-container .navbar-items-container .navbar-item div.dropdown-wrapper .dropdown-link {
    display: inline-block;
    padding: 10px;
    text-decoration: none;
    color: white;
  }
  nav#navbar .navbar-container .navbar-items-container .navbar-item div.dropdown-wrapper .dropdown-items {
    position: absolute;
    top: 40px;
    left: 10px;
    padding-top: 20px;
  }
  nav#navbar .navbar-container .navbar-items-container .navbar-item div.dropdown-wrapper .dropdown-items ul.item-container {
    background: #e9e9e9;
    list-style: none;
    padding-left: 0px;
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0px;
    display: none;
  }
  nav#navbar .navbar-container .navbar-items-container .navbar-item div.dropdown-wrapper .dropdown-items ul.item-container li.item a.link {
    display: inline-block;
    text-decoration: none;
    padding: 7px;
    padding-left: 20px;
    width: 100%;
    color: grey;
    font-weight: 600;
  }
  nav#navbar .navbar-container .navbar-items-container .navbar-item div.dropdown-wrapper .dropdown-items ul.item-container li.item a.link:hover {
    background: #ccccccbb;
  }
  nav#navbar .navbar-container .navbar-items-container .navbar-item div.dropdown-wrapper:hover ul.item-container {
    display: block;
  }
  nav#navbar .navbar-container .navbar-toggler {
    display: none;
  }
  nav#navbar .navbar-container .container-closer {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  nav#navbar .navbar-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0px 20px;
    max-width: 500px;
  }
  nav#navbar .navbar-container .navbar-items-container {
    position: fixed;
    background: #ddd;
    width: 100%;
    height: 100%;
    left: -100%;
    top: 0px;
    overflow-y: auto;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 100;
  }
  nav#navbar .navbar-container .navbar-items-container.active {
    left: 0px;
  }
  nav#navbar .navbar-container .navbar-items-container .navbar-item .dropdown-wrapper .dropdown-link {
    text-decoration: none;
    padding: 7px 10px;
    display: inline-block;
    border-bottom: 1px solid #cecece;
    border-top: 1px solid #cecece;
    width: 100%;
    color: grey;
    font-weight: 600;
  }
  nav#navbar .navbar-container .navbar-items-container .navbar-item .dropdown-wrapper .dropdown-items {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    max-height: 0;
    overflow: hidden;
  }
  nav#navbar .navbar-container .navbar-items-container .navbar-item .dropdown-wrapper .dropdown-items .item-container {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    background: #d4d4d4;
    padding: 10px 0px;
  }
  nav#navbar .navbar-container .navbar-items-container .navbar-item .dropdown-wrapper .dropdown-items .item-container .item .link {
    text-decoration: none;
    color: #686868;
    padding: 5px 15px;
    display: inline-block;
  }
  nav#navbar .navbar-container .navbar-items-container .container-closer {
    position: fixed;
    top: 20px;
    right: -100%;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 101;
  }
  nav#navbar .navbar-container .navbar-items-container .container-closer.active {
    right: 20px;
  }
  nav#navbar .navbar-container .navbar-items-container .container-closer .iconify {
    font-size: 30px;
    color: red;
  }
  nav#navbar .navbar-container .navbar-toggler .iconify-inline {
    font-size: 20px;
    color: white;
  }
}

nav#navbar {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 100;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

header#header {
  min-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

header#header .header-pattern-image {
  position: absolute;
  z-index: -2;
  top: 0px;
  width: 100%;
  height: 100%;
  left: 0px;
}

header#header .header-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(284.34deg, #0b6814 1.31%, #57b845 55.68%, #48a83b 66.6%, #46a63a 70.09%, #17751c 99.56%);
  mix-blend-mode: normal;
  opacity: 0.96;
  z-index: -1;
}

.glass-card {
  background: linear-gradient(249.16deg, rgba(255, 255, 255, 0.066) 2.76%, rgba(255, 255, 255, 0.3) 97.47%);
  -webkit-box-shadow: 0px 0px 50px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 0px 50px 8px rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(36px);
          backdrop-filter: blur(36px);
  padding: 10px;
  border-radius: 12px;
  text-align: center;
}

.glass-card:hover {
  background: linear-gradient(249.16deg, rgba(255, 255, 255, 0.178) 2.76%, rgba(255, 255, 255, 0.432) 97.47%);
}

.glass-card .glass-btn {
  border: none;
  outline: none;
  background: linear-gradient(302.19deg, rgba(255, 255, 255, 0.1368) 1.39%, rgba(255, 255, 255, 0.36) 98.17%);
  -webkit-backdrop-filter: blur(36px);
          backdrop-filter: blur(36px);
  border-radius: 12px;
  color: white;
  padding: 3px 10px;
  margin: 10px auto;
}

/* subscribe newsletter section */
section#subs-newslatter .newslatter-form-box {
  background: url(../images/newslatter-bg-shape.png) no-repeat;
  border-radius: 30px;
  background-size: cover;
}

section#subs-newslatter .newslatter-form-box .input-group input.form-control {
  background: linear-gradient(249.16deg, rgba(255, 255, 255, 0.066) 2.76%, rgba(255, 255, 255, 0.3) 97.47%);
  -webkit-box-shadow: 0px 0px 50px 8px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 0px 50px 8px rgba(0, 0, 0, 0.06);
  -webkit-backdrop-filter: blur(36px);
          backdrop-filter: blur(36px);
  border: none;
  font-size: 18px;
  padding: 10px;
  padding-left: 20px;
  color: white;
  font-style: italic;
  font-weight: 500;
}

section#subs-newslatter .newslatter-form-box .input-group input.form-control::-webkit-input-placeholder {
  color: #fff;
  font-weight: 300;
}

section#subs-newslatter .newslatter-form-box .input-group input.form-control:-ms-input-placeholder {
  color: #fff;
  font-weight: 300;
}

section#subs-newslatter .newslatter-form-box .input-group input.form-control::-ms-input-placeholder {
  color: #fff;
  font-weight: 300;
}

section#subs-newslatter .newslatter-form-box .input-group input.form-control::placeholder {
  color: #fff;
  font-weight: 300;
}

section#subs-newslatter .newslatter-form-box .input-group button.input-group-text {
  background: var(--green-dark);
  border: none;
  color: white;
}

/* our result css */
#our-result {
  position: relative;
  z-index: 1;
  background: var(--green-overlay);
}

#our-result #our-result-carousel-container #our-result-carousel {
  position: relative;
}

#our-result #our-result-carousel-container #our-result-carousel .swiper-wrapper .swiper-slide img {
  border-radius: 20px;
}

#our-result .shape, #our-result .shape-2 {
  padding: 50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  background: radial-gradient(77.31% 77.31% at 55.71% 22.69%, #9eda9f 0%, #b0e1b1 19%, #81d783 34.55%, #a5dea6 51.14%, #d4f1d4 69.43%, #a0e7a2 85.45%, #8bef8d 100%);
  top: 0px;
  left: 0px;
  -webkit-animation: up-down 15s infinite linear;
          animation: up-down 15s infinite linear;
}

@media screen and (max-width: 800px) {
  #our-result .shape, #our-result .shape-2 {
    width: 100px;
    height: 100px;
  }
}

#our-result .shape-2 {
  right: 0px;
  left: auto;
  bottom: 100px;
  top: auto;
  -webkit-animation-name: up-down-revarse;
          animation-name: up-down-revarse;
}

@-webkit-keyframes up-down {
  0% {
    -webkit-transform: translate(0%, 0%) rotate(0);
            transform: translate(0%, 0%) rotate(0);
  }
  50% {
    -webkit-transform: translate(-20%, -20%) rotate(180deg);
            transform: translate(-20%, -20%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(0%, 0%) rotate(360deg);
            transform: translate(0%, 0%) rotate(360deg);
  }
}

@keyframes up-down {
  0% {
    -webkit-transform: translate(0%, 0%) rotate(0);
            transform: translate(0%, 0%) rotate(0);
  }
  50% {
    -webkit-transform: translate(-20%, -20%) rotate(180deg);
            transform: translate(-20%, -20%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(0%, 0%) rotate(360deg);
            transform: translate(0%, 0%) rotate(360deg);
  }
}

@-webkit-keyframes up-down-revarse {
  0% {
    -webkit-transform: translate(-20%, -20%) rotate(360deg);
            transform: translate(-20%, -20%) rotate(360deg);
  }
  50% {
    -webkit-transform: translate(0%, 0%) rotate(180deg);
            transform: translate(0%, 0%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(-20%, -20%) rotate(0deg);
            transform: translate(-20%, -20%) rotate(0deg);
  }
}

@keyframes up-down-revarse {
  0% {
    -webkit-transform: translate(-20%, -20%) rotate(360deg);
            transform: translate(-20%, -20%) rotate(360deg);
  }
  50% {
    -webkit-transform: translate(0%, 0%) rotate(180deg);
            transform: translate(0%, 0%) rotate(180deg);
  }
  100% {
    -webkit-transform: translate(-20%, -20%) rotate(0deg);
            transform: translate(-20%, -20%) rotate(0deg);
  }
}

/* super kid section css */
/* =========================== */
section#super-kids .superkid-banner-box {
  background: url(../images/super-kid-banner.png);
  min-height: 250px;
  padding: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section#super-kids .superkid-banner-box h1 {
  font-weight: 800;
  color: var(--green-dark);
}

section#super-kids .superkid--quize-card-container {
  margin-top: -50px;
  margin-bottom: 50px;
  cursor: pointer;
}

section#super-kids .superkid--quize-card-container .superkid--quize-card {
  position: relative;
  z-index: 1;
  border-radius: 11px;
  overflow: hidden;
  background: white;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

section#super-kids .superkid--quize-card-container .superkid--quize-card::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green-normal);
  z-index: -1;
  -webkit-clip-path: circle(0.3% at 100% 0);
          clip-path: circle(0.3% at 100% 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

section#super-kids .superkid--quize-card-container .superkid--quize-card:hover {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  color: white;
}

section#super-kids .superkid--quize-card-container .superkid--quize-card:hover::before {
  -webkit-clip-path: circle(110.8% at 77% 21%);
          clip-path: circle(110.8% at 77% 21%);
}

section#super-kids .superkid--quize-card-container .superkid--quize-card .upper {
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
  border-radius: 18px 18px 0px 0px;
  padding: 10px;
  border: 1px solid rgba(211, 211, 211, 0.432);
  border-bottom: none;
}

section#super-kids .superkid--quize-card-container .superkid--quize-card .upper .icon-and-text .icon img.superkid-card-icon-image {
  max-width: 100px;
}

section#super-kids .superkid--quize-card-container .superkid--quize-card .upper .icon-and-text .text h6 {
  font-weight: 700;
}

section#super-kids .superkid--quize-card-container .superkid--quize-card .upper .icon-and-text .text p {
  font-size: 14px;
}

section#super-kids .superkid--quize-card-container .superkid--quize-card .upper .text-and-btn .col-7 > p {
  font-size: 14px;
}

section#super-kids .superkid--quize-card-container .superkid--quize-card .upper .text-and-btn .col-5 > button.theme-btn {
  font-size: 12px;
}

section#super-kids .superkid--quize-card-container .superkid--quize-card .down {
  border: 1px solid rgba(211, 211, 211, 0.432);
  border-radius: 0px 0px 11px 11px;
  padding: 10px 7px;
}

section#super-kids .superkid--quize-card-container .superkid--quize-card .down .iconify {
  font-size: 50px;
  color: var(--green-dark);
  margin-right: 10px;
  -webkit-animation: color-changing 2s infinite alternate linear;
          animation: color-changing 2s infinite alternate linear;
}

section#super-kids .superkid--quize-card-container .superkid--quize-card .down p {
  font-size: 13px;
}

@-webkit-keyframes color-changing {
  0% {
    color: var(--green-very-dark);
  }
  50% {
    color: var(--green-normal);
  }
  100% {
    color: var(--green-q-light);
  }
}

@keyframes color-changing {
  0% {
    color: var(--green-very-dark);
  }
  50% {
    color: var(--green-normal);
  }
  100% {
    color: var(--green-q-light);
  }
}

/* discover learing video carousel */
section#discover-video .discover-learning-video-slider #discover-slider {
  margin-bottom: 40px;
}

section#discover-video .discover-learning-video-slider #discover-slider .swiper-wrapper {
  cursor: default !important;
}

section#discover-video .discover-learning-video-slider #discover-slider .swiper-wrapper .swiper-slide {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
  overflow: hidden;
}

section#discover-video .discover-learning-video-slider #discover-slider .swiper-wrapper .swiper-slide.swiper-slide-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.discover-card {
  height: 300px;
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.discover-card .image img {
  width: 100%;
  border-radius: 20px;
}

.discover-card .play-icon {
  position: absolute;
  cursor: pointer;
  text-align: center;
}

.discover-card .play-icon:hover img {
  width: 100px;
}

.discover-card .play-icon img {
  width: 50px;
}

/* our catagory css */
section#our-catagories ul.catagory-tabs-list {
  border-bottom: 3px solid var(--green-dark);
}

section#our-catagories ul.catagory-tabs-list li.nav-item button.nav-link {
  background: var(--green-normal);
  color: white;
  margin: 0 10px;
  padding: 10px 25px;
}

section#our-catagories ul.catagory-tabs-list li.nav-item button.nav-link.active {
  background-color: var(--green-dark);
}

@media screen and (max-width: 1224) {
  section#our-catagories ul.catagory-tabs-list li.nav-item button.nav-link {
    padding: 5px 10px;
    font-size: 16px;
    margin: 0 2px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 768px) {
  section#our-catagories ul.catagory-tabs-list li.nav-item button.nav-link {
    padding: 5px 10px;
    font-size: 14px;
    margin: 0 2px;
  }
}

section#our-catagories .catagories-tab-content .catagory-tab-pane .catagory-card-wrapper {
  padding: 20px;
}

section#our-catagories .catagories-tab-content .catagory-tab-pane .catagory-card-wrapper .catagory-card > .card-body .card-text {
  font-size: 23px;
}

section#our-catagories .catagories-tab-content .catagory-tab-pane .catagory-card-wrapper .catagory-card > .card-body .feature-list > .d-flex {
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section#our-catagories .catagories-tab-content .catagory-tab-pane .catagory-card-wrapper .catagory-card > .card-body .feature-list > .d-flex .iconify {
  font-size: 30px;
  margin-right: 10px;
  color: white;
  background: var(--green-semi-light);
  padding: 5px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border-radius: 50%;
}

section#our-catagories .catagories-tab-content .catagory-tab-pane .catagory-card-wrapper .catagory-card .card-footer div.btn.btn-success {
  background: var(--gren-semi-dark);
  border-radius: 0px;
}

@media screen and (max-width: 768px) {
  section#our-catagories .catagories-tab-content .catagory-tab-pane .catagory-card-wrapper {
    padding: 5px;
  }
  section#our-catagories .catagories-tab-content .catagory-tab-pane .catagory-card-wrapper .catagory-card > .card-body .card-text {
    font-size: 15px;
  }
  section#our-catagories .catagories-tab-content .catagory-tab-pane .catagory-card-wrapper .catagory-card > .card-body .feature-list {
    padding: 0px !important;
  }
  section#our-catagories .catagories-tab-content .catagory-tab-pane .catagory-card-wrapper .catagory-card > .card-body .feature-list > .d-flex .iconify {
    font-size: 15px;
    padding: 2px;
  }
  section#our-catagories .catagories-tab-content .catagory-tab-pane .catagory-card-wrapper .catagory-card > .card-body .feature-list > .d-flex p {
    font-size: 14px;
  }
}

/* why learn edu.. feature card */
section#why-learnedu {
  margin-bottom: 50px;
}

section#why-learnedu .feature-card-wrapper .feature-card img {
  background: var(--green-q-light);
  padding: 15px 10px;
  max-width: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

section#why-learnedu .feature-card-wrapper .feature-card h3 {
  font-weight: 400;
  color: var(--green-dark);
}

section#why-learnedu .some-best-teacher {
  position: relative;
  z-index: 1;
  border-radius: 30px;
  overflow: hidden;
}

section#why-learnedu .some-best-teacher img {
  width: 100%;
  min-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 300px;
}

section#why-learnedu .some-best-teacher .upper-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
}

section#why-learnedu .some-best-teacher .upper-text .play-icon svg.play-icon-svg {
  width: 80px;
}

section#why-learnedu .some-best-teacher .upper-text .play-icon svg.play-icon-svg circle.white-circle {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: zoom-up-down 1s infinite alternate;
          animation: zoom-up-down 1s infinite alternate;
}

section#why-learnedu .some-best-teacher .upper-text .play-icon svg.play-icon-svg circle.white-circle-2 {
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: zoom-up-down 1s infinite alternate;
          animation: zoom-up-down 1s infinite alternate;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  fill: var(--green-q-light);
}

section#why-learnedu .some-best-teacher .upper-text .play-icon svg.play-icon-svg path.play-triangle {
  -webkit-animation: color-changed 1s infinite alternate;
          animation: color-changed 1s infinite alternate;
}

section#why-learnedu .some-best-teacher::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #00000076;
}

section#why-learnedu .counters-container {
  --bg: #fdeeee;
  --color: #f48282;
  --digit: #b16969;
}

section#why-learnedu .counters-container .col:nth-child(2) {
  --bg: #e6f3fa;
  --color: #6bc5f6;
  --digit: #61a0b4;
}

section#why-learnedu .counters-container .col:nth-child(3) {
  --bg: #f4e6fa;
  --color: #ca56fc;
  --digit: #9d62b6;
}

section#why-learnedu .counters-container .col:nth-child(4) {
  --bg: #f1fef1;
  --color: #00ce02;
  --digit: #61b464;
}

section#why-learnedu .counters-container .col > .counter-card {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
  border-radius: 10px;
  background: var(--bg);
  -webkit-box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.116);
          box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.116);
}

section#why-learnedu .counters-container .col > .counter-card p {
  margin-bottom: 0;
  font-size: 30px;
  color: var(--digit);
}

section#why-learnedu .counters-container .col > .counter-card p span.counter-digit {
  font-family: sans-serif;
}

section#why-learnedu .counters-container .col > .counter-card h3 {
  margin-bottom: 0;
  color: var(--color);
}

@media screen and (max-width: 420px) {
  section#why-learnedu .feature-card-wrapper {
    margin: 10px auto;
  }
  section#why-learnedu .feature-card-wrapper .feature-card img {
    padding: 10px 7px;
    max-width: 60px;
  }
  section#why-learnedu .feature-card-wrapper .feature-card h3 {
    font-size: 18px;
  }
  section#why-learnedu .feature-card-wrapper .feature-card p {
    font-size: 14px;
  }
  section#why-learnedu .counters-container .col > .counter-card h3 {
    font-size: 18px;
  }
  section#why-learnedu .counters-container .col > .counter-card p {
    font-size: 18px;
  }
}

@-webkit-keyframes zoom-up-down {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom-up-down {
  from {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes color-changed {
  from {
    fill: white;
    -webkit-transform: translate(-15px);
            transform: translate(-15px);
  }
  to {
    fill: var(--green-dark);
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes color-changed {
  from {
    fill: white;
    -webkit-transform: translate(-15px);
            transform: translate(-15px);
  }
  to {
    fill: var(--green-dark);
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

/* Review Section CSS 
===================================*/
section#review {
  margin-bottom: 50px;
}

section#review > .title {
  margin-bottom: 20px;
}

section#review #review-slider .testimonial-review-slider {
  padding: 20px 0px;
}

section#review #review-slider .testimonial-review-slider .swiper-slide {
  height: auto;
}

section#review #review-slider .testimonial-review-slider .swiper-slide > .review-card {
  background: linear-gradient(99.2deg, rgba(255, 255, 255, 0.076) 1.65%, rgba(255, 255, 255, 0.074) 99.38%);
  border: 1px solid rgba(193, 187, 187, 0.28);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: 17px;
  padding: 15px;
  height: 100%;
  color: #9e9e9e;
  position: relative;
}

section#review #review-slider .testimonial-review-slider .swiper-slide > .review-card .glass-pattern {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  border-radius: inherit;
  opacity: 0.5;
}

section#review #review-slider .testimonial-review-slider .swiper-slide > .review-card .review-card__image {
  width: 50px;
  border-radius: 50%;
}

section#review #review-slider .testimonial-review-slider .swiper-slide > .review-card .review-card__name {
  margin-left: 10px;
}

section#review #review-slider .testimonial-review-slider .swiper-slide > .review-card .review-card__name h5,
section#review #review-slider .testimonial-review-slider .swiper-slide > .review-card .review-card__name p {
  line-height: 17px;
}

section#review #review-slider .testimonial-review-slider .swiper-slide > .review-card .review-text {
  padding: 10px;
  text-align: center;
  font-weight: 400;
}

section#review #review-slider .testimonial-review-slider .swiper-slide > .review-card .review-text .review-text__reviewer-name {
  text-align: end;
  margin-top: 15px;
}

section#review #review-slider .testimonial-review-slider .swiper-slide > .review-card .review-text .review-text__reviewer-name span.name {
  font-style: italic;
  position: relative;
  z-index: 1;
}

section#review #review-slider .testimonial-review-slider .swiper-slide > .review-card .review-text .review-text__reviewer-name span.name::before {
  position: absolute;
  content: "";
  display: block;
  width: 200px;
  background: lightgray;
  height: 5px;
  border-radius: 5px;
  right: 110%;
  top: 8px;
}

section#review #review-slider .testimonial-review-slider .swiper-pagination {
  bottom: 0px;
}

section#review #review-slider .testimonial-review-slider .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  border-radius: 0px;
  height: 4px;
  background: var(--green-dark);
}

section#review #review-slider .testimonial-review-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 0.6;
}

section#review #review-slider > .container {
  position: relative;
  z-index: 1;
}

section#review #review-slider > .container img.quote {
  position: absolute;
  width: 100px;
  z-index: -1;
}

section#review #review-slider > .container img.quote._1 {
  top: -20px;
  left: 0px;
}

section#review #review-slider > .container img.quote._2 {
  bottom: -20px;
  right: 0px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media screen and (max-width: 740px) {
  section#review #review-slider > .container img.quote {
    width: 70px !important;
  }
  section#review #review-slider > .container img.quote._1 {
    top: 5px;
  }
  section#review #review-slider > .container img.quote._2 {
    bottom: 5px;
  }
}

/*  ELdu section Css here
===================================*/
section#ELdu {
  min-height: 250px;
  background: var(--green-semi-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}

section#ELdu .ELdu-text .ELdu-text__box {
  color: white;
}

section#ELdu .ELdu-text .ELdu-text__box * {
  margin-bottom: 0px;
}

section#ELdu .ELdu-text .ELdu-text__box button {
  border: 0px;
  padding: 5px 25px;
  min-width: 150px;
  border-radius: 20px;
  color: var(--green-dark);
  background: white;
  margin-top: 10px;
}

section#ELdu .ELdu-image__img {
  position: absolute;
  max-width: 320px;
  left: 50%;
  bottom: 0;
  z-index: -1;
}

@media screen and (max-width: 650px) {
  section#ELdu .ELdu-image__img {
    right: -100px;
    left: auto;
  }
}

@media screen and (max-width: 500px) {
  section#ELdu {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 100px;
    padding: 10px;
  }
  section#ELdu .ELdu-image__img {
    position: static;
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    margin-top: -50px;
    width: 100%;
  }
  section#ELdu > .container {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  section#ELdu > .container .ELdu-text__box {
    margin-top: 20px;
    text-align: center;
  }
  section#ELdu > .container .ELdu-text__box h1 {
    font-size: 25px;
  }
}

/* footer CSS
===================================*/
footer#footer {
  --bg: #373d46;
  --color: #646b75;
  background: var(--bg);
  color: var(--color);
  padding: 30px 0;
  padding-bottom: 10px;
}

footer#footer .logo-and-title {
  text-align: center;
}

footer#footer .logo-and-title img {
  width: 100px;
  margin-bottom: 10px;
}

footer#footer .logo-and-title h2 {
  line-height: 12px;
}

footer#footer .logo-and-title h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

footer#footer .logo-and-title > .icons .iconify {
  font-size: 35px;
  margin: 0 5px;
}

footer#footer .contact-us__form {
  text-align: center;
}

footer#footer .contact-us__form input,
footer#footer .contact-us__form textarea {
  background: #444b55 !important;
  border: none;
  margin-bottom: 10px;
  resize: none;
  color: #868a8f;
  font-weight: 500;
}

footer#footer .contact-us__form input:focus, footer#footer .contact-us__form input:active,
footer#footer .contact-us__form textarea:focus,
footer#footer .contact-us__form textarea:active {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

footer#footer .contact-us__form button[type="submit"] {
  border: none;
  background: var(--color);
  color: var(--bg);
  padding: 5px 15px;
  font-weight: bold;
  border-radius: 50px;
}
/*# sourceMappingURL=style.css.map */