@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
@import url("../css/font-awesome.css");
@import url("../css/flaticon.css");
@import url("../css/animate.css");
@import url("../css/owl.css");
:root {
  --brand: #f77600;
  --blue: #003e70;
  --white: #ffffff;
  --offwhite: #f9f3e2;
  --black:#000000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  color: #000000;
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

img {
  max-width: 100%;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

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

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--blue);
  margin: 0px;
}

h1 {
  font-size: 66px;
}
@media (max-width: 992px) {
  h1 {
    font-size: 34px;
  }
}

h2 {
  font-size: 48px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
  color: var(--black);
}

h6 {
  font-size: 16px;
}

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

header {
  background: #fff;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  position: relative;
  z-index: 10;
}
@media (max-width: 992px) {
  header {
    padding: 0px 0;
  }
}
header.fixed-top {
  top: -40px;
  transform: translateY(40px);
  transition: transform 0.3s;
}
header .navbar .navbar-toggler {
  border: none;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
header .navbar .navbar-toggler span {
  display: block;
  background-color: #4f4f4f;
  height: 3px;
  width: 25px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  left: 0;
  opacity: 1;
  transition: all 0.35s ease-out;
  transform-origin: center left;
}
header .navbar .navbar-toggler span:nth-child(1) {
  margin-top: 0.3em;
  transform: translate(0%, 0%) rotate(0deg);
}
header .navbar .navbar-toggler span:nth-child(2) {
  opacity: 1;
}
header .navbar .navbar-toggler span:nth-child(3) {
  transform: translate(0%, 0%) rotate(0deg);
}
header .navbar .navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translate(15%, -33%) rotate(45deg);
}
header .navbar .navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}
header .navbar .navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translate(15%, 33%) rotate(-45deg);
}
header .navbar-expand-lg .navbar-nav .nav-link {
  font-weight: 600;
  padding: 0 30px;
  color: var(--blue);
}
@media (max-width: 992px) {
  header .navbar-expand-lg .navbar-nav .nav-link {
    padding: 15px 20px 15px;
    border-bottom: 1px solid #d1cccc;
    margin-top: -1px;
  }
}
header .navbar-expand-lg .navbar-nav .nav-link.active {
  color: var(--brand);
}
header .navbar-expand-lg .navbar-nav .nav-link:hover {
  color: var(--brand);
}
@media (max-width: 992px) {
  header .navbar-expand-lg .navbar-nav .nav-link:hover {
    background-color: var(--brand);
    color: var(--white);
  }
}
header .navbar-expand-lg .navbar-nav .nav-link.app-downoad {
  background-color: var(--brand);
  border-radius: 10px;
  color: #ffffff;
  padding: 10px 20px;
  text-transform: uppercase;
}
header .navbar-expand-lg .navbar-nav .nav-link.app-downoad:hover {
  background-color: var(--blue);
}
@media (max-width: 992px) {
  header .navbar-expand-lg .navbar-nav .nav-link.app-downoad {
    margin: 0 20px 25px -30px;
    text-align: center;
  }
}
@media (max-width: 992px) {
  header .navbar-nav {
    margin-top: 20px;
  }
}
@media (max-width: 992px) {
  header #navbarCollapse {
    position: absolute;
    top: 96px;
    background: var(--white);
    width: 100%;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 992px) {
  header .navbar-brand img {
    height: 60px;
  }
}

/* buttons */
.btn.explore-btn {
  background-color: var(--brand);
  border: none;
  font-size: 22px;
  font-weight: 600;
  padding: 10px 20px;
}
@media (max-width: 767px) {
  .btn.explore-btn {
    font-size: 18px;
  }
}
.btn.submit-btn {
  background-color: var(--brand);
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 30px;
}
.btn:hover {
  background-color: var(--blue);
}

.button {
  width: 250px;
  transition: all 0.5s;
  cursor: pointer;
}
.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.button span:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}
.button:hover span {
  padding-right: 25px;
}
.button:hover span:after {
  opacity: 1;
  right: 0;
}

