/**
* Template Name: Shri B. M. Patil Medical College Hospital & Research Centre
* Version: Bootstrap v5.3.2
* Author: Spori.pro
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background-color: #fff;
  color: #000;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 26px;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

b,
strong {
  font-weight: 600;
}

a {
  color: #ed502e;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lato", 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 #ed502e;
  border-top-color: white;
  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: #ed502e;
  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: #f06f54;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  /*box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);*/
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

#header.header-scrolled {
  padding: 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  top:-1px;
}

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

#header .logo a {
  color: #0b2341;
}

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

/*--------------------------------------------------------------
# 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 10px 10px 10px;
  font-size: 16px;
  color: #0b2341;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 500;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
}

.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: #990000;
  background: #f3f3f3;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #ed502e;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
  background: #f3f3f3;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ef6445;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  /*left: 14px;*/
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #f3f3f3;
  /*box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);*/
  transition: 0.3s;
  min-width: 200px;
}

/*.navbar .dropdown ul li {*/

/*}*/

.navbar .dropdown ul a {
  padding: 5px 20px 5px;
  text-transform: none;
}

.dropdown ul a {
  color: #990000;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  text-decoration: underline;
}

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

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

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

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0b2341;
  font-size: 33px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  right: -10px;
  position: relative;
  top: 4px;
  font-weight: bold;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

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

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(4, 12, 21, 0.9);
  transition: 0.3s;
  z-index: 999;
}

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

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

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 7px;
  font-size: 15px;
  color: #0b2341;
}

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /* height:80vh !important; */
  overflow: hidden;
  position: relative;
  border-top: 7px solid #ff9000;
  border-bottom: 7px solid #ff9000;
}

/* #hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
position: absolute;
top: 0;
right: 0;
left: 0;
bottom: 0;
}

#hero .carousel-item {
background-size: cover;
background-position: top center;
background-repeat: no-repeat;
}

#hero .carousel-item::before {
content: "";

}

#hero .carousel-container {
display: flex;
align-items: center;
position: absolute;
bottom: 0;
top:10px;
left: 200px;
right: 50px;
} */

/*#hero h2 {
color: #fff;
margin: 0;
font-size: 48px;
font-weight: 700;
}*/

#hero h2 {
  color: #fff;
  margin: 0;
  font-size: 70px;
  font-weight: 800;
  font-family: "Lato", sans-serif;
  text-shadow: 1px 1px #000000;
}

#hero p {
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}

/* @media (min-width: 1200px) {
#hero p {
  width: 50%;
}
}

#hero .carousel-inner .carousel-item {
transition-property: opacity;
background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
opacity: 1;
transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
left: 0;
transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
background: none;
font-size: 30px;
line-height: 0;
width: auto;
height: auto;
background: rgba(255, 255, 255, 0.2);
border-radius: 50px;
transition: 0.3s;
color: rgba(255, 255, 255, 0.5);
width: 54px;
height: 54px;
display: flex;
align-items: center;
justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
background: rgba(255, 255, 255, 0.3);
color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
list-style-type: none;
cursor: pointer;
background: #fff;
overflow: hidden;
border: 0;
width: 12px;
height: 12px;
border-radius: 50px;
opacity: 0.6;
transition: 0.3s;
}

#hero .carousel-indicators li.active {
opacity: 1;
background:#ff9000;
}

#hero .btn-get-started {
font-family: 'Lato', sans-serif;
font-weight: 500;
font-size: 14px;
letter-spacing: 1px;
display: inline-block;
padding: 14px 32px;
border-radius: 4px;
transition: 0.5s;
line-height: 1;
color: #fff;
animation-delay: 0.8s;
background: #ed502e;
margin-top: 15px;
}

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

@media (max-width: 992px) {
#hero {
  height:50vh !important;
}

#hero .carousel-container {
  text-align: center;
  top:0px;
}
}

@media (max-width: 768px) {
#hero h2 {
  font-size:23px;
  text-align:left;
  line-height: 1.4em;
}
}

@media (min-width: 1024px) {

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 5%;
}
}

@media (max-height: 500px) {
#hero {
  height:120vh !important;
}
} */

/*----------------------------------------
#mobile-hero start here
--------------------------------------------*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#mobile-hero {
  width: 100%;
  height: 80vh !important;

  overflow: hidden;
  position: relative;
  border-top: 7px solid #ff9000;
  border-bottom: 10px solid #ff9000;
}

#mobile-hero .carousel,
#mobile-hero .carousel-inner,
#mobile-hero .carousel-item,
#mobile-hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#mobile-hero .carousel-item {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

#mobile-hero .carousel-item::before {
  content: "";
}

#mobile-hero .carousel-container {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 10px;
  left: 0;
  right: 50px;
}

/*#mobile-hero h2 {
color: #fff;
margin: 0;
font-size: 48px;
font-weight: 700;
}*/

#mobile-hero h2 {
  color: #fff;
  margin: 0;
  font-size: 70px;
  font-weight: 800;
  font-family: "Lato", sans-serif;
  text-shadow: 1px 1px #000000;
}

#mobile-hero p {
  animation-delay: 0.4s;
  color: #fff;
  margin-top: 10px;
}

@media (min-width: 1200px) {
  #mobile-hero p {
    width: 50%;
  }
}

#mobile-hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#mobile-hero .carousel-inner .carousel-item,
#mobile-hero .carousel-inner .active.carousel-item-start,
#mobile-hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#mobile-hero .carousel-inner .active,
#mobile-hero .carousel-inner .carousel-item-next.carousel-item-start,
#mobile-hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#mobile-hero .carousel-inner .carousel-item-next,
#mobile-hero .carousel-inner .carousel-item-prev,
#mobile-hero .carousel-inner .active.carousel-item-start,
#mobile-hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#mobile-hero .carousel-control-next-icon,
#mobile-hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mobile-hero .carousel-control-next-icon:hover,
#mobile-hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#mobile-hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#mobile-hero .carousel-indicators li.active {
  opacity: 1;
  background: #ff9000;
}

#mobile-hero .btn-get-started {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  animation-delay: 0.8s;
  background: #ed502e;
  margin-top: 15px;
}

#mobile-hero .btn-get-started:hover {
  background: #ef6445;
}

#mobile-hero .carousel-indicators {
  bottom: 15px;
}

@media (max-width: 992px) {
  #mobile-hero {
    height: 50vh !important;
  }

  #mobile-hero .carousel-container {
    text-align: center;
    top: 0px;
  }
}

@media (max-width: 768px) {
  #mobile-hero h2 {
    font-size: 30px;
    text-align: left;
  }
}

@media (min-width: 1024px) {
  #mobile-hero .carousel-control-prev,
  #mobile-hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #mobile-hero {
    height: 120vh !important;
  }
}

/*----------------------------------------
#mobile-hero ends here
--------------------------------------------*/

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 40px 0;
}

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

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

.section-title h2 {
  font-size: 28px;
  font-weight: 800;
  text-transform: capitalize;
  font-family: "Lato", sans-serif;
  color: #363839;
  line-height: 1.1em;
}

.section-title h2::before {
  content: "";
  width: 3px;
  height: 65px;
  display: inline-block;
  background: #d1351c;
  /* margin: 4px 10px; */
  margin-left: -27px;
  position: absolute;
}

.section-title p {
  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: "Lato", sans-serif;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

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

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #ed502e;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 0px;
  transition: 0.3s;
  line-height: 1;
  color: #ff9000;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ff9000;
}

.about .content .btn-learn-more:hover {
  background: #ff9000;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
}

.counts .count-box {
  /* box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1); */
  padding: 5px;
  width: 100%;
  background: #990000;
}

.counts .count-box i {
  display: block;
  font-size: 30px;
  color: #ed502e;
  float: left;
}

.counts .count-box span {
  font-size: 25px;
  line-height: 18px;
  display: block;
  font-weight: 500;
  color: #ffffff;
  /* margin-left: 50px; */
}

.counts .count-box h2 {
  font-size: 25px;
  line-height: 30px;
  display: block;
  font-weight: 500;
  color: #ffffff;
  /* margin-left: 50px; */
}

.counts .count-box p {
  padding: 5px 0 0 0;
  margin: 0;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #164682;
  font-size: 15px;
  font-family: "Lato", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #2169c4;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .content {
  padding-top: 30px;
  padding-bottom: 15px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #123a6d;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

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

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  padding: 0 0 30px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 30px;
  outline: none;
  color: #000;
  /*padding-bottom:20px;*/
}

.why-us .accordion-list span {
  color: #990000;
  font-weight: 600;
  font-size: 18px;
  padding-right: 40px;
}

.why-us .accordion-list i {
  font-size: 30px;
  position: absolute;
  left: 0;
  top: -2px;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 0 0 10px 0;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.647058824;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #0b2341;
}

.why-us .accordion-list a.collapsed:hover {
  color: #990000;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#ed502e 50%, rgba(237, 80, 46, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .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);
}

.why-us .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(237, 80, 46, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #ed502e;
  transform: scale(20);
}

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

