@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&amp;display=swap");
:root {
  --prlightclr: #7c83fd;
  --prdarkclr: #000528;
  --sddarkclr: #f2d600;
  --sdclightlr: #d6c8ff;
  --sdfont: "Iceberg", sans-serif;
  --size: clamp(10rem, 1rem + 40vmin, 30rem);
  --gap: calc(var(--size) / 14);
  --duration: 30s;
  --scroll-start: 0;
  --scroll-end: calc(-100% - var(--gap));
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Karla", sans-serif !important;
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined" !important;
}

body,
html {
  width: 100vw;
  overflow-x: hidden;
  overflow-y: auto;
  /* width */
}
body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
  border-radius: 10px;
}
body::-webkit-scrollbar,
html::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}
body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb {
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, rgb(137, 176, 255)), color-stop(0.72, rgb(215, 122, 255)), color-stop(0.86, rgb(114, 208, 255)));
}

.main-section {
  width: 100vw;
}
.main-section .main-wrapper {
  width: 100%;
  overflow-x: hidden;
}
.main-section .main-wrapper .nav-side-bar {
  position: fixed;
  width: 100%;
  height: 100svh;
  background: var(--prdarkclr);
  top: 0;
  right: -100%;
  z-index: 20;
  padding: 25px;
  transition: 0.5s ease;
}
.main-section .main-wrapper .nav-side-bar.open {
  right: 0;
  transition: 0.5s ease;
}
.main-section .main-wrapper .nav-side-bar .close-btn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.main-section .main-wrapper .nav-side-bar .close-btn button {
  width: 30px;
  height: 30px;
  background: transparent;
  color: white;
  outline: none;
  border: none;
}
.main-section .main-wrapper .nav-side-bar .menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.main-section .main-wrapper .nav-side-bar .menu .item {
  width: 100%;
}
.main-section .main-wrapper .nav-side-bar .menu .item a {
  display: block;
  width: 100%;
  padding: 8px 18px;
  color: white;
  font-size: 1.2em;
  text-decoration: none;
  font-weight: 600;
  transition: 0.5s ease;
}
.main-section .main-wrapper .nav-side-bar .menu .item a:hover {
  background: rgba(209, 209, 209, 0.245);
  transition: 0.5s ease;
}

.gradient {
  --size: 350px;
  --speed: 30s;
  --easing: cubic-bezier(0.8, 0.2, 0.2, 0.8);
  width: var(--size);
  height: var(--size);
  filter: blur(calc(var(--size) / 5));
  background-image: linear-gradient(#6978FF, #E16BFF);
  animation: gradrot var(--speed) var(--easing) alternate infinite;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  position: absolute;
}

.pri-btn {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  padding: 10px 25px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  border: 3px solid;
  border-image-slice: 1;
  transition: 0.5s ease-in-out;
  border-image-source: conic-gradient(from 180deg at 50% 50%, #04e4ff 0deg, #04e4ff 54.38deg, #04e4ff 93deg, #8842dc 140deg, #8842dc 247deg, #04e4ff 282deg, #04e4ff 360deg);
}
.pri-btn:hover {
  box-shadow: 0 0 32px rgb(42, 195, 255);
  transition: 0.5s ease-in-out;
}
.pri-btn:focus {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
}

.sec-btn {
  padding: 10px 15px;
  color: rgba(255, 255, 255, 0.9490196078);
  text-decoration: none;
  font-size: 1.5em;
  background: rgba(255, 255, 255, 0.119);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(5px);
  font-weight: 600;
  border: 1px solid rgba(219, 219, 219, 0.168);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: 0.5s ease;
  border-radius: 5px;
}
.sec-btn span {
  position: relative;
  z-index: 2;
}
.sec-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #fff;
  top: 0;
  left: -100%;
  z-index: 1;
  transition: 0.5s ease;
}
.sec-btn::after {
  content: "";
  width: 15px;
  height: 150%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
  left: -100%;
  transition: 0.5s ease;
  rotate: 30deg;
  animation: ltr 1s 1s infinite alternate-reverse ease;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5882352941);
}
.sec-btn.anim {
  animation: scl 2s infinite alternate-reverse ease;
}
.sec-btn:hover {
  color: rgb(91, 91, 255);
  transition: 0.5s ease;
}
.sec-btn:hover::before {
  left: 0;
  transition: 0.5s ease;
}

.modal {
  position: fixed;
  display: none;
  padding: 10px;
  z-index: 100;
  width: 80%;
  height: 80%;
  left: 50%;
  background: #000;
  top: 50%;
  transition: all 0.5s ease-in;
  transform: translate(-50%, -50%);
}
.modal .modalClose {
  position: absolute;
  top: 20px;
  right: -40px;
  background: transparent;
  font-size: 2em;
  color: #fff;
  height: 30px;
  width: 30px;
  border-radius: 5px;
  border: none;
  outline: none;
}