.btn-animation {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.5s linear;
  position: relative;
}
.btn-animation:hover ion-icon {
  transform: rotate(-90deg);
  opacity: 1;
}
.btn-animation span {
  font-size: 22px;
  font-weight: 700;
  padding: 0 10px 0 28px;
}
@media (max-width: 767px) {
  .btn-animation span {
    font-size: 16px;
  }
}
.btn-animation ion-icon {
  font-size: 1.5em;
  transition: all 0.5s linear;
}
.btn-animation.grow {
  background: none;
  color: var(--blue);
}
.btn-animation.grow::before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  background-color: var(--brand);
  position: absolute;
  border-radius: 100px;
  left: 0em;
  z-index: -1;
  transition: all 600ms ease;
}
@media (max-width: 767px) {
  .btn-animation.grow::before {
    width: 46px;
    height: 46px;
  }
}
.btn-animation.grow:hover::before {
  width: calc(100% + 28px);
}
.btn-animation.grow:hover ion-icon {
  transform: translateX(10px);
}
.btn-animation.grow.small span {
  font-size: 16px;
  font-weight: 500;
  padding: 0 10px 0 18px;
}
.btn-animation.grow.small ion-icon {
  font-size: 1em;
  transition: all 0.5s linear;
}
.btn-animation.grow.small::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-color: var(--brand);
  position: absolute;
  border-radius: 100px;
  left: 0em;
  z-index: -1;
  transition: all 600ms ease;
}
.btn-animation.grow.small:hover::before {
  width: calc(100% + 28px);
}
.btn-animation.grow.small:hover ion-icon {
  transform: translateX(10px);
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 800px;
  background: var(--offwhite);
  overflow: hidden;
}
@media (max-width: 992px) {
  .hero {
    height: 630px;
    min-height: 100%;
  }
}
@media (max-width: 767px) {
  .hero {
    height: 810px;
  }
}
.hero .hero-intro {
  margin-top: -50px;
  z-index: 1;
}
@media (min-width: 1201px) and (max-width: 1439px) {
  .hero .hero-intro {
    top: -130px;
    position: relative;
  }
}
@media (max-width: 992px) {
  .hero .hero-intro {
    position: relative;
    top: -150px;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .hero .hero-intro {
    top: 0;
    margin: 0;
  }
  .hero .hero-intro h1 {
    font-size: 30px;
  }
  .hero .hero-intro h3 {
    font-size: 22px;
  }
}
@media (min-width: 1201px) and (max-width: 1439px) {
  .hero {
    height: 660px;
    min-height: 100px;
  }
}
.hero .banner.side-hero {
  z-index: 0;
  position: relative;
  left: 24px;
  top: -40px;
}
@media (min-width: 1440px) and (max-width: 1599px) {
  .hero .banner.side-hero {
    transform: scale(0.75);
  }
}
@media (min-width: 1201px) and (max-width: 1439px) {
  .hero .banner.side-hero {
    left: 0px;
    top: -130px;
    transform: scale(0.7);
  }
}
@media (max-width: 1200px) {
  .hero .banner.side-hero {
    left: -125px;
    top: -50px;
    transform: scale(0.65);
  }
}
@media (max-width: 992px) {
  .hero .banner.side-hero {
    left: -115px;
    top: -160px;
    transform: scale(0.5);
  }
}
@media (max-width: 767px) {
  .hero .banner.side-hero {
    left: -95px;
    top: -230px;
    transform: scale(0.5);
  }
}
.hero .banner.side-hero img {
  position: absolute;
}
.hero .banner.side-hero img.hand-device-circle {
  max-width: 615px;
  left: 85px;
  top: 120px;
  animation: rotation infinite 55s linear;
  transform-origin: 50% 50%;
}
.hero .banner.side-hero img.hand-device {
  max-width: 860px;
  top: 85px;
  position: relative;
}
.hero.inner {
  background-repeat: no-repeat;
  background-position: top right;
  min-height: 550px;
  background-size: contain;
  flex-direction: unset;
}
@media (max-width: 992px) {
  .hero.inner {
    height: 310px;
    min-height: 100%;
  }
}
@media (max-width: 767px) {
  .hero.inner {
    height: 100%;
    min-height: 200px;
  }
}
@media (min-width: 1201px) and (max-width: 1439px) {
  .hero.inner .hero-intro {
    top: 0px;
    position: relative;
  }
}
@media (max-width: 992px) {
  .hero.inner .hero-intro {
    top: 0;
  }
}
.hero.inner.contact {
  background-position: center;
  background-size: cover;
  background-blend-mode: multiply;
}
.hero.courses-hero {
  background-repeat: no-repeat;
  background-position: 100% 140%;
  background-size: 100%;
  min-height: 300px;
}
.hero.courses-hero .hero-intro {
  margin-top: -50px;
}
@media (min-width: 1201px) and (max-width: 1439px) {
  .hero.courses-hero .hero-intro {
    top: 0px;
    position: relative;
  }
}
@media (max-width: 992px) {
  .hero.courses-hero .hero-intro {
    top: 0px;
    margin: 0;
  }
}

.wave {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
}
.wave .shape-path {
  fill: var(--white);
}
.wave.footer-wave {
  top: 0px;
  bottom: auto;
}
@media (max-width: 1200px) {
  .wave.footer-wave {
    top: 50px;
  }
}
@media (max-width: 992px) {
  .wave.footer-wave {
    top: 50px;
  }
}
@media (max-width: 767px) {
  .wave.footer-wave {
    top: 0;
  }
}

/* global css here */
section {
  margin: 95px 0;
}
@media (max-width: 767px) {
  section {
    margin: 45px 0;
  }
}

.floating-dots {
  background-image: url(../images/dots.png);
  width: 264px;
  height: 264px;
  left: 60%;
  top: -12%;
  animation-name: floaty;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@media (max-width: 1200px) {
  .floating-dots {
    left: -15%;
  }
}
@media (max-width: 767px) {
  .floating-dots {
    left: 80%;
  }
}
.floating-dots.second {
  top: 45%;
  left: 80%;
  animation-delay: 1s;
  animation-duration: 6s;
  animation-name: float-me-y;
}
@media (max-width: 767px) {
  .floating-dots.second {
    top: 50%;
    left: -40%;
  }
}

.floating-dots-blue {
  background-image: url(../images/dots-blue.png);
  width: 229px;
  height: 229px;
  left: -4%;
  top: 9%;
  animation-name: floaty;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@media (max-width: 767px) {
  .floating-dots-blue {
    top: 2%;
    height: 189px;
  }
}

.floating-circle-top {
  background-image: url(../images/illustrator2.png);
  width: 1087px;
  height: 1019px;
  left: -10%;
  top: -160%;
  animation-name: floaty;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@media (max-width: 767px) {
  .floating-circle-top {
    left: -40%;
    top: -270%;
  }
}

.floating-circle-bottom {
  background-image: url(../images/illustrator1.png);
  width: 586px;
  height: 534px;
  right: 0%;
  top: 70%;
  animation-name: floaty;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.floating-circle-small {
  background-color: #f0c34e;
  border-radius: 100%;
  opacity: 0.5;
  width: 50px;
  height: 50px;
  right: 40%;
  top: 5%;
  animation-name: floaty;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.floating-circle-bulb {
  background-image: url(../images/illustratorsmall.png);
  border-radius: 100%;
  width: 105px;
  height: 101px;
  right: 42%;
  top: 73%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
}
.floating-circle-bulb img {
  animation-name: float-me-y;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  padding: 5px;
}

.floating-plus {
  background-image: url(../images/Iconplus.png);
  width: 41px;
  height: 41px;
  left: 20%;
  top: 10%;
  animation-name: floaty;
  animation-duration: 10s;
  animation-delay: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.bg-circle {
  position: relative;
  overflow: hidden;
}
.bg-circle::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #f6c591;
  background-size: contain;
  animation: float-me-y infinite 3s alternate-reverse;
  z-index: -1;
}
@media (max-width: 1200px) {
  .bg-circle::before {
    top: -20%;
    left: -20%;
  }
}
@media (max-width: 992px) {
  .bg-circle::before {
    top: -40%;
    left: -40%;
  }
}
@media (max-width: 767px) {
  .bg-circle::before {
    top: -40%;
    left: -90%;
  }
}
.bg-circle::after {
  content: "";
  position: absolute;
  bottom: -35%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #f4e6c1;
  background-size: contain;
  animation: float-me-y infinite 3s alternate-reverse;
  z-index: -1;
}
@media (max-width: 1200px) {
  .bg-circle::after {
    right: -20%;
  }
}
@media (max-width: 992px) {
  .bg-circle::after {
    top: 55%;
    right: -40%;
  }
}
@media (max-width: 767px) {
  .bg-circle::after {
    top: 55%;
    right: -80%;
  }
}

.sec-title h2 {
  margin-bottom: 10px;
}

.hrdivider {
  background: var(--brand);
  width: 100px;
  height: 5px;
  margin: 20px auto 0 auto;
  border-radius: 25px;
}

.list-primary li {
  position: relative;
  padding-left: 25px;
  padding-bottom: 10px;
}
.list-primary li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: var(--brand);
  border-radius: 50%;
  left: 1px;
  top: 8px;
}
.list-primary li::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: var(--white);
  border-radius: 50%;
  left: 3.5px;
  top: 10.5px;
}

.pushtoleft {
  left: -10%;
  position: relative;
}

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

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

.centered {
  margin: 0 auto;
  text-align: center;
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--brand);
  color: var(--white);
  border-radius: 100%;
  width: 45px;
  height: 45px;
  z-index: 20;
  opacity: 0;
  transform: translateX(130%);
  transition: all 600ms ease;
  overflow: hidden;
}
#btn-back-to-top::before {
  content: "\f1a9";
  display: inline-block;
  font-family: "flaticon";
  font-size: 14px;
  line-height: 2.3em;
  font-weight: 600;
  transform: translateY(0) rotate(0deg);
  transition: all 600ms ease;
}
#btn-back-to-top.active {
  opacity: 1;
  transform: translateY(0);
  transition: all 600ms ease;
}
#btn-back-to-top:hover {
  background-color: var(--blue);
}
#btn-back-to-top:hover::before {
  animation: scroll_up_anim 1.5s linear;
  transition: all 600ms ease;
}

