html {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: poppins;
  color: #444444;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

p {
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: poppins;
}

.font-italic {
  font-family: italic;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #106eea;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 100px;

}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #222222;
}

#header .logo a span {
  color: #106eea;
}

#header .logo img {
  max-height: 120px;
}

.mt-xl-n9 {
  margin-top: -30px !important;
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.topbanner {
  position: relative;
}

.topbanCont {
  position: absolute;
  bottom: 20%;
  left: 5%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: left;
}

.topbanCont h1 {
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.topbanCont p {
  margin: 0 auto 15px auto;
  color: #eee;
}

@media screen and (max-width: 768px) {
  .topbanCont h1 {
    font-size: 16px;
    margin-bottom: 0;
  }

  .topbanCont {
    bottom: 8%;
  }
}

/*--------------------------------------------------------------
# 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>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 500;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #00E8C6;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 100%;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #00E8C6;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  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;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #00E8C6;
}

.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: #222222;
  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(9, 9, 9, 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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #106eea;
}

.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: #106eea;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Register
--------------------------------------------------------------*/
#register .register {
  padding: 30px 0;
  background: #FFFBD8;
  text-align: center;
  font-size: 15px;
  border-radius: 45px;
}

#register .register h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
}

#register .register form {
  margin-top: 30px;
}

#register .register form input[type=number] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
  outline: none;
}

#register .register button[type=submit] {
  background: #44AB8E;
  border: 0;
  padding: 10px 50px;
  color: #fff;
  transition: 0.4s;
  border-radius: 34px;
  margin-top: 30px;
  font-size: 14px;
}

#register .register .getOtp {
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 14px;
  font-weight: 600;
  padding: 0 20px;
  color: #0029FF;
  transition: 0.3s;
}

#register .otpBox {
  position: relative;
  background: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 6%);
  text-align: left;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 20px 0 30px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;

}

.counts .count-box span {
  font-size: 3rem;
  display: block;
  color: #44AB8E;
  font-weight: bold;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: poppins;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.btn-radiance {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 8px;
  transition: 0.5s;
  color: #43A395;
  border: 2px solid #43A395;
}

.btn-radiance:hover {
  background: #43A395;
  color: #fff;
}

.btn-gallery {

  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 0px;
  border-radius: 8px;
  transition: 0.5s;
  color: #43A395;
  text-decoration: underline;

}

.btn-gallery:hover {

  color: #000;
}

.btn-submit {

  font-weight: 600;
  font-size: 18px;

  display: inline-block;
  padding: 8px 8px;
  border-radius: 8px;
  transition: 0.5s;
  background-color: #43A395;
  color: #fff;


}

.btn-submit:hover {

  color: #000;
}

.btn-enquiey {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px;
  border-radius: 8px;
  transition: 0.5s;
  color: #fff;
  border: 2px solid #fff;
}

.btn-enquiey:hover {
  background: #43A395;
  color: #fff;
}

.explore {
  margin-top: 7rem;
  position: relative;
}

/*--------------------------------------------------------------
# quality
--------------------------------------------------------------*/

#quality {
  padding: 20px 0;
  background: url(../img/home-banner.png) no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}


#quality h2 {
  font-size: 2.5rem;
  font-weight: bold;
  padding-top: 0;
  border-left: 8px solid #00E8C6;
  padding-left: 10px;
  border-radius: 5px;
}

#quality .quality-carousel,
.quality-slider {
  overflow: hidden;
}

#quality .quality-item {
  text-align: center;
  color: #fff;
}

#quality .swiper-pagination {
  bottom: 60px;
  position: absolute;
}

#quality .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #D9D9D9;
  opacity: 1;
}

#quality .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00E8C6;
}

#quality .swiper-button-next {
  position: absolute;
  top: 42%;

}

#quality .swiper-button-prev {
  position: absolute;
  top: 42%;
}

#quality .swiper-button-next:after,
#quality .swiper-button-prev:after {
  font-size: 20px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 5px 10px;
  color: #fff;
}


