body {
  font-family: 'Poppins', sans-serif;
  color: #444444;
}

a {
  color: #0b5b8c;
  text-decoration: none;
}

a:hover {
  color: #002d62;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: "Roboto", 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 #0b5b8c;
  border-top-color: #ecf8f9;
  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: #0b5b8c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.btn-light{
  color:#002d62 !important;
}

.text-primary {
  --bs-text-opacity: 1;
  color: #0b5b8c!important;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #0170a3;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #646464;
  color: #fff;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  z-index: 996;
  transition: all 0.5s;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar i {
  padding-right: 6px;
  line-height: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 5px 0;
  top: 0px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #555555;
}

/**
* Appointment Button
*/
.appointment-btn {
  margin-left: 15px;
  color: #fff;
  border-radius: 4px;
  padding: 8px 25px;
  white-space: nowrap;

  font-size: 14px;
  display: inline-block;
  background-image: linear-gradient(145deg, #0b5b8c 0%, #00529c 99%, #00529c 100%);
  box-shadow: 0px 5px 15px rgb(0 82 156 / 15%);
}

.appointment-btn:hover {
  background: #0170a3;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  /* font-family: "Roboto", sans-serif; */
  font-size: 14px;
  color: #002d62;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}

.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: #0b5b8c;
}

.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: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #0b5b8c;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #555555;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(60, 60, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #555555;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #0b5b8c;
}

.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: #0b5b8c;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
*{
  font-family: "Poppins", sans-serif;
}
       .banner {
 background-image:url("assets/img/banner.png") ;
 background-size: cover;
 background-repeat: no-repeat;
 color: #f1f1f1;
 height: 75vh;
}
.banner-div {
 align-items: center;
 height: 80vh;
 overflow:hidden;
 display: flex;
 justify-content: center;
}
.btn {
 padding: 0.5em 1.5em;
 border-radius: 2em;
}
.top_padding{
   padding-top:5%;
   padding-bottom:5%;
}
.about_bg{
   background-color: #F9FDFF;
}
.banner_text{
   text-align: center;
}
.btn-blue{
   color:white;
   background-color: #002D62;
   border:1px solid #002D62;
}
.btn-blue-refresh{
 margin-left:20px;
 padding: 5px 10px;
   border-radius: 6px;
   color:#002D62;
   background-color: white;
   border:1px solid #002D62;
}
.btn-blue:hover{
   color:#002D62;;
   background-color:white;
   border:1px solid #002D62;
}
@media screen and (min-width: 769px) {
 p {
   font-size: 16px;
   line-height: 30px;
   color:#333333;
 }
}
@media screen and (max-width: 768px) {
 .banner {
   padding: 2em;
   text-align: center;
 }
}

.heading {
 display: flex;
 align-items: center;
 column-gap: 1rem;
 max-width: 20rem;
 font-weight: 600;
 color: #1A243C;
 margin: auto;
}

.heading::before,
.heading::after {
 flex: 1;
 content: "";
 height: .2rem;
 border-block: .15rem solid #002D62;
}
.services_bg{
   background-image:url("assets/img/servicebg.png");
 background-size: cover;
 background-repeat: no-repeat; 
}

.count-box:hover {
   box-shadow: 0px 11px 16px 0 rgba(0, 0, 0, 0.1);
}
.count-box {
   /* box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1); */
   padding: 30px;
   width: 100%;
}

.p_nopadding{
   color:#1A243C;
   font-size:20px;
   font-weight: 500;
   padding-left:20px;
   margin: 0px !important;
}
.p_desc{
   color:#333333;
   font-size:16px;
   margin-top:5px;
}

.contactus{
   background: #f9fdff;
   border-radius: 35px;
   margin-top: 30px;
}

.left {
 width: 22vw;
 overflow: hidden;
}
.left img{
   border-top-left-radius: 35px;
   border-bottom-left-radius: 35px;
}
.right{
   padding-left: 50px;
}
.left img {
 width: inherit;
}

.right .contact {
 gap: 1rem;
 margin-right: 1rem;
}

.address {
 display: flex;
 flex-direction: column;
 gap: 2rem;
}

h4 {
 margin-bottom: 5px;
}

@media screen and (max-width: 700px) {
 .card {
   flex-direction: column;
 }
 
 .left {
   width: 60vw;
   height: 40vh;
 }
}

@media screen and (max-width: 350px) {
 .container {
   overflow: hidden;
 }
 .left {
   height: 20vh;
 }
 .contact {
   flex-direction: column;
 }
}

.form-row{
   display: flex;
   flex-wrap: wrap;
   gap: 20px;
   margin-bottom: 20px;
}
.form-textarea{
   width: 100%;
   padding: 12px;
   border-radius: 8px;
   border: 1px solid #ddd;
   transition: border-color 0.3s, transform 0.3s;
}
.form-column{
   width:48%
}
.form-input{
   width: 100%;
   padding: 12px;
   border-radius: 8px;
   border: 1px solid #ddd;
   transition: border-color 0.3s, transform 0.3s;
}
.footer-big {
 padding: 105px 0 65px 0;
}

.footer-big .footer-widget {
 margin-bottom: 40px;
}

.footer--light {
 background: #002D62;
}

.footer-big .footer-menu ul li a,
.footer-big p,
.footer-big ul li {
 font-weight: 300;
 color: #E1E4F0;
}

/* Responsive Css Code created by : Shift Code Design */

.footer-menu {
 padding-left: 48px;
}

.footer-menu ul li a {
   text-decoration: none;
 font-size: 14px;
 line-height: 32px;
 -webkit-transition: 0.3s;
 -o-transition: 0.3s;
 transition: 0.3s;
}

.footer-widget-title {
   color:#E1E4F0;
 line-height: 30px;
 margin-bottom: 10px;
 font-size: 18px;
 font-weight: 500;
}

.mini-footer {
 background: #f9fdff;
 text-align: center;
 padding: 15px 0;
}

.mini-footer p {
 margin: 0;
 line-height: 26px;
 font-size: 15px;
 color: #565656;
}

/* Responsive Css Code created by : Shift Code Design */

.widget-about img {
 display: block;
 margin-bottom: 30px;
 max-width: 85%;
}

.widget-about p {
 font-weight: 400;
}

#header .logo img {
  max-width: 75%;
}