/* stats count */
@media (min-width: 1201px) and (max-width: 1439px) {
  .stats {
    margin: 45px 0;
  }
}
.stats .stats-count {
  margin: 0px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (max-width: 767px) {
  .stats .stats-count {
    margin: 0px 0 30px;
    border-bottom: 1px solid #d1c7be;
    padding-bottom: 30px;
  }
  .stats .stats-count.no-border {
    border: none;
  }
}
.stats .stats-count .icon {
  width: 90px;
}
@media (max-width: 767px) {
  .stats .stats-count .icon {
    width: 60px;
  }
}
.stats .stats-count .title {
  font-size: 50px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .stats .stats-count .title {
    font-size: 40px;
    margin: 10px 0 0;
  }
}
.stats.inner {
  border: none;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-around;
}
@media (max-width: 992px) {
  .stats.inner {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .stats.inner {
    flex-direction: column;
    position: relative;
  }
}
.stats.inner .stats-count {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px -10px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  width: 280px;
  height: 280px;
  justify-content: center;
  border: none;
}
@media (max-width: 1200px) {
  .stats.inner .stats-count {
    width: 210px;
    height: 240px;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .stats.inner .stats-count {
    width: 320px;
    height: 210px;
    margin-bottom: 20px;
  }
}
.stats.inner .stats-count.minutescontent {
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
}
.stats.inner .stats-count.quizzes {
  box-shadow: 10px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

/* courses */
.courses {
  padding: 95px 0;
}
@media (max-width: 767px) {
  .courses {
    padding: 45px 0;
  }
}
.courses .course-article {
  position: relative;
  height: 100%;
  display: flex;
}
.courses .course-article .course-popup {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 40px 25px;
  background-color: #fff;
  border-radius: 18px;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  z-index: 100;
  transition: none;
  display: flex;
  align-items: center;
  margin: 0 0.5em;
}
.courses .course-article .course-popup .course-content .course-name {
  font-size: 22px;
  color: var(--blue);
  font-weight: 600;
}
.courses .course-article .course-popup .course-content .course-content-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  margin: 20px 0;
}
.courses .course-article .course-popup .course-content .course-content-meta .price {
  font-size: 26px;
  font-weight: 500;
  color: var(--blue);
}
.courses .course-article .course-popup .course-content .course__excerpt {
  font-size: 14px;
  overflow-x: hidden;
  height: 250px;
  padding: 0px 10px 0 0px;
}
.courses .course-article .course-popup .course-content .course__excerpt::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 6px;
  background-color: #dcdfe2;
  border-radius: 50px;
}
.courses .course-article .course-popup .course-content .course__excerpt::-webkit-scrollbar-thumb {
  background-color: #003e71;
  border-radius: 50px;
}
.courses .course-article .course-popup .course-content .btn-preview {
  background: var(--brand);
  border-radius: 5px;
  padding: 10px 20px;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  margin: 30px 0 0;
  width: 100%;
  text-align: center;
}
.courses .course-article .course-popup .course-content .btn-preview:hover {
  background-color: var(--blue);
}
.courses .course-article:hover .course-popup {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition: 0.3s ease;
}
.courses .card {
  border: 0px;
  border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .courses .card {
    margin-bottom: 25px;
  }
}
.courses .card .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.courses .card .card-img img {
  transition: all 0.4s linear;
}
.courses .card .card-img .price {
  position: absolute;
  font-weight: 500;
  font-size: 20px;
  padding: 8px 15px;
  top: 0px;
  right: 0px;
  background: var(--white);
  border-top-left-radius: 0px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 0px;
}
.courses .card .card-img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6784313725) 0%, transparent 80%);
  border-radius: 3px;
  z-index: 1;
}
.courses .card .card-body {
  padding: 20px 30px;
}
@media (max-width: 767px) {
  .courses .card .card-body {
    padding: 20px 20px;
  }
}
.courses .card .card-body .card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  color: var(--blue);
  margin-bottom: 15px;
}
.courses .card .card-body .card-text {
  font-size: 16px;
  line-height: 24px;
  color: #474747;
}
.courses .card:hover .card-img img {
  transform: scale(1.1);
}
.courses .card a {
  text-decoration: none;
  color: inherit;
}
.courses.courses-slider {
  overflow: hidden;
  margin: 0;
}
@media (max-width: 767px) {
  .courses.courses-slider {
    padding: 45px 0;
  }
}
@media (max-width: 992px) {
  .courses.courses-slider .sec-title {
    text-align: center;
  }
}
.courses.courses-slider .owl-carousel .owl-stage-outer {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
@media (max-width: 992px) {
  .courses.courses-slider .owl-carousel .owl-stage-outer {
    position: relative;
    top: 20px;
    transform: none;
  }
}
.courses.courses-slider .card {
  overflow: visible;
  box-shadow: none;
  border: 1px solid #f0e5c6;
}
.courses.courses-slider .card .card-img {
  height: 100%;
}
.courses.courses-slider .card .card-img .price {
  border-top-right-radius: 5px;
}
.courses.courses-slider .card .card-body {
  padding: 30px 20px;
}
.courses.courses-slider .card .card-body .card-title {
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 0;
  min-height: 80px;
}
@media (max-width: 767px) {
  .courses.courses-slider .card .card-body .card-title {
    font-size: 14px;
  }
}
.courses.courses-slider .custom-nav.owl-nav {
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .courses.courses-slider .custom-nav.owl-nav {
    justify-content: center;
  }
}
.courses.courses-slider .custom-nav.owl-nav .owl-next, .courses.courses-slider .custom-nav.owl-nav .owl-prev {
  background: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--brand);
  cursor: pointer;
}
.courses.courses-slider .custom-nav.owl-nav .owl-next:hover, .courses.courses-slider .custom-nav.owl-nav .owl-prev:hover {
  background-color: var(--blue);
}
.courses.courses-slider .custom-nav.owl-nav .owl-next {
  margin-left: 10px;
}
.courses .courses-grid [class*=col-] {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .courses .courses-grid [class*=col-] {
    margin-bottom: 0;
  }
}

