@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root{
  --primary-color: #9E5EB5;
  --secondary-color: #1C1C1C;
  --secondary-dark: #3B4A50;
  --light-color: #F0F3F8;
  --white: #fff;
  --primary-font: "Montserrat", sans-serif;
}
body {
  font-family: var(--primary-font);
  color: var(--secondary-dark);
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: color-mix(in srgb, var(--primary-color), var(--secondary-color) 40%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
}

a.underlined-btn {
  font-weight: 600;
  font-size: 14px;
  border-bottom: 2px solid ;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--white);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--primary-color);
  border-top-color: #d2f9eb;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 10px;
  bottom: 10px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px 50px 10px 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--white);
  line-height: 0;
}

.back-to-top:hover {
  background: color-mix(in srgb, var(--primary-color), var(--secondary-color) 40%);
  color: var(--white);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.whatsapp-btn{
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 996;
  background: #24cc63;
  width: 40px;
  height: 40px;
  border-radius: 50px 50px 50px 10px;
  transition: all 0.4s;
  animation: vertical-shaking 0.6s infinite;
}
.whatsapp-btn i {
  font-size: 28px;
  color: var(--white);
  line-height: 0;
}

.whatsapp-btn:hover {
  background: #075b51;
  color: var(--white);
}
@keyframes vertical-shaking {
  0% { transform: translateY(0) }
  25% { transform: translateY(5px) }
  50% { transform: translateY(-5px) }
  75% { transform: translateY(5px) }
  100% { transform: translateY(0) }
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: color-mix(in srgb, var(--white), transparent 40%);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: color-mix(in srgb, var(--white), transparent 10%);
  height: 60px;
  box-shadow: color-mix(in srgb, var(--primary-color), transparent 80%) 0px 8px 24px;
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: var(--white);
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 50px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--primary-font);
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}


.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--primary-color);
  border: 1px solid color-mix(in srgb, var(--primary-color), transparent 0%);
  background: color-mix(in srgb, var(--primary-color), transparent 90%);
  box-shadow: color-mix(in srgb, var(--primary-color), transparent 80%) 0px 8px 24px;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #01036f;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

a.nav-link {
  background: color-mix(in srgb, var(--primary-color), transparent 94%);
  color: var(--secondary-color);
  padding: 2px 22px;
  margin-left: 10px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--primary-color), transparent 90%);
  box-shadow: color-mix(in srgb, var(--primary-color), transparent 90%) 0px 7px 29px 0px;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  background: var(--primary-color);
  border-radius: 4px;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: color-mix(in srgb, var(--primary-color), transparent 50%);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  overflow-y: auto;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-mobile>ul>li>a:before {
  left: 20px;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--primary-color);
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul,
.navbar-mobile .dropdown .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li,
.navbar-mobile .dropdown .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a,
.navbar-mobile .dropdown .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i,
.navbar-mobile .dropdown .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .dropdown>.dropdown-active,
.navbar-mobile .dropdown .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  background: url("../img/hero-bg.png");
  position: relative;
  padding: 40px 0 0 0;
}

#hero:before {
  content: "";
  background: color-mix(in srgb, var(--light-color), transparent 90%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 66px;
  font-weight: 800;
  line-height: 80px;
  color: var(--secondary-color);;
  letter-spacing: 2px;
}
#hero h3 {
  margin: 0 0 20px 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--secondary-dark);;
}

#hero h1 span {
  border-bottom: 4px solid var(--primary-color);
}

#hero h2 {
  color: var(--secondary-color);
  margin-bottom: 40px;
  font-size: 38px;
  font-weight: 400;
}

.btn-get-started {
  font-family: var(--primary-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--white);
  background: var(--primary-color);
}
.btn-get-started-white{
  color: var(--primary-color);
  background: var(--white);
  border: 2px solid var(--light-color);
}