.institue {
  margin-bottom: 30px;
  position: relative;
}

#institue .font19 {
  font-size: 19px;
}

/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/
#testimonials .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  font-weight: bold;
  color: #fff;
  background-color: #00E8C6;
}

#testimonials .nav-link {
  color: #000;
  font-weight: 600;
}

.tabToptext {
  font-size: 13px;
}

.testimonial .swiper {
  width: 85%;
  margin: 0 auto;
}

.border-box {
  border: 2px solid #ccc;
  padding: 40px;
  margin: 40px;
  border-radius: 20px;
}

.testimonial {
  margin-bottom: 30px;
  position: relative;
}

.testimonial-card {
  background: #fff;
  padding: 0px 0px;
  margin: 0px 45px 0px 45px;
  border-radius: 5px;
  box-shadow: 0 15px 15px -20px rgb(0 0 0 / 73%);
  transform: scale(0.9);
  opacity: 1;
  transition: all 0.3s;
  border: 1px solid #1b69b359;
}

.testimonial-card img {
  border-radius: 5px 5px 0px 0px;
}

.testimonial-card .text-minheight {
  font-size: 14px;
  min-height: 180px;
}

.testimonial .testimonial-card ul {
  list-style: none;
  padding: 0px 20px 10px 20px;
  background-color: #43A395;
  margin-bottom: 0;
}

.testimonial .testimonial-card .parentBg {
  background-color: #9EA343;
  border: 1px solid #9EA343;
}

.testimonial .testimonial-card ul li {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.testimonial .testimonial-card ul img {
  width: 80px;
  margin-left: 15px;
  margin-top: -30px;
  border-radius: 50px;
}

.testimonial .testimonial-card ul h5 {
  font-size: 16px;
  color: #fff;
  padding-top: 10px;
  margin-bottom: 0;
  font-weight: 600;
}

.testimonial .testimonial-card ul p {
  font-size: 14px;
  margin-bottom: 0;
  color: #fff;
}

.testimonial .swiper-button-next:after,
.testimonial .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  padding: 5px 10px;
  color: #00E8C6;
}

.testimonial .swiper-button-next,
.swiper-button-prev {
  top: 60%;
}

/*our teachers */
.ourTechcont {
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  font-size: 14px
}

.ourTechcont span {
  font-weight: 600;
  font-style: italic;
  display: block;
  color: #43A395;
}

.ourteachers {
  margin-bottom: 0px;
  position: relative;
}

.ourteachers-card {
  background: #fff;
  padding: 0px 0px;
  margin: 15px 15px 0px 15px;
  transform: scale(0.9);
  opacity: 1;
  transition: all 0.3s;

}

.ourteachers-card img {
  border-radius: 5px 5px 0px 0px;
}

.owl-nav .owl-prev {
  position: absolute;
  top: calc(50% - 25px);
  left: 0;
  opacity: 1;
  font-size: 30px !important;
  z-index: 1;
}

.owl-nav .owl-next {
  position: absolute;
  top: calc(50% - 25px);
  right: 0;
  opacity: 1;
  font-size: 30px !important;
  z-index: 1;
}

.owl-dots {
  text-align: center;
}

.owl-dots .owl-dot {
  height: 10px;
  width: 10px;
  border-radius: 10px;
  background: #ccc !important;
  margin-left: 3px;
  margin-right: 3px;
  outline: none;
}

.owl-dots .owl-dot.active {
  background: #f44336 !important;
}

.fa.fa-angle-right {
  color: #00E8C6;
}

.fa.fa-angle-left {
  color: #00E8C6;
}

.who-we-are h1 {
  color: #43A395;
  font-weight: bold;
}

#director {
  margin-top: 50px;
}

#director .director h5 {
  color: #43A395;
  font-weight: 600;
}

#director .font-sm {
  font-size: 13px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 15px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #106eea;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  position: relative;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 0px;
  right: 0px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #222222;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #555555;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #3c3c3c;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #106eea;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #6ba7f5;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0px;
}