@media (max-width: 1024px) {
  CCC .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

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

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

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  background: #fefefe;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  padding: 80px 20px;
  transition: all ease-in-out 0.3s;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #ed502e;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
}

.services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

.services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: #f9c6bb;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
  z-index: 1;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #0b2341;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  background: #ed502e;
  border-color: #ed502e;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #ed502e;
}

.services .icon-box:hover .icon::before {
  background: #f1775d;
}

.services .icon-box:hover h4 a,
.services .icon-box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
/* .testimonials .testimonial-wrap {
padding-left: 50px;
} */

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

/* .testimonials .testimonial-item {
box-sizing: content-box;
padding: 30px 30px 30px 60px;
margin: 30px 15px;
min-height: 200px;
box-shadow: 0px 0px 20px 0px rgba(11, 35, 65, 0.1);
position: relative;
background: #fff;
} */

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

.testimonials .testimonial-item h3 {
  font-size: 21px;
  font-weight: 500;
  margin: 20px 0 5px 0;
  color: #027398;
}

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

.testimonials a {
  color: #027398;
  font-size: 15px;
}

.testimonials a:hover {
  color: #d1351c;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fdedea;
  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 {
  margin: 12px auto 12px auto;
  color: #363839;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  padding-right: 40px;
}

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

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

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

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  padding: 80px 0;
  background: #0b2341;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #ed502e;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #ed502e;
  border: 2px solid #ed502e;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #0b2341;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #ed502e;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #0b2341;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #1a5298;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #123a6d;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #ed502e;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #f59f8c;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

.portfolio .portfolio-item img {
    /*float: left;*/
    width: 100%;
    height:250px;
        overflow: hidden;
    position: relative;
    object-fit:cover;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ed502e;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #ed502e;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(11, 35, 65, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.team .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.team .member .member-info-content {
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  transition: bottom 0.4s;
}

.team .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.team .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.team .member .social {
  position: absolute;
  left: -50px;
  top: 0;
  bottom: 0;
  width: 50px;
  transition: left ease-in-out 0.3s;
  background: rgba(11, 35, 65, 0.5);
  text-align: center;
}

.team .member .social a {
  transition: color 0.3s;
  display: block;
  color: #fff;
  margin-top: 15px;
}

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

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

.team .member:hover .member-info {
  background: linear-gradient(
    0deg,
    rgba(11, 35, 65, 0.9) 0%,
    rgba(11, 35, 65, 0.8) 20%,
    rgba(0, 212, 255, 0) 100%
  );
  opacity: 1;
  transition: 0.4s;
}

.team .member:hover .member-info-content {
  bottom: 30px;
  transition: bottom 0.4s;
}

.team .member:hover .social {
  left: 0;
  transition: left ease-in-out 0.3s;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 80px 40px;
  margin-bottom: 30px;
  box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.1);
  background: #fff;
  text-align: center;
}

.pricing h3 {
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 28px;
}

.pricing h4 {
  font-size: 46px;
  color: #0b2341;
  font-weight: 400;
  font-family: "Lato", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

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

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

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .get-started-btn {
  display: inline-block;
  padding: 10px 40px 11px 40px;
  border-radius: 4px;
  color: #0b2341;
  transition: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid #0b2341;
  background: #fff;
}

.pricing .get-started-btn:hover {
  background: #0b2341;
  color: #fff;
}

.pricing .featured {
  z-index: 10;
  padding: 100px 40px;
  border: 4px solid #ed502e;
}

.pricing .featured .get-started-btn {
  background: #ed502e;
  color: #fff;
  border-color: #ed502e;
}

.pricing .featured .get-started-btn:hover {
  background: #ef6445;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-item {
  margin: 20px 0;
  padding: 20px 0;
  border-bottom: 1px solid #e9f1fb;
}

.faq .faq-item i {
  color: #669ee5;
  font-size: 20px;
  float: left;
  line-height: 0;
  padding: 13px 0 0 0;
  margin: 0;
}

.faq .faq-item h4 {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 10px 28px;
  font-family: "Lato", sans-serif;
}

.faq .faq-item p {
  font-size: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #0b2341;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
  background: #fff;
}

.contact .info-box i {
  font-size: 32px;
  color: #ed502e;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #fbdad2;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
  line-height: 34px;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.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;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ed502e;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

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

.contact .php-email-form button[type="submit"] {
  background: #ed502e;
  border: 0;
  padding: 10px 30px;
  border-radius: 4px;
  color: #fff;
  transition: 0.4s;
}

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

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f6f9fd;
  min-height: 40px;
  margin-top: 82px;
}

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

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #0b2341;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: #123a6d;
  content: "/";
}

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

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

#footer .footer-top .footer-info {
  margin-bottom: 15px;
  background: #05101e;
  border-top: 4px solid #ed502e;
  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: "Lato", 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: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  /*background: #0a1e38;*/
}

#footer .footer-top .social-links a:hover {
  color: #fff;
  background: #ed502e;
  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: #fff;
  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.3;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ef6445;
  text-decoration: underline;
}

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

#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 2px 20px;
  background: #ed502e;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: #ef6445;
}

#footer .copyright {
  /* border-top: 1px solid #0f2f57; */
  text-align: center;
  padding-top: 10px;
}

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

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

.topmenu-bg {
  background: #f2f2f2;
}

.topmenu-bg ul {
  margin-bottom: 9px;
}

.topmenu-list li {
  list-style: none;
}

.topmenu-list li {
  display: inline;

  color: #000000;
}

.topmenu-list li a {
  font-size: 15px;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  white-space: normal;
}

.topmenu-list li a:hover {
  color: #ed502e !important;
}

.topmenu-list li:not(:first-child):before {
  content: " | ";
  top: 0px;
  left: -2px;
  position: relative;
  /* text-align: center; */
  font-size: 17px;
}

/* .topmenu-list li:not(:first-child):after {
content: " | ";
position: absolute;
top: 19px;
left: -2px;
} */

.topmenu-list li:not(:last-child) {
  content: "\A";
  white-space: pre;
}

.lineup-list li {
  list-style: none;
}

.lineup-list li {
  display: inline;
}

/*.lineup-list li:not(:first-child):before {*/
/*  content: " | ";*/
/*  position: absolute !important;*/
/*  top: 30px;*/
/*  left: -6px;*/
/*  font-size: 17px;*/
/*}*/

/* .lineup-list li:not(:first-child):after {
content: " | ";
position: absolute;
top: 19px;
left: -2px;
} */

/*.lineup-list li:not(:last-child) {*/
/*  content: "\A";*/
/*  white-space: pre;*/
/*}*/

.left-and-right::before {
  content: "";
  position: absolute;
  background-color: #85c1e9;
  width: 3px;
  height: 90%;
  bottom: 0;
  left: -27px;
}

.about-para {
  color: #363839;
  font-size: 17px;
  /* font-weight:500; */
  /*padding-right: 80px;*/
  line-height: 1.647058824;
}

.arrow-down {
  height: 0px;
  width: 0px;
  position: relative;
  border-right: solid 25px transparent;
  border-left: solid 25px transparent;
  border-top: solid 25px black;
}

.orange-border {
  /*border: 1px solid #ff9000;*/
  padding: 15px 10px 10px;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  margin: 0 auto;
  border-top: 10px solid #ff9000;
  top: -5px;
}

.arrow-down-brown {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  margin: 0 auto;
  border-top: 10px solid #4b4444;
  top: -10px;
  z-index: -1;
  position: relative;
}

.content-item-h4-one::after {
  content: "Million +";
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  padding-left: 2px;
}

.content-item-h4-two::after {
  content: "th";
  font-size: 25px;
  font-weight: 500;
  color: #fff;
  padding-left: 2px;
}

/* .line-before-after::before {
content: "";
width: 11px;
height: 47%;
display: block;
background: #028ee5;
z-index:1;
margin-left: -19px;
position: absolute;
}


.line-before-after-one::after {
content: "";
width: 11px;
height: 47%;
display: block;
background: #028ee5;
margin-left: -19px;
position: absolute;
} */

.swiper-pagination-clickable .swiper-pagination-bullet {
  margin: 0 4px !important;
}

/*.slider-arrow-down {*/
/*  width: 0;*/
/*  height: 0;*/
/*  border-left: 15px solid transparent;*/
/*  border-right: 15px solid transparent;*/
/*  margin: 0 auto;*/
/*  border-top: 15px solid #ff9000;*/
/*  top: 0px;*/
/*}*/

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background-color: #990000;
  color: #fff;
}

.clients .clients-slider .swiper-slide img {
  /* opacity: 0.5; */
  transition: 0.3s;
}

.clients .clients-slider .swiper-slide img:hover {
  opacity: 1;
}

.clients .clients-slider .swiper-pagination {
  margin-top: 50px;
  position: relative;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #4b4444;
}

.clients .clients-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff9000;
}

/* .section-header h2
{
border-bottom: 1px solid #ff9000;
padding-bottom: 10px;
line-height: 1.4em;
} */

