@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&amp;display=swap');



html {
  font-family: 'Montserrat', sans-serif;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #444444;
}

a {
  color: #1977cc;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

a:hover {
  color: #3291e6;
  text-decoration: none;
}

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

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1977cc;
  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: #298ce5;
  color: #fff;
}

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

.datepicker-dropdown {
  padding: 20px !important;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #111d13;
  height: 40px;
  font-size: 16px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #ffff;
  transition: 0.3s;
  font-size: 15px;
}

#topbar .contact-info a:hover {
  color: #bebebe;
}

#topbar .contact-info i {
  color: #fff;
  padding-right: 4px;
  margin-left: 15px;
  line-height: 0;
}

#topbar .contact-info i:first-child {
  margin-left: 0;
}

#topbar .social-links a {
  color: #fff;
  padding-right: 15px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
  float: right;

}

#topbar .social-links a:hover {
  color: #bebebe;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 0px 0;
  top: 40px;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#header .logo a {
  color: #111d13;
}

#header .logo img {
  max-height: 70px;
}

/**
* Appointment Button *
*/
.appointment-btn {
  margin-left: -3px;
  background: #111d13;
  color: #fff;
  border-radius: 5px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
}

.appointment-btn:hover {
  background: #76818e;
  color: #fff;
}

.appointment-btn2 {
  margin-left: 25px;
  background: #111d13;
  color: #fff;
  border-radius: 5px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
}

.appointment-btn2:hover {
  background: #76818e;
  color: #fff;
}




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

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

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

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 17px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: #111d13;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid #fff;
  padding: 13px 0px;
  font-weight: 700;

}

.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: #114c41;
  border-color: #114c41;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  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-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}

.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: #1977cc;
}

.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: #111d13;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

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

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: white;
  transition: 0.3s;
  z-index: 99999999;
}

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

.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>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #111d13;
  border: none;
}

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

.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: #1977cc;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* Fullscreen Carousel */
#hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.home-slider .carousel-item {
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-slider .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 80%;
}

.home-slider h1 {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: capitalize;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
}

.home-slider h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.home-slider ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.home-slider ul li {
  font-size: 20px;
  margin: 5px 0;
}

.btn-get-started {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 35px;
  border-radius: 5px;
  transition: all 0.4s ease;
  background: #fff;
  color: #111 !important;
  text-decoration: none;
}

.btn-get-started:hover {
  background: #114c41;
  color: #fff !important;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .home-slider h1 {
    font-size: 38px;
  }

  .home-slider h2 {
    font-size: 20px;
  }

  .btn-get-started {
    font-size: 14px;
    padding: 10px 25px;
  }
}




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

.sec_1 {
  background: #80808021;
}

.sec_2 {
  background: url("../img/section_bg-2.webp") center center no-repeat;
  background-size: cover;
  padding: 70px 0;
}


.sec_h1 {
  text-align: center;
  font-size: 50px;
  font-weight: 800;
}


.sec_h3 {
  text-align: center;
  font-size: 34.5px;
  font-weight: 600;
}



.sec_p {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.sec_pw {
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  margin: 0 0px;
}

.sec_pww {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.sec_pww span {
  text-align: left;
  font-size: 27px;
  font-weight: 700;
  color: #fff;
}


.sec_4 {
  background: linear-gradient(135deg, #0a2f25 0%, #112d25 100%);
  color: #fff;
  
  position: relative;
  overflow: hidden;
}

.sec_4::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 70%);
  z-index: 0;
}

.sec_4 .container {
  position: relative;
  z-index: 1;
}

.sec_4 .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.sec_4 .section-title span {
  color: #4bd88a;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
}

.feature-list img {
  margin-top: 10px;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.feature-list li:hover img {
  transform: scale(1.1);
}

.feature-list p {
  margin: 0;
}

.btn_white_order {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #0a2f25;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn_white_order:hover {
  background: #21634c;
  color: #fff;
  transform: translateY(-3px);
}


.sec_3 {
  background: url("../img/section_bg-3.png") center center no-repeat;
  background-size: cover;
  padding: 40px 0;
}

.sec_5 {
  background: url("../img/section_bg_5.png") center center no-repeat;
  background-size: cover;
  padding: 65px 0 80px;
}

.sec_6 {

  background-size: cover;
  padding: 90px 0 110px;
  background-repeat: no-repeat;
  background-position: center 85%;
}

.sec_7 {
  background: url("../img/section_bg_7.png") center center no-repeat;
  background-size: cover;
  padding: 95px 0 100px;
}

.sec_8 {
  background: url("../img/section_bg_8.webp") center center no-repeat;
  background-size: cover;
  padding: 90px 0;
}

.sec_9 {
  background: url("../img/section_bg_9.png") center center no-repeat;
  background-size: cover;
  padding: 50px 0;
  font-size: 36px !important;
}

.btn_white_order {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 17px !important;
  display: inline-block;
  padding: 12px 21px;
  margin-top: 0px;
  border-radius: 5px;
  transition: 0.5s;
  color: #111d13 !important;
  background: #fff;
  text-decoration: none;
}


.btn_white_order:hover {
  background: #114c41;
  color: #fff !important;
}

.sec_3 a {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}


.sec_7 a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

.sec_7 h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  text-align: left;
  margin-bottom: 15px;
}

.sec_7 h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
}

.sec_7 p {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  
  margin-bottom: 36px;
  /* max-width: 570px; */
}

.sec_5 h1 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}

.sec_5 a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  vertical-align: middle;
}



.sec_6 h2 {
  font-size: 50px;
  font-weight: 800;
  text-align: center;
  text-transform: capitalize;
}

.sec_6 a {
  font-size: 20px;
  font-weight: 600;
  color: #111d13;
  text-align: center;
}


.sec_8 a {
  font-size: 15px;
  font-weight: 600;
  color: #111d13;
  text-align: center;
}

.sec_8 .h1 {
  font-size: 40px;
  font-weight: 800;
  text-transform: capitalize;
}
.sec_8 h2 {
    font-size: 25px;
    font-weight: 700;
}

.sec_8 h3 {
  font-size: 22px;
  text-transform: capitalize;
  color: #111d13;
}

.sec_8 p {
  font-size: 16px;
  font-weight: 8500;
  color: #111d13;
  margin-bottom: 40px;
}

.sec_8 img {
  max-width: 100%;
  margin: auto;
  flex: center;
}

.sec_9 img {
  max-width: 80% !important;
  margin: auto;
  flex: center;
}

.sec_9 img:hover {
  opacity: 0.4;
  transform: scale(0.9);
  opacity: 1;
  transition: 1s all ease;
}

.right {
  text-align: right !important;
}

.sec_9 {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 0px;
}

