/**
* Template Name: Bootslander
* Template URL: https://bootstrapmade.com/bootslander-free-bootstrap-landing-page-template/
* Updated: Mar 17 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #000;
  font-size: 18px;
}

a {
  color: #224b9b;
  text-decoration: none;
}

a:hover {
  color: #224b9b;
  text-decoration: none;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  /*background: linear-gradient(50deg, #fd9eeb 10%, #044ad5 75%);*/
  background-image: radial-gradient( circle farthest-corner at -4.5% 34.3%, rgb(254, 137, 1) -10%, rgb(5, 84, 94) 100% );
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  /*background: linear-gradient(50deg, #044ad5 10%, #fd9eeb 75%);*/
  background-image: radial-gradient( circle farthest-corner at -4.5% 34.3%, rgb(5, 84, 94) -10%, rgb(254, 137, 1) 100% );
  color: #fff;
  transition: all 0.4s;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

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

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.9);
  height: 85px;
}

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

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}

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

.fixed-top {
  position: relative !important;
}
.header-scrolled.fixed-top {
  position: fixed !important;
}
.section-bg {
  background: #f5f5ff;
  padding: 70px 0 60px;
}

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

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 17px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgba(0, 0, 0, 0.7);
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 3px;
  left: 30px;
  background-color: #ff8901;
  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: 25px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #000;
}
/*.header-scrolled .navbar a:hover,
.header-scrolled .navbar .active,
.header-scrolled .navbar .active:focus,
.header-scrolled .navbar li:hover>a {
  color: #fff !important;
}*/
/*.header-scrolled .navbar a,
.header-scrolled .navbar a:focus {
  color: rgba(255,255,255,0.7);
}*/
.bg-overlay {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(2, 106, 167,0.35);
}
.caption-z-index {
  z-index: 9;
}
.header-scrolled .navbar .dropdown ul a:hover, .header-scrolled .navbar .dropdown ul .active:hover, .header-scrolled .navbar .dropdown ul li:hover > a {
  color: #ff8901 !important;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 30px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: rgba(0,0,0,0.7);
}

.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: #224b9b;
}

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

@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(1, 3, 91, 0.9);
  transition: 0.3s;
  z-index: 999;
}

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

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

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

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

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

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

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

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

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a,
.navbar-mobile .dropdown .dropdown ul a:hover,
.navbar-mobile .dropdown .dropdown ul .active:hover,
.navbar-mobile .dropdown .dropdown ul li:hover>a {
  color: #1acc8d;
}

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

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

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

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(255, 255, 255, 0.8);
}

#hero h1 span {
  color: #fff;
  border-bottom: 4px solid #1acc8d;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #1acc8d;
}

#hero .btn-get-started:hover {
  background: #17b57d;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

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

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

  #hero .animated {
    animation: none;
  }

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

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

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

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

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

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

  100% {
    transform: translateY(-10px);
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  /*background-color: #fafaff;*/
  min-height: 120px;
  /*margin-top: 80px;*/
  position: relative;
  z-index: 9;
  color: #fff;
  display: flex;
  align-items: center;
}

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

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 600;
  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: 18px;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgba(255,255,255,0.75);
  content: "/";
}
.breadcrumbs ol li a {
  color: rgba(255,255,255,0.75);
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 40px 0 0 0;
}

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

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

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

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

.about .icon-box:hover .icon {
  /*background: linear-gradient(50deg, #fd9eeb 10%, #044ad5 75%);*/
  border-color: #ff8901;
  background: #ff8901;
}

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

.about .icon-box .description {
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0px;
  display: flex;
  padding-left: 20px;
}

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

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

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #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;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(63, 67, 253, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

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

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

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

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

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f5f5ff;
  transition: ease-in-out 0.3s;
}

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

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

.features .icon-box h3 a {
  color: #010483;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #01036f;
}

.features .icon-box:hover {
  background: #ebebff;
}
.student-features .icon-box h3 {
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #000;
}
.student-features .icon-box {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: #f5f5ff;
  padding: 70px 0 60px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #fff;
}

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

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #010483;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}

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

.details .content h3 {
  font-weight: 600;
  font-size: 26px;
  color: #000;
}

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

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

.details .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ff8901;
}

.details .content p:last-child {
  margin-bottom: 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);
}

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

.testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(35, 76, 156,0.85);
}

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

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

.testimonials .testimonial-item {
  text-align: center;
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team {
  background: #fff;
}

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

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

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

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

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

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

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

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

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

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

.team .member .social a:hover {
  color: #1acc8d;
}

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

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

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

.pricing h4 {
  font-size: 36px;
  color: #1acc8d;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

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

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

.pricing ul {
  padding: 0;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

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

.pricing ul i {
  color: #1acc8d;
  font-size: 18px;
  padding-right: 4px;
}

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

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

.pricing .btn-buy {
  background: #1acc8d;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

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

.pricing .featured h3 {
  color: #fff;
  background: #1acc8d;
}

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

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

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

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

.faq .faq-list li {
  padding: 20px;
  background: #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: #224b9b;
}

.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: #224b9b;
}

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

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

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

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

.contact .info i {
  font-size: 20px;
  color: #ff8901;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff3e5;
  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: #ff8901;
}

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

.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: linear-gradient(50deg, #fd9eeb 10%, #044ad5 75%);;*/
  background-image: radial-gradient( circle farthest-corner at -4.5% 34.3%, rgb(254, 137, 1) -10%, rgb(5, 84, 94) 100% );
  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;
  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: linear-gradient(50deg, #fd9eeb 10%, #044ad5 75%);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(50deg, #044ad5 10%,  #fd9eeb 75%);
  transition: 0.4s;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0e3582;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

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

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #010246;
  color: #fff;
  border-top: 4px solid rgba(255,255,255,0.75);
  text-align: center;
  padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

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

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

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  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: #ff8901;
  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: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ff8901;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px 6px 15px;
  position: relative;
  border-radius: 50px;
}

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

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: linear-gradient(50deg, #fd9eeb 10%, #044ad5 75%);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: linear-gradient(50deg, #044ad5 10%, #fd9eeb 75%);
}

#footer .copyright {
  border-top: 1px solid #010479;
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
#footer .credits a { color: #ff8901;}

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

.caption-position {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  top: 0;
}
.caption-description h5 {
  font-size: 46px;
  font-weight: 600;
  text-align: center;
}
.caption-description p {
  font-size: 18px;
  margin-top: 20px;
  text-align: center;
}
/*Section Title*/
.sec-title {
  z-index: 1;
  position: relative;
  margin-bottom: 40px;
}
.sec-title .title {
  font-size: 42px;
  font-weight: 600;
  position: relative;
}
.sec-title .title:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 10px;
  /*background: linear-gradient(90deg, #01a0f9 45%, #09c778 60%);*/
  /*background: linear-gradient(50deg, #fd9eeb 10%, #044ad5 75%);*/
  background: #ff8901;
  top: 35px;
  z-index: -1;
}
.sec-title .title.bg-left:after {
  left: 2px;
}
.sec-title .title.bg-center:after {
  left: 50%;
  transform: translateX(-50%);
}
.sec-title .title.bg-right:after {
  right: 2px;
}
.sec-title .sub-title {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 10px;
  display: inline-block;
}
.sec-title .title2 {
  font-size: 40px;
  font-weight: 500;
}
/* ------------------------------------
    07. About Section CSS
-------------------------------------*/
.neuron-about .single-about {
  padding: 40px 25px 25px;
  background: #ffffff;
  border-radius: 10px;
  transition: all 0.5s ease 0s;
  position: relative;
}
.neuron-about .single-about:before {
  /*background: linear-gradient(50deg, #fd9eeb 10%, #044ad5 75%);*/
  background-image: radial-gradient( circle farthest-corner at -4.5% 34.3%, rgb(254, 137, 1) -10%, rgb(5, 84, 94) 100% );
  opacity: 0;
  content: "";
  height: 100%;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
  transition: all 0.7s ease 0s;
  border-radius: 5px;
}
.neuron-about .single-about .about-icon {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  transition: all 0.7s ease 0s;
}
.neuron-about .single-about .about-icon i:before {
  margin: 0;
  font-size: 70px;
  line-height: 1;
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(0, 0, 0, 0);
  /*background-image: linear-gradient(50deg, #fd9eeb 10%, #044ad5 75%);*/
  background-image: radial-gradient( circle farthest-corner at -4.5% 34.3%, rgb(254, 137, 1) -10%, rgb(5, 84, 94) 100% );
  transition: all 0.7s ease 0s;
}
.neuron-about .single-about .about-title {
  position: relative;
  z-index: 1;
  transition: all 0.7s ease 0s;
}
.neuron-about .single-about .about-title .title {
  font-size: 22px;
  font-weight: 600;
  transition: all 0.7s ease 0s;
}
.neuron-about .single-about .about-desc {
  position: relative;
  z-index: 1;
  transition: all 0.7s ease 0s;
}
.neuron-about .single-about .about-desc .desc-txt {
  margin: 0;
  transition: all 0.7s ease 0s;
}
.neuron-about .single-about.style2 {
  padding: 62px 30px 60px;
}
.neuron-about .single-about.style3 {
  padding: 50px 40px 40px;
  border-radius: unset;
}
.neuron-about .single-about.style3 .about-icon {
  margin-bottom: 30px;
  height: 100px;
  width: 100px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.7s ease 0s;
}
.neuron-about .single-about.style3 .about-icon i:before {
  font-size: 50px;
  line-height: 100px;
  color: #ffffff;
}
.neuron-about .single-about.style3 .about-icon:before {
  content: "";
  position: absolute;
  background: linear-gradient(-90deg, #1292c2, #00aeef);
  opacity: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.7s ease 0s;
}
.neuron-about .single-about.style3 .about-title .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.neuron-about .single-about.style3:before {
  background: linear-gradient(-90deg, #1292c2, #00aeef);
}
.neuron-about .single-about.style3:hover .about-icon {
  background: #ffffff;
}
.neuron-about .single-about.style3:hover .about-icon:before {
  opacity: 0;
}
.neuron-about .single-about.style3:hover .about-icon i:before {
  color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(-90deg, #1292c2, #00aeef);
}
.neuron-about .single-about.style3:hover:before {
  opacity: 1;
}
.neuron-about .single-about.style3.features .about-icon:before {
  background: linear-gradient(-41deg, #09c778, #01a0f9);
}
.neuron-about .single-about.style3.features:before {
  background: linear-gradient(-41deg, #09c778, #01a0f9);
}
.neuron-about .single-about.style3.features:hover i:before {
  color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(-41deg, #09c778, #01a0f9);
}
.neuron-about .single-about.style4 {
  padding: 55px 30px 135px;
  border-radius: 5px;
  position: relative;
  transition: all 0.5s ease 0s;
}
.neuron-about .single-about.style4 .title {
  font-size: 24px;
}
.neuron-about .single-about.style4:before {
  background: linear-gradient(-150deg, #12b4c8, #6669e6);
}
.neuron-about .single-about.style4:after {
  content: '';
  position: absolute;
  height: 8px;
  width: 70px;
  background: linear-gradient(-150deg, #12b4c8, #6669e6);
  left: 30px;
  bottom: 65px;
  transition: all 0.7s ease 0s;
}
.neuron-about .single-about.style4.icon-style {
  padding: 65px 30px 85px;
  text-align: center;
}
.neuron-about .single-about.style4.icon-style .about-icon {
  margin-bottom: 15px;
}
.neuron-about .single-about.style4.icon-style .about-icon i:before {
  background-image: linear-gradient(0deg, #6669e6, #12b4c8);
  font-size: 60px;
}
.neuron-about .single-about.style4.icon-style .title {
  font-size: 20px;
}
.neuron-about .single-about.style4.icon-style:after {
  left: 50%;
  transform: translateX(-50%);
}
.neuron-about .single-about.style4:hover:before {
  opacity: 1;
}
.neuron-about .single-about.style4:hover:after {
  background: #ffffff;
}
.neuron-about .single-about.no-bg-style:before {
  background: unset;
}
.neuron-about .single-about.no-bg-style .title {
  font-size: 20px;
}
.neuron-about .single-about.no-bg-style:hover {
  background: unset;
}
.neuron-about .single-about.no-bg-style:hover .title {
  color: #333333;
}
.neuron-about .single-about.no-bg-style:hover .desc-txt {
  color: unset;
}
.neuron-about .single-about.top-border {
  position: relative;
  padding: 35px 0 0;
}
.neuron-about .single-about.top-border:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 8px;
  width: 70px;
  background: linear-gradient(-150deg, #12b4c8, #6669e6);
  transition: all 0.7s ease 0s;
}
.neuron-about .single-about:hover:before {
  opacity: 1;
}
.neuron-about .single-about:hover i:before {
  color: #ffffff;
}
.neuron-about .single-about:hover .title,
.neuron-about .single-about:hover .desc-txt {
  color: #ffffff;
}
.neuron-about .neuron-about-img-part {
  display: inline-flex;
}
.neuron-about .neuron-about-img-part .about-img img {
  border-radius: 5px;
}
.neuron-about.about-bg {
  background: url(images/bg/about-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.neuron-about-video .about-btn {
  display: inline-flex;
  align-items: center;
}
.neuron-about-video .about-btn .readon {
  margin-right: 30px;
}
.neuron-about-video .about-btn .readon:last-child {
  margin: 0;
}
.neuron-about-video .about-btn .popup-videos i:before {
  margin: 0;
  font-size: 50px;
  line-height: 1.2;
  background-clip: text;
  -webkit-background-clip: text;
  color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(0deg, #09c778, #01a0f9);
}
.neuron-about-video .about-btn .popup-videos:hover i:before {
  background-image: linear-gradient(41deg, #09c778, #01a0f9);
}
.neuron-about-video.soft-demo .soft-desc {
  max-width: 73%;
}
.about-inner .content-wrap .signature .title p {
  display: inline-block;
  font-size: 13px;
  padding-bottom: 10px;
  position: relative;
}
.about-inner .content-wrap .signature .title p:after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #01a0f9;
  opacity: 0.3;
}
.about-inner .content-wrap .signature img {
  max-width: 200px;
  height: auto;
  margin: 0 auto;
  width: 100%;
}
.mb-40 {
  margin-bottom: 40px;
}
.box-shadow {
  box-shadow: 2px 10px 50px rgba(158, 158, 158, 0.25);
}
.col-20 [class*="col-"] {
  padding-right: 20px;
  padding-left: 20px;
}
.mt-100 {
  margin-top: 100px;
}
.breadcrumb-bg {
            background-image: url('../img/slider1.png');
            background-position: top;
            background-size: cover;
            background-repeat: no-repeat;
            position: relative;
          }
          .breadcrumbbg-overlay {
            position: absolute;
            content: "";
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            /*background: #2c455d;
            background: -webkit-linear-gradient(50deg, #fd9eeb 10%, #044ad5 75%);
            background: linear-gradient(50deg, #fd9eeb 1%, #044ad5 75%);
            opacity: .9;*/
            opacity: .75;
            background-image: radial-gradient( circle farthest-corner at -4.5% 34.3%, rgb(254, 137, 1) -10%, rgb(5, 84, 94) 100% );
          }
           .inner-box .single-item {
        position: relative;
        display: block;
        padding-left: 150px;
        margin-bottom: 60px;
      }
      .inner-box .single-item .icon-box::before {
        position: absolute;
        content: '';
        width: 110px;
        height: 110px;
        left: 0px;
        top: 0px;
        background-color: #fbfbfb;
        border-top-right-radius: 20px;
        z-index: -1;
      }
      .inner-box .single-item .icon-box {
        position: absolute;
        left: 0px;
        top: -11px;
        width: 110px;
        height: 110px;
        line-height: 110px;
        text-align: center;
        background-color: #fbfbfb;
        border-top-right-radius: 20px;
        box-shadow: 0 0px 30px rgb(0 0 0 / 20%);
        z-index: 1;
      }
      .content-box .inner-box .single-item .icon-box {
        line-height: 110px;
        text-align: center;
      }
      .inner-box .single-item .icon-box .shape {
        position: absolute;
        left: 10px;
        top: 10px;
        width: 110px;
        height: 110px;
        background-repeat: no-repeat;
        z-index: -2;
      }
      .inner-box-pad {
        padding-top: 25px;
      }
      .inner-box .single-item:first-child h3 {
        color: #2eb305;
      }
      .inner-box .single-item:nth-child(2) h3 {
        color: #94236d;
      }
       .inner-box .single-item:last-child h3 {
        color: #014bc1;
      }
      .inner-box .single-item h3::before {
        position: absolute;
        content: '';
        width: 45px;
        height: 2px;
        left: 0px;
        bottom: 0px;
      }
      .inner-box .single-item:first-child h3::before {
        background-color: #2eb305;
      }
       .inner-box .single-item:last-child h3::before {
        background-color: #014bc1;
      }
       .inner-box .single-item:nth-child(2) h3::before {
        background-color: #94236d;
      }
      .inner-box .single-item h3 {
        position: relative;
        display: block;
        padding-bottom: 10px;
        margin-bottom: 13px;
        font-size: 20px !important;
      }

      .about-content {
          padding-left: 80px;
          padding-top: 70px;
      }
      .about-content p {
          margin-top: 40px;
          margin-bottom: 40px;
      }
      .about-services {
          display: flex;
      }
      .about-services-img {
          line-height: 1;
          position: relative;
          width: 60px;
          height: 60px;
          border: 2px solid #2c38a6;
          display: flex;
          justify-content: center;
          align-items: center;
          align-content: center;
          border-radius: 3px;
          padding: 15px;
      }
      .about-services-content {
          padding-left: 15px;
      }
      .about-services-content-title h3 {
          font-size: 20px;
          margin: 0px;
      }
      .about-services-content p {
          margin-bottom: 0px;
          margin-top: 10px;
          font-size: 12px;
          color: #666666;
      }
      .about-content [class*= "col-"] {
          padding: 15px;
      }
      .about-content .row {
          margin-right: -15px;
          margin-left: -15px;
      }
      .about-left-block {
          padding: 25px 10px;
      }
      @media (max-width: 1440px) {
          /*.about-services-img {
              width: 115px;
              height: 56px;
          }*/
          .about-content {
              padding-left: 60px;
              padding-top: 50px;
          }
          .calvary-about-img img {
              height: 775px;
              width: auto;
          }
          .doctors-carousel-control.left {
              left: 0% !important;
          }
          .doctors-carousel-control.right {
              right: 0% !important;
          }
      }
      /*Health packages css*/
      .no-parallax {
        background-image: url("../content/images/health-packages/dots_background.png");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
      }
      @media (min-width: 768px) {
          .row.equal {
              display: flex;
              flex-wrap: wrap;
          }
      }
      .health-package-pad {
          padding-top: 30px;
          padding-bottom: 30px;
      }
      .health-package-icon i {
          font-size: 60px;
      }
      .health-package-left h2 {
          margin: 2.5rem 0rem;
      }
      .health-package-right {
          padding: 4rem;
      }
      .health-package-border {
          width: 45px;
          height: 2px;
          background: #fff;
          margin: 0px auto;
      }
      .health-package-left-bg {
          background-color: #2958b5;
          box-shadow: rgba(0,0,0,0.25) 0 3px 11px 0 !important;
          -moz-box-shadow: rgba(0,0,0,0.25) 0 3px 11px 0 !important;
          -webkit-box-shadow: rgba(0,0,0,0.25) 0 3px 11px 0 !important;
          border-top-style: solid !important;
          border-top-width: 0 !important;
      }
      .health-package-right-bg {
          background-color: rgba(239,239,239,1);
          box-shadow: rgba(0,0,0,0.25) 0 3px 11px 0 !important;
          -moz-box-shadow: rgba(0,0,0,0.25) 0 3px 11px 0 !important;
          -webkit-box-shadow: rgba(0,0,0,0.25) 0 3px 11px 0 !important;
          border-color: rgba(212,212,212,1) !important;
      }
      .health-package-left-block {
          color: #ffffff;
          padding: 60px 0px;
      }
      .health-package-offer-block {
          background-color: #FFA726;
          padding: 2rem;
          text-align: center;
          margin-top: 4rem;
          color: #000000;
      }
      .health-package-offer-block h3 {
          font-size: 50px;
          font-weight: bold;
          margin-top: 10px;
      }
      .health-package-offer-block p {
          color: rgba(0, 0, 0, 0.7);
          margin-bottom: 0px;
          font-size: 18px;
      }
      .health-package-offer-block h5 {
          font-size: 22px;
          margin-bottom: 0px;
          margin-top: 30px;
      }
      .leader-block {
        padding: 30px;
      }
      .leader-block h3 {
        font-size: 22px;
        font-weight: 600;
      }
.products-overview-inner-box{
      position: relative;
      display: block;
      margin-bottom: 30px;
    }

    .products-overview-inner-box .image-box{
      position: relative;
      display: block;
      overflow: hidden;
      border-radius: 10px;
      margin-bottom: 20px;
    }

    .products-overview-inner-box .image-box img{
      width: 100%;
      transition: all 500ms ease;
    }

    .products-overview-inner-box:hover .image-box img{
      transform: scale(1.05);
    }

    .products-overview-inner-box .image-box .link{
      position: absolute;
      right: 23px;
      bottom: 23px;
      width: 40px;
      height: 40px;
      line-height: 40px;
      text-align: center;
      font-size: 20px;
      color: #222;
      background-color: #ffffff;
      text-align: center;
      z-index: 1;
      transform: scale(0,0);
    }

    .products-overview-inner-box:hover .image-box .link{
      transform: scale(1,1);
    }

    .products-overview-inner-box .image-box .link:hover{
      color: #ffffff;
    }

    .products-overview-inner-box .image-box:before{
      position: absolute;
      content: '';
      background-color: rgba(255,255,255,0.5);
      width: 100%;
      height: 100%;
      left: 0px;
      top: 0px;
      right: 0px;
      z-index: 1;
      transform: scale(0,0);
      clip-path: polygon(0% 0%, 176% 0%, 77% 100%, 0% 100%, 0% 0%);
      transition: all 500ms ease;
    }

    .products-overview-inner-box:hover .image-box:before{
      transform: scale(1,1);
    }

    .products-overview-inner-box .text{
      position: relative;
      display: inline-block;
      /*padding: 15px 20px 17px 80px;*/
      border-radius: 30px 10px 10px 30px;
      box-shadow: 0 0px 30px rgb(0 0 0 / 20%);
      display: flex;
      justify-content: start;
      align-items: center;
    }

    .products-overview-inner-box .text .icon-box{
      /*position: absolute;
      display: inline-block;
      left: 0px;
      top: 0px;*/
      width: 58px;
      height: 58px;
      line-height: 58px;
      background: #ffffff;
      text-align: center;
      border-radius: 50%;
      border: 2px solid #dddddd;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 0px;
    }

    .products-overview-inner-box .text h5{
      position: relative;
      display: block;
      font-size: 14px;
      line-height: 26px;
      font-weight: 600;
      margin-bottom: 0px;
      padding-left: 15px;
    }

    .products-overview-inner-box .text h5 a{
      display: inline-block;
      color: #222;
    }

    .products-overview-inner-box .text h5 a:hover{
      color: #ff007e;
    }

    .products-overview-inner-box .text .icon-box img{
      position: relative;
      display: inline-block;
    }
    .products-overview-inner-box .image-box .link:hover {
      background-color: #ff007e;
      color: #ffffff;
    }
    .products-img {
      display: flex;
      justify-content: center;
      /* height: 150px; */
    }
    .this-box-bg {
      background-color: #224b9b;
        box-shadow: 10px 10px 10px 0 rgba(0,0,0,.14);
    }
    @media (max-width: 767px) {
      #featureContainer .carousel-inner .carousel-item > div {
        display: none;
      }
      #featureContainer .carousel-inner .carousel-item > div:first-child {
        display: block;
      }
    }

    #featureContainer .carousel-inner .carousel-item.active,
    #featureContainer .carousel-inner .carousel-item-next,
    #featureContainer .carousel-inner .carousel-item-prev {
      display: flex;
    }
    /* medium and up screens */
    @media (min-width: 768px) {
      
      #featureContainer .carousel-inner .carousel-item-end.active,
      #featureContainer .carousel-inner .carousel-item-next {
        transform: translateX(25%);
      }
      
      #featureContainer .carousel-inner .carousel-item-start.active, 
      #featureContainer .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
      }
      #featureContainer .card img{
        /*width: 90%;
        height: 40vh;*/
      }
      #featureContainer .carousel-item{
        justify-content: space-between;
      }
    }
    @media (max-width: 767px) {
      #featureContainer .card img{
        /*width: 100%;
        height: 75vh;*/
      }
    }
    #featureContainer .carousel-inner .carousel-item-end,
    #featureContainer .carousel-inner .carousel-item-start { 
    transform: translateX(0);
    }
    #featureContainer .card{
      border: 0;
    }
    #featureContainer .card{
      position: relative;
    }
    #featureContainer .card .card-img-overlays{
      position: absolute;
      bottom: 15%;
      left: 10%;
    }
    #featureContainer a{
      text-decoration: none;
    }
    #featureContainer .indicator{
      border: 1px solid rgb(202, 202, 202);
      padding: 3px 6px 3px 6px;
    }
    #featureContainer .indicator:hover{
      background-color: blue;
      border: 1px solid blue;
      transition: 200ms;
    }
    #featureContainer .indicator:hover{
      color: white;
      transition: 200ms;
    }
    #featureContainer .indicator {
      color: lightgray;
    }
    #featureContainer .float-end {
      padding-top: 10px;
    }
    #featureContainer .carousel-inner .carousel-item [class*= "col"] {
      padding: 15px;
    }
    #featureContainer .carousel-inner .carousel-item .card {
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      border: 1px solid rgba(0,0,0,0.175);
    }
    #featureContainer .carousel-inner .carousel-item .card .card-footer {
      height: 75px;
    }
    #featureContainer .carousel-inner .carousel-item .card .card-img {
      padding: 1rem;
    }
    @media (max-width: 767px) {
      #featureContainerAcademic .carousel-inner .carousel-item > div {
        display: none;
      }
      #featureContainerAcademic .carousel-inner .carousel-item > div:first-child {
        display: block;
      }
    }

    #featureContainerAcademic .carousel-inner .carousel-item.active,
    #featureContainerAcademic .carousel-inner .carousel-item-next,
    #featureContainerAcademic .carousel-inner .carousel-item-prev {
      display: flex;
    }

    /* medium and up screens */
    @media (min-width: 768px) {
      
      #featureContainerAcademic .carousel-inner .carousel-item-end.active,
      #featureContainerAcademic .carousel-inner .carousel-item-next {
        transform: translateX(25%);
      }
      
      #featureContainerAcademic .carousel-inner .carousel-item-start.active, 
      #featureContainerAcademic .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
      }
      #featureContainerAcademic .card img{
        /*width: 90%;
        height: 40vh;*/
      }
      #featureContainerAcademic .carousel-item{
        justify-content: space-between;
      }
    }
    @media (max-width: 767px) {
      #featureContainerAcademic .card img{
        /*width: 100%;
        height: 75vh;*/
      }
    }
    #featureContainerAcademic .carousel-inner .carousel-item-end,
    #featureContainerAcademic .carousel-inner .carousel-item-start { 
    transform: translateX(0);
    }
    #featureContainerAcademic .card{
      border: 0;
    }
    #featureContainerAcademic .card{
      position: relative;
    }
    #featureContainerAcademic .card .card-img-overlays{
      position: absolute;
      bottom: 15%;
      left: 10%;
    }
    #featureContainerAcademic a{
      text-decoration: none;
    }
    #featureContainerAcademic .indicator{
      border: 1px solid rgb(202, 202, 202);
      padding: 3px 6px 3px 6px;
    }
    #featureContainerAcademic .indicator:hover{
      background-color: blue;
      border: 1px solid blue;
      transition: 200ms;
    }
    #featureContainerAcademic .indicator:hover{
      color: white;
      transition: 200ms;
    }
    #featureContainerAcademic .indicator {
      color: lightgray;
    }
    #featureContainerAcademic .float-end {
      padding-top: 10px;
    }
    #featureContainerAcademic .carousel-inner .carousel-item [class*= "col"] {
      padding: 15px;
    }
    #featureContainerAcademic .carousel-inner .carousel-item .card {
      box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
      border: 1px solid rgba(0,0,0,0.175);
    }
    #featureContainerAcademic .carousel-inner .carousel-item .card .card-footer {
      height: 75px;
    }
    #featureContainerAcademic .carousel-inner .carousel-item .card .card-img {
      padding: 1rem;
    }
  .contact-box-block {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
  .contact-box-block .php-email-form {
  padding: 30px 0px 30px 30px;
  }
  .features-video .card .card-footer h3 {
  font-size: 14px;
  }
.sub-title h3 {
  font-size: 20px;
}

/*.btn-slide-warning {
  --bs-btn-color: #ff8901;
  --bs-btn-border-color: #ff8901;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ff8901;
  --bs-btn-hover-border-color: #ff8901;
  --bs-btn-focus-shadow-rgb: 255,193,7;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ff8901;
  --bs-btn-active-border-color: #ff8901;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ff8901;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ff8901;
  --bs-gradient: none;
}*/
.btn-slide-warning {
  clip-path: polygon(calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%, 0 0);
  background-color: #ff8901;
  border: 1px solid #cc6d00;
  border-radius: 0px;
  padding: 0.6rem 1.2rem;
  color: #ffffff;
  font-weight: 600;
}
.btn-slide-warning:hover {
  background-color: #fff !important;
  border: 1px solid #fff !important;
  color: #ff8901;
}
.btn-slide-info {
  clip-path: polygon(calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%, 0 0);
  border-radius: 0px;
  color: #fff;
  font-weight: 600;
}
.btn-slide-info:hover {
  background-color: #fff !important;
  border: 1px solid #fff !important;
  color: #0dcaf0;
}
.btn-slide-success {
  clip-path: polygon(calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%, 0 0);
  border-radius: 0px;
  color: #fff;
  font-weight: 600;
}
.btn-slide-success:hover {
  background-color: #fff !important;
  border: 1px solid #fff !important;
  color: #0dcaf0;
}
.sub-title h3 {
  color: #000;
}
/** service-style-two **/

.service-style-two{
  position: relative;
  padding: 113px 0px 120px 0px;
}

.service-style-two .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  width: calc(100% - 375px);
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  border-top-right-radius: 100px;
}