.dots-image {
  width: 100%;
  position: relative;
  background: url(../img/dots-image.png);
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: cover; /* Resize the background image to cover the entire container */
}

.my-border-bottom h2 {
  border-bottom: 1px solid #ff9000;
  padding-bottom: 10px;
  line-height: 1.4em;
}

.my-inter-top {
  border: 1px solid #d2d2d2;
  padding: 40px;
  /* margin-bottom:60px; */
  margin-top: 20px;
}

.events .blue-para {
  color: #1b47a1;
  padding-right: 85px;
  font-size: 16px;
}

.events .date {
  font-size: 22px;
  text-align: center;
  font-weight: 500;
  color: #000;
}

.events .small-date {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.events .swiper-slide::before {
  content: "";
  width: 1px;
  height: 88%;
  display: block;
  background: #d2d2d2;
  z-index: 1;
  margin-left: -21px;
  position: absolute;
  top: 12px;
}

.yello-text {
  color: #f9ff43;
  border-bottom: 4px solid #f9ff43;
  font-family: "Lato", sans-serif;
}

@media (min-width: 1024px) {
  .slider,
  .slide {
    height: 70vh;
  }
  
  .news-slider .slide
  {
      height:auto !important;
  }
}
.slide {
  position: relative;
  transition: 1s;
}
.slide .slide__img {
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
.slide .slide__img img {
  max-width: 100%;
  height: auto;
  opacity: 1 !important;
  animation-duration: 3s;
  transition: all 1s ease;
}
.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slide .slide__content.slide__content__left {
  left: 26%;
  transform: translate(-15%, -50%);
}
.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}
.slide .slide__content--headings {
  color: #fff;
}
.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
}
.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}
.slide .slide__content--headings .top-title {
  font-family: "Playball", cursive;
  font-size: 2.5rem;
}
.slide .slide__content--headings .title {
  font-size: 3.5rem;
}
.slide .slide__content--headings .button-custom {
  text-decoration: none;
  color: #333;
  padding: 1.2rem 2.5rem;
  font-size: 1.5rem;
}
.slider [data-animation-in] {
  opacity: 0;
  animation-duration: 1.5s;
  transition: opacity 0.5s ease 0.3s;
  transition: 1s;
}
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}
.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
  opacity: 1;
}
.simple-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li {
  height: 3px;
  width: 50px;
}
.stick-dots .slick-dots li button {
  position: relative;
  background-color: white;
  opacity: 0.25;
  width: 50px;
  height: 3px;
  padding: 0;
}
.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
  opacity: 1;
}
.stick-dots .slick-dots li.slick-active button {
  color: white;
  opacity: 0.75;
}
.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}
/* /////////// IMAGE ZOOM /////////// */
@keyframes zoomInImage {
  from {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
  to {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
}
.zoomInImage {
  animation-name: zoomInImage;
}
@keyframes zoomOutImage {
  from {
    transform: scale3d(1.1, 1.1, 1.1);
    transition: 1s;
  }
  to {
    transform: scale3d(1, 1, 1);
    transition: 1s;
  }
}
.zoomOutImage {
  animation-name: zoomOutImage;
  transition: 1s;
}
.slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, 0.12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}
.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 999;
}
.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}
.slick-nav i {
  display: block;
  position: absolute;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 50%;
}
.slick-nav i:before,
.slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}
.slick-nav i:before {
  transform: rotate(-40deg);
}
.slick-nav i:after {
  transform: rotate(40deg);
}
.slick-nav:before,
.slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}
.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}
.slick-nav.animate svg {
  animation: stroke 1s ease forwards 0.3s;
}
.slick-nav.animate i {
  animation: arrow 1.6s ease forwards;
}
.slick-nav.animate i:before {
  animation: arrowUp 1.6s ease forwards;
}
.slick-nav.animate i:after {
  animation: arrowDown 1.6s ease forwards;
}
@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }
  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }
  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}
@keyframes arrow {
  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }
  23% {
    transform: translateX(17px);
    opacity: 1;
  }
  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }
  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}
@keyframes arrowUp {
  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }
  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}
@keyframes arrowDown {
  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }
  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

.banner-image {
  width: 100%;
  background-image: url("../img/inner-page/inside-page-banner-1.webp");
  background-repeat: no-repeat, no-repeat;
  /* background-position: right, left;  */
  height: 252px;
  background-size: cover;
  position: relative;
}

.banner-image h1 {
  bottom: 0;
  position: absolute;
  color: #ffff;
  font-size: 60px;
  font-family: "Playfair Display", serif;
}

.banner-image h1:before {
  content: "";
  left: 0;
  height: 6px;
  width: 130%;
  display: block;
  position: absolute;
  background-color: #f2c100;
  bottom: -8px;
}

.banner-bottom:before {
  content: "";
  left: 0;
  height: 6px;
  width: 100%;
  display: block;
  position: relative;
  background-color: #f2c100;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* .inner-pages 
{
margin-top:60px;
} */

.inner-pages h2 {
  color: #c20022;
  line-height: 1.3em;
}

.inner-pages h4 {
  font-size: 19px;
  color: #2042cc;
  line-height: 1.4em;
}

.inner-pages p {
  color: #000000;
  font-size:17px;
  font-weight: 400;
  line-height: 1.647058824;
  text-align:justify;
}

/* .inner-pages .custom-para
{
  font-size:18px;
  line-height: 1.5em;
  font-weight: 400;
} */

.double-arrows {
  display: table !important;
}

.double-arrows .icon-container {
  text-align: center !important;
}

.double-arrows .fa-compass {
  -webkit-transform: rotate(-32deg) !important;
  -ms-transform: rotate(-32deg) !important;
  transform: rotate(-32deg) !important;
}

.double-arrows i {
  color: #990000 !important;
  margin: 0 !important;
  margin-right: 2px !important;
  margin-left: 1px !important;
  top: 1px !important;
  font-size: 17px !important;
  /* background: #f2c100; */
  padding: 1px 8px !important;
  border-radius: 50% !important;
  /* width: 30px; */
  /* height: 30px; */
  position: relative !important;
  display: block !important;
}

.double-arrows a i {
  color: #30508c !important;
  margin: 0 !important;
}

.double-arrows .icon-container,
.double-arrows .text-container {
  display: table-cell !important;
  vertical-align: top !important;
}

.double-arrows h2 {
  font-size: 1.28571em !important;
  font-weight: 400 !important;
  line-height: 1.2em !important;
  padding: 5px 0 !important;
  color: #2f318b !important;
  letter-spacing: -0.05em !important;
}

/* .border-tops-menu {
background-image: linear-gradient(to right, black 33%, rgba(255,255,255,0) 0%);
background-position: bottom;
background-size: 3px 1px;
background-repeat: repeat-x;
} */

.inner-pages .links a {
  font-size: 20px;
  font-weight: 500;
  color: #01256e;
}

.inner-pages .links a:hover {
  color: #c20022;
}

.border-tops-menu {
  content: "";
  position: relative;
  display: block;
  top: 0px;
  left: 0;
  height: 4px;
  width: 71%;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(17%, #44464b),
    color-stop(0, rgba(255, 255, 255, 0))
  );
  background-image: linear-gradient(
    to right,
    #44464b 17%,
    rgba(255, 255, 255, 0) 0
  );
  background-position: top;
  background-size: 6px 1px;
  background-repeat: repeat-x;
  margin-bottom: 40px;
  padding-top: 17px;
}

.my-top-margin {
  margin-top: 40px;
}

.headings h1 {
  font-family: "EB Garamond", serif;
  font-size: 42px;
  color: #000;
  letter-spacing: 0;
  line-height: 1.2em;
  position: relative;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 40px;
}

.headings h1:before {
  content: "";
  left: 0;
  height: 1.5px;
  width: 200px;
  display: block;
  position: absolute;
  background-color: #990000;
  bottom: -12px;
}

.headings-sec h2 {
  font-size: 1.7rem;
  line-height: 1.4;
  font-family: "EB Garamond", serif;
  color: #011f5b;
  letter-spacing: 0;
  position: relative;
  font-weight: 500;
  margin-bottom: 30px;
}

.headings-sec h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  background: #011f5b;
  opacity: 0.4;
  width: 200px;
  height: .1rem!important;
}

@media (min-width: 768px) {
  .content-aside__aside {
    margin-top: 0;
    width:80%;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 32.55%;
    flex: 0 1 32.55%;
    min-width: 320px;
    margin: 0 auto;
  }
}