.beatSwiper {
.swiper-wrapper {
  padding: 20px 0px;
}
  .swiper-slide {
    height: auto;
    .best_box {
      height: 100%;
    }
  }
}

.best_box {
  background: linear-gradient(135deg, #0a2f25 0%, #112d25 100%);
  text-align: center;
  padding: 10px 30px;
  border-radius: 5px;
  max-height: 400px;
  transition: background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform, box-shadow;
}

.best_box p,
.best_box h2 {
  transition: color 0.35s ease;
}

.best_box img {
  transition: filter 0.35s ease, transform 0.35s ease;
  backface-visibility: hidden;
}

.best_box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  border-color: rgb(86 189 93);
  border: 1px solid;
  box-shadow: 0 10px 30px rgb(26 28 26 / 31%);
}

.best_box:hover p {
  color: #000;
}

.best_box:hover h2 {
  color: #000;
}

.best_box:hover img {
  filter: invert(1);
}

.best_box h2 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  text-transform: capitalize;

}

.best_box p {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-align: left;
}

.best_box img {
  border-radius: 10px;
  padding-top: 28px;
  margin-top: -7px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  width: 86px;
}

.btn_blue {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px !important;
  display: inline-block;
  padding: 7px 15px;
  margin-top: 0px;
  border-radius: 5px;
  transition: 0.5s;
  background: #111d13;
  color: #fff !important;
  position: relative;
  float: right;

}

.btn_blue:hover {
  background: #fff !important;
  color: #111d13 !important;
  ;
}

.logo-carousel .owl-item img {
  width: 100%;
  max-width: 180px;
  margin: auto;
}





.section-bg {
  background: url("../img/test_bg.jpg") center center no-repeat;
  background-size: cover;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #111d13;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #1977cc;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f1f7fd;
  min-height: 40px;
  margin-top: 120px;
}

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

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

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

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

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

  .breadcrumbs ol {
    display: block;
  }

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

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding-top: 90px;
  padding-bottom: 130px;
}

.why-us .content {
  padding: 30px;
  background: #1977cc;
  border-radius: 4px;
  color: #fff;
}

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

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

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  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: #21634c;
  background: #fff;
}

.why-us .icon-boxes {}



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

.why-us .icon-boxes .icon-box:hover {
  border-radius: 10px;
  border: 1px solid #000;
}



.why-us .icon-boxes .icon-box:before {
  border-bottom: 1px solid #dcdcdc;
  border-left: 2px solid transparent;
  width: 100%;
  height: 33%;
  left: -1px;
  bottom: -1px;
  border-radius: 0px;
}

.why-us .icon-boxes .icon-box:after {
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
  width: 10%;
  height: 33%;
  top: -1px;
  right: -1px;
  border-radius: 0px;
}





.why-us .icon-boxes .icon-box img {

  max-width: 100%;
}



.why-us .icon-boxes .icon-box i {
  font-size: 40px;
  color: #1977cc;
  margin-bottom: 30px;
}

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

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

#subjectarea {
  margin: 40px 0 10px;
}

#subjectarea .salist {
  padding: 0;
  margin: 0;
  float: left;
  flex-wrap: wrap;
  border-radius: 5px;
  background-color: #ffffff;
  filter: drop-shadow(0px 1px 4.5px rgba(0, 0, 0, 0.18));
}

#subjectarea .salist .icons {
  list-style: none;
  float: left;
  padding: 7px;
  margin: 0px;
  text-align: center;
  min-height: 128px;
  vertical-align: middle;
}

#subjectarea .salist .celltop {
  border-right: 1px solid #dcdcdc;
  border-image: linear-gradient(to top,
      #dcdcdc,
      rgba(0, 0, 0, 0)) 1 100%;
}

#subjectarea .salist .cellbottom {
  border-right: 1px solid #dcdcdc;
  border-image: linear-gradient(to bottom,
      #dcdcdc,
      rgba(0, 0, 0, 0)) 1 100%;
}

#subjectarea .salist .icons {
  width: 12.5%;
  height: 125px;
  background-position: 50% 25% !important;
}

#subjectarea .salist .economics a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -270px -270px;
  display: block;
  margin: auto;
}

#subjectarea .salist .agriculture a:before {
  content: "";
  width: 50px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -15px -12px;
  display: block;
  margin: auto;
}

#subjectarea .salist .biology a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -275px -100px;
  display: block;
  margin: auto;
}

#subjectarea .salist .medicines a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -450px -10px;
  display: block;
  margin: auto;
}

#subjectarea .salist .engineering a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -12px -185px;
  display: block;
  margin: auto;
}

#subjectarea .salist .chemistry a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -185px -99px;
  display: block;
  margin: auto;
}

#subjectarea .salist .socialscience a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -445px -273px;
  display: block;
  margin: auto;
}

#subjectarea .salist .businessmanagement a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -270px -183px;
  display: block;
  margin: auto;
}

#subjectarea .salist .computerscience a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -10px -95px;
  display: block;
  margin: auto;
}

#subjectarea .salist .bioscience a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -450px -97px;
  display: block;
  margin: auto;
}

#subjectarea .salist .education a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -100px -183px;
  display: block;
  margin: auto;
}

#subjectarea .salist .surgery a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -10px 70px;
  display: block;
  margin: auto;
}

#subjectarea .salist .dentistry a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -185px -187px;
  display: block;
  margin: auto;
}

#subjectarea .salist .humanities a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -100px -275px;
  display: block;
  margin: auto;
}

#subjectarea .salist .materialscience a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -185px -360px;
  display: block;
  margin: auto;
}

#subjectarea .salist .earthscience a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.webp") -185px -273px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .economics a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url(../img/icon_sa_sprites.html) -270px -270px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .agriculture a:before {
  content: "";
  width: 50px;
  height: 60px;
  background: url("../img/icon_sa_sprites.html") -15px -12px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .biology a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.html") -275px -100px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .medicines a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.html") -450px -10px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .engineering a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../img/icon_sa_sprites.html") -12px -185px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .chemistry a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../../assets4/images/icon_sa_sprites.html") -185px -99px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .socialscience a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../../assets4/images/icon_sa_sprites.html") -445px -273px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .businessmanagement a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../../assets4/images/icon_sa_sprites.html") -270px -183px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .computerscience a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../../assets4/images/icon_sa_sprites.html") -10px -95px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .bioscience a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../../assets4/images/icon_sa_sprites.html") -450px -97px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .education a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../../assets4/images/icon_sa_sprites.html") -100px -183px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .surgery a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../../assets4/images/icon_sa_sprites.html") -10px 70px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .dentistry a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../../assets4/images/icon_sa_sprites.html") -185px -187px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .humanities a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../../assets4/images/icon_sa_sprites.html") -100px -275px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .materialscience a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../../assets4/images/icon_sa_sprites.html") -185px -360px;
  display: block;
  margin: auto;
}