/*--------------------------------------------------------------
# Gallery Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #106eea;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #106eea;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(34, 34, 34, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/
.course-banner {
  padding-top: 180px;
  padding-bottom: 180px;
  background: url("../../assets/img/course-banner.png") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.course-banner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.course-banner h3 {
  font-weight: bold;
  color: #fff;
}

/*--------------------------------------------------------------
# About us
--------------------------------------------------------------*/

.aboutus-slider .section-header {
  margin-bottom: 40px;
}

.aboutus-slider .testimonials-carousel,
.aboutus-slider .about-slider {
  overflow: hidden;
}

.aboutus-slider .aboutus-item {
  color: #fff;
  position: relative;
}

.about-caption {
  position: absolute;
  bottom: 20%;
  left: 5%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: left;
}

.aboutus-slider .aboutus-item .aboutus-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.aboutus-slider .aboutus-item h1 {

  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
}

.aboutus-slider .aboutus-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #eee;
}

.aboutus-slider .swiper-pagination {
  bottom: 20px;
  position: absolute;
}

.aboutus-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.aboutus-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

@media (max-width: 992px) {
  .aboutus-slider .aboutus-item h1 {
    font-size: 16px;
    margin-bottom: 0;
  }

  .about-caption {
    bottom: 0%;
  }
}

/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/
.courses .icon-box h4 {
  font-size: 18px;
  background-color: #00E8C6;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  border-radius: 20px 20px 0px 0px;
}

.courses p {
  font-size: 13px;
}

.courses .course-content {
  margin-top: 0px;
  position: relative;
  min-height: 140px;
  padding: 20px;

}

.courses .icon-box {
  border: 1px solid #e2eefd;
  padding: 0px 0px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border-radius: 20px 20px 20px 20px;
}

.courses .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgb(16 110 234 / 10%);
}

.perks-of-radiance .icon-box h4 {
  font-size: 18px;
  background-color: #FFFDEB;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  border-radius: 20px 20px 0px 0px;
  margin-bottom: 0;
}

.perks-of-radiance ul li {
  font-size: 13px;
  margin-bottom: 5px;
  font-weight: 600;
}

.perks-of-radiance .course-content {
  margin-top: 0px;
  position: relative;
  min-height: 280px;
  padding: 20px;
  background-color: #00e8c642;
  border-radius: 0px 0px 20px 20px;
}

.perks-of-radiance .icon-box {
  border: 1px solid #e2eefd;
  padding: 0px 0px;
  transition: all ease-in-out 0.3s;
  background: #fff;
  border-radius: 20px 20px 20px 20px;
}

.perks-of-radiance .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgb(16 110 234 / 10%);
}


.courses-top .icon-box h4 {
  font-size: 18px;
  background-color: #FFFDEB;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
}

.courses-top ul li {
  font-size: 13px;
  margin-bottom: 5px;
}

.courses-top .course-content {
  margin-top: 20px;
  position: relative;
  min-height: 140px;
}

.courses-top .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgb(16 110 234 / 10%);
}

/*--------------------------------------------------------------
# Contacts
--------------------------------------------------------------*/
.contact .form-control {
  border: 1px solid #00E8C6;
  border-radius: 10px !important;
}

.contact .form-select {
  border: 1px solid #00E8C6;
  border-radius: 10px !important;
  font-size: 14px;
}

.section-title h4 {
  font-weight: bold;
  padding-bottom: 30px;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form input,
.contact .php-email-form textarea,
.contact .php-email-form select:focus {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus {
  border-color: #106eea;
}

.contact .php-email-form input {
  padding: 15px 15px;
}

.contact .php-email-form select {
  padding: 15px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
  height: 80px;
}

.contact .php-email-form button[type=submit] {
  border: 2px solid #43A395 !important;
  padding: 8px 30px;
  color: #43A395;
  transition: 0.4s;
  border-radius: 9px;
  background-color: #fff;

}

.contact .php-email-form button[type=submit]:hover {
  background: #43A395;
  color: #fff;
}

.imgh490 {
  height: 490px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
#faq .section-title {
  text-align: center;
  padding-bottom: 0px;
}

.section-title h4 {
  font-weight: bold;
}

.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border: 1px solid #00E8C6;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 10px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #106eea;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
  color: #0d58ba;
  transition: 0.3s;
}

.faq .faq-list .bi-plus {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
  color: #00E8C6;
}

.faq .faq-list .bi-dash {
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
  color: #F29316;
}


.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: black;
}

