/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  color: #1c78e2;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

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

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  color: #fff;
  border: 1px solid #fff;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.top-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px 40px;
  background-color: #4484CE;
  color: rgb(5, 5, 99);
  position: sticky;
}

.top-bar a {
  cursor: pointer;
  font-weight: 600;
  color: #F9CF00;
}

.top-bar i {
  margin-right: 5px;
  font-weight: 600;
  color: #F9CF00;
}

@media (max-width:580px) {
  .top-bar {
    padding: 5px 10px;
  }

  .top-bar a {
    font-size: 12px;
  }
}


#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
}

#header .header-menu {
  padding-left: 20px;
  padding-right: 20px;
}

#header .logo {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  display: flex;
}

#header .logo a .logo-name span {
  font-size: 16px;
  color: #031A85;
}

#header .logo a .logo-name span sup {
  /* font-size: 10px; */
  top: -8px;
  font-weight: normal;
}

#header .logo a .logo-name p {
  font-size: 12px;
  font-weight: normal;
  color: #031A85;
}

#header .logo img {
  height: 14.5vmin;
  padding: 0;
}

@media (max-width:1120px) {
  #header .header-menu {
    padding-left: 10px;
    padding-right: 10px;
  }

  #header .logo a .logo-name span {
    font-size: 16px;
  }

  #header .logo a .logo-name p {
    font-size: 12px;
  }

  #header .logo img {
    /*width: 70px;*/
    height: 70px;
  }

  .navbar a,
  .navbar a:focus {
    padding: 10px 0 10px 15px !important;
  }
}

@media (max-width: 768px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

@media (max-width:660px) {
  #header .logo a .logo-name {
    margin-top: 5px;
  }

  #header .logo a .logo-name span {
    font-size: 18px;
  }
}

@media (max-width:360px) {
  #header .logo a .logo-name {
    display: none;
  }
}

/*--------------------------------------------------------------
# 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;
  padding: 10px 0 10px 25px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #37423b;
  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: #4484CE;
}

.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: #fff;
  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;
  text-transform: none;
  font-weight: 500;
}

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

.navbar ul a i.bi-cash-coin {
  font-size: 30px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #4484CE;
}

.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;
}

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

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #37423b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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: rgba(32, 38, 34, 0.9);
  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: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37423b;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #4484CE;
}

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

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

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

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

.navbar-mobile .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 {
  color: #4484CE;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 90vh;
  background: url("../img/young-teacher-helping-her-students-class.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 72px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 62px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: #eee;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 50px;
  transition: 0.5s ease-in;
  margin-top: 30px;
  color: #fff;
  background-color: #e2c011;
}

#hero .btn-get-started:hover {
  color: rgb(5, 5, 99);
  background-color: #F9CF00;
}


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

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

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



/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 30px;
  background: #4484CE !important;
  border-radius: 4px;
  color: white;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
  text-align: justify;
}

.why-us .content .more-btn {
  display: inline-block;
  background: #F9CF00;
  padding: 6px 30px 8px 30px;
  color: black;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #4484CE;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  background: #fff;
  padding: 10px 20px;
  width: 100%;
  border: 1px solid #4484CE
}

.why-us .icon-boxes .icon-box i {
  font-size: 32px;
  padding: 18px;
  color: #4484CE;
  margin-bottom: 20px;
  background: #eaeaea;
  border-radius: 50px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.why-us .icon-boxes .icon-box p {
  font-size: 14px;
  color: #848484;
  text-align: left;
  letter-spacing: 0.02;
}




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

.section-bg {
  background-color: #e6e6e6;
}

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #94b3d6;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #37423b;
}

.breadcrumbs {
  /* margin-top: 73px; */
  text-align: center;
  background: #4484CE;
  padding: 30px 0 20px 0;
  color: #fff;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 63px;
  }
}

.breadcrumbs h2 {
  font-size: 32px;
  font-weight: 500;
}