.no-webp #subjectarea .salist .earthscience a:before {
  content: "";
  width: 60px;
  height: 60px;
  background: url("../../assets4/images/icon_sa_sprites.html") -185px -273px;
  display: block;
  margin: auto;
}

#subjectarea .salist  a {
  display: block;
  text-align: center;
  color: #000;
  text-decoration: none;
  padding-top: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
}

#subjectarea .salist .last {
  border-right: 0px solid #eee;
}

#subjectarea .salist  a {
  display: block;
  text-align: center;
  color: #000;
  text-decoration: none;
  padding-top: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
}

.borderani {
  cursor: pointer;
  position: relative;
  transition: all 1s;
}

.borderani:after,
.borderani:before {
  content: " ";
  position: absolute;
  transition: all 1s;
}

.borderani:after {
  border-top: 2px solid transparent;
  border-right: 2px solid transparent;
  width: 10%;
  height: 33%;
  top: -1px;
  right: -1px;
  border-radius: 0px;
}

.borderani:before {
  border-bottom: 1px solid #dcdcdc;
  border-left: 2px solid transparent;
  width: 100%;
  height: 33%;
  left: -1px;
  bottom: -1px;
  border-radius: 0px;
}

.borderani:hover:before {
  width: 100%;
  height: 100%;
  border-bottom: 2px solid #111d13;
  border-left: 2px solid #111d13;
  border-radius: 5px;
}

.borderani:hover:after {
  width: 100%;
  height: 100%;
  border-top: 2px solid #111d13;
  border-right: 2px solid #111d13;
  border-radius: 5px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .icon-boxes h4 {
  font-size: 18px;
  color: #4b7dab;
  margin-bottom: 15px;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color: #111d13;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

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

.about .icon-box .icon i {
  color: #1977cc;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #1977cc;
  border-color: #1977cc;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

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

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

.about .icon-box .title a:hover {
  color: #1977cc;
}

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

.about .video-box {
  background: url("../img/about.jpg") center center no-repeat;
  background-size: cover;
  min-height: 500px;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#1977cc 50%, rgba(25, 119, 204, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: url("../img/section_bg_9.png") center center no-repeat;
  background-size: cover;
  padding: 60px 0 45px;
}

.counts .count-box {
  padding: 10px 0px 15px;
  width: 100%;
  position: relative;
  text-align: center;
}

.counts .count-box img {
  position: relative;
  top: 0px;
  left: 0%;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 144px;
}

.counts .count-box span {
  font-size: 31px;
  font-weight: 800;
  margin-top: 10px;
  display: inline-block;

  color: #fff;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services-section {
  background: #f9f9f9;
}

.serviceSwiper {
  .swiper-slide {
    height: auto !important;
  }
}

.service-card {
  /* position: relative; */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: #fff;
  max-width: 400px;
  margin: 0px auto;
  height: 100%;
}

.serviceSwiper {
  .swiper-button-next, .swiper-button-prev {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  &::after {
    font-size: 14px;
    color: white;
  }
  }
}


.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.service-bg {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 25px;
  text-align: center;
}

.service-content h4 {
  font-weight: 600;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 18px;
}

.btn-service {
  display: inline-block;
  background: #114c41;
  color: white;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-service:hover {
  background: #21634c;
  color: #fff;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 15px;
  background-size: 20px;
}

.carousel-control-next,
.carousel-control-prev {
  width: 0%;
}


.carousel-control-prev {
  left: 2%;
}

.carousel-control-next {
    right: 2%;
}

/*--------------------------------------------------------------
# Appointments
--------------------------------------------------------------*/
.appointment .php-email-form {
  width: 100%;
}

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

.appointment .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.appointment .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .error-message br+br {
  margin-top: 25px;
}

.appointment .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.appointment .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

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

.appointment .php-email-form input,
.appointment .php-email-form textarea,
.appointment .php-email-form select {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  padding: 10px !important;
}

.appointment .php-email-form input:focus,
.appointment .php-email-form textarea:focus,
.appointment .php-email-form select:focus {
  border-color: #1977cc;
}

.appointment .php-email-form input,
.appointment .php-email-form select {
  height: 44px;
}

.appointment .php-email-form textarea {
  padding: 10px 12px;
}

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

.appointment .php-email-form button[type=submit]:hover {
  background: #1c84e3;
}

.txt_call {
  font-size: 28px;
}

.appointment .carousel-inner blockquote {
  border: 0px;
  text-align: left;
  padding: 20px 45px;
}

.appointment .carousel-inner blockquote p {
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

/*--------------------------------------------------------------
# Departments
--------------------------------------------------------------*/
.departments {
  overflow: hidden;
}

.departments .nav-tabs {
  border: 0;
}

.departments .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #111d13;
  border-radius: 0;
  border-right: 2px solid #ebf1f6;
  font-weight: 600;
  font-size: 15px;
}

.departments .nav-link:hover {
  color: #1977cc;
}

.departments .nav-link.active {
  color: #1977cc;
  border-color: #1977cc;
}

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

.departments .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111d13;
}

.departments .details p {
  color: #777777;
}

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

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

  .departments .nav-link.active {
    color: #fff;
    background: #1977cc;
  }
}

/*--------------------------------------------------------------
# Doctors
--------------------------------------------------------------*/
.doctors {
  background: #fff;
}

.doctors .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(44, 73, 100, 0.08);
  padding: 30px;
  border-radius: 10px;
}

.doctors .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.doctors .member .pic img {
  transition: ease-in-out 0.3s;
}

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

.doctors .member .member-info {
  padding-left: 30px;
}

.doctors .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #111d13;
}

.doctors .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.doctors .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #b2c8dd;
  bottom: 0;
  left: 0;
}

.doctors .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.doctors .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.doctors .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #a0bcd5;
}

.doctors .member .social a i {
  color: #fff;
  font-size: 16px;
  margin: 0 2px;
}

.doctors .member .social a:hover {
  background: #1977cc;
}

.doctors .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

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

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

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #76b5ee;
}

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

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

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

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

.faq .faq-list a.collapsed:hover {
  color: #1977cc;
}

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

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

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


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

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

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

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

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

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111d13;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #4b7dab;
}

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

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #1977cc;
  color: #fff;
}

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

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

.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 input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

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

.contact .php-email-form textarea {
  padding: 10px 12px;
}

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

.contact .php-email-form button[type=submit]:hover {
  background: #1c84e3;
}

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

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

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: url("../img/footer.webp") center center no-repeat;
  background-size: cover;
  padding: 20px 0 15px 0;


}

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

#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: 19px;
  line-height: 24px;
  margin-top: 13px;
  font-family: "Raleway", sans-serif;
  color: #3b3b3b;
}