.contact-information {
  background: #011f5b;
  padding: 10px;
  position: relative;
  z-index: 2;
  width: 100%;
  margin-bottom: 23px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact-information__wrap i {
  font-size: 35px;
  color: #82afd3;
}

.content-aside__aside .contact-information:last-child {
  margin-bottom: 0;
}

.contact-information__wrap {
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 40px 22px 50px;
  height: 100%;
}

.contact-information__column address a,
.contact-information__column p a {
  color: inherit;
}

@media (min-width: 1024px) {
  .contact-information__title {
    font-size: 3.4rem;
    line-height: 1.235294118;
  }
}

.contact-information__title {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 2.2rem;
  color: inherit;
  line-height: 1.454545455;
  position: relative;
  margin-top: 0.2em;
  margin-bottom: 1.6em;
}

.contact-information__title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -22px;
  background: #fff;
  opacity: 0.2;
  width: 20px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.contact-information__column__title.contact-information__column__subtitle {
  margin-bottom: 21px;
}

@media (min-width: 640px) {
  .contact-information__column__title {
    font-size: 1.2rem;
    letter-spacing: 1.6px;
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .contact-information__columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }
}

.contact-information__columns .contact-information__column:only-child {
  padding: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.contact-information__columns {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: left;
}

.contact-information__column__title {
  font-size: 1rem;
  letter-spacing: 1.33px;
  font-weight: 500;
  text-transform: uppercase;
  width: 200px;
  margin: 0 auto 7px;
}
.contact-information__title__link {
  color: #fff;
  text-decoration: none;
}

.vision-mission .para {
  font-size: 18px;
  line-height: 1.6em;
  font-weight: 400;
}

.second-sec .card {
  border: 5px solid #e3e4e6;
  border-radius: 0rem;
}

.second-sec .card-body {
  padding: 35px 25px;
}

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

.quick-links__link {
  font-weight: 400;
  color: #01256e;
  text-decoration: none;
  display: block;
  padding: 5px 0;
}

.quick-links__item {
  border-bottom: 1px solid rgba(151, 151, 151, 0.4);
  font-size: 1.3rem;
  color: #01256e;
  letter-spacing: 0.26px;
  padding-bottom: 6px;
  margin-bottom: 11px;
  display: inline-block;
  width: 100%;
}

.quick-links--wide .quick-links__item {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 17px;
}

@media (min-width: 1200px) {
  .quick-links--wide .quick-links__list {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
  }
}

@media (min-width: 1024px) {
  .quick-links--wide .quick-links__item {
    font-size: 2rem;
  }

  .headings-sec h2 {
    margin-top: 10px;
  }

  .matop-3 {
    margin-top: 3rem !important;
  }

  .matop-2-5 {
    margin-top: 2.5rem !important;
  }
}

@media (min-width: 768px) {
  .breadcrumb {
    display: block;
  }

  .quick-links--wide .quick-links__item {
    font-size: 16px;
    line-height: 1.4em;
  }

  .quick-links--wide .quick-links__list {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }

  .physiology .quick-links--wide .quick-links__list {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }

  .quick-links--wide .quick-links__list {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }

  .quick-links__item {
    font-size: 1.5rem;
    letter-spacing: 0.3px;
  }
}

.breadcrumb {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.breadcrumb__item {
  display: inline-block;
  vertical-align: middle;
  font-weight: 400;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #767676;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.breadcrumb__link,
.breadcrumb a {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  text-decoration: none;
}

.breadcrumb__divide {
  display: inline-block;
  width: 20px;
  text-align: center;
  position: relative;
  top: 1px;
  color: #fff;
}

.breadcrumb__link:hover,
.breadcrumb__link:focus,
.breadcrumb a:hover,
.breadcrumb a:focus {
  text-decoration: underline;
  color: #d8d8d8;
}

/*--------------------------------------------------------------
# Posts
--------------------------------------------------------------*/
.post-entry-1 {
  margin-bottom: 30px;
}

.post-entry-1 img {
  margin-bottom: 30px;
}

/* .post-entry-1 h2 {
margin-bottom: 20px;
font-size: 20px;
font-weight: 500;
line-height: 1.2;
font-weight: 500;
} */

.post-entry-1 h2 {
  font-size: 19px;
  line-height: 1.4;
  margin-bottom: 10px;
  font-family: "Lato", serif;
}

.post-entry-1 h2 a {
  color: #000;
}

.post-entry-1 p {
  color: #363839;
  font-size: 15px;
  font-weight: 400;
  padding-right: 80px;
  line-height: 1.6;
  font-family: "Roboto", sans-serif;
}

/* .post-meta {
  font-size: 13px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  color: #9999a9;
  margin-bottom: 10px;
} */

/*.single-post p {*/
/*    font-size: 15px;*/
/*    letter-spacing: 0.07rem;*/
/*    font-family: "Roboto",Helvetica,Arial,sans-serif;*/
/*    font-weight: 300;*/
/*}*/

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

.author .photo {
  margin-right: 10px;
}

.author .photo img {
  width: 40px;
  border-radius: 50%;
  margin-bottom: 0;
}

.author .name h3 {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-family: var(--font-secondary);
}

.trending {
  border: 1px solid rgba(var(--color-black-rgb), 0.1);
}

.trending > h3 {
  color: var(--color-black);
  padding: 20px;
  border-bottom: 1px solid rgba(var(--color-black-rgb), 0.1);
}

.trending .trending-post {
  padding: 0;
  margin: 0;
}

.trending .trending-post li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: block;
}

.trending .trending-post li a {
  display: block;
  padding: 20px;
  border-bottom: 1px solid rgba(var(--color-black-rgb), 0.1);
  position: relative;
  overflow: hidden;
}

.trending .trending-post li a .number {
  position: absolute;
  z-index: -1;
  font-size: 5rem;
  left: -10px;
  top: -20px;
  font-weight: 700;
  color: rgba(var(--color-black-rgb), 0.05);
}

.trending .trending-post li a h3 {
  font-size: 18px;
  color: rgba(var(--color-black-rgb), 0.9);
}

.trending .trending-post li a .author {
  color: rgba(var(--color-black-rgb), 0.7);
  font-weight: 500;
}

.trending .trending-post li a:hover h3 {
  color: rgba(var(--color-black-rgb), 1);
}

.trending .trending-post li:last-child a {
  border-bottom: none;
}

.post-entry-2 {
  margin-bottom: 30px;
}

.post-entry-2 .post-meta {
  font-size: 11px;
  letter-spacing: 0.07rem;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-secondary);
  color: rgba(var(--color-black-rgb), 0.4);
  margin-bottom: 10px;
}

.post-entry-2 .author {
  color: rgba(var(--color-black-rgb), 0.7);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

.post-entry-2 .thumbnail {
  flex: 0 0 65%;
}

@media (max-width: 960px) {
  .post-entry-2 .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.post-entry-2.half .thumbnail {
  flex: 0 0 50%;
}

@media (max-width: 768px) {
  .post-entry-2.half .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.post-entry-2.small-img .thumbnail {
  flex: 0 0 30%;
}

@media (max-width: 768px) {
  .post-entry-2.small-img .thumbnail {
    flex: 0 0 100%;
    margin-bottom: 20px;
  }
}

.img-bg {
  height: 500px;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: center center;
}

@media (max-width: 768px) {
  .img-bg {
    height: 400px;
  }
}

.img-bg:before {
  position: absolute;
  content: "";
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0.5;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  top: 0;
}

.img-bg .img-bg-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  position: relative;
  padding-left: 100px;
  padding-right: 100px;
  margin-bottom: 50px;
}

@media (max-width: 768px) {
  .img-bg .img-bg-inner {
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 50px;
  }
}

.img-bg .img-bg-inner h2,
.img-bg .img-bg-inner p {
  color: #fff;
}

@media (max-width: 500px) {
  .img-bg .img-bg-inner p {
    display: none;
  }
}

.more {
  font-family: var(--font-secondary);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.more:before {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
}

/* .post-content {
padding-left: 10%;
padding-right: 10%;
} */

@media (max-width: 768px) {
  .post-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.post-content .firstcharacter {
  float: left;
  font-family: Georgia;
  font-size: 75px;
  line-height: 60px;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 3px;
}

.post-content figure {
  position: relative;
  left: 52%;
  min-width: 990px;
  transform: translateX(-50%);
}

@media (max-width: 1255px) {
  .post-content figure {
    min-width: auto;
    left: auto !important;
    transform: none;
  }
}

.post-content figure figcaption {
  padding: 10px 0 0 0;

  font-size: 14px;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 300;
}

.img-hover-zoom {
  height: auto;
  overflow: hidden;
}

.img-hover-zoom--slowmo img {
  /* transform-origin: 50% 50%; */
  transition: transform 4s, filter 3s ease-in-out;
  /* filter: brightness(150%); */
}

.img-hover-zoom--slowmo:hover img {
  filter: brightness(100%);
  transform: scale(1.1);
}

.aside-block .custom-tab-nav .nav-item button.active {
  background-color: #000 !important;
  background-color: transparent !important;
  color: #000;
  border-bottom: 2px solid #000;
}

.aside-block .custom-tab-nav .nav-item button {
  color: #000;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  margin-right: 20px;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.glightbox-clean .gslide-title {
  font-size: 15px;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 0px;
  line-height: 1.2em;
}

.glightbox-clean .gdesc-inner {
  padding: 10px 10px;
}

.my-quotes {
  font-family: "EB Garamond", serif !important;
  font-size: 22px !important;
  font-style: italic !important;
  font-weight: 600 !important;
  color: #5c5959 !important;
  line-height: 1.2em !important;
  padding: 20px !important;
  margin-bottom: 10px !important;
}

.my-quotes span {
  font-size: 40px;
}

.inner-img img {
  margin-top: 9%;
}

.physiology .card {
  border: none;
  background: #f4f4f4;
  border-radius: 0;
  padding: 8px;
}

.physiology .card-body {
  border: 1px solid rgba(1, 31, 91, 0.15);
}

@media (min-width: 1024px) {
  .physiology .card {
    width: 116%;
    /* margin-top: -70px; */
    left: -70px;
    z-index: -1;
    /* min-height: 534px; */
    border: none;
    background: #f4f4f4;
    border-radius: 0;
    padding: 8px;
    min-height: 600px;
  }

  .physiology .card-body {
    padding: 30px 30px 30px 100px;
    border: 1px solid rgba(1, 31, 91, 0.15);
  }

  .vascular .card {
    width: 116%;
    /* margin-top: -70px; */
    left: -70px;
    z-index: -1;
    /* min-height: 534px; */
    border: none;
    background: #f4f4f4;
    border-radius: 0;
    padding: 8px;
    min-height: 600px;
  }

  .vascular .card-body {
    padding: 30px 57px 30px 50px;
    border: 1px solid rgba(1, 31, 91, 0.15);
  }

  .my-cust-paras {
    color: #000000 !important;
    font-size: 21px !important;
    font-weight: 400 !important;
    line-height: 1.647058824em !important;
    /* padding-right: 50px; */
    letter-spacing: 0px !important;
    text-align:justify;
  }
}

.physiology .para {
  color: #00548f;
  font-size: 18px;
  line-height: 1.6em;
  font-weight: 400;
}

.physiology .phyborder {
  border-top: 1px solid rgba(1, 31, 91, 0.15);
  margin-top: 20px;
  margin-bottom: 25px;
}

.inner-pages p:not(:last-child) {
  margin-bottom: 30px;
}

.headings-sec span {
  font-size: 2rem;
}

@media (min-width: 1200px) {
  .h2,
  h2 {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 600px) {
  .about-para {
    color: #363839;
    font-size: 16px;
    font-weight: 400;
    padding-right: 0px;
    line-height: 1.5em;
  }

  .headings-sec span {
    font-size: 1.2rem;
    font-weight: 500;
  }

  .mabottom-2-5 {
    margin-bottom: 2.5rem !important;
  }

  .lineup-list li:not(:first-child):before {
    content: none;
  }

  .my-top-margin {
    margin-top: 0px;
  }

  .banner-image h1:before {
    content: "";
    left: 0;
    height: 6px;
    width: 96%;
    display: block;
    position: absolute;
    background-color: #f2c100;
    bottom: -8px;
  }

  .banner-image h1 {
    bottom: 0px;
    position: absolute;
    color: #ffff;
    font-size: 46px;
  }

  .about .content .btn-learn-more {
    margin-bottom: 40px;
  }

  .section-title h2 {
    line-height: 1.3em;
  }

  .events .blue-para {
    color: #1b47a1;
    padding-right: 0px;
    font-size: 16px;
  }

  .dots-image {
    width: 100%;
    position: relative;
    background: url(../img/dots-image.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* padding: 20px 0 0px; */
  }

  .h2,
  h2 {
    font-size: 1.7rem;
    font-weight: 500;
  }

  #hero .carousel-container {
    left: 0px;
  }

  .testimonials .testimonial-item p {
    margin: 12px auto 12px auto;
    color: #363839;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    padding-right: 0px;
  }
  .inner-img img {
    margin-top: 0px;
  }

  .headings-sec h2::after {
    display: none;
  }

  .headings-sec h2 {
    margin-bottom: 5px;
    margin-top: -10px !important;
  }

  .headings h1:before {
    display: none;
  }
  .headings h1 {
    margin-bottom: 20px;
  }

  .headings h1 {
    font-size: 39px;
  }
  .headings-sec h2 {
    font-size: 28px;
  }
  .breadcrumb {
    margin: 0 0 10px;
  }

  .physiology .card {
    margin-top: 30px;
  }

  .my-image-bottom {
    margin-bottom: 1.9rem !important;
  }
}

.bgclr-blue {
  background: #011f5b;
  color: #fff;
}

.bgclr-blue h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-family: "EB Garamond", serif;
  color: #fff;
  letter-spacing: 0;
  position: relative;
  font-weight: 400;
  margin-bottom: 15px;
  opacity: 0.9;
}

.bgclr-blue p {
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.647058824;
  opacity: 0.7;
}

.bgclr-gray {
  background: #f2f2f2;
}

.contact-information__column address,
.contact-information__column p {
  font-size:16px;
  line-height: 1.647058824;
  width: auto;
  /* margin-left: 0; */
  /* margin-right: 0; */
  /* font-family: 'Roboto',sans-serif; */
  font-weight: 400;
  color: #fff;
  opacity: 0.8;
  text-align:justify;
}

.inner-pages img {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1);
}

.inner-pages h3 {
  font-size:22px;
  font-weight: 400;
  color: #990000;
  padding-top: 10px;
  line-height: 29px;
}

.content-aside__aside h3 {
  color: #fff;
}

.myanchor-btn a {
  font-size: 15px;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  background-color: #f2f2f2;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1);
}

.sidenav .bordrs a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 17px;
  color: #000000;
  display: block;
  transition: 0.3s;
  font-weight: 400;
  position: relative;
  box-shadow: inset 0 0 0 0 #54b3d6;

  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/*.sidenav a::before {*/
/*  background: hsl(45 100% 70%);*/
/*  content: "";*/
/*  inset: 0;*/
/*  position: absolute;*/
/*  transform: scaleX(0);*/
/*  transform-origin: right;*/
/*  transition: transform 0.5s ease-in-out;*/
/*  z-index: -1;*/
/*}*/

.sidenav .bordrs a:hover {
  box-shadow: inset 251px 0 0 0 #990000;
  color: #fff;
}

.sidenav .bordrs a {
  border-bottom: 1px solid #ddd;
}

/*.sidenav a:hover {*/
/* color:#990000;*/
/* transition: 0.3s;*/
/*}*/

.sidenav .closebtn {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 36px;
  margin-left: 50px;
  color: #000;
}

.more-menu {
  font-size: 18px;
  cursor: pointer;
  color: #000;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 400;
  border-bottom: 1px solid #000;
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 15px;
  }
}

.bold {
  font-weight: 600;
}
.contents {
  padding: 14px;
}

.post-category {
  font-size: 15px !important;
  font-weight: 500 !important;
  font-family: "Roboto", sans-serif;
  /* color: black !important; */
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}


.testimonial-item .post-category {
  color: black !important;
}
.post-category p {
  /* font-size: 1.125em !important; */
  margin-top: 0 !important;
}

.contents h3 {
  font-size: 15px;
  margin-top: 0;
}

.contents h3 a {
  font-size: calc(18px + (3 * ((100vw - 1024px) / 475)));
}
.box-news {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15), 0 3px 3px rgba(0, 0, 0, 0.15);
  background-color: white;
}
.box-news:hover img {
  transform: scale(
    1.1
  ); /* You can adjust the scale factor for desired zoom level */
}
.box-news img {
  transition: transform 0.3s ease-in-out;
}
.box-news {
  overflow: hidden;
  height:285px;
}
/* Media query for mobile devices */
@media only screen and (max-width: 767px) {
  /* Styles for screens up to 767px wide (typical mobile devices) */

  .box-news {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .positioning {
    /* position: relative; */
    height: auto !important;
    /* overflow: hidden; */
  }
}

.btn-show {
  text-align: center;
}
.btn-show a {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1);
  font-family: "Lato", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 0px;
  transition: 0.3s;
  line-height: 1;
  color: #ff9000;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #ff9000;
}
.text-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  color: white; /* Optional: Set text color */
  background: rgba(0, 0, 0, 0.5);
}
.positioning {
  position: relative;
  height:285px;
  overflow: hidden;
}
.section_title {
  font-size: 1.5em;
  font-weight: 900;
  line-height: 1.25em;
  text-align: center;
  margin-bottom: 0.125em;
}
.section_para {
  text-align: center;
  font-size: 1.5625em;
  margin-bottom: 1em;
}
.pr-3 {
  padding-right: 1.8rem;
}
.rotate-img img {
  transform: rotate(0) scale(1);
  transition: 0.6s ease-in-out;
}
.img-lg {
  width: 138px;
}
.fs-12 {
  font-size: 12px;
  font-weight:500;
}
.pr-3 h5 {
  font-size: 16px !important;
  line-height:1.4em;
}
.box-shad {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15), 0 3px 3px rgba(0, 0, 0, 0.15);
}
.custom-breadcrumb .breadcrumb {
  /* display: flex; */
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  /* background-color: #e9ecef;
  border-radius: 0.25rem; */
}
.custom-breadcrumb .breadcrumb-item {
  display: inline-block;
  /* margin-right: 0.25rem; */
}
.custom-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.25rem;
  color: #6c757d;
}
.fc {
  color: black;
}
.custom-para {
  font-size: 1em !important;
  line-height: 1.3em;
}