/* Responsive Css Code created by : Shift Code Design */

@media (max-width: 991px) {
 .footer-menu {
   padding-left: 0;
 }
 .widget-about img {
   max-width: 40%;
 }
 #header .logo img {
  max-width: 100%;
}
}
ul {
   padding: 0;
   list-style-type: none;
}
 .testimonials .testimonial-item h3{
   color: #595e62 !important;
 }
 .testimonials .swiper-pagination .swiper-pagination-bullet-active{
   background-color: #0b5b8c ;
 }
 .testimonials .swiper-pagination .swiper-pagination-bullet{
   width: 12px;
   height: 12px;
   
   opacity: 1;
   border: 1px solid #dbdbdb !important;
 }
 .testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
   color: #d9d9d9;
 }
 .testimonials .testimonial-item p {
   font-style: normal;
   margin: 0 15px 0 15px;
   padding: 20px 20px 60px 20px;
   background: #f2f7fa;
   position: relative;
   border-radius: 6px;
   position: relative;
   z-index: 1;
   font-size: 13px;
   color: #595e62 !important;
   font-weight: 400;
   box-shadow: 0px 11px 16px 0 rgba(0, 0, 0, 0.1);
}
 
 .doctors .member {
   border-radius: 12px;
 }
.call-to-action {
 /* --default-color: #ffffff;
 --background-color: #000000; */
 --background-color-rgb: 0, 0, 0;
 padding: 130px 0;
 position: relative;
 -webkit-clip-path: inset(0);
 clip-path: inset(0);
}
.call-to-action:before {
 content: "";
 background: rgba(var(--background-color-rgb), 0.5);
 position: absolute;
 inset: 0;
 z-index: 2;
 margin-bottom: -1px;
}
.call-to-action img {
 position: fixed;
 top: 0;
 left: 0;
 display: block;
 width: 100%;
 height: 100%;
 -o-object-fit: cover;
 object-fit: cover;
 z-index: 1;
}
.call-to-action .container {
 position: relative;
 z-index: 3;
}
/* .call-to-action h3 {
 font-size: 28px;
 font-weight: 700;
 color: var(--default-color);
} */