#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: #1c84e3;
  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: #1977cc;
}

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

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

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #bfdcf7;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #1977cc;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #1c84e3;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1977cc;
  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: #1c84e3;
  color: #fff;
  text-decoration: none;
}

#footer .foo-link a {

  padding-right: 2px;
  color: #3a3a3a;
  font-size: 15px;
  line-height: 26px;
  font-weight: 600;
}


#footer a:hover {

  color: #114c41;
}

#quote-carousel {
  padding: 0 10px 10px 10px;
  margin-top: 60px;
}

#quote-carousel .carousel-control {
  background: none;
  font-size: 2.3em;
  text-shadow: none;
  margin-top: 30px;
}

#quote-carousel .carousel-indicators {
  position: relative;
  top: auto;
  bottom: 0px;
  width: 100%;
  margin-top: 20px;
  margin-right: -19px;
  margin-top: 13px;
  margin-left: 9% !important;
}

#quote-carousel .carousel-indicators li {
  width: 160px;
  height: auto;
  cursor: pointer;
  background-color: transparent !important;
  overflow: hidden;
  transition: all .4s ease-in;
  font-size: 12px;
  font-weight: 800;
}


#quote-carousel .carousel-indicators li span {
  font-size: 12px;
  font-weight: 500;
}


#quote-carousel .carousel-indicators .active {
  width: 190px;
  height: auto;
  opacity: 1;
  transition: all .2s;
  margin-top: -25px;

}

.item blockquote {
  margin: 0;
}

.item blockquote p:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  float: left;
  font-weight: 900;
  margin-right: 10px;
}

.section-title h1 {
  font-size: 50px;
  font-weight: 800;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 0px;
  margin-top: 15px;

}

#blockquote ol:last-child,
#blockquote p:last-child,
#blockquote ul:last-child {
  text-align: left !important;
}

.btn-f1 {
  background: #111d13;
  color: #fff !important;
  border-radius: 2px;
  padding: 8px 11px;
  transition: 0.3s;
  font-size: 16px;
  display: block;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 35px;
  border: 2px solid #111d13;
  width: 100%;
  max-width: 192px;
  text-decoration: none;

}

.btn-f1:hover {
  background: #114c41;
  color: #fff !important;
}




.btn-f2 {
  background: transparent;
  border: 2px solid #111d13;
  color: #4b4b4b !important;
  border-radius: 2px;
  padding: 8px 10px;
  transition: 0.3s;
  font-size: 16px;
  display: block;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 192px;
  text-decoration: none;
  margin-top: 35px;
}

.btn-f2:hover {
  background: #114c41;
  color: #fff !important;
}


.ctop {
  border-top: 2px solid #76818e;
}

.copyright {
  font-size: 15px;
  margin-top: 15px;
}


.menu-btn-fixed {
  background: 0 0;
  height: 50px;
  border-radius: 4px;
  z-index: 99;
  right: 1.2%;
  top: 15px;
  position: relative;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-timing-function: cubic-bezier(0.39, -0.16, 0.4, 1.21);
  transition-timing-function: cubic-bezier(0.39, -0.16, 0.4, 1.21);
  -webkit-transform-origin: 301px 124px;
  transform-origin: 240px 63px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: initial;
  top: initial !important;
}

.btn.btn-secondary {
  background-color: #114c41;
  border-color: #114c41;
  color: #fff;
}

.btn.btn-secondary:not(:disabled):not(.disabled).active,
.btn.btn-secondary:not(:disabled):not(.disabled):active,
.btn.btn-secondary:hover,
.btn.btn-secondary.focus,
.btn.btn-secondary:focus {
  background-color: #111d13;
  border-color: #111d13;
  color: #fff;
}

.menu-btn-fixed.side-btn {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  right: 57px;
  position: fixed;
  -webkit-transition: all .50s ease-in-out;
  transition: all .50s ease-in-out;
  margin-left: auto;
}

.banner-page {
  background-image: url("../img/publication-support-banner.png") !important;
  background-position: center center;
  background-size: cover;
  margin-top: 131px !important;
  height: auto !important;
  background-repeat: no-repeat;
}

.rating-sec {
  background-image: url('../img/bg-gradiant.png');
  background-repeat: no-repeat;
  background-size: cover;
}

.about-cont h1 {
  font-size: 35px;
  font-weight: 800;
  color: #111d13;
  line-height: 1.2;
}

.about-cont p {
  font-size: 14px;
  max-width: 601px;
  width: 100%;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 17px;
}

.max-width {
  max-width: 946px;
}

.appointment .carousel-indicators li img {
  margin-bottom: 5px;
}

.pt-6 {
  padding-top: 4.5rem !important;
}

.pt-7 {
  padding-top: 6.0rem !important;
}

.pt-8 {
  padding-top: 7.5rem !important;
}

.pt-9 {
  padding-top: 9rem !important;
}

.pb-6 {
  padding-bottom: 4.5rem !important;
}

.pb-7 {
  padding-bottom: 6.0rem !important;
}

.pb-8 {
  padding-bottom: 7.5rem !important;
}

.pb-9 {
  padding-bottom: 9rem !important;
}

.fs14px {
  font-size: 14px !important;
}

.fs15px {
  font-size: 15px !important;
}

.fs16px {
  font-size: 16px !important;
}

.fs17px {
  font-size: 17px !important;
}

.fs18px {
  font-size: 18px !important;
}

.font-weight500 {
  font-weight: 500;
}

.font-weight600 {
  font-weight: 600;
}

.font-weight700 {
  font-weight: 700;
}

.font-weight800 {
  font-weight: 800;
}

.text-lightblue {
  color: #111d13;
}

.text-lightblack {
  color: #3b3b3b;
}

.text-red {
  color: #114c41;
}

.blueborder {
  border-color: #111d13 !important;
}

.blackborder {
  border-color: #000 !important;
}

.whiteborder {
  border-color: #fff !important;
}

.border3px {
  border-width: 3px !important;
}

.border4px {
  border-width: 4px !important;
}

.border-white {
  border-color: #fff !important;
}

.shadow-md {
  box-shadow: 1px 1px 10px #efefef;
}

.bg-blue {
  background-color: #111d13 !important;
}

.bg-lightblack {
  background-color: #3a3a3a;
}

.bg-lightwhite {
  background-color: rgb(255 255 255 / 92%);
}

.bg-gray {
  background-color: #ebebeb;
}

.bg-lightgray {
  background-color: #f3f4f5;
}

.fontsize10px {
  font-size: 10px;
}

.fontsize11px {
  font-size: 11px;
}

.fontsize12px {
  font-size: 12px;
}

.fontsize13px {
  font-size: 13px;
}