.fact-bars {
  margin-bottom: 46px;
}
.fact__title .span-one {
  font-size: 19px;
  font-weight: 500;
}

.fact__title .span-two {
  font-size: 1.3rem !important;
  font-weight: 600;
}

.fact-bars__title {
  font-family: "EB Garamond", serif;
  color: #011f5b;
  letter-spacing: 0;
  position: relative;
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 1.2;
}

.bg-blue .fact-bars__title,
.bg-red .fact-bars__title {
  color: #fff;
}

.fact-bars__title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -15px;
  background: #011f5b;
  opacity: 0.4;
  width: 40px;
  height: 4px;
}

@media (min-width: 1024px) {
  .fact-bars__title {
    font-size: 5rem;
  }
}

.fact-bar {
  border-bottom: 1px solid #979797;
  position: relative;
  margin-bottom: 7px;
}

.fact-bar__fact {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
  opacity: 0.68;
  font-size: 1.6rem;
  color: #011f5b;
  height: 46px;
  padding: 0 7px;
}

.fact-bar__bar {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  max-width: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.fact-bars--blue .fact-bar__bar {
  background: #82afd3;
}

.fact-bars--yellow .fact-bar__bar {
  background: #f2c100;
}

@media (max-width: 1023px) {
  .fact-list {
    margin-bottom: 50px;
  }
}

.fact-list__title {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.3;
  color: #011f5b;
  letter-spacing: 0;
}

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

.fact-list__fact {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  opacity: 0.68;
  font-size: 1.6rem;
  color: #011f5b;
  padding: 0 0 15px;
  border-bottom: 1px solid #979797;
  margin-bottom: 15px;
}

.fact-list__fact:last-child {
  border-bottom: none;
}

.fact-list__text {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 68%;
  flex: 0 1 68%;
}

.fact-list__number {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 30%;
  flex: 0 1 30%;
  text-align: right;
}

.facts-sidebar {
  border: 5px solid #dfdfdf;
  background: #fff;
  padding: 32px 18px;
}

@media (min-width: 1024px) {
  .facts-sidebar {
    padding: 32px 26px;
  }
}

.facts-sidebar__title {
  font-family: "EB Garamond", serif;
  font-size: 2rem;
  color: #011f5b;
  position: relative;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .facts-sidebar__title {
    font-size: 2.4rem;
  }
}

.facts-sidebar__title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -9px;
  background: #011f5b;
  opacity: 0.2;
  width: 20px;
  height: 3px;
}