/* Founder CEO */
.founder-wrapper .profile-warpper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 992px) {
  .founder-wrapper .profile-warpper {
    margin-bottom: 60px;
  }
}
.founder-wrapper .profile-pic {
  width: 240px;
  margin: 0 auto;
}
.founder-wrapper .founder-info {
  padding: 0 50px;
}
@media (max-width: 992px) {
  .founder-wrapper .founder-info {
    padding: 0 0px;
    margin: 40px 0 0 0;
    text-align: center;
  }
}
.founder-wrapper .founder-info p .blue {
  font-weight: 600;
  color: var(--blue);
}
.founder-wrapper .founder-info h2 {
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .founder-wrapper .founders-pic {
    width: 50%;
    margin: 0 auto;
    display: flex;
  }
}
@media (max-width: 992px) {
  .founder-wrapper .founder-container {
    flex-direction: column-reverse;
  }
  .founder-wrapper .founder-container.flip-n-mobile {
    flex-direction: row;
    border-top: 1px solid #afadad;
    border-bottom: 1px solid #afadad;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Help and Learn */
.help-learn-wrapper {
  background: #f9f3e2;
  padding: 80px 0px;
  z-index: 1;
}
.help-learn-wrapper h2 {
  margin-bottom: 15px;
}
.help-learn-wrapper p {
  font-size: 18px;
  margin-bottom: 50px;
}
.help-learn-wrapper .explore-btn {
  position: relative;
  z-index: 1;
  width: 420px;
}
@media (max-width: 767px) {
  .help-learn-wrapper .explore-btn {
    width: 85%;
  }
}
.help-learn-wrapper .explore-btn::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -80px;
  background: url(../images/left.png) center center no-repeat;
  background-size: 100%;
  width: 48px;
  height: 76px;
}
@media (max-width: 767px) {
  .help-learn-wrapper .explore-btn::before {
    background-size: contain;
    left: -52px;
  }
}
.help-learn-wrapper .explore-btn::after {
  content: "";
  position: absolute;
  top: 2px;
  right: -80px;
  background: url(../images/right.png) center center no-repeat;
  background-size: 100%;
  width: 45px;
  height: 54px;
}
@media (max-width: 767px) {
  .help-learn-wrapper .explore-btn::after {
    background-size: contain;
    right: -50px;
  }
}

/* Placement Activities */
@media (max-width: 992px) {
  .placement-wrapper .col-6 {
    margin: 0 -10px;
  }
}
@media (max-width: 767px) {
  .placement-wrapper .col-6 {
    margin: 0 -10px;
  }
}
@media (max-width: 992px) {
  .placement-wrapper .client-item img {
    width: 100%;
  }
}
.placement-wrapper .placement-info {
  margin: 0 35px;
}
.placement-wrapper .placement-info h5 {
  font-size: 22px;
  color: var(--blue);
  position: relative;
  display: inline-block;
  margin: 0 auto;
  margin-bottom: 15px;
}
.placement-wrapper .placement-info h5::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  top: -6px;
  left: -15px;
  background: #ffedbf;
  z-index: -1;
  animation: pulse infinite 3s alternate-reverse;
}
.placement-wrapper .placement-info p {
  font-size: 15px;
  line-height: 22px;
  color: #474747;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
}
.testimonials .card .card-body {
  padding: 25px;
}
.testimonials .card h6 {
  font-weight: 500;
}
.testimonials .testimonial-card {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .testimonials .testimonial-card {
    padding-bottom: 30px;
  }
}
.testimonials .testimonial-card .card-white {
  background: var(--white);
  padding: 0 10px;
  position: relative;
  border-radius: 20px;
  text-align: center;
  min-height: 330px;
  transition: all 0.2s ease-out;
  z-index: 1;
}
.testimonials .testimonial-card .card-white:hover {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}
.testimonials .testimonial-card .user-pic {
  margin-top: -60px;
}
.testimonials .testimonial-card .name {
  font-size: 26px;
  color: var(--blue);
  line-height: 30px;
  font-weight: 600;
  margin-top: 30px;
}
.testimonials .testimonial-card .designation {
  font-size: 16px;
  color: var(--black);
}
.testimonials .testimonial-card .status {
  font-size: 16px;
  color: #8d8d8d;
  margin: 8px 0;
}
.testimonials .testimonial-card .bank-name {
  min-height: 30px;
}
.testimonials .testimonial-card .btn-play {
  font-size: 15px;
  color: var(--black);
  text-transform: uppercase;
  text-decoration: none;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials .testimonial-card .btn-play span {
  display: block;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 5px 0px 10px 0px rgba(0, 0, 0, 0.25);
  margin-left: 10px;
  position: relative;
}
.testimonials .testimonial-card .btn-play span::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 10px solid #f87602;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  top: 13px;
  left: 16px;
  animation: pulseBig infinite 3s alternate-reverse;
}