.fontsize14px {
  font-size: 14px;
}

.fontsize15px {
  font-size: 15px;
}

.fontsize16px {
  font-size: 16px;
}

.fontsize17px {
  font-size: 17px;
}

.fontsize18px {
  font-size: 18px;
}

.fontsize19px {
  font-size: 19px;
}

.fontsize20px {
  font-size: 20px;
}

.fontsize21px {
  font-size: 21px;
}

.fontsize22px {
  font-size: 22px;
}

.fontsize24px {
  font-size: 24px;
}

.fontsize25px {
  font-size: 25px;
}

.fontsize26px {
  font-size: 26px;
}

.fontsize28px {
  font-size: 28px;
}

.fontsize29px {
  font-size: 29px;
}

.fontsize30px {
  font-size: 30px;
}

.fontsize31px {
  font-size: 31px;
}

.fontsize32px {
  font-size: 32px;
}

.fontsize33px {
  font-size: 33px;
}

.fontsize35px {
  font-size: 35px;
}

.fontsize40px {
  font-size: 40px;
}

.fontsize45px {
  font-size: 45px;
}

.fontsize50px {
  font-size: 50px;
}

.fontsize55px {
  font-size: 55px;
}

.fontsize56px {
  font-size: 56px;
}

.border-radius6px {
  border-radius: 6px;
}

.border-radius8px {
  border-radius: 8px;
}

.opacity-0 {
  opacity: 0;
}

.max-width680px {
  max-width: 680px;
}

.max-width750px {
  max-width: 750px;
}

.outline-none {
  outline: none !important;
  box-shadow: 0px 0px !important;
}

.hoverbtn:hover,
.hoverbtn:active,
.hoverbtn:focus {
  background-color: #fff !important;
  color: #111d13 !important;
}

.hovercolor:hover,
.hovercolor:active,
.hovercolor:focus {
  background-color: #114c41 !important;
  color: #fff;
  border-color: #114c41 !important;
}

.hovercolor {
  transition: 0.5s;
}

.lineheight1-3 {
  line-height: 1.3;
}

.h-335px {
  height: auto !important;
  min-height: 335px;
}

.rating-cont h3 {
  font-weight: 800;
  font-size: 25px;
  display: inline-block;
  margin: 0px;
  vertical-align: middle;
}

.rating-cont ul {
  margin: 0px;
  list-style: none;
  display: inline-block;
  padding: 0px 5px;
}

.rating-cont ul li {
  display: inline-block;
  font-size: 16px;
  margin: 0px 0.5px;
  vertical-align: middle;
}

.rating-cont p {
  font-size: 12px;
  font-weight: 600;
  margin: 0px;
}

.services-cont {
  background-size: 100%;
  background-repeat: no-repeat;
  padding-top: 140px;
  padding-left: 17px;
  padding-right: 17px;
}

.linebefore:before {
  content: "";
  position: absolute;
  left: -7px;
  right: 0;
  top: 0;
  border-top: 3px solid #fff;
  width: 104%;
}

.services-cont h1 {
  width: 100%;
  max-width: 85%;
  display: inline-block;
  font-size: 27px;
}

.services-cont p {
  font-size: 14px;
  max-width: 266px;
  width: 100%;
  margin-top: 1px;
  color: #444242;
}

.icon-arrow {
  border-radius: 50% 50%;
  width: 33px;
  height: 35px;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  justify-content: center;
  font-size: 25px;
  padding: 0px;
}

.h-custom {
  height: auto;
  min-height: 255px;
}

.hovereffect1 {
  transition: all 0.4s ease;
}

.hovereffect1:hover .icon-arrow {
  background: #114c41;
}

.scientific-banner {
  background-image: url('../img/scientific-banner.jpg');
}

.pre-submission-banner {
  background-image: url('../img/pre-submission-banner.png');
}

.premium-editing-banner {
  background-image: url('../img/premium-editing-banner.png');
}

.mt-banner {
  margin-top: 10.2rem;
}

.scientific-banner {
  background-image: url(../img/scientific-banner.jpg);
  background-size: cover;
  background-position: center 1px;
  background-repeat: no-repeat;
}

.img-grid {
  max-width: 269px;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
}

.point-list-sec li {
  font-size: 15px;
  color: #fff;
  padding: 7px 0px;
  position: relative;
  list-style: none;
}

.point-list-sec li:before {
  content: "";
  position: absolute;
  left: -19px;
  background: #000;
  width: 10px;
  height: 10px;
  border-radius: 50% 50%;
  top: 14px;
  box-shadow: inset 0px 0px 0px 2px #fff;
}

.overlay-img {
  right: 14px;
  opacity: 0;
  transform: rotateZ(20deg);
  bottom: 12px;
  transition: all 0.1s ease;
}

.bg-overlay2:hover,
.bg-overlay2:active {
  background-color: #111d13;
}

.bg-overlay2:hover h4,
.bg-overlay2:hover p {
  color: #fff;
}

.bg-overlay2:hover .overlay-img {
  opacity: 1;
}

.bg-overlay2:hover .sc-icon {
  filter: brightness(10);
}

.bg-overlay2:hover .btn {
  border-color: #fff;
}

.bg-discount-banner {
  background-image: url('../img/section_bg_5.png');
  background-size: cover;
  background-position: center center;
}

.border-before-bottom:before {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 95%;
  background: #a2a8b4;
  height: 1px;
  right: 0;
}

.border-before-left:before,
.border-after-left:after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 1px;
  background: #a2a8b4;
  top: 0px;
}

.border-before-right:before {
  content: "";
  position: absolute;
  right: -1px;
  height: 100%;
  width: 1px;
  background: #a2a8b4;
}

.border-before-top:before {
  content: "";
  position: absolute;
  top: -1px;
  width: 100%;
  height: 1px;
  background: #a2a8b4;
  left: 0;
}

.before-after-wd:before {
  width: 100%;
}

.height-243px {
  height: auto;
  min-height: 243px;
}

.sales-service {
  border-radius: 50% 50%;
  height: 345px;
  padding: 25px 35px;
  transition: all 0.4s ease;
  border: 1px solid #fff;
  width: 345px;
  margin: auto;
}

.sales-service:hover,
.sales-service:active {
  border-color: #114c41;
}

.sales-service:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  height: 0%;
  margin: auto;
  border-radius: 50% 50%;
  z-index: -1;
  transition: all 0.9s ease;
  /*transition: all 0.9s cubic-bezier(0.43, 0, 0, 1.04);*/
  background: #111d13;
}

.sales-service:hover:before {
  width: 97%;
  height: 97%;
}

.sales-icon {
  filter: brightness(0.3);
}

.sales-service:hover h3,
.sales-service:hover p {
  color: #fff !important;
}