.btn-get-started:hover {
  color: var(--white);
  background: color-mix(in srgb, var(--primary-color), var(--secondary-color) 40%);
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
#hero .hero-main {
  position: absolute;
  left: 0px;
  right: 0px;
  margin: auto;
  top: 0px;
  bottom: 0px;
  width: 81%;
}
#hero .animated-reverse{
  animation: down-up 2s ease-in-out infinite alternate-reverse both;
}

img.star-one {
  position: absolute;
  bottom: 225px;
  right: 62px;
  width: 31px;
  z-index: 9;
  animation: rotate-animation-one 6s infinite linear;
}

img.star-two {
  position: absolute;
  top: 76px;
  right: 50px;
  width: 60px;
  animation: rotate-animation-one 6s infinite linear;
}

img.star-three {
  position: absolute;
  bottom: 244px;
  left: 0px;
  width: 200px;
  opacity: 0.3;
  animation: rotate-animation-one 10s infinite linear;
}

img.rounded-shape {
  width: 260px;
  position: absolute;
  z-index: -1;
  left: 100px;
  top: 0px;
  bottom: -160px;
  margin: auto;
  animation: rotate-animation-one 70s infinite linear;
}

img.study {
  width: 180px;
  position: absolute;
  right: 46px;
  top: 274px;
}
img.smiles {
  width: 180px;
  position: absolute;
  left: 40px;
  bottom: 93px;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero {
    padding-top: 80px;
  }

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  /* #hero .hero-img img {
    max-width: 50%;
  } */

  #hero h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  /* #hero .hero-img img {
    width: 80%;
  } */
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
@keyframes down-up {
  0% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(10px);
  }
}
@keyframes rotate-animation-one {
	0% {
		transform: rotate(0deg);
  }
  50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--light-color);
}

.section-title {
  padding-bottom: 10px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 600;
  padding: 4px 22px;
  border-radius: 6px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-color);
  background: color-mix(in srgb, var(--primary-color), transparent 70%);
  font-family: var(--primary-font);
  width: auto;
  display: inline;
}
.section-title-light h2{
  color: var(--white);
  background: color-mix(in srgb, var(--white), transparent 70%);
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  font-family: var(--primary-font);
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  background-color: color-mix(in srgb, var(--primary-color), transparent 90%);
  min-height: 40px;
  padding-top: 100px;
  position: relative;
}


.breadcrumbs h2 {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  color: var(--white);
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
      font-size: 24px;
    margin: 0 0 0px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  justify-content: center;
  color: var(--white);
}
.breadcrumbs ol a{
  color: var(--white);
  font-weight: 500;
  text-decoration: underline;
}
.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--light-color);
  content: "/";
}
.breadcrumbs-content{
  background: var(--primary-color);
  padding: 100px 0;
  border-radius: 30px;
  z-index: 22;
  position: relative;
  box-shadow: color-mix(in srgb, var(--primary-color), transparent 90%) 0px 0px 20px;
}

.breacrumb-white-bg {
  position: absolute;
  width: 100%;
  height: 35%;
  background: var(--white);
  bottom: 0px;
  border-top: 3px solid var(--primary-color);
}
.breacrumb-grey-bg{
  background: var(--light-color);
}