/* FAQ */
.FAQ-wrapper .faq-box {
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
}
.FAQ-wrapper .faq-box .question {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.FAQ-wrapper .faq-box .ans {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 400;
}

/* social media links */
ul.social-links li {
  margin: 0 5px;
}
ul.social-links li a {
  border-radius: 100%;
  width: 35px;
  height: 35px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--white);
  transition: all 0.4s;
}
ul.social-links li a.fb-official {
  background-color: #1877f2;
}
ul.social-links li a.twitter-official {
  background-color: #1da1f2;
}
ul.social-links li a.linkedin-official {
  background-color: #0077b5;
}
ul.social-links li a.instagram-official {
  background: radial-gradient(circle at 33% 100%, #fed373 4%, #f15245 30%, #d92e7f 62%, #9b36b7 85%, #515ecf);
}
ul.social-links li a.quora-official {
  background-color: #b42a26;
}
ul.social-links li a.telegram-official {
  background-color: #2ea3d9;
}
ul.social-links li a:hover {
  background: var(--black);
  color: var(--white);
}

.downloadApp {
  margin-bottom: -15%;
  position: relative;
  z-index: 0;
}
@media (max-width: 1200px) {
  .downloadApp {
    margin-left: -20%;
  }
}
@media (max-width: 767px) {
  .downloadApp {
    margin-bottom: 30px;
    margin-left: 0;
  }
  .downloadApp .playstore-icon {
    height: auto;
  }
}
.downloadApp .mobile {
  width: auto;
  text-align: right;
}
.downloadApp .mobile img {
  width: 50%;
}
@media (max-width: 767px) {
  .downloadApp .mobile img {
    width: 100%;
  }
}
.downloadApp .download-stats {
  margin-top: 140px;
  margin-left: 40px;
}
@media (max-width: 992px) {
  .downloadApp .download-stats {
    margin-top: 60px;
  }
}
.downloadApp .download-stats h4 {
  font-size: 30px;
}
@media (max-width: 767px) {
  .downloadApp .download-stats {
    margin-top: 0px;
    margin-left: 10px;
    font-size: 14px;
  }
  .downloadApp .download-stats h4 {
    font-size: 28px;
  }
}
.downloadApp .download-stats .download-stats-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 550px;
}
@media (max-width: 767px) {
  .downloadApp .download-stats .download-stats-count {
    min-width: 220px;
    flex-direction: column;
    align-items: start;
  }
}
.downloadApp .download-stats .download-stats-count .count {
  color: var(--blue);
  font-size: 20px;
  font-weight: 600;
}

/* footer  */
footer {
  padding: 125px 0 0;
  margin: 0px 0 0;
  font-size: 18px;
  position: relative;
}
@media (max-width: 767px) {
  footer {
    padding: 35px 0 0px 0;
    font-size: 16px;
  }
}
footer .footer-upper {
  z-index: 1;
  position: relative;
}
footer h5 {
  margin-bottom: 20px;
  font-weight: 500;
}
footer .inner-column {
  margin-bottom: 30px;
}
footer a {
  text-decoration: none;
  color: var(--black);
}
footer ul.footer-links li {
  padding: 0px 0 15px;
}
@media (max-width: 767px) {
  footer ul.footer-links li {
    padding: 0px 0 10px;
  }
}
footer .footer-stack {
  display: flex;
  margin-bottom: 15px;
}
footer .footer-stack span {
  margin-right: 10px;
}
footer .footer-stack span.fa-whatsapp {
  color: #25D366;
}
footer .footer-lower {
  background: var(--offwhite) url(../images/footer.png) no-repeat;
  background-position: center;
  background-size: 100%;
  padding: 80px 0 0;
  font-size: 16px;
}
@media (max-width: 767px) {
  footer .footer-lower {
    background-size: auto;
    font-size: 14px;
  }
}

/* about us page scss */
.about .whyus {
  -webkit-mask-image: url(../images/blob.svg);
  mask-image: url(../images/blob.svg);
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
}
@media (max-width: 767px) {
  .about .whyus {
    transform: scale(1);
    -webkit-transform: scale(1);
    margin-bottom: 30px;
  }
}