.sales-service:hover img {
  filter: brightness(1);
}

.pre-sub-service .sales-service:hover img {
  filter: brightness(100);
}

.count-num {
  font-size: 81px;
  position: relative;
}

.before-circle:before {
  content: "";
  background: #d3d3d3;
  width: 85px;
  height: 85px;
  position: absolute;
  border-radius: 50% 50%;
  right: -27px;
  z-index: 0;
  top: 3px;
}

.bg-callaction {
  background-image: url('../img/section_bg-3.png');
  background-size: cover;
}

.action-hd h1 {
  margin-bottom: 10px;
}

.hr-line {
  opacity: 0.5;
  width: 198px;
}

.faq-sec .accordion-item .accordion-button {
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0px 0px;
}

.faq-sec .accordion-item {
  border-left: 0px;
  border-right: 0px;
}

.accordion-button:not(.collapsed) {
  color: #114c41;
  background-color: transparent;
}

.faq-sec .accordion-item .accordion-collapse .accordion-body {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

.bg-action-banner {
  background-image: url('../img/section_bg-3.png');
  background-size: cover;
  background-position: center;
}

.pre-sub-service .sales-service p {
  width: 100%;
  max-width: 230px;
  margin: auto;
}

.pre-sub-service .sales-service {
  border-color: #dfdfdf !important;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0px;
  height: 300px;
  width: 300px;
}

.pre-sub-service .sales-service:hover h3 {
  background: #fff !important;
  color: #111d13 !important;
}

.navbar-style ul .dropdown ul li a:hover {
  background: #111d13;
  color: #fff;
}

.count-border .count-box:before {
  content: "";
  position: absolute;
  right: 0;
  border: 1px solid #ccc;
  height: 91px;
  border-image: linear-gradient(to top, #ffffff59 0%, #cacaca00 100%);
  border-image-slice: 1;
  margin: auto;
  top: 0;
  bottom: 0;
}

.cover-box-sec {
  border: 1px solid #dedede;
  border-radius: 15px 15px;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  box-shadow: 0px -1px 15px #cdcdcd;
  overflow: hidden;
}

.input-type {
  border: 0px;
  border-bottom: 1px solid;
  outline: none;
  border-color: #dee2e6;
  font-size: 14px;
  padding: 3px 0px;
  box-shadow: 0px 0px;
}

.textarea-field {
  height: 68px;
  resize: none;
  border: 0px;
  border-bottom: 1px solid;
  outline: none;
  border-color: #dee2e6;
  font-size: 14px;
  box-shadow: 0px 0px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.bg-social {
  background-image: url('../img/contact-social-banner.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.flag1 {
  left: 9em;
  top: 45px;
}

.flag2 {
  left: 42em;
  bottom: 21em;
}

.flag3 {
  right: 10em;
  top: 42px;
}

.flag4 {
  right: 27em;
  bottom: 24em;
}

.bg-quality-banner {
  background-image: url('../img/about-img.jpg');
}

.about-line {
  background: #838383;
  opacity: 1;
  width: 62px;
  margin: 8px auto 17px;
}

.arrow-cont li {
  list-style: none;
  position: relative;
  margin-bottom: 5px;
}

.arrow-cont li:before {
  content: "";
  position: absolute;
  left: -20px;
  border-right: 7px solid #111d13;
  border-bottom: 7px solid rgb(255 0 17 / 0%);
  top: 7px;
  transform: rotate(45deg);
}

.counter2 .count-box img {
  width: 53%;
  height: auto;
}

.h-170 {
  height: 170px;
}

.h-180 {
  height: 180px;
}

.h-185 {
  height: 185px;
}

.client-hr {
  background: #bfbfbf;
  opacity: 1;
  width: 154px;
  margin: 10px auto 12px;
}

.our-client-sec {
  max-width: 810px;
  margin: auto;
}

.our-client-sec:before {
  content: "";
  background-image: url(../img/quote-left.png);
  background-size: 93%;
  width: 100px;
  position: absolute;
  left: 14em;
  height: 100px;
  background-repeat: no-repeat;
  top: -35px;
}

.our-client-sec:after {
  content: "";
  background-image: url(../img/quote-right.png);
  background-size: 93%;
  width: 100px;
  position: absolute;
  right: 9em;
  height: 100px;
  background-repeat: no-repeat;
  bottom: 16px;
}

.client-testimonial1 {
  max-width: 810px;
  margin: auto;
}

.client-testimonial .owl-dots {
  text-align: center;
  margin-top: 21px;
}

.client-testimonial .owl-dots .owl-dot {
  border-radius: 50% 50%;
  background: #c4c4c4;
  width: 10px;
  height: 10px;
  display: inline-block;
  margin: 0px 6px;
}

.client-testimonial .owl-dots .owl-dot.active {
  background: #283756;
}

.foo-social a {
  color: #111d13 !important;
  font-size: 23px !important;
  margin: 0px 4px;
}

.foo-social {
  margin: 25px 0px;
}

.box-hover:hover,
.box-hover:active,
.box-hover:focus {
  background-color: transparent;
}

.blink:before {
  content: "";
  position: absolute;
  left: -12.5px;
  background: rgb(122 117 117 / 39%);
  width: 25px;
  height: 25px;
  border-radius: 50% 50%;
  z-index: 0;
  top: -4px;
  animation-name: blink;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-direction: alternate;
}

.blink:after {
  content: "";
  position: absolute;
  left: -13.2px;
  background: rgb(122 117 117 / 51%);
  width: 30px;
  height: 30px;
  border-radius: 50% 50%;
  z-index: 0;
  top: -6px;
  animation-name: blink;
  animation-iteration-count: infinite;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-timing-function: ease;
  animation-direction: alternate;
}

.dot-img,
.blink {
  position: relative;
}

.flag1 .blink:before {
  left: -12px;
  top: -3.5px;
}

.flag4 img {
  left: 4px;
}

.flag2 .blink:before {
  left: -1.5px;
  top: -4px;
}

.flag3 .blink:before {
  left: -10px;
}

.dot-img {
  z-index: 10;
}

.flag2 .blink:after {
  left: -5px;
}

.flag3 .blink:after {
  left: -12px;
  top: -5.8px;
}

.flag4 .blink:before {
  left: -2px;
  top: -3px
}

.flag4 .blink:after {
  top: -6px;
  left: -5px;
}

.fade {
  opacity: 1 !important;
  background: none;
}

.quote-modal .btn-close {
  position: absolute;
  right: 0;
  font-size: 11px;
  outline: none;
  box-shadow: 0px 0px;
  padding: 9px;
  top: 2px;
}

.quote-modal {
  max-width: 590px;
}

.quote-modal .modal-content {
  border-radius: 10px 10px;
  padding: 35px 20px;
  border: 1px solid #114c41;
}

.input-modal {
  width: 91%;
  padding: 17px 0px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  outline: none;
  box-shadow: 0px 0px;
  border: 0px;
  border-bottom: 1px solid #d3d3d3;
}

.btn-submit {
  font-size: 14px;
  padding: 9px 26px;
  outline: 0px auto -webkit-focus-ring-color !important;
  box-shadow: 0px 0px !important;
  text-transform: uppercase;
  font-weight: 700;
  border: 0px;
}

.term-condition-sec ul {
  margin: 10px 17px;
  padding: 0px 9px;
}

.term-condition-sec ul li {
  font-size: 15px;
  color: #333;
  padding: 4px 0px;
  line-height: 1.7;
}

.term-condition-sec p {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}

.hide-link {
  user-select: none;
}

.hide-link::selection {
  background: none;
}

.hide-link::-moz-selection {
  background: none;
}

.whatsapp-icon {
  bottom: 5em;
  z-index: 10;
  left: 2em;
}

.whatsapp-icon img {
  width: 61px;
}

.custom-pd-profile {
  padding-top: 14rem;
  padding-bottom: 19rem;
  background-size: 1170px !important;
  background-position: bottom right;
}

.circle-shp-img {
  position: absolute;
  right: 16px;
  top: -13px;
  z-index: -1;
  max-width: 137px;
}

.team-img {
  top: -74px;
  max-width: 100%;
  padding-left: 45px;
}

.bg-circle:before,
.get-before:before {
  content: "";
  position: absolute;
  left: -9px;
  width: 43px;
  height: 43px;
  border-radius: 50% 50%;
  background: #f2a850;
  top: -10px;
}

.get-before:before {
  z-index: -1;
  left: -4px;
  width: 58px;
  height: 58px;
  top: -14px;
}

.hoverBox {
  transition: all 0.4s ease;
}

.hoverBox:hover {
  box-shadow: 1px 1px 10px 2px #e7e4e4;
  background-color: #364157;
}

.hoverBox:hover img {
  filter: brightness(10);
}

.hoverBox:hover h3,
.hoverBox:hover p {
  color: #fff !important;
}

.mk-icon-wd {
  width: 90px;
  height: 90px;
  padding: 12px;
}

.client-wp-box {
  padding: 25px 20px;
  border-radius: 15px;
  box-shadow: 1px 1px 10px #ccc;
  height: 100%;
  display: inline-block;
}

.client-wp-box:hover {
  background-color: #efefef;
}

.client-wp-box p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 17px;
  height: 71%;
}

/*testimonials video div start*/

.client-wp-box,
.client-wp-box-video {
  border-radius: 15px;
  box-shadow: 1px 1px 10px #ccc;
  background-color: #f9f9f9;
  /* Optional styling */
  display: flex;
  /* Flex for internal alignment */
  flex-direction: column;
  /* Content stacks vertically */
  height: 100%;
  /* Ensures full height stretch */
}

.video-fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

/*testimonials video div end*/


.client-wp-box h5 {
  font-weight: 700;
  font-size: 14px;
}

.client-wp-box ul {
  display: flex;
  list-style: none;
  margin: 0px;
  padding: 0;
}

.client-wp-box ul li {
  font-size: 15px;
  margin: 0px 1px;
  color: #fcaf17;
}

.home-slider {
  margin-top: 110px;
}

.reivew-comment-box {
  text-align: center;
}

.reivew-comment-box li {
  background-color: #fff;
  color: #111d13;
  display: inline-block;
  padding: 11px;
  font-size: 16px;
  margin: 5px 6px;
  font-weight: 500;
  box-shadow: 1px 1px 10px #d5d5d5;
  border-radius: 8px 8px;
  transition: all 0.4 ease;
}

.reivew-comment-box li:hover {
  background-color: #111d13;
  color: #fff;
}

.flip {
  -webkit-perspective: 800;
  perspective: 800;
  position: relative;
  text-align: center;
}

.flip .card.flipped {
  -webkit-transform: rotatey(-180deg);
  transform: rotatey(-180deg);
}

.flip .card {
  width: 100%;
  height: 320px;
  -webkit-transform-style: preserve-3d;
  -webkit-transition: 0.5s;
  transform-style: preserve-3d;
  transition: 0.5s;
  background-color: #fff;
  border-radius: 6px 6px;

}

.flip .card .face {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 2;
  padding: 20px;
}

.flip .card .front {
  position: absolute;
  height: 100%;
  background-color: #111d13;
  z-index: 1;
  display: flex;
  align-items: center;
}

.flip .card .front img {
  height: 100%;
}

.flip .card .img {
  position: relaitve;
  z-index: 1;
}

.flip .card .back {
  -webkit-transform: rotatey(-180deg);
  transform: rotatey(-180deg);
  position: absolute;
  height: 100%;
  background-color: #111d13;
  display: flex;
  align-items: center;
}

@keyframes blink {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}








@media (min-width: 1024px) {
  #hero {}
}

@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    min-height: 50vh;
  }

  #hero .container {
    padding-bottom: 23px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
    margin-top: 0px;
  }

  #hero h2 {
    font-size: 23px;
    
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
  }

  #hero .btn-get-started {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 16px;
    display: table;
    padding: 12px 35px;
    margin-top: 30px;
    border-radius: 5px;
    transition: 0.5s;
    color: #111d13;
    background: #fff;
    margin: auto;
    float: center;
    align-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .mob_hide {
    display: none !important;
  }

  .navbar {
    margin-top: 22px;
    z-index: 9999;
    padding: 0px 0px 0 0;
  }

  .sec_2,
  .services {
    padding: 30px 0 !important;
  }

  .sec_h1 {
    font-size: 32px;
    padding-bottom: 15px;
  }

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

  .section-title h1 {
    font-size: 40px;
    margin-top: 0px;

  }

  .sec_h3 {
    font-size: 24px;
    
  }

  .sec_pw {
    text-align: center;
    font-weight: 600;
    margin: 20px 20px;
  }

  .sec_pww {
    text-align: center !important;
  }



  #subjectarea ul.salist li.icons {
    width: 50%;
  }

  #subjectarea ul.salist li.cellcorner::before {
    border-image: none;
  }

  #subjectarea ul.salist li.celltop {
    border-bottom: 1px solid #dcdcdc;
    border-image: none;
  }

  #subjectarea ul.salist li.cellbottom {
    border-bottom: 1px solid #dcdcdc;
    border-image: none;
  }

  #subjectarea ul.salist li.cellcorner::before {
    border-bottom: 0px solid #dcdcdc;
  }

  #subjectarea ul.salist li.education {
    border-bottom: 1px solid #dcdcdc;
  }

  #subjectarea ul.salist li.biology {
    border-bottom: 0px solid #dcdcdc;
  }

  .sec_5 h1 {
    font-size: 28px;
    margin-bottom: 20px;

  }



  .mob_sec_5 {
    text-align: center;
    display: block !important;
    margin: 20px 0;
  }

  .mob_sec_5 img {
    margin-top: -10px !important;
  }


  .sec_6 h1 {
    font-size: 40px;
  }

  .best_box {
    max-width: 100%;
    margin: 20;
  }

  .sec_6 h1 {
    font-size: 29px;
  }

  .sec_7 {
    padding: 40px 0;
    text-align: center;
  }

  .sec_7 h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 8px !important;
  }

  .sec_7 h1 {
    font-size: 29px;
    text-align: center;
  }

  .sec_7 p {
    margin-bottom: 18px;
    text-align: center;
  }


  .sec_8,
  .section-bg {
    padding: 40px 0;
  }

  .sec_8 h1 {
    font-size: 40px;
  }

  .sec_8 h3,
  .sec_8 p {
    text-align: center !important;
  }

  .right {
    margin-top: 40px;
  }

  .counts {
    padding: 40px 0;
  }

  blockquote {
    padding: 0;
    border-left: 0px solid #eee;
  }

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

  #footer .footer-top .footer-contact p {
    font-size: 16px;
    margin-bottom: 30px;

  }

  

  #footer .footer-top .footer-contact {
    margin: auto;
    text-align: center;
  }


  .btn-f1 {
    width: 162px;
    margin-top: 10px;
    margin-bottom: 30px;
    border: 2px solid #111d13;
  }

  .btn-f2 {

    margin-top: 10px;
    margin-bottom: 10px;
  }

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

  #footer .footer-top .footer-newsletter img {
    width: 10% !important;
  }



  .bth_call_1 {
    max-width: 190px;
    margin-right: auto !important;
  }

  .bth_call_2 {
    max-width: 195px;
    margin-right: auto !important;
  }

  .txt_call {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  #hero {
    margin-bottom: 0;
    min-height: 55vh;
    background-position: center left;
  }

  

  .mob_sec_5 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .sec_5 h1 {
    font-size: 18px;
  }

  .sec_7 h1 {
    font-size: 20px;
  }

  .sec_8 h1 {
    font-size: 23px;
  }

  .section-title h1 {
    font-size: 21px;
  }

  .appointment .carousel-inner blockquote p {
    font-size: 13px;
  }

  .appointment .carousel-inner blockquote {
    padding: 20px 0px;
  }

  #topbar .social-links a {
    padding-right: 3px;
  }

  .about-cont h1 {
    font-size: 23px;
  }

  .footer-newsletter {
    text-align: center;
  }

  #hero .container br {
    display: none;
  }

  .img-grid {
    margin-right: auto;
  }

  .border-before-bottom:before,
  .border-before-left:before,
  .border-before-right:before,
  .border-before-top:before {
    display: none;
  }

  .fontsize50px,
  .fontsize40px {
    font-size: 30px;
  }

  .border-after-left:after,
  .count-border .count-box:before {
    opacity: 0;
  }

  .btn-f2,
  .btn-f1 {
    font-size: 14px;
  }

  .fontsize30px {
    font-size: 20px;
  }

  .pre-sub-service .sales-service img,
  .sales-service img {
    margin: auto;
  }

  .fontsize35px {
    font-size: 25px;
  }

  .sales-service {
    width: 100% !important;
    max-width: 300px;
    padding: 25px 5px;
  }

  .fontsize45px {
    font-size: 33px;
  }

  .sec_4 .btn_white_order {
    margin: 0px auto;
  }

  .sales-service:hover:before {
    width: 0%;
    height: 0%;
  }

  .sales-service:hover h3,
  .sales-service:hover p {
    color: #111d13 !important;
  }

  .sales-service:hover img {
    filter: brightness(0.5) !important;
  }

  .sales-service:before {
    display: none;
  }

  .sales-service:hover,
  .sales-service:active {
    border-color: #fff;
  }

  .fontsize33px {
    font-size: 29px;
  }

  .fontsize29px {
    font-size: 24px;
  }

  .flag1 {
    left: 5em;
    top: -1px;
  }

  .flag2 {
    left: 24em;
    bottom: 12.5em;
  }

  .flag3 {
    right: 1em;
    top: -10px;
  }

  .input-modal {
    width: 88%;
  }

  .flag4 {
    right: 13em;
    bottom: 12em;
    z-index: 1;
  }

  .team-img {
    top: 0;
    position: relative !important;
  }

  .circle-shp-img {
    display: none;
  }
}