.breadcrumbs-content.about-page {
  background: url("../img/about-page-bg.png");
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.breadcrumbs-content.courses-page {
  background: url("../img/features-bg.png");
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.breadcrumbs-content.contact-page {
  background: url("../img/contact-page-bg.png");
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about .icon-boxes h3 {
  font-size: 40px;
  font-weight: 500;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}
.about-img{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.about-img .about-main{
  width: 80%;
}
img.round-logo-about {
  position: absolute;
  width: 240px;
  left: 90px;
  bottom: 0px;
  animation: down-up 2s ease-in-out infinite alternate-reverse both;
}
img.about-lined {
  position: absolute;
  z-index: -1;
  width: 200px;
  left: 120px;
  top: 80px;
  animation: rotate-animation-one 20s infinite linear;
}
.round-about{
  width: 200px;
  height: 200px;
  border-radius: 200px;
  position: absolute;
  left: 50px;
  bottom: 100px;
  background: var(--primary-color);
  opacity: 0.4;
  z-index: -1;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #7ceec6;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: var(--primary-color);
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.about .icon-box:hover .icon i {
  color: var(--white);
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: var(--primary-color);
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
  background: url("../img/about.png") center center no-repeat;
  background-size: contain;
  min-height: 300px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white);
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(63, 67, 253, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #3f43fd;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white);
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: ease-in-out 0.3s;
  flex-direction: column;
  background: rgb(255 255 255 / 0%);
  border-radius: 0px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-top: 1px solid rgb(255, 255, 255);
  border-bottom: 1px solid rgb(255, 255, 255);
  text-align: center;
  height: 100%;
}
.features-content{
  z-index: 22;
  position: relative;
}
.features {
  background-image: url("../img/features-bg.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
img.features-logo {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0px;
  margin: auto;
  z-index: 1;
  opacity: 0.5;
}

.features .icon-box img {
  width: 77px;
  margin-bottom: 15px;
}

.features .icon-box h3 {
  font-weight: 600;
  margin: 0;
  padding: 0;
  letter-spacing: 2px;
  line-height: 22px;
  font-size: 16px;
  color: var(--white);
  text-transform: uppercase;
}

.features .icon-box p{
  color: var(--white);
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: var(--light-color);
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: var(--white);
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: var(--primary-color);
  padding: 12px;
  color: var(--white);
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  width: 48px;
  height: 48px;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: var(--secondary-color);
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: var(--primary-font);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details .content+.content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: var(--secondary-color);
}

.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary-color);
}

.details .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/cta-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(1, 3, 111, 0.8);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: var(--white);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--white);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #ddd;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

@media (min-width: 1024px) {
  .testimonials {
    background-attachment: fixed;
  }
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: var(--white);
}

.team .member {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.team .member .pic {
  border-radius: 4px;
  overflow: hidden;
}

.team .member img {
  transition: all ease-in-out 0.4s;
}

.team .member:hover img {
  transform: scale(1.1);
}

.team .member .member-info {
  position: absolute;
  bottom: -80px;
  left: 0px;
  right: 0px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  color: #01036f;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #0d12fc;
  bottom: 0;
  left: calc(50% - 25px);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #01036f;
}

.team .member .social {
  margin-top: 10px;
}

.team .member .social a {
  transition: color 0.3s;
  color: #01036f;
}

.team .member .social a:hover {
  color: var(--primary-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: var(--white);
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: var(--primary-color);
  font-weight: 600;
  font-family: var(--primary-font);
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: var(--secondary-dark);
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: var(--primary-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--primary-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: var(--white);
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--primary-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #149f6e;
}

.pricing .featured h3 {
  color: var(--white);
  background: var(--primary-color);
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: var(--primary-color);
  color: var(--white);
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: var(--white);
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: var(--primary-font);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: color-mix(in srgb, var(--primary-color), var(--secondary-color) 40%);
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: var(--primary-color);
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-title{
  z-index: 22;
  position: relative;
}
.contact-title .contact-icon{
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: color-mix(in srgb, var(--primary-color), transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-title .contact-icon img {
  width: 30px;
  height: 30px;
}
.contact-content h5{
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary-color);
}
.contact-more {
  background: var(--primary-color);
  padding: 7px;
  font-size: 12px;
  border-radius: 6px;
  color: var(--white);
  font-weight: 500;
  margin-top: 16px;
  z-index: 33;
  position: relative;
}
.contact-box-bg {
  width: 100%;
  height: 80%;
  background: var(--white);
  position: absolute;
  border-radius: 10px;
  z-index: 1;
  left: 0;
  top: 0;
}
.form-control {
  background: var(--light-color);
  border: 1px solid var(--light-color);
  border-radius: 50px !important;
  padding: 12px 20px;
  color: var(--primary-color);
}

.form-control:focus {
  background-color: var(--light-color);
  border-color: var(--primary-color);
  outline: 0;
  box-shadow: 0 0 0 .25rem color-mix(in srgb, var(--primary-color), transparent 80%);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--secondary-color);
  padding: 0 0 30px 0;
  color: var(--white);
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}


#footer .copyright {
  text-align: center;
  font-size: 10px;
  letter-spacing: 1px;
}
#footer .copyright a{
  font-weight: 600;
}
nav.footer-nav.navbar {
  justify-content: center;
  border-top: 1px solid var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  gap: 10px;
}
.bg-dark-footer {
  background: color-mix(in srgb, var(--secondary-color), #000 50%);
  padding: 6px;
  border-radius: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--white);
}
#footer a.nav-link{
  margin-left: 0px;
}
#footer a.nav-link {
  background: color-mix(in srgb, var(--primary-color), transparent 82%);
  color: var(--light-color);
  border: 1px solid color-mix(in srgb, var(--primary-color), transparent 90%);
  box-shadow: color-mix(in srgb, var(--primary-color), transparent 90%) 0px 7px 29px 0px;
}
#footer .navbar a:hover, #footer .navbar .active, #footer .navbar .active:focus, #footer .navbar li:hover>a {
  color: var(--white);
  border: 1px solid color-mix(in srgb, var(--primary-color), transparent 0%);
  box-shadow: color-mix(in srgb, var(--primary-color), transparent 80%) 0px 8px 24px;
}
.footer-logo{
  width: 200px;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}

.course-box{
  padding: 15px;
  text-align: center;
  position: relative;
}
.course-img, .course-detail{
  position: relative;
  z-index: 22;
}
.course-img img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: color-mix(in srgb, var(--primary-color), transparent 80%) 0px 8px 24px;
}
.course-box-bg {
  width: 100%;
  background: var(--white);
  height: 50%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 1;
  border-radius: 10px;
  /* margin-bottom: 12%; */
  transition: 1s;
  box-shadow: color-mix(in srgb, var(--primary-color), transparent 90%) 0px 0px 20px;
}
.course-box .btn-get-started{
  font-size: 12px;
  padding: 7px 22px;
  border: 6px solid var(--light-color);
}
.course-detail h5 {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  min-height: 46px;
  margin-top: 10px;
}
.course-details span {
  background: color-mix(in srgb, var(--primary-color), transparent 80%);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 12px;
  padding: 2px 12px;
  border-radius: 20px;
}
.course-box:hover .course-box-bg{
  height: 92%;
  border-radius: 16px;
  transition: 1s;
}

.apply, .contact-link{
  background: var(--light-color);
  position: relative;
}
.apply-row{
  align-items: flex-end;
  z-index: 22;
  position: relative;
}
.apply-row img{
  width: 100%;
}
.how-apply{
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  z-index: 33;
  position: relative;
}
.apply-icon-section{
  position: relative;
}
.how-apply img{
  width: 100px;
  margin-bottom: 16px;
}
.how-apply p{
  font-weight: 600;
  font-size: 16px;
}
img.icon-apply {
  z-index: 22;
  position: relative;
  width: 90px;
}
img.icon-apply.one{
  animation: up-down-one 2s ease-in-out infinite  both;
}
img.icon-apply.two{
  animation: up-down-two 2s ease-in-out infinite  both;
}
img.icon-apply.three{
  animation: up-down-three 2s ease-in-out infinite  both;
}
img.icon-apply.four{
  animation: up-down-four 2s ease-in-out infinite  both;
}
img.icon-bg-apply {
  position: absolute;
  left: 0px;
  right: 0;
  margin: auto;
  z-index: 1;
  opacity: 0.5;
}
.apply-bg {
  position: absolute;
  width: 100%;
  bottom: 0px;
  height: 70%;
  background: linear-gradient(45deg, var(--primary-color), color-mix(in srgb, var(--primary-color), var(--secondary-color) 40%));
  left: 0px;
  border-radius: 30px;
  z-index: 1;
}

.mission-vision .course-box-bg{
  margin-bottom: 0%;
  height: 100%;
}
.mission-vision .course-box:hover .course-box-bg {
  height: 60%;
  border-radius: 16px;
  transition: 1s;
}
.mission-vision .course-box{
  height: 100%;
}
.course-detail h5 {
  min-height: auto;
  color: var(--primary-color);
}

@keyframes up-down-one {
  0% {
    transform: translateY(0px);
  }
  20%{
    transform: translateY(-20px);
  }
  40%{
    transform: translateY(0px);
  }
  60%{
    transform: translateY(0px);
  }
  80%{
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes up-down-two {
  0% {
    transform: translateY(0px);
  }
  20%{
    transform: translateY(0px);
  }
  40%{
    transform: translateY(-20px);
  }
  60%{
    transform: translateY(0px);
  }
  80%{
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes up-down-three {
  0% {
    transform: translateY(0px);
  }
  20%{
    transform: translateY(0px);
  }
  40%{
    transform: translateY(0px);
  }
  60%{
    transform: translateY(-20px);
  }
  80%{
    transform: translateY(0px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes up-down-four {
  0% {
    transform: translateY(0px);
  }
  20%{
    transform: translateY(0px);
  }
  40%{
    transform: translateY(0px);
  }
  60%{
    transform: translateY(0px);
  }
  80%{
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.contact-link-bg{
  z-index: 22;
  position: relative;
  border-radius: 30px;
  background: linear-gradient(45deg, var(--primary-color), color-mix(in srgb, var(--primary-color), var(--secondary-color) 40%));
}
.bg-dark-contact{
  position: absolute;
  bottom: 0px;
  height: 50%;
  width: 100%;
  background: var(--secondary-color);
  z-index: 1;
}

@media only screen and (max-width: 1200px) {
  .apply-bg{
    height: 85%;
  }
}

@media only screen and (max-width: 900px) {
  .apply-bg{
    height: 100%;
  }
}

@media only screen and (max-width: 600px) {
  #hero h3 {
    font-size: 20px;
    text-align: center;
  }
  #hero h2{
    text-align: center;
  }
  #hero h1 {
    font-size: 38px;
    text-align: center;
    line-height: 48px;
    margin-bottom: 10px;
  }
  img.smiles {
    width: 120px;
    left: 16px;
    bottom: 70px;
  }
  img.study {
    width: 120px;
    right: 10px;
    top: 160px;
  }
  img.star-one {
    right: 38px;
  }
  img.round-logo-about {
    width: 150px;
    left: 50px;
    bottom: -15px;
  }
  img.about-lined {
    left: 38px;
  }
  .round-about{
    bottom: 140px;
  }
  .section-title h2 {
    font-size: 10px;
    padding: 4px 17px;
  }
  .section-title p {
    font-size: 32px;
  }
  .about .icon-boxes h3 {
    font-size: 30px;
  }
  img.features-logo {
    width: 100%;
  }
  .course-box-bg {
    margin-bottom: 8%;
  }
  .apply-bg {
    height: 100%;
    border-radius: 300px;
  }
  .apply-row {
    padding-top: 60px;
  }
  .apply-row .section-title-light, .apply-row p{
    text-align: center;
  }
  .apply-row img{
    width: 100%;
  }
  .how-apply{
    border-radius: 30px 30px 400px 400px;
  }
  img.icon-apply {
    width: 70px;
  }
  .how-apply img {
    width: 90px;
  }
  .how-apply p {
    font-size: 12px;
  }
  a.nav-link {
    background: color-mix(in srgb, var(--primary-color), transparent 94%);
    color: var(--white);
    padding: 2px 22px;
    margin-left: 0px;
    margin: 10px;
  }
  footer .navbar ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .copyright .row{
    gap: 10px;
  }
  .contact-link-bg {
    border-radius: 0px;
  }
  .breadcrumbs-content {
    padding: 60px 0;
  }
  img.star-three {
    bottom: 150px;
  }
  #header .logo img {
    max-height: 36px;
  }
}