.faq .faq-list .collapsed:hover {
  color: #106eea;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}


/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.featured-services .icon-box {
  border: 1px solid #FFFDEB;
  padding: 40px;
  transition: all ease-in-out 0.3s;
  background: #FFFDEB;
}

.featured-services .icon img {
  height: 75px
}

.featured-services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgb(16 110 234 / 10%);
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: #5A595A;
}

.featured-services .description {
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-logo {
  width: 112px;
}

#footer {

  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #D9D9D9;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer h5 {
  font-size: 16px;
  margin: 0 0 5px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer p {
  font-size: 13px;
}

.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgb(16 110 234 / 15%);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.team .member .member-info p {
  font-size: 14px;
}

.team .member .member-info span {
  font-weight: 600;
  font-style: italic;
  display: block;
  color: #43A395;
}

/*Responsive*/
@media (max-width: 768px) {
  .border-box {
    margin: 0;
    padding: 10px 0 0 0;
  }

  #testimonials .tab-content {
    margin-left: 35px;
  }

  #testimonials .tab-content p {
    font-size: 12px;
  }

  #testimonials .nav-link {
    font-size: 12px;
    padding: 0.5rem 0.5rem;
  }

  #testimonials .testimonial-card {
    margin: 0;
  }

  .glightbox-clean .gnext {
    top: 50%;
  }

  .glightbox-clean .gprev {
    top: 50%;
  }

  #quality .swiper-pagination {
    bottom: 20px;
  }

  #quality h2 {
    font-size: 2rem;
  }

  .btn-enquiey {
    font-size: 12px;
    padding: 6px 18px;
  }
}

.head-banner .thank-you {
  width: 600px;
}





/*--------------------------------------------------------------
# RTSE Section
--------------------------------------------------------------*/
.topOverview span {
  color: #43A395;
}

.raiance-40 .content h3 {
  font-weight: 500;
  font-size: 32px;
  color: #5A595A;
}

.raiance-40 .content ul {
  list-style: none;
  padding: 0;
}

.raiance-40 .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
  color: #5A595A;
}

.raiance-40 .content ul i {
  flex-shrink: 0;
  font-size: 55px;
  color: #43A395;
  margin-right: 20px;
  font-weight: 500;
  line-height: 0;
  margin-top: 17px;
}

.raiance-40 .content ul h5 {
  font-size: 15px;
  font-weight: 600;
  color: #5A595A;
}

.raiance-40 .content span {
  color: #43A395;
}

.raiance-40 .content ul p {
  font-size: 15px;
}

.raiance-40 .content p:last-child {
  margin-bottom: 0;
}

.isro span {
  color: #43A395;
}