.heading-with-bar {
  text-align: center;
  font-size: 1.4em;
  font-weight: 500;
  color: var(--prdarkclr);
  padding: 15px 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.heading-with-bar::before {
  content: "";
  width: 150%;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
}
.heading-with-bar::after {
  content: "";
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 2px solid #000;
  background: #fff;
  position: absolute;
  bottom: -7px;
}

.heading-with-bar-right {
  font-size: 3em;
  font-weight: 600;
  color: #000;
  padding: 15px 0;
  position: relative;
  display: inline;
  text-align: left;
}
.heading-with-bar-right::before {
  content: "";
  width: 80%;
  height: 4px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.heading-with-bar-right::after {
  content: "";
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 2px solid #000;
  background: #fff;
  position: absolute;
  display: flex;
  justify-content: end;
  bottom: -7px;
  left: 80%;
}

.heading-with-bar-right-white {
  font-size: 3em;
  font-weight: 600;
  color: #fff;
  padding: 15px 0;
  position: relative;
  display: inline;
  text-align: left;
}
.heading-with-bar-right-white::before {
  content: "";
  width: 35%;
  height: 4px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.heading-with-bar-right-white::after {
  content: "";
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #fff;
  position: absolute;
  display: flex;
  justify-content: end;
  bottom: -7px;
  left: 35%;
}

.heading-right-with-bar-right {
  font-size: 3em;
  font-weight: 600;
  color: #000;
  padding: 15px 0;
  position: relative;
  display: inline;
  text-align: right;
}
.heading-right-with-bar-right::before {
  content: "";
  width: 30%;
  height: 4px;
  background: #000;
  position: absolute;
  bottom: 0;
  right: 0;
}
.heading-right-with-bar-right::after {
  content: "";
  height: 15px;
  width: 15px;
  border-radius: 50%;
  border: 2px solid #000;
  background: #fff;
  position: absolute;
  display: flex;
  justify-content: end;
  bottom: -7px;
  right: 30%;
}

.nav-bar {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: rgba(1, 1, 59, 0.752);
  border-bottom: 1px solid rgba(160, 160, 160, 0.26);
  transition: 1s ease;
}
.nav-bar.scrolled {
  height: 70px;
  background: rgba(1, 1, 59, 0.752);
  transition: 0.5s ease;
}
.nav-bar.hidden {
  top: -100%;
  transition: 1s ease;
}
.nav-bar .nav-bar-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}
.nav-bar .nav-bar-wrap .nav-wrap-left .logo {
  width: 200px;
}
.nav-bar .nav-bar-wrap .nav-wrap-middle .menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.nav-bar .nav-bar-wrap .nav-wrap-middle .menu .item a {
  font-size: 16px;
  text-decoration: none;
  padding: 6px 16px;
  color: #ffffff;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 2px solid transparent;
  position: relative;
  z-index: 1;
}
.nav-bar .nav-bar-wrap .nav-wrap-middle .menu .item a::before {
  content: "";
  width: 0px;
  height: 3px;
  border-radius: 10px;
  background: #fff;
  position: absolute;
  bottom: 0;
  transition: 0.5s ease;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: 0.5s ease;
}
.nav-bar .nav-bar-wrap .nav-wrap-middle .menu .item a:hover::before {
  transition: 0.5s ease;
  visibility: visible;
  width: 100%;
  opacity: 1;
}
.nav-bar .nav-bar-wrap .nav-wrap-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.nav-bar .nav-bar-wrap .nav-wrap-right .action-btn a {
  text-decoration: none;
  color: #ffffff;
}
.nav-bar .nav-bar-wrap .nav-wrap-right .action-btn .login {
  padding: 10px 35px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(211, 211, 211, 0.6392156863);
  z-index: 10;
  color: rgb(255, 255, 255);
  transition: 0.5s ease;
}
.nav-bar .nav-bar-wrap .nav-wrap-right .action-btn .login:hover {
  transition: 0.5s ease;
  background: rgba(255, 255, 255, 0.318);
}
.nav-bar .nav-bar-wrap .nav-wrap-right .action-btn .shoping {
  padding: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(195, 198, 255, 0.3019607843);
}
.nav-bar .nav-bar-wrap .nav-wrap-right .menu-btn {
  display: none;
}
.nav-bar .nav-bar-wrap .nav-wrap-right .menu-btn button {
  background: none;
  color: white;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
.nav-bar .nav-bar-wrap .nav-wrap-right .menu-btn span {
  color: #fff;
}

.footer-section {
  width: 100%;
  height: 50vh;
  background: #010529;
}
.footer-section .footeer-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  color: #fff;
  gap: 50px;
  padding: 50px 30px 30px 30px;
}
.footer-section .footeer-wrapper .cols1 {
  width: 30%;
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.footer-section .footeer-wrapper .cols1 p {
  text-align: justify;
}
.footer-section .footeer-wrapper .cols2 {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer-section .footeer-wrapper .cols2 ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-section .footeer-wrapper .cols2 ul li {
  list-style: none;
}
.footer-section .footeer-wrapper .cols2 ul li a {
  text-decoration: none;
  color: white;
  cursor: pointer;
}
.footer-section .footeer-wrapper .cols3 {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.footer-section .footeer-wrapper .cols3 .info-cont {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.footer-section .footeer-wrapper .cols3 .info-cont .phone-cont {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-section .footeer-wrapper .cols4 {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.footer-section .footeer-wrapper .cols4 .latest-update-cont {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.footer-section .footeer-wrapper .cols4 .latest-update-cont input {
  height: 35px;
  padding: 5px 10px;
  border: none;
  outline: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7764705882);
  background: transparent;
  color: #fff;
}
.footer-section .footeer-wrapper .cols4 .latest-update-cont input::-moz-placeholder {
  color: #fff;
}
.footer-section .footeer-wrapper .cols4 .latest-update-cont input::placeholder {
  color: #fff;
}
.footer-section .footeer-wrapper .cols4 .latest-update-cont .social-icon-cont {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.footer-section .footeer-wrapper .cols4 .latest-update-cont .social-icon-cont a {
  text-decoration: none;
  color: #FFF;
  font-size: 1.5em;
}

.home-page {
  width: 100%;
  background: #000528;
}
.home-page .home-page-wrap {
  width: 100%;
  background: #000528;
}
.home-page .home-page-wrap .home-header {
  width: 100%;
}
.home-page .home-page-wrap .home-header .home-header-top {
  height: 200vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg::before {
  content: "awupskillx";
  position: absolute;
  font-family: "Karla", sans-serif !important;
  top: 270px;
  left: -120px;
  font-size: 14rem;
  rotate: -22deg;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.808);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: gray;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.123);
  opacity: 0.5;
  z-index: 1;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  --size: 1400px;
  --speed: 15s;
  --easing: cubic-bezier(0.8, 0.8, 0.8, 0.8);
  width: 1400px;
  height: 1400px;
  filter: blur(calc(var(--size) / 5));
  background: linear-gradient(#277fcd, #d971ff);
  animation: gradrot var(--speed) var(--easing) alternate infinite;
  border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
  position: absolute;
  top: -300px;
  left: 100px;
  z-index: 2;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg {
  width: 100%;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 6;
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim p {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim .txtrvlwrd {
  position: absolute;
  /* makes words stack on top of each other */
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3em;
  text-transform: uppercase;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim .wisteria {
  color: #ffffff;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim .belize {
  color: #ffffff;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim .letter {
  display: inline-block;
  transform-origin: 50% 50% 25px;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim .letter.out {
  transform: rotateX(90deg);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim .letter.behind {
  transform: rotateX(-90deg);
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim .letter.in {
  transform: rotateX(0deg);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap h1 {
  margin-top: 50px;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .positivity {
  position: relative;
  width: 500px;
  height: auto;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 0.2rem;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-transform: uppercase;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .positivity .positivity__alone {
  display: inline-block;
  font-size: 2rem;
  font-weight: bolder;
  color: #fff;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .positivity .positivity__words {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 80px;
  overflow: hidden;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .positivity .positivity__words .change {
  display: inline-block;
  position: absolute;
  opacity: 0;
  animation: changeword 8s linear infinite;
  font-family: sans-serif;
  font-size: 3.5rem;
  font-weight: bolder;
  background: -webkit-linear-gradient(130deg, #79daff, #ff80de, #7cdbff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .positivity .positivity__words .change:nth-child(1) {
  animation-delay: 0s;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .positivity .positivity__words .change:nth-child(2) {
  animation-delay: 2s;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .positivity .positivity__words .change:nth-child(3) {
  animation-delay: 4s;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .positivity .positivity__words .change:nth-child(4) {
  animation-delay: 6s;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .anim-cont {
  display: flex;
  align-items: center;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .anim-cont p {
  font-size: 2em;
  text-transform: uppercase;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .anim-cont .dytxt {
  height: 50px;
  overflow: hidden;
  margin-left: 1rem;
  font-size: 2em;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .anim-cont .dytxt div:first-child {
  animation: txtanim1 6s infinite;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .anim-cont .dytxt div div {
  padding: 0.55rem 0.95rem;
  height: 2.81rem;
  display: inline-block;
  color: rgb(255, 255, 255);
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg h3 {
  text-align: center;
  font-size: 2em;
  font-weight: 500;
  text-transform: uppercase;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .fg-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  padding: 15px;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .fg-title h1 {
  font-size: 4.5em;
  text-transform: uppercase;
  text-align: center;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .fg-title h4 {
  font-size: 1.7em;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .fg-title .india-color {
  font-weight: 700;
  background: -webkit-linear-gradient(45deg, #ff671f, #fff, #046A38);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.5rem;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .moving-screen {
  width: 100%;
  position: absolute;
  top: 630px;
  left: 0;
  z-index: 3;
  rotate: -22deg;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .moving-screen .temp-scroll {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
  margin-top: 15px;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .moving-screen .temp-scroll:nth-child(2) .mar-grp {
  animation: scroll-x 20s linear infinite;
  animation-direction: reverse;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .moving-screen .temp-scroll:nth-child(3) .mar-grp {
  animation: scroll-x 25s linear infinite;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .moving-screen .temp-scroll .mar-grp {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .moving-screen .temp-scroll .mar-grp .momnts-card {
  width: 400px;
  height: 270px;
  background: rgb(255, 255, 255);
  border-radius: 10px;
  overflow: hidden;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .moving-screen .temp-scroll .mar-grp .momnts-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec {
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, transparent, rgba(0, 5, 40, 0.6941176471), #000528);
  z-index: 4;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec h1 {
  margin-top: 115px;
  color: #fff;
  text-align: center;
  font-size: 3em;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont {
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-cont-top {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 160px;
  color: #fff;
  font-weight: 700;
  font-size: 1.2em;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-cont-top .content-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-cont-top .content-box img {
  width: 200px;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-cont-top .text {
  text-align: center;
  position: relative;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-video-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  animation: scl 2s infinite alternate-reverse ease;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-video-cont:hover {
  animation: none;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-video-cont:hover .play-btn {
  box-shadow: 0 0 32px rgb(42, 195, 255);
  transition: 0.5s ease-in-out;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-video-cont:hover .play-btn span {
  rotate: 180deg;
  transition: 0.5s ease-in-out;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-video-cont:hover .play-text {
  margin-left: 20px;
  width: 250px;
  transition: width 0.5s ease;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-video-cont .play-btn {
  text-decoration: none;
  height: 80px;
  width: 80px;
  color: #fff;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: 3px solid;
  border-image-slice: 1;
  transition: 0.5s ease-in-out;
  border-image-source: conic-gradient(from 180deg at 50% 50%, #04e4ff 0deg, #04e4ff 54.38deg, #04e4ff 93deg, #8842dc 140deg, #8842dc 247deg, #04e4ff 282deg, #04e4ff 360deg);
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-video-cont .play-btn span {
  font-size: 3.5em;
  transition: 0.5s ease-in-out;
}
.home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-video-cont .play-text {
  width: 0;
  overflow: hidden;
  font-size: 1.5em;
  color: #fff;
  transition: width 0.5s ease;
}
.home-page .home-page-wrap .video-section {
  width: 100%;
  height: 100vh;
  margin: 100px 0;
}
.home-page .home-page-wrap .video-section .video-section-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb {
  width: 80%;
  height: 80%;
  background-image: url("../images/opencardbg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 5, 40, 0.4901960784);
}
.home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-left {
  width: 100%;
  height: 100%;
  position: absolute;
  color: #fff;
  z-index: 1;
  padding: 50px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 30px;
}
.home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-left h1 {
  font-size: 4em;
  text-align: left;
}
.home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-left h1 span {
  color: var(--prlightclr);
}
.home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-left .text-desc {
  font-size: 1.3em;
}
.home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-right {
  width: 300px;
  height: 300px;
  border-bottom-left-radius: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(211, 211, 211, 0.6392156863);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transition: 1s ease;
}
.home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-right.open {
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: 1s ease;
  padding: 20px;
}
.home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-right.open .video-box {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.5 ease;
}
.home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-right.open .video-box .v-frame {
  display: block;
}
.home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-right span {
  font-size: 7em;
  color: rgba(255, 255, 255, 0.5882352941);
  cursor: pointer;
}
.home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-right .video-box {
  display: none;
  transition: 0.5 ease;
}
.home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-right .video-box .v-frame {
  display: none;
}
.home-page .home-page-wrap .education-section {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(rgba(39, 128, 205, 0.1960784314), rgba(192, 35, 249, 0.1843137255));
  background-size: 600% 100%;
}
.home-page .home-page-wrap .education-section .edtn-sec-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page .home-page-wrap .education-section .edtn-sec-wrapper .edtn-left {
  height: 100%;
  width: 50%;
}
.home-page .home-page-wrap .education-section .edtn-sec-wrapper .edtn-left .left-wrapper {
  width: 100%;
  height: 100%;
  padding: 40px;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-direction: column;
}
.home-page .home-page-wrap .education-section .edtn-sec-wrapper .edtn-left .left-wrapper h1 {
  color: #fff;
  font-size: 2.5em;
}
.home-page .home-page-wrap .education-section .edtn-sec-wrapper .edtn-left .left-wrapper h3 {
  color: rgba(255, 255, 255, 0.7529411765);
}
.home-page .home-page-wrap .education-section .edtn-sec-wrapper .edtn-right {
  height: 100%;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page .home-page-wrap .education-section .edtn-sec-wrapper .edtn-right .right-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../images/education-bg.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.home-page .home-page-wrap .education-section .edtn-sec-wrapper .edtn-right .right-wrapper img {
  position: absolute;
  bottom: 0;
  width: 90%;
  translate: 0 10px 0;
}
.home-page .home-page-wrap .learning-opty {
  width: 100%;
  height: 120vh;
  display: flex;
  justify-content: center;
  color: #fff;
  background: url("../images/our-learning-sec2.png");
  background-size: cover;
  background-position: center bottom;
}
.home-page .home-page-wrap .learning-opty .l-o-wrapper {
  padding-top: 50px;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 50px;
  flex-direction: column;
}
.home-page .home-page-wrap .learning-opty .l-o-wrapper .text-cont {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.home-page .home-page-wrap .learning-opty .l-o-wrapper .text-cont h1 {
  text-align: center;
}
.home-page .home-page-wrap .learning-opty .l-o-wrapper .moving-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}
.home-page .home-page-wrap .learning-opty .l-o-wrapper .moving-screen .temp-scroll {
  display: flex;
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 15px;
}
.home-page .home-page-wrap .learning-opty .l-o-wrapper .moving-screen .temp-scroll:nth-child(2) .mar-grp {
  animation: scroll-x 20s linear infinite;
  animation-direction: reverse;
}
.home-page .home-page-wrap .learning-opty .l-o-wrapper .moving-screen .temp-scroll:nth-child(3) .mar-grp {
  animation: scroll-x 25s linear infinite;
}
.home-page .home-page-wrap .learning-opty .l-o-wrapper .moving-screen .temp-scroll .mar-grp {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll-x var(--duration) linear infinite;
}
.home-page .home-page-wrap .learning-opty .l-o-wrapper .moving-screen .temp-scroll .mar-grp .momnts-card {
  width: 270px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  overflow: hidden;
}
.home-page .home-page-wrap .learning-opty .l-o-wrapper .moving-screen .temp-scroll .mar-grp .momnts-card span {
  font-size: 1.7em;
  color: #fff;
}
.home-page .home-page-wrap .learning-opty .l-o-wrapper .moving-screen .temp-scroll .mar-grp .momnts-card h1 {
  color: #fff;
  font-size: 1em;
  text-transform: uppercase;
  text-align: center;
}
.home-page .home-page-wrap .learning-opty .l-o-wrapper .moving-screen .temp-scroll .mar-grp .momnts-card h3 {
  color: #fff;
  font-size: 1em;
}
.home-page .home-page-wrap .learning-opty .l-o-wrapper .moving-screen .temp-scroll .mar-grp .momnts-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-page .home-page-wrap .courses-section {
  width: 100%;
  min-height: 100vh;
  background: #fff;
}
.home-page .home-page-wrap .courses-section .courses-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.home-page .home-page-wrap .courses-section .courses-wrapper h1 {
  text-align: center;
  color: #000528;
  text-transform: uppercase;
  font-size: 3em;
}
.home-page .home-page-wrap .courses-section .courses-wrapper h3 {
  text-align: center;
  font-size: 1.5em;
  margin-top: 0px;
  text-transform: uppercase;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper {
  margin: 200px 0 0 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 150px;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card {
  width: 90%;
  height: 400px;
  border-radius: 10px;
  background: #1d0050;
  box-shadow: 0 0 15px rgba(0, 5, 40, 0.318);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card:nth-child(1) .right-crs .right-wrapper h3 {
  color: #2b85fc;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card:nth-child(2) .right-crs .right-wrapper h3 {
  color: #ff439d;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card:nth-child(3) .right-crs .right-wrapper h3 {
  color: #fcb32b;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card:nth-child(4) .right-crs .right-wrapper h3 {
  color: #ff2951;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card:hover .badge {
  top: 35%;
  transition: 1s ease;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .badge {
  position: absolute;
  top: 20px;
  right: 0;
  padding: 10px 5px;
  font-size: 1em;
  color: #fff;
  font-weight: 500;
  background: #d82029;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-transform: uppercase;
  transition: 1s ease;
  z-index: 2;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card:nth-child(even) {
  flex-direction: row-reverse;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card:nth-child(even) .badge {
  left: 0;
  flex: 0;
  width: 26px;
  border-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card:nth-child(even) .left-crs img {
  transform-origin: bottom right;
  left: -85px;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .left-crs {
  height: 100%;
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .left-crs img {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 130%;
  height: 130%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .left-crs img:hover {
  transition: 0.5s ease;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs {
  height: 100%;
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: #fff;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 100%;
  gap: 10px;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .course-card-heading {
  width: 100%;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .course-card-heading .sneeks {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgb(132, 184, 191);
  padding-bottom: 10px;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .features-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .features-list-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .features-list-info .info-btn {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: none;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .features-list-info .about-course p {
  text-align: justify;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper div > p > span {
  color: rgb(255, 232, 25);
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper h3 {
  text-align: left;
  font-size: 3em;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .buy-cont {
  align-items: center;
  display: flex;
  gap: 100px;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .buy-cont .price del {
  font-size: 1.3em;
}
.home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .buy-cont .price span {
  font-size: 1.8em;
  font-weight: 700;
}
.home-page .home-page-wrap .growth-add-section {
  width: 100%;
  height: 80vh;
  background: #fff;
}
.home-page .home-page-wrap .growth-add-section .grwt-add-wrapper {
  background: url("../images/why-growth-bg.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-page .home-page-wrap .growth-add-section .grwt-add-wrapper .heading {
  font-size: 3em;
  text-align: center;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.home-page .home-page-wrap .growth-add-section .grwt-add-wrapper .heading::before {
  content: "";
  position: absolute;
  top: 65px;
  width: 450px;
  height: 5px;
  background-color: #000;
  border-radius: 50px;
}
.home-page .home-page-wrap .growth-add-section .grwt-add-wrapper .heading::after {
  content: "";
  position: absolute;
  top: 75px;
  width: 650px;
  height: 5px;
  background-color: #000;
  border-radius: 50px;
}
.home-page .home-page-wrap .growth-add-section .grwt-add-wrapper .grwt-add-cont {
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 170px;
}
.home-page .home-page-wrap .growth-add-section .grwt-add-wrapper .grwt-add-cont .count-cont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.home-page .home-page-wrap .growth-add-section .grwt-add-wrapper .grwt-add-cont .count-cont h1 {
  font-size: 5em;
  color: rgb(0, 89, 255);
}
.home-page .home-page-wrap .growth-add-section .grwt-add-wrapper .grwt-add-cont .count-cont h2 {
  font-size: 2em;
  color: rgb(0, 0, 0);
}
.home-page .home-page-wrap .steps-grwt-section {
  width: 100%;
  height: 80vh;
  background: #fff;
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .heading {
  font-size: 3em;
  text-align: center;
  text-transform: uppercase;
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont {
  height: 80%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 50px;
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar {
  width: 80%;
  height: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar {
  width: 31.6666666667%;
  height: 100%;
  background: gray;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar:nth-child(1) {
  background: rgb(173, 6, 202);
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar:nth-child(1)::before {
  background: rgb(173, 6, 202);
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar:nth-child(2) {
  background: rgb(81, 6, 202);
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar:nth-child(2)::before {
  background: rgb(81, 6, 202);
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar:nth-child(3) {
  background: rgb(6, 78, 202);
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar:nth-child(3)::before {
  background: rgb(6, 78, 202);
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  background: black;
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .steps {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .steps .stp {
  width: 31.6666666667%;
  height: 100px;
  background: rgba(128, 128, 128, 0.145);
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .steps .stp span {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background: #fff;
  font-size: 2em;
  animation: shk 1s infinite alternate-reverse ease;
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .steps .stp h3 {
  font-size: 1.5em;
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .steps .stp:nth-child(1) span {
  color: rgb(173, 6, 202);
  animation-delay: 3s;
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .steps .stp:nth-child(2) span {
  color: rgb(81, 6, 202);
  animation-delay: 2s;
}
.home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .steps .stp:nth-child(3) span {
  color: rgb(6, 78, 202);
  animation-delay: 1s;
}
.home-page .home-page-wrap .instructors-section {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  padding: 20px 0;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #000528;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper .heading h1 {
  text-align: center;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-size: 3rem;
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper .heading h2 {
  text-align: center;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-size: 3rem;
  background: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper {
  width: 100%;
  height: 80%;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper {
  width: 80%;
  height: 100%;
  padding: 20px;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: 0 0 15px rgba(0, 5, 40, 0.318);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-wrapper .swiper-slide .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 3;
  background: linear-gradient(to bottom, transparent, rgba(0, 5, 40, 0.6392156863));
  display: flex;
  justify-content: end;
  flex-direction: column;
  padding: 25px;
  border-radius: 10px;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-wrapper .swiper-slide .overlay h3 {
  text-align: left;
  color: #fff;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-button-next {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-button-next span {
  color: rgba(236, 236, 236, 0.841);
  font-size: 4em;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-button-next::after {
  display: none;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-button-prev {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-button-prev span {
  color: rgba(255, 255, 255, 0.849);
  font-size: 4em;
  rotate: 180deg;
}
.home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-button-prev::after {
  display: none;
}
.home-page .home-page-wrap .plant-section {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper .left-cont {
  width: 50%;
  height: 100%;
  position: relative;
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper .left-cont img {
  position: absolute;
  bottom: 0;
  left: -150px;
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
  gap: 50px;
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont .anim-cont p {
  font-size: 2em;
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont .anim-cont .dytxt {
  height: 90px;
  overflow: hidden;
  margin-left: 1rem;
  font-size: 4em;
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont .anim-cont .dytxt div:first-child {
  animation: txtanim 8s infinite;
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont .anim-cont .dytxt div div {
  padding: 0.55rem 0.95rem;
  height: 2.81rem;
  margin-bottom: 2.81rem;
  display: inline-block;
  font-family: "Dancing Script", cursive;
  color: rgb(127, 214, 127);
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont .btn-cont {
  width: 300px;
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont .btn-cont a {
  flex: 0;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 24px;
  background: rgb(127, 214, 127);
  color: #fff;
  font-size: 1.3em;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont .btn-cont a::after {
  content: "";
  width: 20px;
  height: 30px;
  border-radius: 0 70px;
  background: rgba(255, 255, 255, 0.8549019608);
  position: absolute;
  right: 15px;
  bottom: 0px;
  rotate: 140deg;
  z-index: -1;
  transition: 0.5s ease;
  transform-origin: bottom right;
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont .btn-cont a::before {
  content: "";
  width: 20px;
  height: 40px;
  border-radius: 0 20px;
  background: rgba(255, 255, 255, 0.4745098039);
  position: absolute;
  right: 0px;
  bottom: 0px;
  rotate: 120deg;
  z-index: -1;
  transition: 0.5s ease;
  transform-origin: bottom right;
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont .btn-cont a:hover::after {
  rotate: -45deg;
  transition: 0.5s ease;
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont .btn-cont a:hover::before {
  rotate: 0deg;
  transition: 0.5s ease;
  transition-delay: 0.1s;
}
.home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont img {
  position: absolute;
  bottom: 0;
  right: 30px;
  width: 200px;
}
.home-page .home-page-wrap .best-f-other-section {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  position: relative;
  flex-direction: column;
  background: url("../images/we_best.png");
  background-size: cover;
  background-position: center top;
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper h1 {
  font-size: 3.5em;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #000528;
  position: relative;
  z-index: 1;
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card {
  width: 280px;
  height: 280px;
  border-radius: 10px;
  position: relative;
  transform: translate(0, 0);
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(1) {
  transform: translate(0, 10px);
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(2) {
  transform: translate(0, 100px);
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(3) {
  transform: translate(0, -15px);
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(4) {
  transform: translate(0, 60px);
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(5) {
  transform: translate(0, -10px);
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:hover .front {
  transform: rotateY(-180deg);
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:hover .back {
  transform: rotateY(0);
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .front,
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .back {
  position: absolute;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.119);
  border: 2px solid rgba(255, 255, 255, 0.119);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: 1s;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  /* Add browser-specific prefixes for transition */
  transition: transform 1s;
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .front {
  justify-content: space-between;
  flex-direction: column;
  padding: 20px;
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .front .card-img {
  width: 100px;
  height: 100px;
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .front .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .front h3 {
  text-align: center;
  width: 100%;
  height: 50%;
  font-size: 1.3em;
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .back {
  transform: rotateY(180deg);
  padding: 20px;
  justify-content: center;
  gap: 50px;
  flex-direction: column;
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .back h3 {
  font-size: 1em;
  text-align: center;
}
.home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .back a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  background: #000;
  color: #fff;
  border: none;
  outline: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.home-page .home-page-wrap .instgram-section {
  width: 100%;
  height: 80vh;
  background: #fff;
  display: flex;
  justify-content: center;
}
.home-page .home-page-wrap .instgram-section .insta-wrapper {
  width: 100%;
  height: 100%;
  background: url("../images/instaSection.gif");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.home-page .home-page-wrap .instgram-section .insta-wrapper a {
  display: block;
  position: absolute;
  top: 69%;
  left: 0;
  width: 100%;
  height: 60px;
}
.home-page .home-page-wrap .testimonialt-section {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper {
  background: linear-gradient(to bottom, transparent, #000528, #000528);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .heading {
  font-size: 4em;
  position: absolute;
  top: 100px;
  left: 100px;
  z-index: 5;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  rotate: 180deg;
  text-align: right;
  text-orientation: revert;
  color: rgba(255, 255, 255, 0.8588235294);
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont {
  width: 100%;
  height: 80%;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap {
  width: 100%;
  height: 100%;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal {
  width: 100% !important;
  height: 100% !important;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card {
  width: 100%;
  height: 100%;
  border: none;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .img-box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .img-box .img-box-wrap {
  background-color: rgb(252, 252, 252);
  width: 60%;
  height: 100%;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .img-box .img-box-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .img-box .img-box-wrap .play-btn {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  top: 0;
  left: 0;
  cursor: pointer;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .img-box .img-box-wrap .play-btn span {
  font-size: 5em;
  color: rgba(255, 255, 255, 0.7176470588);
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc {
  width: 50%;
  height: 100%;
  display: flex;
  padding: 0 20px;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc .desc-wrap {
  width: 70%;
  height: 100%;
  display: flex;
  color: #fff;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  padding: 25px;
  gap: 20px;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc .desc-wrap h1 {
  font-size: 2.5em;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc .desc-wrap .rating {
  color: rgb(255, 191, 0);
  font-size: 2.5em;
}
.home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc .desc-wrap p {
  font-size: 1em;
  text-align: justify;
}
.home-page .home-page-wrap .book-section {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
}
.home-page .home-page-wrap .book-section .imgLoader {
  position: fixed;
  animation: preLoad 1s steps(1);
  width: 1px;
  height: 1px;
}
@keyframes preLoad {
  0% {
    background-image: url("../images/page1.png");
  }
  10% {
    background-image: url("../images/page2.png");
  }
  20% {
    background-image: url("../images/page3.png");
  }
  30% {
    background-image: url("../images/page4.png");
  }
  40% {
    background-image: url("../images/page5.png");
  }
  100% {
    display: none;
  }
}
.home-page .home-page-wrap .book-section .book-sec-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}
.home-page .home-page-wrap .book-section .book-sec-wrapper h1 {
  color: rgba(255, 255, 255, 0.6862745098);
  font-size: 2em;
  text-transform: uppercase;
  text-align: center;
}
.home-page .home-page-wrap .book-section .book-sec-wrapper h3 {
  color: rgba(255, 255, 255, 0.6862745098);
  font-size: 3.5em;
  text-transform: uppercase;
  text-align: center;
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .book {
  position: relative;
  perspective: 630px;
  perspective-origin: center 50px;
  transform: scale(1.2);
  filter: drop-shadow(0px 10px 5px rgba(0, 0, 0, 0.25));
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .page {
  width: 210px;
  height: 300px;
  background-color: #bbb;
  position: absolute;
  top: 0px;
  right: 50%;
  transform-origin: 100% 100%;
  border: solid #555 2px;
  background-size: 420px 300px;
  background-position: center;
  transform-style: preserve-3d;
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .page:nth-child(1) {
  transform: rotateX(60deg) rotateY(3deg);
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .page:nth-child(2) {
  transform: rotateX(60deg) rotateY(4.5deg);
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .page:nth-child(3) {
  transform: rotateX(60deg) rotateY(6deg);
  animation: nextPage 25s infinite -24s steps(1);
  background-size: 420px 300px;
  background-position: -2px -2px;
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .page:nth-child(4) {
  transform: rotateX(60deg) rotateY(177deg);
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .page:nth-child(5) {
  transform: rotateX(60deg) rotateY(175.5deg);
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .page:nth-child(6) {
  transform: rotateX(60deg) rotateY(174deg);
  overflow: hidden;
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .page:nth-child(6)::after {
  content: "";
  width: 210px;
  height: 300px;
  position: absolute;
  top: 0px;
  right: 0%;
  transform-origin: center;
  transform: rotateY(180deg);
  animation: nextPage 25s -20s infinite steps(1);
  background-size: 420px 300px;
  background-position: 100% -2px;
}
@keyframes nextPage {
  0% {
    background-image: url("../images/page1.png");
  }
  20% {
    background-image: url("../images/page2.png");
  }
  40% {
    background-image: url("../images/page3.png");
  }
  60% {
    background-image: url("../images/page4.png");
  }
  80% {
    background-image: url("../images/page5.png");
  }
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .gap {
  width: 10px;
  height: 300px;
  background: none;
  transform: rotateX(60deg);
  transform-origin: bottom;
  position: absolute;
  top: 0px;
  left: calc(50% - 5px);
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .gap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: #555;
  width: 10px;
  height: 5px;
  border-radius: 50%;
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .pages,
.home-page .home-page-wrap .book-section .book-sec-wrapper .flips {
  transform-style: preserve-3d;
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .flip {
  width: 32px;
  height: 300px;
  position: absolute;
  top: 0px;
  transform-origin: 100% 100%;
  right: 100%;
  border: solid #555;
  border-width: 2px 0px;
  perspective: 4200px;
  perspective-origin: center;
  transform-style: preserve-3d;
  background-size: 420px 300px;
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .flip::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0%;
  width: 100%;
  height: 100%;
  transform-origin: center;
  background-size: 420px 300px;
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .flip.flip1 {
  right: 50%;
  animation: flip1 5s infinite ease-in-out;
  border-width: 2px 2px 2px 0;
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .flip.flip1::after {
  animation: nextFlip1 25s -20s infinite steps(1);
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .flip:not(.flip1) {
  right: calc(100% - 2px);
  top: -2px;
  transform-origin: right;
  animation: flip2 5s ease-in-out infinite;
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .flip.flip2::after {
  animation: nextFlip2 25s -20s infinite steps(1);
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .flip.flip3::after {
  animation: nextFlip3 25s -20s infinite steps(1);
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .flip.flip4::after {
  animation: nextFlip4 25s -20s infinite steps(1);
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .flip.flip5::after {
  animation: nextFlip5 25s -20s infinite steps(1);
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .flip.flip6::after {
  animation: nextFlip6 25s -20s infinite steps(1);
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .flip.flip7::after {
  animation: nextFlip7 25s -20s infinite steps(1);
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .flip.flip7 {
  width: 30px;
  border-width: 2px 0px 2px 2px;
}
.home-page .home-page-wrap .book-section .book-sec-wrapper .flip.flip7::after {
  animation: nextFlip7 25s -20s infinite steps(1);
}
@keyframes flip1 {
  0%, 20% {
    transform: rotateX(60deg) rotateY(6deg);
  }
  80%, 100% {
    transform: rotateX(60deg) rotateY(174deg);
  }
}
@keyframes flip2 {
  0%, 20% {
    transform: rotateY(0deg) translateY(0px);
  }
  50% {
    transform: rotateY(-15deg) translateY(0px);
  }
}
@keyframes nextFlip1 {
  0% {
    background-image: url("../images/page1.png");
    background-position: -178px -2px;
    transform: rotateY(0deg);
  }
  10% {
    background-image: url("../images/page2.png");
    background-position: -210px -2px;
    transform: rotateY(180deg);
  }
  20% {
    background-image: url("../images/page2.png");
    background-position: -178px -2px;
    transform: rotateY(0deg);
  }
  30% {
    background-image: url("../images/page3.png");
    background-position: -210px -2px;
    transform: rotateY(180deg);
  }
  40% {
    background-image: url("../images/page3.png");
    background-position: -178px -2px;
    transform: rotateY(0deg);
  }
  50% {
    background-image: url("../images/page4.png");
    background-position: -210px -2px;
    transform: rotateY(180deg);
  }
  60% {
    background-image: url("../images/page4.png");
    background-position: -178px -2px;
    transform: rotateY(0deg);
  }
  70% {
    background-image: url("../images/page5.png");
    background-position: -210px -2px;
    transform: rotateY(180deg);
  }
  80% {
    background-image: url("../images/page5.png");
    background-position: -178px -2px;
    transform: rotateY(0deg);
  }
  90% {
    background-image: url("../images/page1.png");
    background-position: -210px -2px;
    transform: rotateY(180deg);
  }
}
@keyframes nextFlip2 {
  0% {
    background-image: url("../images/page1.png");
    background-position: -148px -2px;
    transform: rotateY(0deg);
  }
  10.5% {
    background-image: url("../images/page2.png");
    background-position: -238px -2px;
    transform: rotateY(180deg);
  }
  20% {
    background-image: url("../images/page2.png");
    background-position: -148px -2px;
    transform: rotateY(0deg);
  }
  30.5% {
    background-image: url("../images/page3.png");
    background-position: -238px -2px;
    transform: rotateY(180deg);
  }
  40% {
    background-image: url("../images/page3.png");
    background-position: -148px -2px;
    transform: rotateY(0deg);
  }
  50.5% {
    background-image: url("../images/page4.png");
    background-position: -238px -2px;
    transform: rotateY(180deg);
  }
  60% {
    background-image: url("../images/page4.png");
    background-position: -148px -2px;
    transform: rotateY(0deg);
  }
  70.5% {
    background-image: url("../images/page5.png");
    background-position: -238px -2px;
    transform: rotateY(180deg);
  }
  80% {
    background-image: url("../images/page5.png");
    background-position: -148px -2px;
    transform: rotateY(0deg);
  }
  90.5% {
    background-image: url("../images/page1.png");
    background-position: -238px -2px;
    transform: rotateY(180deg);
  }
}
@keyframes nextFlip3 {
  0% {
    background-image: url("../images/page1.png");
    background-position: -118px -2px;
    transform: rotateY(0deg);
  }
  11% {
    background-image: url("../images/page2.png");
    background-position: -268px -2px;
    transform: rotateY(180deg);
  }
  20% {
    background-image: url("../images/page2.png");
    background-position: -118px -2px;
    transform: rotateY(0deg);
  }
  31% {
    background-image: url("../images/page3.png");
    background-position: -268px -2px;
    transform: rotateY(180deg);
  }
  40% {
    background-image: url("../images/page3.png");
    background-position: -118px -2px;
    transform: rotateY(0deg);
  }
  51% {
    background-image: url("../images/page4.png");
    background-position: -268px -2px;
    transform: rotateY(180deg);
  }
  60% {
    background-image: url("../images/page4.png");
    background-position: -118px -2px;
    transform: rotateY(0deg);
  }
  71% {
    background-image: url("../images/page5.png");
    background-position: -268px -2px;
    transform: rotateY(180deg);
  }
  80% {
    background-image: url("../images/page5.png");
    background-position: -118px -2px;
    transform: rotateY(0deg);
  }
  91% {
    background-image: url("../images/page1.png");
    background-position: -268px -2px;
    transform: rotateY(180deg);
  }
}
@keyframes nextFlip4 {
  0% {
    background-image: url("../images/page1.png");
    background-position: -88px -2px;
    transform: rotateY(0deg);
  }
  11.5% {
    background-image: url("../images/page2.png");
    background-position: -298px -2px;
    transform: rotateY(180deg);
  }
  20% {
    background-image: url("../images/page2.png");
    background-position: -88px -2px;
    transform: rotateY(0deg);
  }
  31.5% {
    background-image: url("../images/page3.png");
    background-position: -298px -2px;
    transform: rotateY(180deg);
  }
  40% {
    background-image: url("../images/page3.png");
    background-position: -88px -2px;
    transform: rotateY(0deg);
  }
  51.5% {
    background-image: url("../images/page4.png");
    background-position: -298px -2px;
    transform: rotateY(180deg);
  }
  60% {
    background-image: url("../images/page4.png");
    background-position: -88px -2px;
    transform: rotateY(0deg);
  }
  71.5% {
    background-image: url("../images/page5.png");
    background-position: -298px -2px;
    transform: rotateY(180deg);
  }
  80% {
    background-image: url("../images/page5.png");
    background-position: -88px -2px;
    transform: rotateY(0deg);
  }
  91.5% {
    background-image: url("../images/page1.png");
    background-position: -298px -2px;
    transform: rotateY(180deg);
  }
}
@keyframes nextFlip5 {
  0% {
    background-image: url("../images/page1.png");
    background-position: -58px -2px;
    transform: rotateY(0deg);
  }
  12% {
    background-image: url("../images/page2.png");
    background-position: -328px -2px;
    transform: rotateY(180deg);
  }
  20% {
    background-image: url("../images/page2.png");
    background-position: -58px -2px;
    transform: rotateY(0deg);
  }
  32% {
    background-image: url("../images/page3.png");
    background-position: -328px -2px;
    transform: rotateY(180deg);
  }
  40% {
    background-image: url("../images/page3.png");
    background-position: -58px -2px;
    transform: rotateY(0deg);
  }
  52% {
    background-image: url("../images/page4.png");
    background-position: -328px -2px;
    transform: rotateY(180deg);
  }
  60% {
    background-image: url("../images/page4.png");
    background-position: -58px -2px;
    transform: rotateY(0deg);
  }
  72% {
    background-image: url("../images/page5.png");
    background-position: -328px -2px;
    transform: rotateY(180deg);
  }
  80% {
    background-image: url("../images/page5.png");
    background-position: -58px -2px;
    transform: rotateY(0deg);
  }
  92% {
    background-image: url("../images/page1.png");
    background-position: -328px -2px;
    transform: rotateY(180deg);
  }
}
@keyframes nextFlip6 {
  0% {
    background-image: url("../images/page1.png");
    background-position: -28px -2px;
    transform: rotateY(0deg);
  }
  12.5% {
    background-image: url("../images/page2.png");
    background-position: -358px -2px;
    transform: rotateY(180deg);
  }
  20% {
    background-image: url("../images/page2.png");
    background-position: -28px -2px;
    transform: rotateY(0deg);
  }
  32.5% {
    background-image: url("../images/page3.png");
    background-position: -358px -2px;
    transform: rotateY(180deg);
  }
  40% {
    background-image: url("../images/page3.png");
    background-position: -28px -2px;
    transform: rotateY(0deg);
  }
  52.5% {
    background-image: url("../images/page4.png");
    background-position: -358px -2px;
    transform: rotateY(180deg);
  }
  60% {
    background-image: url("../images/page4.png");
    background-position: -28px -2px;
    transform: rotateY(0deg);
  }
  72.5% {
    background-image: url("../images/page5.png");
    background-position: -358px -2px;
    transform: rotateY(180deg);
  }
  80% {
    background-image: url("../images/page5.png");
    background-position: -28px -2px;
    transform: rotateY(0deg);
  }
  92.5% {
    background-image: url("../images/page1.png");
    background-position: -358px -2px;
    transform: rotateY(180deg);
  }
}
@keyframes nextFlip7 {
  0% {
    background-image: url("../images/page1.png");
    background-position: -2px -2px;
    transform: rotateY(0deg);
  }
  13% {
    background-image: url("../images/page2.png");
    background-position: -388px -2px;
    transform: rotateY(180deg);
  }
  20% {
    background-image: url("../images/page2.png");
    background-position: -2px -2px;
    transform: rotateY(0deg);
  }
  33% {
    background-image: url("../images/page3.png");
    background-position: -388px -2px;
    transform: rotateY(180deg);
  }
  40% {
    background-image: url("../images/page3.png");
    background-position: -2px -2px;
    transform: rotateY(0deg);
  }
  53% {
    background-image: url("../images/page4.png");
    background-position: -388px -2px;
    transform: rotateY(180deg);
  }
  60% {
    background-image: url("../images/page4.png");
    background-position: -2px -2px;
    transform: rotateY(0deg);
  }
  73% {
    background-image: url("../images/page5.png");
    background-position: -388px -2px;
    transform: rotateY(180deg);
  }
  80% {
    background-image: url("../images/page5.png");
    background-position: -2px -2px;
    transform: rotateY(0deg);
  }
  93% {
    background-image: url("../images/page1.png");
    background-position: -388px -2px;
    transform: rotateY(180deg);
  }
}
.home-page .home-page-wrap .faq-section {
  width: 100%;
  min-height: 100vh;
}
.home-page .home-page-wrap .faq-section .faq-sec-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  padding-bottom: 80px;
}
.home-page .home-page-wrap .faq-section .faq-sec-wrapper::before {
  content: "";
  height: 150%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: radial-gradient(ellipse at center, #9536e5 0, rgba(149, 54, 229, 0) 74%, rgba(149, 54, 229, 0) 100%);
  opacity: 0.45;
  z-index: 1;
}
.home-page .home-page-wrap .faq-section .faq-sec-wrapper::after {
  content: "";
  height: 150%;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: radial-gradient(ellipse at center, #00b9ff 0, rgba(0, 185, 255, 0) 70%, rgba(0, 185, 255, 0) 100%);
  opacity: 0.45;
  z-index: 0;
}
.home-page .home-page-wrap .faq-section .faq-sec-wrapper .faq-text-cont h1 {
  color: rgba(255, 255, 255, 0.8039215686);
  text-transform: uppercase;
  font-size: 4em;
  text-align: center;
}
.home-page .home-page-wrap .faq-section .faq-sec-wrapper .faq-text-cont h3 {
  color: rgba(255, 255, 255, 0.8039215686);
  text-transform: uppercase;
  font-size: 1.5em;
  text-align: center;
}
.home-page .home-page-wrap .faq-section .faq-sec-wrapper .main-cont {
  width: 70%;
  height: 100%;
  position: relative;
  z-index: 3;
}
.home-page .home-page-wrap .faq-section .faq-sec-wrapper .main-cont details {
  color: #fff;
  padding: 10px;
  border-radius: 24px;
}
.home-page .home-page-wrap .faq-section .faq-sec-wrapper .main-cont details p {
  padding: 25px;
}
.home-page .home-page-wrap .faq-section .faq-sec-wrapper .main-cont details summary {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  color: #fff;
  padding: 15px 25px;
  border-radius: 24px;
}

.elobcourses-page {
  width: 100%;
}
.elobcourses-page .course-details-heading {
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3em;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
}
.elobcourses-page .course-details-heading:hover::after {
  width: 60%;
  transition: 0.5s ease;
}
.elobcourses-page .course-details-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 40%;
  height: 5px;
  transition: 0.5s ease;
  background: var(--prdarkclr);
}
.elobcourses-page .course-detail-wrapper {
  width: 100%;
  margin: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.elobcourses-page .course-detail-wrapper .secondry-card {
  width: 90%;
  background: url("../images/courseCardbg.png");
  background-size: cover;
  background-blend-mode: exclusion;
}
.elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper {
  width: 100%;
  display: flex;
  gap: 25px;
  align-items: center;
  border: 1px solid rgba(133, 133, 133, 0.679);
  border-radius: 25px;
  padding: 15px 0;
}
.elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .img-box img {
  width: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .card-text-cont-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 15px;
}
.elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .card-text-cont-box .sec-card-heading {
  font-size: 2em;
  font-weight: 500;
}
.elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .card-text-cont-box .sec-card-description {
  color: rgb(123, 123, 123);
  font-size: 1.3em;
}
.elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .card-text-cont-box .learmore-sec-card details {
  width: 100%;
  color: white;
}
.elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .card-text-cont-box .learmore-sec-card details[open] > summary {
  border-bottom: none;
}
.elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .card-text-cont-box .learmore-sec-card details .btn-learn-more {
  width: 100%;
  height: 40px;
  color: black;
  border-bottom: 2px solid rgb(255, 176, 30);
  list-style: none;
  background: white;
  font-weight: 600;
  color: rgb(255, 176, 30);
  cursor: pointer;
}
.elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .card-text-cont-box .learmore-sec-card details .btn-learn-more i {
  transition: 0.5s ease;
}
.elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .card-text-cont-box .learmore-sec-card details .btn-learn-more:hover i {
  translate: 15px 0 0;
  transition: 0.5s ease;
}
.elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .card-text-cont-box .learmore-sec-card details .learn-more-details {
  width: 100%;
  padding: 15px;
  background: var(--prlightclr);
  border-radius: 25px;
}
.elobcourses-page .course-count-details {
  margin: 30px 0;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.elobcourses-page .course-count-details .course-count-inner {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
.elobcourses-page .course-count-details .course-count-inner .count-cont {
  width: 300px;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.elobcourses-page .course-count-details .course-count-inner .count-cont .count {
  font-size: 4em;
  color: rgb(0, 89, 255);
  font-weight: 700;
}
.elobcourses-page .course-count-details .course-count-inner .count-cont .count-head {
  font-size: 2em;
  font-weight: 600;
}
.elobcourses-page .course-card-wrapper {
  margin: 200px 0 0 0;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 150px;
}
.elobcourses-page .course-card-wrapper .course-card {
  width: 90%;
  height: 400px;
  border-radius: 10px;
  background: rgb(0, 5, 40);
  box-shadow: 0 0 15px rgba(0, 5, 40, 0.318);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.elobcourses-page .course-card-wrapper .course-card:nth-child(1) .right-crs .right-wrapper h3 {
  color: #2b85fc;
}
.elobcourses-page .course-card-wrapper .course-card:nth-child(2) .right-crs .right-wrapper h3 {
  color: #ff439d;
}
.elobcourses-page .course-card-wrapper .course-card:nth-child(3) .right-crs .right-wrapper h3 {
  color: #fcb32b;
}
.elobcourses-page .course-card-wrapper .course-card:nth-child(4) .right-crs .right-wrapper h3 {
  color: #ff2951;
}
.elobcourses-page .course-card-wrapper .course-card:hover .badge {
  top: 35%;
  transition: 1s ease;
}
.elobcourses-page .course-card-wrapper .course-card .badge {
  position: absolute;
  top: 20px;
  right: 0;
  padding: 10px 5px;
  font-size: 1em;
  color: #fff;
  font-weight: 500;
  background: #d82029;
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-transform: uppercase;
  transition: 1s ease;
}
.elobcourses-page .course-card-wrapper .course-card:nth-child(even) {
  flex-direction: row-reverse;
}
.elobcourses-page .course-card-wrapper .course-card:nth-child(even) .badge {
  left: 0;
  flex: 0;
  width: 26px;
  border-radius: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.elobcourses-page .course-card-wrapper .course-card:nth-child(even) .left-crs img {
  transform-origin: bottom right;
  left: -85px;
}
.elobcourses-page .course-card-wrapper .course-card .left-crs {
  height: 100%;
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.elobcourses-page .course-card-wrapper .course-card .left-crs img {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 130%;
  height: 130%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.elobcourses-page .course-card-wrapper .course-card .left-crs img:hover {
  transition: 0.5s ease;
}
.elobcourses-page .course-card-wrapper .course-card .right-crs {
  height: 100%;
  width: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: #fff;
}
.elobcourses-page .course-card-wrapper .course-card .right-crs .right-wrapper {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 100%;
  gap: 10px;
}
.elobcourses-page .course-card-wrapper .course-card .right-crs .right-wrapper h3 {
  text-align: left;
  font-size: 3em;
}
.elobcourses-page .course-card-wrapper .course-card .right-crs .right-wrapper .buy-cont {
  align-items: center;
  display: flex;
  gap: 100px;
}
.elobcourses-page .course-card-wrapper .course-card .right-crs .right-wrapper .buy-cont .price del {
  font-size: 1.3em;
}
.elobcourses-page .course-card-wrapper .course-card .right-crs .right-wrapper .buy-cont .price span {
  font-size: 1.8em;
  font-weight: 700;
}
.elobcourses-page .bottom-buy-now-btn {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  transition: 2s ease;
  z-index: 6;
}
.elobcourses-page .bottom-buy-now-btn.scrolled {
  transition: 2s ease;
  bottom: 0;
}
.elobcourses-page .bottom-buy-now-btn .bottom-buy-cont {
  width: 100%;
  height: 100%;
}
.elobcourses-page .bottom-buy-now-btn .bottom-buy-cont .btn-cont1 {
  width: 100%;
  height: 100%;
}
.elobcourses-page .bottom-buy-now-btn .bottom-buy-cont .btn-cont1 .bottm-buybtn {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  background: var(--prdarkclr);
  color: white;
  border: 1px solid rgb(212, 212, 212);
  font-size: 2.5em;
  font-weight: 700;
  text-decoration: none;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 15px;
}
.elobcourses-page .bottom-sug-card-cont {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  flex-direction: column;
}
.elobcourses-page .bottom-sug-card-cont .course-details-heading1 {
  text-transform: uppercase;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 40px;
}
.elobcourses-page .bottom-sug-card-cont .course-details-heading1:hover::after {
  width: 60%;
  transition: 0.5s ease;
}
.elobcourses-page .bottom-sug-card-cont .course-details-heading1::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 40%;
  height: 5px;
  transition: 0.5s ease;
  background: var(--prdarkclr);
}
.elobcourses-page .bottom-sug-card-cont .sug-card-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.elobcourses-page .bottom-sug-card-cont .sug-card-wrapper .sug-card {
  width: 250px;
  height: 300px;
  background: var(--prdarkclr);
  box-shadow: 0 0 15px gray;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.elobcourses-page .bottom-sug-card-cont .sug-card-wrapper .sug-card .card-img-box {
  height: 100%;
  width: 100%;
}
.elobcourses-page .bottom-sug-card-cont .sug-card-wrapper .sug-card .card-img-box img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.elobcourses-page .bottom-sug-card-cont .sug-card-wrapper .sug-card .card-text-cont {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.799));
  color: #fff;
  padding: 25px;
}
.elobcourses-page .bottom-sug-card-cont .sug-card-wrapper .sug-card .card-text-cont h1 {
  text-transform: uppercase;
  font-size: 1em;
  text-align: center;
}
.elobcourses-page .bottom-sug-card-cont .sug-card-wrapper .sug-card .card-text-cont a {
  text-decoration: none;
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 24px;
}
.elobcourses-page .alpha-elob-section {
  width: 100%;
}

@keyframes scroll-x {
  from {
    transform: translateX(var(--scroll-start));
  }
  to {
    transform: translateX(var(--scroll-end));
  }
}
@keyframes gradrot {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes textanim {
  0%, 18%, 20%, 50.1%, 60%, 65.1%, 80%, 90.1%, 92% {
    color: #0e3742;
    text-shadow: none;
  }
  18.1%, 20.1%, 30%, 60.1%, 65%, 80.1%, 90%, 92.1%, 100% {
    color: rgba(255, 255, 255, 0.3215686275);
    text-shadow: 0 0 10px rgba(3, 188, 244, 0.1843137255), 0 0 20px rgba(3, 188, 244, 0.1764705882), 0 0 40px rgba(3, 188, 244, 0.1450980392), 0 0 80px rgba(3, 188, 244, 0.1882352941), 0 0 160px rgba(3, 188, 244, 0.1921568627);
  }
}
@keyframes scl {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.2;
  }
}
@keyframes ltr {
  0% {
    left: -100%;
  }
  100% {
    left: 120%;
  }
}
@keyframes shk {
  0% {
    rotate: -10deg;
  }
  50% {
    rotate: 0deg;
  }
  100% {
    rotate: 10deg;
  }
}
@keyframes txtanim {
  0% {
    margin-top: 0;
  }
  10% {
    margin-top: 0;
  }
  20% {
    margin-top: -4.52rem;
  }
  30% {
    margin-top: -4.52rem;
  }
  40% {
    margin-top: -9.74rem;
  }
  60% {
    margin-top: -9.24rem;
  }
  70% {
    margin-top: -4.52rem;
  }
  80% {
    margin-top: -4.52rem;
  }
  90% {
    margin-top: 0;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes txtanim1 {
  0% {
    margin-top: 0;
  }
  20% {
    margin-top: 0rem;
  }
  40% {
    margin-top: -1.9rem;
  }
  60% {
    margin-top: -1.9rem;
  }
  80% {
    margin-top: 0;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes changeword {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  5% {
    opacity: 1;
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(0);
  }
  30% {
    opacity: 0;
    transform: translateY(50px);
  }
  80% {
    opacity: 0;
    transform: translateY(50px);
  }
}
@media only screen and (max-width: 1090px) {
  .nav-bar {
    height: 80px;
  }
  .nav-bar .nav-bar-wrap {
    padding: 0 25px;
  }
  .nav-bar .nav-bar-wrap .nav-wrap-left .logo {
    width: 120px;
  }
  .nav-bar .nav-bar-wrap .nav-wrap-middle {
    display: none;
  }
  .nav-bar .nav-bar-wrap .nav-wrap-right .action-btn {
    display: none;
  }
  .nav-bar .nav-bar-wrap .nav-wrap-right .menu-btn {
    display: block;
  }
  .home-page .home-page-wrap .home-header .home-header-top {
    height: 150vh;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg::after {
    animation: none;
    rotate: 115deg;
    background: #d971ff;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg::before {
    top: 24px;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg {
    gap: 10px;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim p {
    display: inline-block;
    vertical-align: top;
    margin: 0;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim .txtrvlwrd {
    position: absolute;
    /* makes words stack on top of each other */
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3em;
    text-transform: uppercase;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim .wisteria {
    color: #ffffff;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim .belize {
    color: #ffffff;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim .letter {
    display: inline-block;
    transform-origin: 50% 50% 25px;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim .letter.out {
    transform: rotateX(90deg);
    transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim .letter.behind {
    transform: rotateX(-90deg);
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .txt-rvl-anim .letter.in {
    transform: rotateX(0deg);
    transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap h1 {
    margin-top: 50px;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .positivity {
    position: relative;
    width: 500px;
    height: auto;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0.2rem;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-transform: uppercase;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .positivity .positivity__alone {
    display: inline-block;
    font-size: 1rem;
    font-weight: bolder;
    color: #fff;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .positivity .positivity__words {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 30px;
    overflow: hidden;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .txtrvlanimwrap .positivity .positivity__words .change {
    font-size: 1.5rem;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .anim-cont p {
    font-size: 1.3em;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .anim-cont .dytxt {
    font-size: 1.3em;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .anim-cont .dytxt div div {
    padding: 0.55rem 0.95rem;
    height: 3.21rem;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .fg-title {
    padding: 25px;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .fg-title h1 {
    font-size: 1.3em;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .fg-title h4 {
    font-size: 1em;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .top-hd-fg .fg-title .india-color {
    font-size: 2.5rem;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .moving-screen {
    top: 500px;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .moving-screen .temp-scroll .mar-grp .momnts-card {
    width: 200px;
    height: 170px;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec {
    height: 70vh;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec h1 {
    font-size: 1.5em;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-cont-top {
    font-size: 1em;
    gap: 10px;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-cont-top .content-box .text {
    font-size: 0.8em;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-cont-top .content-box img {
    width: 100px;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-video-cont .play-btn {
    width: 60px;
    height: 60px;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg .ovly-sec .center-cont .center-video-cont .play-text {
    font-size: 1em;
  }
  .home-page .home-page-wrap .video-section {
    margin: 50px 0;
    height: 50vh;
  }
  .home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-left {
    padding: 15px;
  }
  .home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-left h1 {
    font-size: 1em;
  }
  .home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-left .text-desc {
    font-size: 1.2em;
  }
  .home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-right {
    width: 100px;
    height: 100px;
  }
  .home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb .v-section-right span {
    font-size: 3em;
  }
  .home-page .home-page-wrap .learning-opty {
    height: 100vh;
  }
  .home-page .home-page-wrap .learning-opty .l-o-wrapper .text-cont {
    padding: 15px;
  }
  .home-page .home-page-wrap .learning-opty .l-o-wrapper .moving-screen .temp-scroll .mar-grp .momnts-card {
    width: 150px;
    height: 100px;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper h1 {
    padding: 0 25px;
    font-size: 1.5em;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper h3 {
    font-size: 0.9em;
    padding: 0px 25px;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper {
    margin: 50px 0 0 0;
    gap: 30px;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card {
    height: auto;
    flex-direction: column;
    align-items: center;
    padding-bottom: 15px;
    overflow: hidden;
    background: #1d0050;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card:nth-child(even) {
    flex-direction: column;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card:nth-child(even) .badge {
    left: 0;
    flex: 0;
    width: 26px;
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card:nth-child(even) .left-crs {
    width: 100%;
    height: 80%;
    background: #461a7b;
    padding: 20px;
    padding-bottom: 0;
    box-sizing: border-box;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card:nth-child(even) .left-crs img {
    position: relative;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 100%;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .badge {
    font-size: 0.6em;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .left-crs {
    width: 100%;
    height: 80%;
    height: auto;
    background: #461a7b;
    padding: 20px;
    padding-bottom: 0;
    box-sizing: border-box;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .left-crs img {
    position: relative;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 100%;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs {
    width: 100%;
    height: auto;
    padding: 10px;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: 10px;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .course-card-heading {
    width: 100%;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .course-card-heading .sneeks {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid rgb(132, 184, 191);
    padding-bottom: 10px;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .course-card-heading .sneeks p {
    font-size: 0.8em;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .course-card-heading .sneeks p span {
    font-size: 0.8em;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .features-list {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .features-list p {
    font-size: 0.8em;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .features-list p span {
    font-size: 0.8em;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .features-list-info {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .features-list-info .info-btn {
    display: block;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .features-list-info .info-btn:hover + .about-course {
    top: 0;
    transition: 0.5s ease;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .features-list-info .about-course {
    font-size: 0.9em;
    text-align: center;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper h3 {
    text-align: center;
    font-size: 1.5em;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .buy-cont {
    justify-content: space-between;
    gap: 30px;
    padding: 0 15px;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .buy-cont .price {
    font-size: 0.7em;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .buy-cont .btn-cont1 .sec-btn {
    font-size: 0.7em;
  }
  .home-page .home-page-wrap .growth-add-section {
    height: 50vh;
  }
  .home-page .home-page-wrap .growth-add-section .grwt-add-wrapper .heading {
    font-size: 1.5em;
  }
  .home-page .home-page-wrap .growth-add-section .grwt-add-wrapper .heading::before {
    top: 45px;
    width: 250px;
    height: 3px;
  }
  .home-page .home-page-wrap .growth-add-section .grwt-add-wrapper .heading::after {
    top: 55px;
    width: 350px;
    height: 3px;
  }
  .home-page .home-page-wrap .growth-add-section .grwt-add-wrapper .grwt-add-cont {
    gap: 30px;
  }
  .home-page .home-page-wrap .growth-add-section .grwt-add-wrapper .grwt-add-cont .count-cont h1 {
    font-size: 2em;
  }
  .home-page .home-page-wrap .growth-add-section .grwt-add-wrapper .grwt-add-cont .count-cont h2 {
    font-size: 1em;
  }
  .home-page .home-page-wrap .steps-grwt-section {
    height: 50vh;
  }
  .home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .heading {
    font-size: 1.5em;
  }
  .home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont {
    gap: 50px;
  }
  .home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar {
    height: 4px;
  }
  .home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar:nth-child(1) {
    background: rgb(173, 6, 202);
  }
  .home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar:nth-child(1)::before {
    background: rgb(173, 6, 202);
  }
  .home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar:nth-child(2) {
    background: rgb(81, 6, 202);
  }
  .home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar:nth-child(2)::before {
    background: rgb(81, 6, 202);
  }
  .home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar:nth-child(3) {
    background: rgb(6, 78, 202);
  }
  .home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar:nth-child(3)::before {
    background: rgb(6, 78, 202);
  }
  .home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .step-bar .sbar::before {
    width: 10px;
    height: 10px;
  }
  .home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .steps .stp {
    flex-direction: column;
    gap: 15px;
  }
  .home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .steps .stp span {
    font-size: 1em;
  }
  .home-page .home-page-wrap .steps-grwt-section .steps-grwt-wrapper .steps-cont .steps .stp h3 {
    font-size: 0.7em;
    text-transform: uppercase;
  }
  .home-page .home-page-wrap .instructors-section {
    height: auto;
  }
  .home-page .home-page-wrap .instructors-section .instructor-wrapper .heading h1 {
    font-size: 1.3rem;
  }
  .home-page .home-page-wrap .instructors-section .instructor-wrapper .heading h2 {
    font-size: 1.3rem;
  }
  .home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper {
    width: 100%;
    height: 80%;
  }
  .home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper {
    width: 90%;
    height: 100%;
    padding: 20px;
  }
  .home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-wrapper .swiper-slide {
    width: 100%;
    height: 400px;
  }
  .home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-wrapper .swiper-slide .overlay h3 {
    text-align: left;
    color: #fff;
  }
  .home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-button-next {
    top: 40% !important;
  }
  .home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-button-next::after {
    color: white;
  }
  .home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-button-prev {
    top: 40% !important;
  }
  .home-page .home-page-wrap .instructors-section .instructor-wrapper .crousal-wrapper .swiper .swiper-button-prev::after {
    color: white;
  }
  .home-page .home-page-wrap .plant-section {
    height: 50vh;
  }
  .home-page .home-page-wrap .plant-section .plant-section-wrapper {
    position: relative;
  }
  .home-page .home-page-wrap .plant-section .plant-section-wrapper .left-cont {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  .home-page .home-page-wrap .plant-section .plant-section-wrapper .left-cont img {
    width: 100%;
    height: 100%;
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    bottom: 0;
    position: absolute;
    bottom: 0;
    left: -123px;
  }
  .home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont {
    width: 50%;
    height: auto;
    position: absolute;
    gap: 70px;
    top: 10%;
    left: 50%;
  }
  .home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont .anim-cont p {
    font-size: 1em;
  }
  .home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont .anim-cont .dytxt {
    margin-left: 1rem;
    font-size: 2em;
  }
  .home-page .home-page-wrap .plant-section .plant-section-wrapper .right-cont img {
    display: none;
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper h1 {
    font-size: 1.5em;
    text-align: center;
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont {
    flex-wrap: wrap;
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card {
    width: 150px;
    height: 150px;
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(1) {
    transform: translate(0, 0px);
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(2) {
    transform: translate(0, 0px);
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(3) {
    transform: translate(0, 0px);
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(4) {
    transform: translate(0, 0px);
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(5) {
    transform: translate(0, 0px);
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:hover .front {
    transform: rotateY(0deg);
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .front .card-img {
    width: 50px;
    height: 50px;
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .front h3 {
    font-size: 0.5em;
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .back {
    display: none;
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .back h3 {
    font-size: 0.6em;
    text-align: center;
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .back a {
    font-size: 0.6em;
  }
  .home-page .home-page-wrap .testimonialt-section {
    height: 100vh;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .heading {
    font-size: 2em;
    top: 0px;
    left: 25px;
    writing-mode: horizontal-tb;
    rotate: 0deg;
    text-align: left;
    color: #000;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap {
    width: 100%;
    height: 100%;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal {
    padding: 20px;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card {
    width: 100%;
    height: 100%;
    border: none;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .img-box {
    width: 100%;
    height: 300px;
    justify-content: center;
    align-items: center;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .img-box .img-box-wrap {
    width: 100%;
    height: 100%;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .img-box .img-box-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 30%;
       object-position: center 30%;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc {
    width: 100%;
    padding: 20px 0px;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc .desc-wrap {
    padding: 0;
    border-radius: 0;
    width: 100%;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc .desc-wrap h1 {
    font-size: 1.5em;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc .desc-wrap .rating {
    color: rgb(255, 191, 0);
    font-size: 1em;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc .desc-wrap p {
    font-size: 0.8em;
    text-align: justify;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .swiper-button-next {
    top: 40% !important;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .swiper-button-next::after {
    color: white;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .swiper-button-prev {
    top: 40% !important;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .swiper-button-prev::after {
    color: white;
  }
  .home-page .home-page-wrap .instgram-section {
    height: 40vh;
  }
  .home-page .home-page-wrap .instgram-section .insta-wrapper a {
    top: 65%;
    height: 30px;
  }
  .home-page .home-page-wrap .book-section {
    height: 80vh;
  }
  .home-page .home-page-wrap .book-section .book-sec-wrapper h1 {
    color: rgba(255, 255, 255, 0.6862745098);
    font-size: 1em;
    text-transform: uppercase;
    text-align: center;
  }
  .home-page .home-page-wrap .book-section .book-sec-wrapper h3 {
    color: rgba(255, 255, 255, 0.6862745098);
    font-size: 2.5em;
    text-transform: uppercase;
    text-align: center;
  }
  .home-page .home-page-wrap .faq-section {
    width: 100%;
    min-height: 100vh;
  }
  .home-page .home-page-wrap .faq-section .faq-sec-wrapper .faq-text-cont h1 {
    font-size: 2em;
  }
  .home-page .home-page-wrap .faq-section .faq-sec-wrapper .faq-text-cont h3 {
    font-size: 1em;
  }
  .home-page .home-page-wrap .faq-section .faq-sec-wrapper .main-cont {
    width: 100%;
  }
  .footer-section {
    height: auto;
    padding-bottom: 50px;
  }
  .footer-section .footeer-wrapper {
    flex-direction: column;
  }
  .footer-section .footeer-wrapper .cols1 {
    width: 100%;
    display: flex;
    gap: 40px;
    flex-direction: column;
  }
  .footer-section .footeer-wrapper .cols1 p {
    text-align: justify;
  }
  .footer-section .footeer-wrapper .cols2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .footer-section .footeer-wrapper .cols2 ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-section .footeer-wrapper .cols2 ul li {
    list-style: none;
  }
  .footer-section .footeer-wrapper .cols2 ul li a {
    text-decoration: none;
    color: white;
    cursor: pointer;
  }
  .footer-section .footeer-wrapper .cols3 {
    display: flex;
    gap: 40px;
    flex-direction: column;
  }
  .footer-section .footeer-wrapper .cols3 .info-cont {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .footer-section .footeer-wrapper .cols3 .info-cont .phone-cont {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .footer-section .footeer-wrapper .cols4 {
    display: flex;
    gap: 40px;
    flex-direction: column;
  }
  .footer-section .footeer-wrapper .cols4 .latest-update-cont {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
  .footer-section .footeer-wrapper .cols4 .latest-update-cont input {
    height: 35px;
    padding: 5px 10px;
    border: none;
    outline: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.7764705882);
    background: transparent;
    color: #fff;
  }
  .footer-section .footeer-wrapper .cols4 .latest-update-cont input::-moz-placeholder {
    color: #fff;
  }
  .footer-section .footeer-wrapper .cols4 .latest-update-cont input::placeholder {
    color: #fff;
  }
  .footer-section .footeer-wrapper .cols4 .latest-update-cont .social-icon-cont {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .footer-section .footeer-wrapper .cols4 .latest-update-cont .social-icon-cont a {
    text-decoration: none;
    color: #FFF;
    font-size: 1.5em;
  }
  .elobcourses-page {
    width: 100%;
  }
  .elobcourses-page .course-details-heading {
    font-size: 1.4em;
  }
  .elobcourses-page .course-details-heading::after {
    height: 3px;
  }
  .elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper {
    flex-direction: column;
  }
  .elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .img-box {
    width: 90%;
  }
  .elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .img-box img {
    width: 100%;
  }
  .elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .card-text-cont-box .sec-card-heading {
    font-size: 1.5em;
  }
  .elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .card-text-cont-box .sec-card-description {
    font-size: 0.8em;
  }
  .elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .card-text-cont-box .learmore-sec-card details .learn-more-details h1 {
    font-size: 1.2em;
  }
  .elobcourses-page .course-detail-wrapper .secondry-card .secondry-card-wrapper .card-text-cont-box .learmore-sec-card details .learn-more-details p {
    font-size: 1em;
    margin: 5px 0;
  }
  .elobcourses-page .course-count-details .course-count-inner .count-cont .count {
    font-size: 1.5em;
  }
  .elobcourses-page .course-count-details .course-count-inner .count-cont .count-head {
    font-size: 1em;
  }
  .elobcourses-page .course-card-wrapper {
    margin: 50px 0 0 0;
  }
  .elobcourses-page .course-card-wrapper .course-card {
    height: auto;
    flex-direction: column;
    padding: 15px 0;
  }
  .elobcourses-page .course-card-wrapper .course-card:nth-child(even) {
    flex-direction: column;
  }
  .elobcourses-page .course-card-wrapper .course-card:nth-child(even) .badge {
    left: 0;
    flex: 0;
    width: 26px;
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
  .elobcourses-page .course-card-wrapper .course-card:nth-child(even) .left-crs {
    width: 100%;
    height: auto;
  }
  .elobcourses-page .course-card-wrapper .course-card:nth-child(even) .left-crs img {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .elobcourses-page .course-card-wrapper .course-card .left-crs {
    width: 100%;
    height: auto;
  }
  .elobcourses-page .course-card-wrapper .course-card .left-crs img {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .elobcourses-page .course-card-wrapper .course-card .right-crs {
    width: 100%;
    height: auto;
    padding: 10px;
  }
  .elobcourses-page .course-card-wrapper .course-card .right-crs .right-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 10px;
  }
  .elobcourses-page .course-card-wrapper .course-card .right-crs .right-wrapper .features-list {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .elobcourses-page .course-card-wrapper .course-card .right-crs .right-wrapper .features-list-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .elobcourses-page .course-card-wrapper .course-card .right-crs .right-wrapper .features-list-info .about-course p {
    text-align: justify;
  }
  .elobcourses-page .course-card-wrapper .course-card .right-crs .right-wrapper h3 {
    text-align: left;
    font-size: 1.8em;
  }
  .elobcourses-page .course-card-wrapper .course-card .right-crs .right-wrapper .buy-cont {
    flex-direction: column;
    gap: 30px;
  }
  .elobcourses-page .bottom-buy-now-btn .bottom-buy-cont .btn-cont1 .bottm-buybtn {
    font-size: 1em;
  }
  .elobcourses-page .bottom-sug-card-cont .course-details-heading1 {
    font-size: 1em;
    padding: 0 15px;
    padding-bottom: 10px;
  }
  .elobcourses-page .bottom-sug-card-cont .course-details-heading1::after {
    height: 2px;
  }
  .elobcourses-page .bottom-sug-card-cont .sug-card-wrapper {
    flex-wrap: wrap;
  }
  .elobcourses-page .alpha-elob-section {
    width: 100%;
  }
}
@media (max-width: 1220px) and (min-width: 992px) {
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg::after {
    animation: none;
    rotate: 115deg;
  }
  .home-page .home-page-wrap .home-header .home-header-top .top-hd-bg::before {
    top: 140px;
  }
  .home-page .home-page-wrap .video-section .video-section-wrapper .v-thumb {
    width: 90%;
    height: 100%;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper h3 {
    padding: 20px;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card {
    height: auto;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .left-crs {
    width: 40%;
    height: 80%;
    height: auto;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .left-crs img {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs {
    width: 60%;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .features-list p {
    font-size: 1em;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .features-list p span {
    font-size: 1em;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper h3 {
    text-align: left;
    font-size: 2em;
  }
  .home-page .home-page-wrap .courses-section .courses-wrapper .course-card-wrapper .course-card .right-crs .right-wrapper .buy-cont .btn-cont1 .sec-btn {
    padding: 15px 20px;
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper h1 {
    text-align: center;
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont {
    padding: 20px;
    flex-wrap: wrap;
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card {
    width: 250px;
    height: 250px;
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(1) {
    transform: translate(0, 0px);
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(2) {
    transform: translate(0, 0px);
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(3) {
    transform: translate(0, 0px);
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(4) {
    transform: translate(0, 0px);
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:nth-child(5) {
    transform: translate(0, 0px);
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card:hover .front {
    transform: rotateY(0deg);
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .front h3 {
    font-size: 1em;
  }
  .home-page .home-page-wrap .best-f-other-section .other-sec-wrapper .card-cont .special-card .back {
    display: none;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper {
    padding: 25px;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .heading {
    font-size: 3.5em;
    margin-top: 25px;
    top: 0px;
    left: 25px;
    writing-mode: horizontal-tb;
    rotate: 0deg;
    text-align: left;
    color: #000;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap {
    width: 100%;
    height: 100%;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal {
    padding: 20px;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card {
    width: 100%;
    height: 100%;
    border: none;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .img-box {
    width: 60%;
    height: 400px;
    justify-content: center;
    align-items: center;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .img-box .img-box-wrap {
    width: 100%;
    height: 100%;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .img-box .img-box-wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 30%;
       object-position: center 30%;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc {
    width: 100%;
    padding: 20px 0px;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc .desc-wrap {
    padding: 0;
    border-radius: 0;
    width: 100%;
    align-items: center;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc .desc-wrap h1 {
    font-size: 1.5em;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc .desc-wrap .rating {
    color: rgb(255, 191, 0);
    font-size: 1em;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .testi-card .testi-card-wrap .desc .desc-wrap p {
    font-size: 0.8em;
    text-align: center;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .swiper-button-next {
    top: 40% !important;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .swiper-button-next::after {
    color: white;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .swiper-button-prev {
    top: 40% !important;
  }
  .home-page .home-page-wrap .testimonialt-section .testimonial-wrapper .testimonial-cont .left-wrap .testimonial-crousal .swiper-button-prev::after {
    color: white;
  }
  .home-page .home-page-wrap .instgram-section {
    height: 40vh;
  }
  .home-page .home-page-wrap .instgram-section .insta-wrapper a {
    top: 65%;
    height: 30px;
  }
  .home-page .home-page-wrap .book-section {
    height: 80vh;
  }
  .home-page .home-page-wrap .book-section .book-sec-wrapper h1 {
    color: rgba(255, 255, 255, 0.6862745098);
    font-size: 1em;
    text-transform: uppercase;
    text-align: center;
  }
  .home-page .home-page-wrap .book-section .book-sec-wrapper h3 {
    color: rgba(255, 255, 255, 0.6862745098);
    font-size: 2.5em;
    text-transform: uppercase;
    text-align: center;
  }
  .home-page .home-page-wrap .faq-section {
    width: 100%;
    min-height: 100vh;
  }
  .home-page .home-page-wrap .faq-section .faq-sec-wrapper .faq-text-cont h1 {
    font-size: 2em;
  }
  .home-page .home-page-wrap .faq-section .faq-sec-wrapper .faq-text-cont h3 {
    font-size: 1em;
  }
  .home-page .home-page-wrap .faq-section .faq-sec-wrapper .main-cont {
    width: 100%;
  }
}/*# sourceMappingURL=our-style.css.map */