.service-style-two .inner-container{
  position: relative;
  left: 200px;
}

.service-block-two{
  position: relative;
}

.service-block-two .inner-box{
  position: relative;
  display: block;
  background: #ebebeb;
  border-radius: 10px;
  overflow: hidden;
  padding: 60px 15px 67px 15px;
  transition: all 900ms ease;
  z-index: 1;
  min-height: 380px;
}

.service-block-two .inner-box:before{
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: 0;
  opacity: 0;
  content: "";
  z-index: -1;
  transform: scale(1.0) rotateX(45deg);
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

.service-block-two:hover .inner-box:before{
  opacity: 1.0;
  width: 100%;
  transform: scale(1.0) rotateX(0deg);
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;    
}

.service-block-two .inner-box .icon-box{
  position: relative;
  display: inline-block;
  font-size: 65px;
  line-height: 65px;
  margin-bottom: 23px;
  transition: all 500ms ease;
}

.service-block-two .inner-box .light-icon{
  position: absolute;
  left: -15px;
  bottom: -30px;
  font-size: 100px;
  line-height: 100px;
  color: #d3d3d3;
  transition: all 500ms ease;
}

.service-block-two:hover .inner-box .light-icon{
  color: #042357;
}

.service-block-two .inner-box h3{
  margin-bottom: 23px;
}

.service-block-two .inner-box h3 a{
  color: #222;
}

.service-block-two .inner-box p{
  position: relative;
  transition: all 500ms ease;
}

.service-block-two:hover .inner-box h3 a,
.service-block-two:hover .inner-box p{
  color: #ffffff;
}

.service-block-two .link{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
  z-index: 1;
}

.service-block-two .link a{
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 30px;
  color: #ffffff;
  text-align: center;
  border-radius: 10px 0px 10px 0px;
  transform: scale(0,0);
}

.service-block-two:hover .link a{
  transform: scale(1,1);
}

.service-block-two .link a:hover{

}
.service-block-two .inner-box .icon-box {
  color: #ff8901;
}
.service-block-two .inner-box::before {
  background-color: #04265e;
}
/** project-style-two **/
@media (max-width: 915px) {
  .slider-btn a {
    margin: 5px;
  }
  .btn-slide-warning, .btn-slide-info {
    font-weight: 400;
    padding: 0.5rem 1rem;
    font-size: 18px;
  }
  .slider-btn {
    margin-top: 1.5rem !important;
  }
  .caption-description h5 {
    font-size: 34px;
  }
  .sec-title .title {
    font-size: 28px;
  }
  .action-to-call-btn {
    margin-top: 2rem !important;
  }
  .action-to-call-btn a {
    margin: 5px;
  }
  .mt-xs-40 {
    margin-top: 40px !important;
  }
  .mb-xs-40 {
    margin-bottom: 40px !important;
  }
}