.isro h3 {
  font-weight: 500;
  font-size: 32px;
  color: #5A595A;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Curriculam Services
--------------------------------------------------------------*/
.course-curriculum .section-title {
  text-align: center;
  padding: 30px;
}

.course-curriculum .section-title span {
  color: #43A395;
}

.class-syllabus {
  background-color: #43A395;
  border-radius: 5px;
}

.class-syllabus h3 {
  font-size: 22px;
  color: #fff;
}

.class-syllabus h2 {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
}

.course-curriculum .icon-box {
  padding: 15px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #F4F0F0;
  box-shadow: 0 0 29px 0 rgb(68 88 144 / 12%);
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
  z-index: 1;
}

.course-curriculum .icon {
  margin-bottom: 15px;
}

.course-curriculum .icon {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.course-curriculum .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.course-curriculum .title a {
  color: #111;
}

.course-curriculum .description {
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 0;
  padding-left: 20px;
}

.reg-for-rtse {
  background: #43A395;
  background-size: cover;
  padding: 100px 0;
  border-radius: 5px;
}

.reg-for-rtse h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
}

.reg-for-rtse .cta-btn {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

/*--------------------------------------------------------------
# Contacts
--------------------------------------------------------------*/
.admission-card .form-control {
  border: 1px solid #00E8C6;
  border-radius: 10px !important;
}

.admission-card .form-select {
  border: 1px solid #00E8C6;
  border-radius: 10px !important;
  font-size: 14px;
}

.admission-card .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}

.admission-card .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.admission-card .php-email-form .error-message br+br {
  margin-top: 25px;
}

.admission-card .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.admission-card .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.admission-card .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.admission-card .php-email-form .form-group {
  margin-bottom: 20px;
}

.admission-card .php-email-form input,
.admission-card .php-email-form textarea,
.admission-card .php-email-form select:focus {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.admission-card .php-email-form input:focus,
.admission-card .php-email-form textarea:focus,
.admission-card .php-email-form select:focus {
  border-color: #106eea;
}

.admission-card .php-email-form input {
  padding: 15px 15px;
}

.admission-card .php-email-form select {
  padding: 15px 15px;
}

.admission-card .php-email-form textarea {
  padding: 12px 15px;
  height: 80px;
}

.admission-card .php-email-form button[type=submit] {
  border: 2px solid #43A395 !important;
  padding: 8px 30px;
  color: #43A395;
  transition: 0.4s;
  border-radius: 9px;
  background-color: #fff;

}

.admission-card .php-email-form button[type=submit]:hover {
  background: #43A395;
  color: #fff;
}

.admission-card .form-label {
  font-size: 14px;
}

.item-content {
  padding: 5px 15px;
}

.image-upload {
  width: 100%;
  border: 1px dashed #00E8C6;
  border-radius: 5px;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
  background: #f8f8f9;
  color: #666;
  overflow: hidden;
}

.image-upload .dplay-tbl-cell i {
  font-size: 38px;
}

.image-upload .dplay-tbl-cell h5 {
  font-size: 14px;
}

.image-upload .dplay-tbl-cell p {
  font-size: 14px;
}

.item-wrapper form img {
  margin-bottom: 20px;
  width: auto;
  height: auto;
  max-height: 400px;
  width: auto;
  border-radius: 5px;
  overflow: hidden;
}


.image-upload img {
  height: 100% !important;
  width: auto !important;
  border-radius: 0px;
  margin: 0 auto;
}

.image-upload i {
  font-size: 6em;
  color: #ccc;
}


.image-upload input {
  cursor: pointer;
  opacity: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
}


.item-wrapper input {
  height: 43px;
  line-height: 43px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 20px;
}

.userImg img {
  width: 200px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact-form .form-field {
  position: relative;
  margin: 12px 0;
}

.contact-form .input-text {
  display: block;
  width: 100%;
  height: 36px;
  border-width: 0 0 2px 0;
  border-bottom: 2px solid #00E8C6;
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

.contact-form .label {
  position: absolute;
  left: 15px;
  bottom: 11px;
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  color: #000;
  cursor: text;
  transition: -webkit-transform .2s ease-in-out;
  transition: transform .2s ease-in-out;
  transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
}

.contact-form .exdtc {
  font-size: 10px;
}

.admit-prv {
  box-shadow: 0 0 30px rgb(214 215 216 / 40%);
  padding: 30px;
}

/*********** Registration Form *************/

.registration-form .form-control {
  border: 1px solid #00E8C6;
  border-radius: 10px !important;
}

.registration-form .form-select {
  border: 1px solid #00E8C6;
  border-radius: 10px !important;
  font-size: 14px;
}

.registration-form .php-email-form {
  padding-right: 30px;
  padding-left: 30px;
}

.registration-form .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.registration-form .php-email-form .error-message br+br {
  margin-top: 25px;
}

.registration-form .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.registration-form.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.registration-form .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.registration-form .php-email-form .form-group {
  margin-bottom: 20px;
}

.registration-form .php-email-form input,
.admission-card .php-email-form textarea,
.admission-card .php-email-form select:focus {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.registration-form .php-email-form input:focus,
.admission-card .php-email-form textarea:focus,
.admission-card .php-email-form select:focus {
  border-color: #106eea;
}

.registration-form .php-email-form input {
  padding: 15px 15px;
}

.registration-form .php-email-form select {
  padding: 15px 15px;
}

.registration-form .php-email-form textarea {
  padding: 12px 15px;
  height: 80px;
}

.registration-form .php-email-form button[type=submit] {
  border: 2px solid #43A395 !important;
  padding: 8px 30px;
  color: #43A395;
  transition: 0.4s;
  border-radius: 9px;
  background-color: #fff;

}

.registration-form .php-email-form button[type=submit]:hover {
  background: #43A395;
  color: #fff;
}

.registration-form label.form-check-label {
  margin-top: 4px;
  margin-left: 10px;
  font-size: 13px;
}

.registration-form .form-check-input {
  padding: 10px !important;
}

.registration-form .check-gc {
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 14px 15px;
  margin-bottom: 15px;
}

.registration-form .form-label {
  font-size: 14px;
}

.registration-form .modal-header {
  border-bottom: none !important;
}

.registration-form .modal-body {
  padding-top: 0px;
}

.registration-form .btn-submit {
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  padding: 8px 8px;
  border-radius: 8px;
  transition: 0.5s;
  background-color: #43A395;
  color: #fff;
}

.registration-form .php-email-form input:focus,
.admission-card .php-email-form textarea:focus,
.admission-card .php-email-form select:focus {
  border-color: #ff0000;
}

.registration-form sup {
  color: red;
}

/*--------------------------------------------------------------
# RTSE Slider
--------------------------------------------------------------*/

.rtse-slider .section-header {
  margin-bottom: 40px;
}

.rtse-slider .testimonials-carousel,
.rtse-slider .rtse-slider {
  overflow: hidden;
}

.rtse-slider .rtse-item {
  color: #fff;
  position: relative;
}

.rtse-caption {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: left;
}

.rtse-slider .rtse-item .rtse-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto;
}

.rtse-slider .rtse-item h1 {

  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
  text-align: center;
}

.rtse-slider .rtse-item p {

  margin: 0 auto 15px auto;
  color: #eee;
}

.rtse-slider .swiper-pagination {
  bottom: 20px;
  position: absolute;
}

.rtse-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.rtse-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

@media (max-width: 992px) {
  .rtse-slider .rtse-item h1 {
    font-size: 16px;
    margin-bottom: 0;
  }

  .rtse-caption {
    bottom: 0%;
  }
}

.mrqbg {
  background-color: #cccccc;
}

.mrqbg ul li {
  font-size: 14px;
  margin-bottom: 4px;
}

.faculty {
  margin-top: 50px;
}

.faculty .director h5 {
  color: #43A395;
  font-weight: 600;
}

.faculty .font-sm {
  font-size: 13px;
}

table.table-fee td {
  font-size: 14px;
  padding: 8px;
}

.bg-rad {
  background-color: #00E8C6;
}

.bg-info-rad {
  background-color: #FFFDEB;
}

select#date {
  font-size: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  width: 100%;
}

select#date:focus-visible {
  outline: #FF0000 auto 0.5px;
}

.date-selection .form-check {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.date-selection {
  padding: 0 !important;
  border: 0 !important;
}

@media only screen and (min-width:768px){
  img.desktop{
    display:block;
  }
    img.mobile{
    display:none;
  }
}

@media only screen and (max-width:767px){
  img.desktop{
    display:none;
  }
    img.mobile{
    display:block !important ;
  }
}