.featured-services .title {
   font-weight: 600;
}
.featured-services .icon-box {
   padding: 30px;
   position: relative;
   overflow: hidden;
   background: #fff;
   box-shadow: 0px 7px 23px 0 rgba(68, 88, 144, 0.12);
}
.counts .count-box:hover {
   box-shadow: 0px 11px 16px 0 rgba(0, 0, 0, 0.1);
}
.counts .count-box {
   box-shadow: none;
}
.what-we{
 padding-bottom: 50px !important;
}
.counts .count-box p {
   margin: 0;
   font-size: 15px;
   color: #485664 !important;
}
.counts .count-box span {
   font-size: 42px;
   line-height: 24px;
   display: block;
   font-weight: 200;
   color: #485664 !important;
   margin-left: 40px;
}
.counts .count-box a {
   font-weight: 400;
   display: block;
   margin-top: 20px;
   color: #485664 !important;
   font-size: 13px;
}
#captcha-form label{
 color:#002D62;
 font-weight:400;
}
.right h4{
 color:#002D62;
}
.captcha-form-control{
   width:80%;
   display: flex;
   justify-content: center;
   font-size: 1rem;
   font-weight: 400;
   line-height: 1.5;
   color: var(--bs-body-color);
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
   box-shadow: rgb(0 0 0 / 24%) 0px 2px 4px 0px inset;
   background-color: var(--bs-body-bg);
   background-clip: padding-box;
   border: var(--bs-border-width) solid var(--bs-border-color);
   border-radius: var(--bs-border-radius);
   transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-control{
 padding: .60rem .75rem;
 box-shadow: rgb(0 0 0 / 24%) 0px 2px 4px 0px inset;
}


@media screen and (min-device-width: 360px) and (max-device-width: 760px){
  .single-award-block{
    margin-top:10px;
    height:fit-content !important;
  }
 .contact_img{
  display: none;
 }
 .right {
  padding: 8px;
}
.form-column {
  width: 100%;
}
.contact_form{
  margin: 10px 0px 10px 0px;
}
.count-box-service{
  margin-top:10px;
}

.padding_service_card{
  padding: 5px 10px 5px 40px;
}
.margin-contactus{
  margin:0px 10px 0px 10px;
}
}

.contact .info-box i {
  font-size: 32px;
  color: #1499d6;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #c5ebec;
}

.breadcrumb-item.active{
  color:white;
  font-weight:500;
  font-size:14px;
}
.breadcrumb-item{
 font-weight:300;
 font-size:12px;
}

.breadcrumb-item+.breadcrumb-item::before{
  color: white;;
}

.call-to-action {
  /* --default-color: #ffffff;
  --background-color: #000000; */
  --background-color-rgb: 0, 0, 0;
  padding: 130px 0;
  position: relative;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.call-to-action:before {
  content: "";
  background: rgba(var(--background-color-rgb), 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.call-to-action .container {
  position: relative;
  z-index: 3;
}

.count-box-service{
  position: relative;
  background-color: white;
  padding: 30px;
  width: 100%;
  box-shadow: 0px 16px 16px 0 rgb(197 197 197 / 15%);
  display: grid;
  justify-content: start;
  align-content: space-around;
  justify-items: start;
}
.service_more{
  background: #ffffff;
    border-radius: 100%;
    padding: 6px;
    bottom: 16px;
    right: 13px;
    position: absolute;
    border: solid 1px #424242;
}

.p_nopadding_service{
  text-align: left;
    color: #1A243C;
    font-size: 20px;
    font-weight: 500;
    margin: 10px 0px 5px 0px !important;
}
.p_desc_service{
  color: #7b818a;
    font-size: 14px;
    margin-top: 10px;
    text-align: left;
    line-height:1.6;
}

a.service_more svg {
  fill: #efb455 !important;
}
.text-p{
  color: #5a6066 !important;
}
  .text-dark-blue{
color: #002d62 !important;
  }
  .call-to-action strong{
    color: #efb455 !important;
    font-weight: 300;
    font-size: 19px;
    border-radius: 30px;
    padding: 8px 60px;
    border: 1px solid #efb455;
  }
  .theme-color{
    font-weight: 700;
    color: #efb455 !important;
  }

  .strip_top{
    background: #002d62;
      transition: all 0.5s;
      z-index: 997;
      padding: 20px 0;
      box-shadow: none ! important;
      top: 0px;
  }