.breadcrumbs p {
  font-size: 14px;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 30px;
  padding-bottom: 30px;
}

.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 2px solid #bebebe;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #37423b;
  transition: 0.3s;
}

.features .icon-box:hover {
  border-color: #4484CE;
}

.features .icon-box:hover h3 a {
  color: #4484CE;
}



/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background-color: #ddedff;
  margin-bottom: 1em;
}

.about h3 {
  font-weight: 600;
  font-size: 26px;
  color: #000;
  margin-bottom: 5px;
}

.about p {
  font-size: 15px;
  color: #000;
  text-align: justify;
  padding-right: 10px;
}

@media (max-width: 768px) {
  .about .content .learn-more-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

.about #myBtn {
  border: none;
  padding: 5px 10px;
  background-color: #F9CF00;
  color: black;
}


.about .row .col-lg-6 #more {
  display: none;
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  margin-top: 2em;
  padding: 10px 0;
  background-color: #4484CE;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #e2c011;
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #F9CF00;
}

.counts .counts_section:hover {
  background-color: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.4);
  transition: 0.5s ease-in;
}



/* ------------------------------------------ */
/*     section                               */
/* ----------------------------------------- */
.contact-info {
  margin: 2em 0.5em 1em 0.5em;
  padding: 1em;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  border: 2px solid #4484CE;
  box-shadow: 0px 0px 6px 0px #4484CE;
  padding: 2em;
  align-items: center;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 1em;
  color: #333;

  text-align: center;
}

.contact-section p {
  /* font-size: 18px; */
  line-height: 1.5;
  color: #666;
  text-align: center;
}

.contact-section button a {
  color: black;
  text-decoration: none;
}

.contact-section button {
  background-color: #e2c011;
  color: #fff;
  padding: 6px 30px 8px 30px;
  /* font-size: 1.2em; */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  margin-top: 14px;
}

.contact-section button:hover {
  background-color: #F9CF00;
}

.left {
  flex-basis: 50%;
  padding-right: 1em;
}

.right {
  flex-basis: 50%;
}

@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1em;
  }

  .contact-section h2 {
    font-size: 2em;
  }

  .left,
  .right {
    margin-right: 0;
    margin-bottom: 2em;
    flex-basis: auto;
    width: 100%;
  }

  .contact-section button {
    padding: 0.8em 1em;
    font-size: 1em;
  }
}


/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/
.courses {
  background-color: #4484CE;
}

.courses .section-title p,
.courses .section-title h2 {
  color: #F9CF00;
}

.courses .course-item {
  border-radius: 5px;

  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h4 {
  font-weight: 700;
  font-size: 14px;
  background: #F9CF00;
  padding: 7px 14px;
  color: #000;
}

.courses .course-content h4 a {
  color: #000;
  transition: 0.3s;
}


.courses .course-content p {
  font-size: 14px;
  color: #777777;
}

.courses .course-content h3 {
  font-size: 20px;
  color: black;
  /* background: orange; */
  margin: 0;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: #37423b;
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid #eef0ef;
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile span {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #5a6c60;
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: #657a6d;
}


/* ----------------------------------- */
/*             keywords                 */
/* -------------------------------------*/

.keywords {
  background: url('/assets/img/bg-1.webp');
  width: 100%;
  /* min-height: 500px; */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
}

.keywords .course-item {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.keywords .course-item:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.keywords .course-content {
  padding: 20px;
  text-align: center;
}

.keywords .course-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 25px;
  color: black !important;
  padding: 10px;
  background-color: #4484CE;
}

.keywords .course-content p {
  font-size: 16px;
  line-height: 0.3;
  /* color: #ccc; */
  margin-bottom: 30px;
}

.keywords .btn-course-detail {
  display: inline-block;
  background-color: #F9CF00;
  color: black;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  transition: background-color 0.3s ease-in-out;
}

.keywords .btn-course-detail:hover {
  background-color: #f4c91d;
  color: #000;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}


@media (max-width: 991px) {
  .keywords .course-item {
    margin-bottom: 30px;
  }
}


/* ============== */
.advantages {
  background-color: #4484CE;
}

.advantages .section-title p,
.advantages .section-title h2 {
  color: #F9CF00;
}

.advantages .wow {
  color: #fff;
}

.advantages h4 {
  color: #ccc;
  font-size: 20px;
  font-weight: 600;
}

.advantages .wow p {
  font-size: 14px;
}

/*--------------------------------------------------------------
# Cource Details
--------------------------------------------------------------*/
.course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.course-details h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #eef0ef;
  bottom: 0;
  left: 0;
}

.course-details h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: #4484CE;
  bottom: 0;
  left: 0;
}

.course-details .course-info {
  background: #f6f7f6;
  padding: 10px 15px;
  margin-bottom: 15px;
}

.course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.course-details .course-info p {
  margin: 0;
  font-weight: 600;
}

.course-details .course-info a {
  color: #657a6d;
}

/*--------------------------------------------------------------
# Cource Details Tabs
--------------------------------------------------------------*/
.cource-details-tabs {
  overflow: hidden;
  padding-top: 0;
}

.cource-details-tabs .nav-tabs {
  border: 0;
}

.cource-details-tabs .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #37423b;
  border-radius: 0;
  border-right: 2px solid #e2e7e4;
  font-weight: 600;
  font-size: 15px;
}