.facts-sidebar p {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  color: #434343;
  line-height: 2;
}

@media (min-width: 1024px) {
  .facts-sidebar p {
    font-size: 1.7rem;
    line-height: 1.647058824;
  }
}

.facts-sidebar__facts {
  margin-top: 5.5rem;
}

.facts-sidebar .fact__figure {
  text-align: center;
  margin-bottom: 3.7rem;
}

.facts-sidebar .fact__title {
  font-family: "EB Garamond", serif;
  font-size: 3.5rem;
  color: #011f5b;
  line-height: 1.142857143;
  margin-bottom: 1.3rem;
}

@media print {
  .facts-sidebar__facts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .facts-sidebar__facts .fact__figure {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    width: 50%;
  }
}

.facts {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (min-width: 1024px) {
  .facts {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

@media print {
  .facts {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.facts__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 768px) {
  .facts--25 .facts__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px;
  }
}

@media (min-width: 768px) {
  .facts__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px;
  }

  .facts--25 .facts__wrap {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.facts__button {
  padding-top: 20px;
  text-align: center;
}

@media (min-width: 1024px) {
  .facts__button--left {
    text-align: left;
  }
}

.facts .section-header + .facts__wrap {
  margin-top: 50px;
}

.fact {
  text-align: center;
  position: relative;
  padding: 32px 10px 0px 10px;
  border-bottom: 1px solid #dfdfdf;
  width: 100%;
}

@media (min-width: 768px) {
  .facts--25 .fact,
  .facts--50 .fact {
    margin-bottom: 50px;
  }

  .facts--25 .fact::after,
  .facts--50 .fact::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #dfdfdf;
    position: absolute;
    top: -25px;
  }

  .facts--25 .fact:first-child::after,
  .facts--25 .fact:first-child + .fact::after,
  .facts--50 .fact:first-child::after,
  .facts--50 .fact:first-child + .fact::after {
    display: none;
  }
}

@media (min-width: 1024px) {
  .facts--25 .fact {
    margin-bottom: 50px;
  }

  .facts--25 .fact:first-child + .fact + .fact::after,
  .facts--25 .fact:first-child + .fact + .fact + .fact::after {
    display: none;
  }
}

@media (min-width: 768px) {
  .facts--25 .fact,
  .facts--50 .fact {
    border-left: 1px solid #dfdfdf;
    border-bottom: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    width: 50%;
  }

  .facts--25 .fact:first-of-type,
  .facts--50 .fact:first-of-type {
    padding-top: 32px;
  }

  .facts--25 .fact:last-child,
  .facts--50 .fact:last-child {
    border-right: 1px solid #dfdfdf;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .facts--25 .fact:nth-child(even),
  .facts--50 .fact:nth-child(even) {
    border-right: 1px solid #dfdfdf;
  }
}

@media (min-width: 1024px) {
  .fact {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.3%;
    flex: 0 1 33.3%;
    border-left: 1px solid #dfdfdf;
    border-bottom: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .fact:last-child {
    border-right: 1px solid #dfdfdf;
  }

  .facts--25 .fact {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 25%;
    flex: 0 1 25%;
  }

  .facts--50 .fact {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }

  .fact--no-right:last-child {
    border-right: none;
  }

  .fact:nth-child(4n) {
    border-right: 1px solid #dfdfdf;
  }
}

.fact--link .fact__figure {
  margin-bottom: 25px;
}

@media (min-width: 1024px) {
  .fact__figure {
    margin-bottom: 25px;
  }
}

.fact__title {
  font-family: "EB Garamond", serif;
  font-size: 1.9rem !important;
  color: #011f5b;
  letter-spacing: 0;
  line-height: 0.64516129;
  font-weight: 400;
  margin: 0 0 2.4rem;
}

@media (min-width: 768px) {
  .fact__title {
    font-size: 6.2rem;
  }
}

.fact__caption {
  opacity: 0.8;
  font-size: 1.4rem;
  color: #011f5b;
  line-height: 1.3;
  text-align: center;
  font-weight: 400;
}

@media (min-width: 768px) {
  .fact__caption {
    font-size: 17px;
    padding: 0 15px;
  }
}

@media (min-width: 1400px) {
  .fact__caption {
    padding: 0 35px;
  }
}

@media (min-width: 1024px) {
  .fact .btn {
    margin: auto auto 0;
  }
}

.fact--card {
  background: #fff;
  border: 5px solid #e3e4e6;
  min-height: 224px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 38px;
}

@media (max-width: 1023px) {
  .fact--card:first-of-type {
    padding-top: 32px;
  }
}

.fact--card:first-child {
  margin-top: 0;
}

.fact--card:last-child {
  border: 5px solid #e3e4e6;
}

.fact--card .fact__figure {
  margin: auto;
}

@media print {
  .facts__button,
  .fact .btn {
    display: none;
  }

  .facts--25 .fact,
  .facts--50 .fact {
    border-left: 1px solid #dfdfdf;
    border-bottom: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    width: 50%;
  }

  .facts--25 .fact:first-of-type,
  .facts--50 .fact:first-of-type {
    padding-top: 32px;
  }

  .facts--25 .fact::after,
  .facts--25 .fact:first-child + .fact + .fact::after,
  .facts--25 .fact:first-child + .fact + .fact + .fact::after,
  .facts--50 .fact::after,
  .facts--50 .fact:first-child + .fact + .fact::after,
  .facts--50 .fact:first-child + .fact + .fact + .fact::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #dfdfdf;
    position: absolute;
    top: -25px;
  }

  .facts--25 .fact:first-child::after,
  .facts--25 .fact:first-child + .fact::after,
  .facts--50 .fact:first-child::after,
  .facts--50 .fact:first-child + .fact::after {
    display: none;
  }

  .facts--25 .fact:nth-child(even),
  .facts--50 .fact:nth-child(even) {
    border-right: 1px solid #dfdfdf;
  }

  .facts--25 .fact:last-child,
  .facts--50 .fact:last-child {
    border-right: 1px solid #dfdfdf;
  }

  .facts--25 .facts__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 50px;
  }
}

@media (min-width: 1024px) and (min-width: 768px) {
  .fact__title,
  .wysiwyg .fact__title {
    font-size: 6.2rem;
  }
}

@media (min-width: 1024px) {
  .fact__title,
  .wysiwyg .fact__title {
    font-family: "EB Garamond", serif;
    font-size: 1.7rem !important;
    color: #011f5b !important;
    letter-spacing: 0 !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    margin: 0 0 20px !important;
  }
  .ent .card {
    min-height: 525px;
  }

  .pediatric .card {
    min-height: 685px;
  }

  .mytop-align {
    margin-top: 3rem;
  }
}

.why-us p:not(:last-child) {
  margin-bottom: 10px !important;
}

.cust-para {
  font-size: 1.5rem !important;
  line-height: 1.2 !important;
  font-family: "EB Garamond", serif !important;
  /* color: #990000 !important; */
  letter-spacing: 0 !important;
  font-weight: 400 !important;
}

/* Custom CSS for the container */
.display-flex {
  display: flex;
}

/* Custom CSS for columns */
.column {
  flex: 1;
  padding: 15px;
  border-right: 1px solid #ccc;
  /* Vertical line color */
}

/* Remove the right border for the last column */
.column:last-child {
  border-right: none;
}

/* Custom CSS for horizontal line */
.horizontal-line {
  width: 100%;
  border-top: 1px solid #ccc;
  /* Horizontal line color */
  margin-top: 15px;
  /* Adjust as needed */
  margin-bottom: 15px;
  /* Adjust as needed */
}
.adjusts {
  padding-right: 4rem;
}
.adjusts-left {
  padding-left: 4rem;
}

/* Media query to remove flex for screens smaller than 768px (adjust as needed) */
@media (max-width: 767.98px) {
  .adjusts {
    padding-right: 20px;
  }
  .adjusts-left {
    padding-left: 20px;
  }
  .display-flex {
    display: block;
    /* Change to block for mobile screens */
  }

  .column {
    flex: none;
    /* Remove the flex property for mobile screens */
    width: 100%;
    /* Full width for mobile screens */
    border-right: none;
    /* Remove the right border for mobile screens */
  }
}

@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-top: 0;
    border: none;
    background: #f3f3f3;
    border-radius: 0;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }
  .navbar .dropdown-menu.fade-up {
    top: 180%;
  }
  .navbar .nav-item:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
  .border-rights {
    border-right: 1px solid #dddddd;
  }
  .padding-rights-col-megamenu {
    padding-right: 2rem !important;
  }
}

.megamenu {
  max-height: 500px;
  overflow: auto;
  border: none;
}

/* width */
.megamenu::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.megamenu::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 8px;
}