.main-hero-img {
  height: 600px !important;
  object-fit: cover;
}

/*popup start*/

.modal-body .modal-body-h2 {
  font-size: 25px;
  font-weight: 800;
}

.modal-body p {
  padding-top: 10px;
  font-size: 16px;
}

.santaImage img {
  max-width: 250px;
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 10;
}

/*popup end*/

/*Thank You Start*/

.thnk_box {
  background: #fff;
  padding: 60px 200px 30px;
  text-align: center;
  margin: 80px 0;
  -webkit-box-shadow: 0 0 68px 1px rgb(0 0 0 / 8%);
  -moz-box-shadow: 0 0 68px 1px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 68px 1px rgb(0 0 0 / 8%);
}

.thnk_box h2 {
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 15px;
  color: #001C30;
  text-transform: capitalize;
}

.thnk_box h4 {
  margin: 0 0 20px;
  font-weight: 700;
  color: #114c41;
}

.thnk_box p {
  margin: 30px 0;
  line-height: 24px;
  font-size: 17px;
}

/*mew section satrt*/
table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td,
th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
  font-size: 16px;
  font-weight: 600;
}

tr:nth-child(even) {
  background-color: #dddddd;
}


.round-img img {
  border-radius: 200px;
}

.sec_5 h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
}

@media (max-width: 767px) {

  .sec_8 .h1,
  .sec_6 h2 {
    font-size: 35px;
  }

  .sec_7 h2,
  .sec_4 h2 {
    font-size: 35px;
    text-align: center;
  }

  .sec_5 h2 {
    font-size: 30px;
    text-align: center;
    padding: 0 10px;
  }

  .sec_8 img {
    max-width: 300px important;
  }

  .thnk_box {
    padding: 20px;
  }

  .team-img {
    padding: 5px;
  }

  #hero h1 {
    padding-bottom: 10px; 
  }

  /* .main-hero-img {
          object-fit: cover;
    
  } */
}

.bg-discount-banner {

  .media-body,
  .media-left,
  .media-right {
    display: table-cell;
    vertical-align: top;
  }

  .align-middle {
    vertical-align: middle !important;
    padding-left: 10px;
  }
}