.fromwhattohow {
  padding: 95px 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .fromwhattohow {
    padding: 45px 0;
  }
}
.fromwhattohow .fromwhattohow-box {
  border-radius: 15px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  width: 400px;
  height: 250px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .fromwhattohow .fromwhattohow-box {
    width: 290px;
  }
}
@media (max-width: 992px) {
  .fromwhattohow .fromwhattohow-box {
    margin-bottom: 30px;
    width: 100%;
    height: 250px;
  }
}
@media (max-width: 767px) {
  .fromwhattohow .fromwhattohow-box {
    margin-bottom: 30px;
  }
}
.fromwhattohow .fromwhattohow-box .fromwhattohow-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.fromwhattohow .fromwhattohow-box p {
  margin-top: 20px;
  color: var(--blue);
  text-align: center;
  font-weight: 600;
}
.fromwhattohow::before {
  content: "";
  background-image: url("../images/bg-patch.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media (max-width: 992px) {
  .fromwhattohow::before {
    background-size: cover;
    background-position: inherit;
  }
}
@media (max-width: 767px) {
  .fromwhattohow::before {
    background-size: contain;
    background-position: top;
  }
}

.vision {
  padding: 95px 0;
}
@media (max-width: 767px) {
  .vision {
    padding: 0px 0 45px;
  }
}
.vision .vision-points {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 600px;
  margin: 0 0 0 30px;
}
@media (max-width: 767px) {
  .vision .vision-points {
    width: 100%;
    margin: 0;
    align-items: center;
    justify-content: center;
  }
}
.vision .vision-points .vision-four {
  padding: 15px;
  border-radius: 10px;
  width: 294px;
  height: 220px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .vision .vision-points .vision-four {
    width: 90%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  }
}
.vision .vision-points .vision-four .icon {
  width: 90px;
}
.vision .vision-points .vision-four p {
  color: var(--blue);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 20px;
}
.vision .illustration {
  position: absolute;
  z-index: -1;
  top: -12%;
  left: 0;
}
@media (max-width: 767px) {
  .vision .illustration {
    top: 0;
  }
}

.job-guarantee-program {
  padding: 95px 0;
}
@media (max-width: 767px) {
  .job-guarantee-program {
    padding: 45px 0;
  }
}
.job-guarantee-program .program-details {
  justify-content: space-between;
}
.job-guarantee-program .program-details .column {
  border-radius: 10px;
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  padding: 35px 25px;
}
@media (max-width: 992px) {
  .job-guarantee-program .program-details .column {
    width: 100%;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
}
@media (max-width: 767px) {
  .job-guarantee-program .program-details .column {
    width: 100%;
    margin-bottom: 20px;
  }
}
.job-guarantee-program .program-details .column h3 {
  font-size: 20px;
  margin: 10px 0;
}
.job-guarantee-program .program-details .column p {
  margin-bottom: 0;
}
.job-guarantee-program .program-details .column .icon {
  width: 90px;
  height: 90px;
}

.training-segment .training-segment-wrapper {
  padding: 30px;
  position: relative;
  border: 1px solid #ffdc80;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}
.training-segment .training-segment-wrapper .icon {
  width: 100px;
}
.training-segment .training-segment-wrapper::before {
  content: " ";
  position: absolute;
  width: 200px;
  height: 200px;
  background-color: var(--white);
  z-index: -1;
  border-radius: 100%;
  top: -40px;
  left: -40px;
}

/* contact us page css */
.contact-us h2 {
  font-size: 46px;
}
@media (max-width: 767px) {
  .contact-us h2 {
    font-size: 32;
  }
}
.contact-us .contact-wrapper .comments-form input {
  color: #707070;
  font-size: 16px;
  height: 60px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  padding-left: 30px;
  display: inline-block;
}
.contact-us .contact-wrapper .comments-form input:focus {
  border-color: #FF723A;
}
.contact-us .contact-wrapper .comments-form textarea {
  color: #707070;
  font-size: 16px;
  height: 250px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  padding-top: 28px;
  padding-left: 30px;
  display: inline-block;
  resize: none;
}
.contact-us .contact-wrapper .comments-form textarea:focus {
  border-color: #FF723A;
}
.contact-us .contact-wrapper .comment_btn {
  border: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-us .contact-img {
  position: relative;
  z-index: 1;
}
.contact-us .contact-img::before {
  content: "";
  position: absolute;
  background-color: rgba(247, 118, 0, 0.1);
  width: 475px;
  height: 475px;
  border-radius: 50%;
  right: -58px;
  top: -55px;
  z-index: -1;
}
@media (max-width: 1200px) {
  .contact-us .contact-img::before {
    right: 0;
  }
}
.contact-us .map-box {
  position: absolute;
  left: 160px;
  top: 160px;
  max-width: 350px;
  width: 100%;
  display: block;
  z-index: 2;
  padding: 50px 30px;
  background-color: var(--white);
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .contact-us .map-box {
    left: 40px;
  }
}
.contact-us .map-box h4 {
  display: block;
  color: var(--black);
  margin-bottom: 20px;
}
.contact-us .map-box .contact-list {
  position: relative;
}
.contact-us .map-box .contact-list li {
  position: relative;
  color: rgba(0, 0, 0, 0.75);
  font-size: 16px;
  line-height: 1.8em;
  padding-left: 30px;
  margin-bottom: 15px;
}
.contact-us .map-box .contact-list li .icon {
  position: absolute;
  left: 0px;
  top: 5px;
  line-height: 1em;
  font-size: 14px;
  color: var(--brand);
  font-family: "flaticon";
}
.contact-us .map-box .contact-list li a {
  position: relative;
  color: inherit;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  text-decoration: none;
}
.contact-us .map-box .contact-list li a.direction {
  font-weight: 700;
  border-bottom: 1px solid var(--black);
}
.contact-us .map-box .contact-list li a:hover {
  color: var(--main-color-two);
}
.contact-us .map-box .contact-list li:last-child {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .contact-us .floating-dots {
    left: -50%;
  }
}
@media (max-width: 767px) {
  .contact-us .floating-dots.second {
    top: 75%;
    left: 70%;
  }
}

/* Course Details Page CSS */
.course-details h1 {
  font-size: 50px;
}
@media (max-width: 767px) {
  .course-details h1 {
    font-size: 36px;
  }
}
.course-details .courseDeatils-wrapper {
  margin: 25px 0;
  position: relative;
}
.course-details .courseDeatils-wrapper .courseDuration {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .course-details .courseDeatils-wrapper .courseDuration {
    margin-top: 40px;
  }
}
.course-details .courseDeatils-wrapper .courseDuration.fixed {
  position: fixed;
  margin-top: 0px;
  top: 0;
  z-index: 9;
}
@media (max-width: 767px) {
  .course-details .courseDeatils-wrapper .courseDuration.fixed {
    position: relative;
  }
}
.course-details .courseDeatils-wrapper .courseDuration .courseVideo {
  overflow: hidden;
  position: relative;
}
.course-details .courseDeatils-wrapper .courseDuration .courseVideo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.course-details .courseDeatils-wrapper .courseDuration .courseVideo a.video-popup {
  display: inline;
}
.course-details .courseDeatils-wrapper .courseDuration .courseVideo .play_btn {
  display: inline-block;
  width: 60px;
  padding: 30px;
  height: 60px;
  border-radius: 50%;
  background: var(--brand);
  text-align: center;
  position: relative;
  z-index: 1;
  transition: 1s all;
  transform: scale(1);
  border: 0.7px solid var(--brand);
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.course-details .courseDeatils-wrapper .courseDuration .courseVideo .play_btn:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 30px;
  border-radius: 50%;
  position: absolute;
  border: 0.7px solid var(--white);
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 0;
  transform: scale(1);
  opacity: 40%;
  animation: 2s ease-in-out infinite waveAlarm;
}
.course-details .courseDeatils-wrapper .courseDuration .courseVideo .play_btn::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 30px;
  border-radius: 50%;
  position: absolute;
  border: 0.7px solid var(--white);
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 0;
  transform: scale(1);
  opacity: 50%;
  animation: 2s ease-in-out 0.5s infinite waveAlarm;
}
.course-details .courseDeatils-wrapper .courseDuration .courseVideo .play_btn:hover {
  transform: scale(1.3);
}
.course-details .courseDeatils-wrapper .courseDuration .courseVideo .play_btn_icon {
  width: 35px;
  height: 35px;
  z-index: 10;
  transform: rotate(-45deg);
}
.course-details .courseDeatils-wrapper .courseDuration .appicon {
  width: 25px;
  margin: 0 0 0 10px;
  fill: var(--white);
}
.course-details .courseDeatils-wrapper .courseDeatils {
  padding: 30px 20px;
}
.course-details .courseDeatils-wrapper .courseDeatils .deatilsLists li {
  display: flex;
  width: 100%;
  padding: 15px 0;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid #ededed;
  font-size: 15px;
}
.course-details .courseDeatils-wrapper .courseDeatils .deatilsLists li .icon {
  width: 20px;
  margin-right: 10px;
}
.course-details .courseDeatils-wrapper .courseDeatils .deatilsLists li .title {
  font-weight: 500;
}
.course-details .courseDeatils-wrapper .courseDeatils .deatilsLists li span:last-child {
  margin-left: auto;
  opacity: 0.7;
}
.course-details .courseDeatils-wrapper .courseDeatils .deatilsLists li:last-child {
  border-bottom: 2px solid #ededed;
}
.course-details .courseDeatils-wrapper .courseDeatils .deatilsLists li.price {
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  color: var(--blue);
  padding-top: 0px;
  border-top: 0px;
}
.course-details .courseDeatils-wrapper .courseInfo h5 {
  font-size: 28px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 18px;
}
.course-details .courseDeatils-wrapper .courseInfo .accordion .accordion-item {
  border: 0px;
  margin-bottom: 15px;
}
.course-details .courseDeatils-wrapper .courseInfo .accordion .accordion-item .accordion-header button.accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: var(--black);
  box-shadow: none;
  border-radius: 10px 10px 0px 0px;
  background: #ffdc80;
}
.course-details .courseDeatils-wrapper .courseInfo .accordion .accordion-item .accordion-header button.accordion-button.collapsed {
  background: var(--offwhite);
  border-radius: 10px;
}
.course-details .courseDeatils-wrapper .courseInfo .accordion .accordion-item .accordion-header button.accordion-button::after {
  width: 0px;
  height: 0px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #f77600;
}
.course-details .courseDeatils-wrapper .courseInfo .accordion .accordion-item .accordion-body {
  border: 1px solid #ffdc80;
  border-top: 0px;
  border-radius: 0 0px 10px 10px;
  padding: 0px;
  /* Track */
  /* Handle */
}
@media (max-width: 767px) {
  .course-details .courseDeatils-wrapper .courseInfo .accordion .accordion-item .accordion-body {
    overflow: scroll;
    height: 440px;
  }
}
.course-details .courseDeatils-wrapper .courseInfo .accordion .accordion-item .accordion-body .daywisemoduel {
  border-bottom: 1px solid #c8c3c3;
  padding: 20px;
}
.course-details .courseDeatils-wrapper .courseInfo .accordion .accordion-item .accordion-body .daywisemoduel:last-child {
  border-bottom: none;
}
.course-details .courseDeatils-wrapper .courseInfo .accordion .accordion-item .accordion-body .daywisemoduel h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  background: #fedb7f;
  padding: 10px 10px;
  margin-left: 0;
  width: auto;
  display: inline-block;
  border-radius: 2px;
  position: relative;
  z-index: 2;
}
.course-details .courseDeatils-wrapper .courseInfo .accordion .accordion-item .accordion-body ul.accordion-li li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: normal;
  margin-bottom: 5px;
}
.course-details .courseDeatils-wrapper .courseInfo .accordion .accordion-item .accordion-body ul.accordion-li li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  bottom: 0;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #f77600;
}
.course-details .courseDeatils-wrapper .courseInfo .accordion .accordion-item .accordion-body::-webkit-scrollbar {
  width: 7px;
}
.course-details .courseDeatils-wrapper .courseInfo .accordion .accordion-item .accordion-body::-webkit-scrollbar-track {
  background: var(--white);
}
.course-details .courseDeatils-wrapper .courseInfo .accordion .accordion-item .accordion-body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: var(--black);
}
@media (max-width: 1200px) {
  .course-details .courseDeatils-wrapper .other-modules .col-lg-4 {
    margin: 0 0px 25px;
  }
}
@media (max-width: 767px) {
  .course-details .courseDeatils-wrapper .other-modules .col-lg-4 {
    margin: 0;
  }
}
.course-details .course-article {
  display: inline;
}
@media (max-width: 992px) {
  .course-details .course-article {
    margin-bottom: 30px;
  }
}
.course-details .course-article .course-popup .course-content .course-name {
  font-size: 20px;
}
.course-details .course-article .course-popup .course-content .course-content-meta {
  font-size: 12px;
  margin: 20px 0;
}
.course-details .course-article .course-popup .course-content .course-content-meta .price {
  font-size: 20px;
}
.course-details .course-article .card {
  height: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .course-details .course-article .card {
    height: auto;
  }
}
.course-details .course-article .card .card-img {
  height: auto;
}