/* Handle */
.megamenu::-webkit-scrollbar-thumb {
  background: #0b2341;
  border-radius: 8px;
}

/* Handle on hover */
.megamenu::-webkit-scrollbar-thumb:hover {
  background: #b30000;
}

.dropdown-divider {
  height: 0;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}
@media all and (min-width: 992px) {
  /*.navbar{ padding-top: 0; padding-bottom: 0; }*/
  .navbar .has-megamenu {
    position: static !important;
  }
  .navbar .megamenu {
    left: 0;
    right: 0;
    width: 100%;
  }
  /* .navbar .active > .nav-link{ height: 51px;border-bottom: .25rem solid transparent;
    border-bottom-color: #ffffff;}*/
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.6rem;
    padding-left: 0.6rem;
  }
  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: none;
  }

  .cool-link::after {
    content: "";
    display: block;
    width: 0px;
    height: 4px;
    background: #eeeeee;
    transition: 0.2s;
    margin-top: 10px;
  }

  .cool-link:hover::after {
    width: 100%;
    transition: width 0.3s;
  }
}

.col-megamenu li {
  margin-bottom: 5px !important;
}

.col-megamenu li a {
  /*padding:.4rem .5rem;*/
  color: #212529;
  font-size: 14px;
}

.col-megamenu li a:hover {
  /*background-color: #75141b;*/
  color: #75141b;
}

.col-megamenu .title {
  color: #75141b;
  font-weight: 500;
  /*padding:.4rem .5rem;*/
  margin-bottom: 5px;
}

.col-megamenu .dropdown-divider {
  height: 0;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid #ababab;
}

.has-megamenu .list-group-item {
  font-size: 16px;
  color: #990000;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 500;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  padding-top: 0px !important;
  padding-bottom: 5px !important;
  display: block !important;
  white-space: normal;
  line-height: 1.3;
}

.has-megamenu .list-group-item:hover {
  color: #990000 !important;
  text-decoration: underline;
  white-space: normal;
}

.top-menu-dropdown {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 600;
  font-family: "Lato", sans-serif;
}

.top-menu-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);

  z-index: 998;
}

.top-menu-dropdown-content a {
  font-size: 15px;
  color: #0b2341;
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 500;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  padding: 8px 15px 5px !important;
  /* padding-bottom: 10px !important; */
  display: block !important;
  white-space: normal;
}

.top-menu-dropdown-content a:hover {
  color: #ed502e !important;
}

.top-menu-dropdown:hover .top-menu-dropdown-content {
  display: block;
}

.has-megamenu .double-arrows i {
  color: #990000 !important;

  top: 8px !important;
  font-size: 17px !important;
  /* background: #f2c100; */
  padding: 1px 5px 0px 5px !important;
  /* border-radius: 50% !important; */
  /* width: 30px; */
  /* height: 30px; */
  position: relative !important;
  display: block !important;
}

.has-megamenu .double-arrows p {
  margin-bottom: 5px !important;
}

.has-megamenu .headings-sec h2 {
  font-size: 18px;
  line-height: 1.4;
  color: #011f5b;
  letter-spacing: 0;
  position: relative;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: capitalize;
  font-family: "Lato", Helvetica, Arial, sans-serif;
}

.has-megamenu .headings-sec h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  background: #011f5b;
  opacity: 0.4;
  width: 100%;
  height: 1.5px;
}

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

.link-list__link {
  color: #990000 !important;
  text-decoration: none;
  display: inline-block;
  padding: 5px 0;
}

.link-list__item {
  font-family: "EB Garamond", serif;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.3;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 14px;
  margin-bottom: 14px;
  font-weight: 500;
}

/*.link-list {*/
/*    margin-top:40px;*/
/*}*/

.link-list__link:hover,
.link-list__link:focus {
  text-decoration: underline;
  color: #011f5b !important;
}

.table th {
  font-size: 16px;
  line-height: 20px;
}

.table td {
  font-size: 15px;
  line-height:24px;
}

.nmc h2 {
  font-size: 1.4rem;
  line-height: 1.4;
  font-family: "EB Garamond", serif;
  color: #011f5b;
  letter-spacing: 0;
  position: relative;
  font-weight: 500;
  margin-bottom: 15px;
  /*text-transform: capitalize;*/
}

/*.nmc h2::after {*/
/*    content: "";*/
/*    display: block;*/
/*    position: absolute;*/
/*    bottom: -10px;*/
/*    background: #011F5B;*/
/*    opacity: 0.4;*/
/*    width: 200px;*/
/*    height: 1.5px;*/
/*}*/

.mysidebar {
  background: #f3f3f3;
  padding: 20px;
}

.stack-menu__link {
  padding: 10px 20px !important;
  font-size: 15px;
  font-weight: 500;
  font-family: "Roboto", san-serif;
  border-bottom: 1px solid #ddd;
}

.mobilde-slider {
  border-top: 5px solid #ff9000;
  border-bottom: 5px solid #ff9000;
  padding: 0px;
  margin-top: 45px;
}