.cource-details-tabs .nav-link:hover {
  color: #4484CE;
}

.cource-details-tabs .nav-link.active {
  color: #4484CE;
  border-color: #4484CE;
}

.cource-details-tabs .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.cource-details-tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #37423b;
}

.cource-details-tabs .details p {
  color: #777777;
}

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

@media (max-width: 992px) {
  .cource-details-tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .cource-details-tabs .nav-link.active {
    color: #fff;
    background: #4484CE;
  }
}


/* .course-details .row .col-lg-8{
  padding-bottom: 430px;
} 
/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 30px;
  position: relative;
}

.events .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

.events .card-img img {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.events .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 20px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events .card-title a {
  color: #37423b;
  transition: 0.3s;
}

.events .card-text {
  color: #5e5e5e;
  font-size: 14px;
}

.events .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}

.events .read-more a:hover {
  color: #4484CE;
}

.events .card:hover img {
  transform: scale(1.1);
}

.events .card:hover .card-body {
  border-color: #4484CE;
}

.events .card:hover .card-body .card-title a {
  color: #4484CE;
}


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

.contact {
  background: url('../img/contact-1.webp'), rgba(0, 0, 0, 0.4);
  background-color: #000;
  background-size: cover;
  padding-bottom: 20px;
  margin: 1em 0;
  padding-bottom: 50px;
}


.main_form .contactus {
  /* border: inherit; */
  border: #dedede solid 2px;
  margin-bottom: 25px;
  border-radius: 5px;
  width: 100%;
  height: 44px;
  background: transparent;
  color: black;
  font-size: 16px;
  font-weight: 550;
  padding-left: 10px;
  outline: none;
}

.main_form .textarea {
  border: 2px solid #dedede;
  margin-bottom: 25px;
  width: 100%;
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 550;
  padding: 10px 0px 0 10px;
  height: 100px;
  resize: none;
  border-radius: 5px;
  outline: none;
}

.main_form .send_btn {
  font-size: 17px;
  transition: ease-in all 0.5s;
  background-color: #F9CF00;
  text-transform: uppercase;
  color: black;
  padding: 8px 0px;
  max-width: 137px;
  width: 100%;
  border-radius: 40px;
  border: 1px solid #fff;
  outline: none;
  display: block;
  /* margin-top: px !important; */
  font-weight: 600;
}

.main_form .send_btn:hover {
  background-color: #F9CF00;
  transition: ease-in all 0.3s;
  color: #000;
  outline: none;
  display: block;
  box-shadow: 2px 2px 10px #275992;
}