.downloadailaapp {
  box-shadow: 0 -3px 6px 0 rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding: 15px 20px 15px 10px;
  z-index: 40;
  position: fixed;
  bottom: 0;
  width: 100%;
  display: none;
}
@media (max-width: 767px) {
  .downloadailaapp {
    display: block;
  }
}
.downloadailaapp .app-close {
  position: absolute;
  z-index: 41;
  right: 20px;
  top: -15px;
}
.downloadailaapp .download-app-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.downloadailaapp .download-app-info small {
  font-size: 10px;
  margin-top: 2px;
  display: block;
}
.downloadailaapp .download-app-info .install-btn {
  width: 112px;
  padding: 8px 14px;
  border-radius: 8px;
  background-image: linear-gradient(270deg, #f77600 85%, #c17c3c);
}
.downloadailaapp .download-app-info .install-btn .install-txt {
  font-size: 14px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  color: var(--white);
}

/* home page carousel */
.card {
  margin: 0 0.5em;
  border: none;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.card .img-wrapper {
  overflow: hidden;
}
.card .img-wrapper img {
  transition: all 0.4s ease;
  width: 100%;
}
.card:hover img {
  transform: scale(1.05) rotate(2deg);
  opacity: 0.8;
}

.swiffy-slider.slider-nav-square button.slider-nav {
  background-color: var(--brand);
  width: 3em;
  height: 3em;
  border-radius: 50%;
  top: 45%;
  transform: translateY(-45%);
  z-index: 100;
  opacity: 1;
}
.swiffy-slider.slider-nav-square button.slider-nav::before {
  background-color: transparent;
  color: var(--white);
  content: "Prev";
  position: absolute;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  height: 100%;
  left: 20px;
  opacity: 0;
  transition: all 600ms ease;
}
.swiffy-slider.slider-nav-square button.slider-nav:after {
  background-color: var(--white);
  margin: auto;
  transition: all 600ms ease;
  width: 1.75rem;
  height: 1.75rem;
}
.swiffy-slider.slider-nav-square button.slider-nav:hover::before {
  opacity: 1;
  transform: translateX(-12px);
}
.swiffy-slider.slider-nav-square button.slider-nav:hover::after {
  transform: translateX(-15px);
  transition: all 600ms ease;
}
.swiffy-slider.slider-nav-square button.slider-nav.slider-nav-next::before {
  content: "Next";
  left: -10px;
  transition: all 600ms ease;
}
.swiffy-slider.slider-nav-square button.slider-nav.slider-nav-next:hover::before {
  opacity: 1;
  transform: translateX(10px);
}
.swiffy-slider.slider-nav-square button.slider-nav.slider-nav-next:hover::after {
  transform: translateX(15px) rotate(180deg);
  transition: all 600ms ease;
}
.swiffy-slider.slider-indicators-round .slider-indicators button {
  z-index: 15;
  width: 20px;
  width: 15px;
  height: 7px;
  background: #000000;
  border-radius: 30px;
  margin: 0 2px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  border: none;
  filter: none;
}
.swiffy-slider.slider-indicators-round .slider-indicators button.active {
  background: #f77600;
  width: 25px;
}

.masked-1 {
  -webkit-mask-image: url(../images/about-bkgd.svg);
  mask-image: url(../images/about-bkgd.svg);
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
@media (max-width: 767px) {
  .masked-1 {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.masked-1 img {
  margin: 0 0 0 -20px;
}
@media (max-width: 767px) {
  .masked-1 img {
    margin: 0 0 0 0px;
  }
}

.masked-2 {
  -webkit-mask-image: url(../images/whyus-image.png);
  mask-image: url(../images/whyus-image.png);
  -webkit-mask-size: contain;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
}
@media (max-width: 767px) {
  .masked-2 {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
.masked-2 img {
  margin: 0 0 0 55px;
}
@media (max-width: 767px) {
  .masked-2 img {
    margin: 0 0 0 0px;
  }
}

.border-radius img {
  border-radius: 30px;
}

ol.list-numbered {
  list-style: decimal;
  margin: 0;
  padding: 0 0 0 18px;
}
ol.list-numbered li {
  padding-bottom: 20px;
}
ol.list-numbered li::marker {
  font-weight: bold;
}

.bg-blue-curve {
  background-color: #021498;
  position: relative;
  margin: 0px 0 66px;
  padding: 100px 0;
}
.bg-blue-curve:before {
  content: "";
  background-image: url(../images/curve-top.png);
  background-color: var(--offwhite);
  display: block;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 93px;
  top: 0;
  left: 0;
  position: absolute;
  background-position: center;
}
.bg-blue-curve:after {
  content: "";
  background-image: url(../images/curve-bottom.png);
  background-color: var(--white);
  display: block;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  width: 100%;
  height: 80px;
  left: 0;
  bottom: -1px;
  position: absolute;
}/*# sourceMappingURL=style.css.map */