.footer-top p {
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.menu-bg {
  background: #990000;
}

.menu-bg .top-head {
  font-size:1.8rem;
  font-weight: 300;
  padding-left: 10px;
  font-family: "Roboto", sans-serif;
}

.inner-menu ul {
  padding-left: 0px;
  margin-bottom: 0px;
}

.inner-menu ul li {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
  display: inline-block;
}

.inner-menu ul li a {
  padding: 5px;
  color: #fff;
}

.inner-menu li a:hover,
.inner-menu .active,
.inner-menu .active:focus {
  color: #000;
  background: #fff;
}

.mymenu-icon {
  font-size: 23px;
  padding-top: 6px;
}

.dots-icons {
  color: #990000;
}

.stack-menu__link--back::after {
  content: "Back";
  padding-left: 10px;
  font-size: 14px;
  color: #000;
}

.myborders {
  border-top: 1px solid rgba(1, 31, 91, 0.15);
  margin-top: 10px;
  margin-bottom: 0px;
}

.inner-menu ul::after {
  content: "";
  border-bottom: 1px solid #fff;
  width:88%;
  display: block;
}

.top-anchors a {
  color: #767676;
  font-weight: 500;
}

.top-anchors a:hover {
  color: #000;
}

.top-anchors .breadcrumb__divide {
  display: inline-block;
  width: 20px;
  text-align: center;
  position: relative;
  top: 1px;
  color: #767676;
}

.menu-headings {
  color: maroon;
  margin-left: 20px;
  font-weight: 600;
  font-size: 19px;
  padding-top: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.dropdown-menu.show {
  z-index: 1021;
}

#museum .fact__title,
.wysiwyg .fact__title {
  font-size: 2.5rem !important;
}

.partitionborder {
  border-top: 1px solid rgba(1, 31, 91, 0.15);
  /*margin-top: 20px;*/
  margin-bottom: 28px;
}


/*.teamWrapper {*/
/*    margin-top: 50px;*/
/*}*/

/*.teamGrid {*/
/*    display: grid;*/
/*    grid-template-columns: 32.33% 32.33% 32.33%;*/
/*    column-gap: 1.5%;*/
/*    margin-top: 100px;*/
/*}*/

.teamcol
{
  margin-top:120px;  
  margin-bottom:60px;
}
.avatar {
    position: absolute;
    left: 0;
    right: 0;
    top: -80px;
    text-align: center;
}
.teamcolinner {
    position: relative;
}
.avatar > img {
    width: 150px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid rgb(170 170 173/ 1);
    box-shadow: 0px 3px 10px 3px rgb(170 170 173 / 0.5);
}
.teamcolinner {
    position: relative;
    border:1px dashed #ddd;
    min-height: 100px;
    background: #fff;
    z-index: 9;
    padding:15px;
}
.teamcol {
    padding:5px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    transition: transform 1s ease-in-out;
}
.teamcol:hover {
    transform: translateY(-30px);
    box-shadow: 0px 3px 10px 3px rgb(170 170 173 / 0.5);
    transition: transform 1s ease-in-out;
}


.teamcol:before 
{
    content: "";
    width: 50%;
    height: 50%;
    position: absolute;
    right: 0;
    top: 0;
    background:-webkit-linear-gradient(#0035a1, #0035a1);
    border-top-right-radius: 10px;
    transition: width 1s ease-in-out;
}


.teamcol:after 
{
    content: "";
    width: 50%;
    height: 50%;
    position: absolute;
    left: 0;
    bottom: 0;
    background:-webkit-linear-gradient(#ae152d, #ae152d);
    border-bottom-left-radius: 10px;
    transition: width 1s ease-in-out;
}


.teamcol:hover::before, .teamcol:hover::after {
    width: 100%;
    transition: width 1s ease-in-out;
}
.member-name {
    margin-top: 80px;
}

.member-name p
{
    color: #2a2a2a;
    font-size: 15px;
    line-height: 25px;
    font-weight: 400;
    text-align:center;
    margin-bottom:15px !important;
}
.member-info {
    padding: 10px 20px;
}
.social-listing {
    align-items: center;
    justify-content: center;
    display: flex;
    list-style: none;
    padding: 0;
}
.social-listing >li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #f4f5f7;
    border-radius: 50%;
    margin: 5px;
}


.menu-image-holder {
  float: left;
  margin-right: 25px;
}

.menu-image-holder img{
  float: left;
  margin-right: 25px;
  max-width: 45vw;
}

.menu-list {
  margin: 0;
  padding: 0;
  max-width: 50vw;
  list-style: none;
  padding-top: 20px;
}

.menu-list a {
  color: black;
  margin-bottom: 20px;
  text-decoration: none;    
  display: inline-block;    
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
}




@media only screen and (max-width: 600px) {
  .content {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .section-title h2::before {
    display: none;
  }

  .top-anchors {
    margin-top: 30px;
  }
  .counts .count-box span {
    font-size: 25px;
    line-height: 23px;
    display: block;
    font-weight: 400;
    color: #ffffff;
    /* margin-left: 50px; */
  }

  .content-item-h4-one::after {
    content: "Million +";
    font-size: 25px;
    font-weight: 400;
    color: #fff;
    padding-left: 2px;
  }

  .content-item-h4-two::after {
    content: "th";
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding-left: 2px;
  }

  .counts .count-box {
    /* box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1); */
    padding: 3px;
    width: 100%;
    background: #990000;
  }

  .counts .count-box p {
    padding: 5px 0 5px 0;
    margin: 0;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    color: #ffffff;
    line-height: 19px;
  }

  .counts .count-box h2 {
    font-size: 25px;
    line-height: 38px;
    display: block;
    font-weight: 500;
    color: #ffffff;
    /* margin-left: 50px; */
  }
  .arrow-down {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    margin: 0 auto;
    border-top: 10px solid #ff9000;
    top: -4px;
  }

  .clients {
    background-color: #990000;
    color: #fff;
  }
  .events-bg {
    background: #990000;
    color: #fff;
  }

  .my-inter-top {
    /* border: 1px solid #d2d2d2; */
    padding: 20px;
    margin-bottom: 20px;
    margin-top: 30px;
    background: #fff;
  }
  .myanchor-btn a {
    font-size: 15px;
    background: #fff;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    color: #990000;
    border: 1px solid #990000;
  }
  .events h2 {
    text-align: center;
  }
  .life-bldea p {
    font-size: 24px;
    text-align: center;
    position: relative;
  }

  .life-bldea h2 {
    font-size: 1.7rem;
    font-weight: 500;
    text-align: center;
  }

  .life-bldea p::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -10px;
    background: #ffc904;
    opacity: 0.4;
    width: 145px;
    height: 1.5px;
    margin: 0 auto;
    left: 30%;
  }
  .menu-bg {
    margin-top: 0px;
  }
} 

/*--------------------------------------------------------------
# KASI CSS Starts here
--------------------------------------------------------------*/


.tabl-04 {
    table-layout: fixed;
    font-size: 16px; 
    undefined;table-layout: fixed;font-size: 16px;
} 

.tabl-04-td1 {
    width: 25px; color: #da3054;
} 

.tabl-04-td2 {
    width: 100%;
    
} 

.tabl-04-td3 {
    width: 25px; color: #da3054;
} 

.tabl1-td {
    border-top-width: 0px; color: #da3054;
} 

.tabl-04-td5 {
    
 border-top-width: 0px;   
} 

.tg {
    border-collapse: collapse;
    border-spacing: 0;
    border-color: #e8e9ea;
} 

.aligncenter, .fusion-aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
} 

.tg-yw4l {
    padding-left: 0px;
    border-top-width: 0px;
    color: #da3054;

} 

.tg .tg-yw4l {
    vertical-align: top;
    text-align: left;
    padding-left: 20px;
    color: #da3054;
} 

table tr td:first-child {
    padding-right: 30px;
} 

.tg td {
    font-size: 16px;
    padding: 10px 5px;
    border-style: solid;
    border-width: 0px;
    overflow: hidden;
    word-break: normal;
    color: #594F4F;
    border-top-width: 1px;
    border-color: #e8e9ea;
}


.prof-a {
    color: navy!important;
    /*text-decoration: none;*/
    text-decoration: underline!important;
} 

.mt-ns {
    margin-top: 6rem !important;
}


.nmc-tab {
    font-size:17px !important;
    background-color:#ededed !important;
    margin-bottom: 15px !important;
}

.nmc .list-group-item.active {
    z-index: 2;
    color: var(--bs-list-group-active-color);
    background-color: var(--bs-list-group-active-bg);
      border-top:3px solid #ed502e;
    border-bottom:3px solid #ed502e;
    border-left:3px solid #ed502e;
    border-right:3px solid #ed502e; 
    border-radius:0px;
}

  

.nmc .list-group-item+.list-group-item.active
{
    border-top:3px solid #ed502e;
    border-bottom:3px solid #ed502e;
    border-left:3px solid #ed502e;
    border-right:3px solid #ed502e;   
    border-radius:0px;
}

.nmc .list-group-item:last-child {
    border-bottom-right-radius:0px;
    border-bottom-left-radius:0px;
}

.nmc .list-group-item:first-child {
    border-top-left-radius:0px;
    border-top-right-radius:0px;
}

.nmc-tab a {
    color: #ffffff;
} 

.nmc-p {
    color: #444444 !important;
} 

.nmc-p a {
    color:#ffc107;
}

.my-accords h3 
{
       padding-top: 0px !important;
}

.inner-pages table img
{
    width:200px;
}
.cu-p{
    color: #000000;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.647058824;
    text-align: justify;
}



.inner-pages ol li {
    color: #000000;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.647058824;
    text-align: justify;
    margin-bottom:15px;
}


.inner-pages ol li::marker {
  color:#990000;
}

.news-slider .section_title
{
    text-align:left;
    padding-bottom:12px;
    font-size:25px;
}

.news-slider .news_author 
{
    font-size: 13px !important;
    font-weight: 500;
    
}

.news-slider .news_social
{
    font-size: 15px !important;
    
}


.news-slider  .more-news
{
   font-size: 17px !important;
   font-weight: 500;
   margin-bottom:13px !important;
} 

.mrg-lft {
    margin-left: 10px !important;
} 

.act-hgt {
    height: 82px !important;
}

#cookieConsent {
  background-color: #990000;
  color: #fff;
  padding: 20px;
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 1000;
}

#cookieConsent button {
  background-color: #eaefea;
  color: #1d1818;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  margin-left: 10px;
  font-weight: 600;
}
.li-font-size ul li{
    font-size: 17px;
}

.li-font-size ul {
  list-style-type: none;
  padding-left: 20px;
}

.li-font-size li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px
}

.li-font-size li:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: FontAwesome;
  content: "\f058";
  color: #b30000;
}