.main_form ::placeholder {
  color: #fff;
  opacity: 1;
}

ul.social_icon {
  float: right;
  margin-top: 17px;
}

ul.social_icon li {
  display: inline-block;
  margin-left: 15px;
}

ul.social_icon li a i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 31px;
  color: #ffffff;
}

ul.social_icon li a i:hover {
  color: #4484CE;
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  background-color: #4484CE;
}

.testimonials .section-title p,
.testimonials .section-title h2 {
  color: #F9CF00;
}

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

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

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  border: 1px solid #F9CF00;
  position: relative;
  background: #fff;
  border-radius: 5px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #9cbbdd;
  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: 15px auto 15px auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #4484CE;
  opacity: 1;
  border: 1px solid #fff;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #F9CF00;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

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

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}





/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  color: #000;
  font-size: 14px;
  background-color: #373d42;
}

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

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #777777;
}

#footer .footer-top .footer-contact p strong {
  color: #333;
  font-size: 18px;
  padding-right: 10px;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #4484CE;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #4484CE;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #4484CE;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #F9CF00;
  color: #227fe9;
  text-decoration: none;
  /* border: 2px solid #F9CF00; */
}

#footer .copyright {
  color: #fff;
}

#footer .copyright a {
  color: #4484CE;
}

#footer .copyright a:hover {
  color: #F9CF00;
}



/* ========  */

/* contact page css  */
/* -------------- */
.contact_us {
  padding-top: 5px;
}

.contact_us .info {
  width: 100%;
  background: #fff;
}

.contact_us .info i {
  font-size: 20px;
  color: #4484CE;
  float: left;
  width: 44px;
  height: 44px;
  background: #e0e1e1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact_us .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37423b;
}

.contac_us .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #657a6d;
}

.contact_us .info .email,
.contact_us .info .phone {
  margin-top: 40px;
}

.contact_us .info .email:hover i,
.contact_us .info .address:hover i,
.contact_us .info .phone:hover i {
  background: #4484CE;
  color: #fff;
}

.contact_us .php-email-form {
  width: 100%;
  background: #fff;
}

.contact_us .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact_us .php-email-form input,
.contact_us .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact_us .php-email-form input:focus,
.contact_us .php-email-form textarea:focus {
  border-color: #4484CE;
}

.contact_us .php-email-form input {
  height: 44px;
}

.contact_us .php-email-form textarea {
  padding: 10px 12px;
  resize: none;
}

.contact_us .php-email-form button[type=button] {
  background: #4484CE;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact_us .php-email-form button[type=button]:hover {
  background: #0c73ea;
  border: 2px solid #F9CF00;
  box-shadow: 2px 1px 10px #F9CF00;
}

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

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

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

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




/* ======== tuition page ========================= */

/*--------------------------------------------------------------
# Courses3
--------------------------------------------------------------*/
.courses3 {
  background-image: url("/assets/img/bg-3.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.courses3 .course-item {
  background-color: #fff;
  border: 2px solid #F9CF00;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  color: #000;

}

.courses3 .course-content {
  padding: 15px 25px;
}

.courses3 .course-content p {
  font-size: 14px;
  color: #777777;
}

.courses3 .course-content h2 {
  font-size: 16px;
  color: rgb(28, 26, 26);
  /* background: #f77f00; */
  /* padding: 8px 14px; */
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;

}

.courses3 .course-content h5 {
  font-weight: 600;
}

.courses3 .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: #37423b;
}

.courses3 .course-content .bi {
  display: flex;
  font-size: 35px;
  /* text-align: center; */
  justify-content: center;
  align-items: center;
  margin: 0 auto 0.5em auto;
  color: #4484CE;
  /* background-color: #F9CF00; */
}

.courses3 .trainer {
  padding-top: 15px;
  border-top: 1px solid #eef0ef;
}

.courses3 .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses3 .trainer .trainer-profile span {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #5a6c60;
}

.courses3 .trainer .trainer-rank {
  font-size: 18px;
  color: #657a6d;
}

/*========= councelling-page images  */

.councelling-related-images {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 50px 0;
}

.councelling-related-images img {
  width: 33%;
  height: 400px;
}

@media (max-width:991px) {

  .councelling-related-images {
    display: flex;
    flex-direction: column;
  }

  .councelling-related-images img {
    width: 100%;
    height: 400px;
    margin-bottom: 5px;

  }
}


/*--------------------------------------------------------------
# Courses2
--------------------------------------------------------------*/

.courses2 .course-item {
  border-radius: 5px;
  border: 1px solid rgb(5, 5, 99);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.courses2 .course-content {
  padding: 15px;
}

.courses2 .course-content h4 {
  font-weight: 700;
  font-size: 18px;
  background: #4484CE;
  padding: 7px 14px;
  color: white;
}

.courses2 .course-content h4 a {
  color: white;
  transition: 0.3s;
}

.course2 .course-content h4 a:hover {
  color: green;
}

.courses2 .course-content p {
  font-size: 14px;
  color: #777777;
}

.courses2 .course-content h3 {
  font-size: 13px;
  background: #F9CF00;
  padding: 8px 14px;
  width: 30%;
}

.courses2 .course-content h3 a {
  color: #000;
  font-weight: 600;
}

.courses2 .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: #37423b;
}

.courses2 .trainer {
  padding-top: 15px;
  border-top: 1px solid #eef0ef;
}

.courses2 .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses2 .trainer .trainer-profile span {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #5a6c60;
}

.courses2 .trainer .trainer-rank {
  font-size: 18px;
  color: #657a6d;
}


/*  ========= home  tuition ====== */



/*--------------------------------------------------------------
# Cource Details
--------------------------------------------------------------*/

.course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.course-details h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #eef0ef;
  bottom: 0;
  left: 0;
}

.course-details h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: rgb(5, 5, 99);
  bottom: 0;
  left: 0;
}

.course-details .course-info {
  background: #f6f7f6;
  padding: 10px 15px;
  margin-bottom: 15px;
}

.course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.course-details .course-info p {
  margin: 0;
  font-weight: 600;
}

.course-details .course-info a {
  color: #657a6d;
}

.course-details form label {
  margin-bottom: 5px;
  font-weight: 600;
}

.course-details form input,
.course-details form textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #444444;
  font-size: 14px;
  padding: 5px 10px;
  outline: none;
}

.course-details form textarea {
  resize: none;
}



/*------------------ FAQ --------------- */

.faq-heading {
  border-bottom: #777;
  padding: 10px 30px 20px 30px;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin-left: 1em;
  margin-bottom: 10px;
  /* text-decoration: underline; */
}

.faq-heading::before {
  content: '';
  position: absolute;
  width: 25%;
  height: 3px;
  border-radius: 5px;
  background-color: #fff;
  margin-top: 40px;

}

.faq-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 20px 0 40px 0;
  background-color: #4484CE;
  margin-bottom: 1em;
}

.faq-one,
.faq-two,
.faq-three,
.faq-four {
  /* background-color: #fff; */
  margin: 0 2em;
}

.hr-line {
  width: 60%;
  margin: auto;

}

/* Style the buttons that are 
used to open and close the faq-page body */
.faq-page {
  /* background-color: #eee; */
  color: #444;
  cursor: pointer;
  padding: 20px;
  width: 80%;
  border: none;
  outline: none;
  transition: 0.4s;
  margin: auto;
  font-size: 20px;
  background-color: #fff;
}

.faq-body {
  margin: auto;
  width: 80%;
  padding: auto;

}

/* Add a background color to the button
 if it is clicked on (add the .active class 
 with JS), and when you move the mouse over it (hover) */
.act,
.faq-page:hover {
  background-color: #F9F9F9;
}

/* Style the faq-page panel. Note: hidden by default */
.faq-body {
  padding: 20px;
  background-color: white;
  display: none;
  overflow: hidden;
}

.faq-page:after {
  content: '\02795';
  /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.act:after {
  content: "\2796";
  /* Unicode character for "minus" sign (-) */
}


/* ============== apply ========== */
.apply_section {
  background-color: rgb(85, 141, 255);
  padding: 1em;
}

.apply_section h2 {
  font-size: 32px;
  color: #6c6c6c;
  font-weight: 600;
  margin-left: 1em;
  /* text-align: center; */
}

.apply {
  width: 50vw;
  margin: 0 auto;
  margin-top: 6em;
  padding: 2em 3em;
  background-color: #fff;
  /* background-color: rgb(85, 141, 255); */
}

@media (max-width:990px) {
  .apply {
    padding: 2em 1em;
    width: 80vw;
  }
}

@media (max-width:600px) {
  .apply h2 {
    font-size: 20px;
  }

  .apply .form-row {
    display: flex;
    flex-direction: column;
  }

  .apply input[type="text"],
  .apply input[type="email"],
  .apply input[type="tel"],
  .apply select {
    font-size: 8px;
  }

}

.apply form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #fff;
  padding: 1.5em 2em;
  border-radius: 5px;
}

.apply .form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.apply .form-group {
  flex-basis: calc(50% - 10px);
  margin-bottom: 20px;
}

.apply label {
  /* margin-bottom: 5px; */
  color: #525252;
}

.apply input[type="text"],
.apply input[type="email"],
.apply input[type="tel"],
.apply select {
  width: 100%;
  padding: 5px 10px 5px 0;
  border: none;
  border: 2px solid #ccc;
  border-top: none;
  border-right: none;
  border-left: none;
  outline: none;
  margin-top: 1em;
  font-size: 14px;
}

.apply button {
  background-color: #4CAF50;
  color: white;
  padding: 5px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  width: 50%;
}

.apply button:hover {
  background-color: #3e8e41;
}



/* --------------------- */
/*    apply teacher    --- */
/* ---------------------- */


/* ============== apply ========== */
.apply_section_teacher {
  background-color: rgb(85, 141, 255);
  padding: 1em;
}

.apply_section_teacher h2 {
  font-size: 32px;
  color: #6c6c6c;
  font-weight: 600;
  margin-left: 1em;
  /* text-align: center; */
}

.apply_teacher {
  width: 80vw;
  margin: 0 auto;
  margin-top: 6em;
  padding: 2em 0;
  background-color: #fff;
  /* background-color: rgb(85, 141, 255); */
}

@media(max-width:750px) {
  .apply_teacher h2 {
    font-size: 20px;
  }

  .apply_teacher label {
    font-size: 14px;
  }

  .apply_teacher .form-row {
    display: flex;
    flex-direction: column;
  }

  .apply_teacher input[type="text"],
  .apply_teacher input[type="email"],
  .apply_teacher input[type="tel"],
  .apply_teacher select {
    font-size: 10px;
  }
}


.apply_teacher form {
  max-width: 70vw;
  margin: 0 auto;
  background-color: #fff;
  padding: 1.5em 1em;
  border-radius: 5px;
}

.apply_teacher .form-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.apply_teacher .form-group {
  flex-basis: calc(50% - 10px);
  margin-bottom: 20px;
}

.apply_teacher label {
  /* margin-bottom: 5px; */
  color: #525252;
}

.apply_teacher input[type="text"],
.apply_teacher input[type="email"],
.apply_teacher input[type="tel"],
.apply_teacher select {
  width: 100%;
  padding: 5px 10px 5px 0;
  border: none;
  border: 2px solid #ccc;
  border-top: none;
  border-right: none;
  border-left: none;
  outline: none;
  margin-top: 1em;
  font-size: 14px;
}

.apply_teacher button {
  background-color: #4CAF50;
  color: white;
  padding: 5px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  width: 50%;
}

.apply_teacher button:hover {
  background-color: #3e8e41;
}


/* about page  */

/*--------------------------------------------------------------
# Trainers
--------------------------------------------------------------*/
.trainers {
  background-color: #4484CE;
}

.trainers .section-title h2,
.trainers .section-title p {
  color: #F9CF00;
}

.trainers .member {
  text-align: center;
  margin-bottom: 0px;
  background: #fff;
  border: 1px solid #eef0ef;
}

.trainers .member img {
  margin: 20px -1px 20px -1px;
  width: 300px;
}

.trainers .member .member-content {
  padding: 0 20px 10px 20px;
}

.trainers .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  font-weight: bold;
}

.trainers .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #858585;
  text-align: justify;
}

.trainers .member .social {
  margin-top: 15px;
}

.trainers .member .social a {
  color: #7e9486;
  transition: 0.3s;
}

.trainers .member .social a:hover {
  color: #4484CE;
}

.trainers .member .social i {
  font-size: 18px;
  margin: 0 2px;
}



/*-----------------------------------------------home page slider image and content------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.swiper {
  max-width: 1520px;
  width: 100%;
  padding: 40px 0;
  background-color: #4484CE;
  margin-top: 20px;
}

.slide-container {
  margin: 0 30px;
  overflow: hidden;
}

.card {
  background: #fff;
  border-radius: 8px;
}

.card .image-box {
  height: 200px;
}

.card .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
}

.card .profile-details {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding: 15px;
}

.card .profile-details img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}

.profile-details .name {
  font-size: 15px;
  font-weight: 500;
}

.profile-details .job {
  font-size: 12px;
  font-weight: 500;
  color: #4d4d4d;
}

.swiper-navBtn {

  height: 40px;
  width: 40px;
  background: #fff;
  border-radius: 50%;
}

.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  background-color: #000;
}

.swiper .card .name-job button {
  border: none;
  background-color: #F9CF00;
  padding: 5px 20px;
  border-radius: 20px;

}

.swiper .card .name-job button a {
  color: black;
}

.swiper .card .name-job button a:hover {
  color: white;
}

.swiper .card .name-job button:hover {
  background-color: #4484CE;
}

.swiper .section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding-top: 100px;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F9CF00;
  font-family: "Poppins", sans-serif;
}

.swiper .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #94b3d6;
  margin: 4px 10px;
}

.swiper .section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #37423b;
}

.swiper h5 {
  color: black;
  font-weight: 600;
}



/*------------------------------------stempire image & Content slider------------------------------------------*/

.swiperss {
  margin-top: 120px;
  max-width: 1520px;
  width: 100%;
  padding: 40px 0;
  background-color: #4484CE;
}

.swiperss .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 20px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.swiperss .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.swiperss .card-title a {
  color: #37423b;
  transition: 0.3s;
}

.swiperss .card-text {
  color: #5e5e5e;
  font-size: 14px;
}

.swiperss .card-body #myBtns {
  border: none;
  padding: 5px 10px;
  color: white !important;
  background-color: #F9CF00;
}

.swiperss .card-body #more {
  display: none;
}




/*------------------------------------------------------------------------------*/

.floating-buttons-container {
  position: fixed;
  bottom: 110px;
  right: 7px;
  z-index: 9999;
}

.floating-whatsapp-button,
.floating-call-button,
.floating-payment-button {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.floating-payment-button {
  background-color: orange;
  position: relative;
  overflow: hidden;
}

.floating-call-button {
  background-color: #800020;
  position: relative;
  overflow: hidden;
}

.floating-call-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: ripple 1s linear infinite;
}

@keyframes ripple {
  0% {
    transform: scale(0);
  }

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

/* payment  */

.floating-payment-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  transform: scale(0);
  animation: rip 1s linear infinite;
}

@keyframes rip {
  0% {
    transform: scale(0);
  }

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


/* ============================== */
/*         about page             */
/* ============================== */
.about-us {
  background-color: #4484CE;
  padding: 60px 100px;
  text-align: justify;
}

.about-us .about-flex-img {
  display: flex;
  margin-bottom: 10px;
}

.about-us .about-flex-img img {
  width: 20%;
  border-radius: 5px;
  margin-right: 20px;
}

@media (max-width:990px) {
  .about-us {
    padding: 60px 50px;
  }
}

@media (max-width:770px) {
  .about-us .about-flex-img img {
    width: 30%;
    border-radius: 5px;
    margin-right: 20px;
  }
}

@media (max-width:660px) {
  .about-us .about-flex-img {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
  }
  .about-us .about-flex-img img  {

    display: flex;
    margin: 10px auto;
  }
  .about-us {
    padding: 40px 20px;
  }

  .about-us .about-content p {
    font-size: 14px !important;
  }

}

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

.about-us .section-title p {
  color: #F9CF00;
}

.about-us .about-content p {
  color: #fff;
  font-size: 16px;
}

/* .about-us .about-content img {
  width: 80px;
  height: 80px;
  display: flex;
  margin: 10px auto;
  border-radius: 7px;
} */


/*============== popup image css ============ */
#popupMain {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  top: 0;
  display: none;
}

.remove {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);

}

.remove #remove {
  right: 0;
  top: 1%;
  position: absolute;
  cursor: pointer;
}

#popup {
  display: flex;
  margin: 0 auto;
}

#popup img {
  width: 33.3%;
  transition: transform .9s;
}

/*#popup img:hover {*/
/*  transform: scale(1.8);*/
/*  z-index: 99;*/
/*}*/

@media (max-width:770px) {
  .remove {
    top: 40%;
    left: 30%;
    transform: translate(-30%, -40%);
  }

  /*#popup img:hover {*/
  /*  transform: scale(1);*/
  /*}*/

  #popup img {
    width: 33vw;
  }
}

@media (max-width:590px) {
  #popupMain {
    overflow: scroll;
  }

  .remove {
    top: 10%;
    left: 10%;
    transform: translate(0%, 0%);
    max-width: 80%;
    overflow: scroll;
  }

  #popup {
    display: flex;
    flex-direction: column;
    overflow: scroll;

  }

  #popup img {
    width: 100%;
    height: 50vh;
    margin-bottom: 10px;
  }

}

/* ============== neet ============== */
.special-tuition {
  background-color: #4484CE;
  margin-top: 20px;
}

.special-tuition .section-title p {
  color: #F9CF00;
}

.special-tuition .course-item {
  background-color: #fff;
  padding: 10px 10px 0 10px;
  border-radius: 10px;
  margin-bottom: 5px;
}

.special-tuition .course-item img {
  height: 200px;
  width: 350px;
  margin-bottom: 10px;
}

.special-tuition .course-item h4 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}


/* ============== neet ============== */
*-------------------------------------------------------------- why choose --------------------------------------------------------------*/ .why-choose {
  background-color: #4484CE;
}

.why-choose .section-title h2,
.why-choose .section-title p {
  color: #F9CF00;
}

.why-choose .member {
  text-align: center;
  margin-bottom: -10px;
  background: white;
  border: 3px solid #abadac;
}

.why-choose .member img {
  margin: 20px -1px 20px -1px;
  width: 120px;
  height: 80px;
  /* border-radius: 150px; */
}

.why-choose .member .member-content {
  padding: 0 20px 10px 20px;
}

.why-choose .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.why-choose .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  font-weight: bold;
}

.why-choose .member p {
  padding-top: 10px;
  font-size: 18px;
  /* font-style: italic; */
  color: black;
  text-align: justify;
}

.why-choose .member .social {
  margin-top: 15px;
}

.why-choose .member .social a {
  color: #7e9486;
  transition: 0.3s;
}

.why-choose .member .social a:hover {
  color: #4484CE;
}

.why-choose .member .social i {
  font-size: 18px;
  margin: 0 2px;
}