/**
* Template Name: Medicio
* Updated: May 30 2023 with Bootstrap v5.3.0
* Template URL: https://bootstrapmade.com/medicio-free-bootstrap-theme/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


/*.jumbotron {
    padding: 1rem 1rem;
    margin-bottom: 0.3rem;
     background-color: #e9ecef;
     border-radius: 0.3rem;
   }
   @media (min-width: 576px) {
     .jumbotron {
       padding: 1rem 2rem;
     }
   }*/


   body {
     font-family: "Open Sans", sans-serif;
     color: #444444;
   }
   
   a {
     color: #1D267D;
     text-decoration: none;
   }
   
   a:hover {
     color: #65c9cd;
     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 #1D267D;
     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: #1D267D;
     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: #5ec6ca;
     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: #1D267D;
     color: #fff;
     height: 40px;
     font-size: 15px;
     font-weight: 600;
     z-index: 996;
     transition: all 0.5s;
   }
   
   #topbar.topbar-scrolled {
     top: -40px;
   }
   
   #topbar i {
     color: #fff;
     padding-right: 6px;
     line-height: 0;
   }
   
   /*--------------------------------------------------------------
   # Header
   --------------------------------------------------------------*/
   #header {
     background: #fff;
     transition: all 0.5s;
     z-index: 997;
     padding: 20px 0;
     top: 40px;
     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;
   }
   
   #header .logo img {
     max-height: 60px;
   }
   
   /**
   * Appointment Button
   */
   .appointment-btn {
     margin-left: 25px;
     background: #1D267D;
     color: #fff;
     border-radius: 4px;
     padding: 8px 25px;
     white-space: nowrap;
     transition: 0.3s;
     font-size: 14px;
     display: inline-block;
   }
   
   .appointment-btn:hover {
     background: #65c9cd;
     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: 13px;
     color: #626262;
     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: #1D267D;
   }
   
   .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: #1D267D;
   }
   
   .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: #1D267D;
   
   }
   
   .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: #1D267D;
   }
   
   .navbar-mobile .dropdown>.dropdown-active {
     display: block;
   }


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
    overflow: hidden;
    margin-top: 50px;
  }
  
  .gallery .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .gallery .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #1D267D;
  }
  
  .gallery .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #1D267D;
  }
  
  .gallery .swiper-slide-active {
    text-align: center;
  }

  .btn-primary {
    background-color: #ff6f00 !important;
}
  
  @media (min-width: 992px) {
    .gallery .swiper-wrapper {
      padding: 40px 0;
    }
  
    .gallery .swiper-slide-active {
      border: 6px solid #1D267D;
      padding: 4px;
      background: #fff;
      z-index: 1;
      transform: scale(1.2);
      margin-top: 10px;
    }
  }
  
/*--------------------------------------------------------------
# Jobs
--------------------------------------------------------------*/
#jobs {
    background-color: #0a0038;
}

.email-txt {
  color: rgb(255, 136, 0);
}
   
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #eeeeee;
    padding: 0 0 30px 0;
    color: #555555;
    font-size: 14px;
  }
  
  #footer .footer-top {
    background: #f6f6f6;
    padding: 60px 0 30px 0;
  }
  
  #footer .footer-top .footer-info {
    margin-bottom: 30px;
  }
  
  #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: "Roboto", sans-serif;
  }
  
  #footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #1D267D;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
  }
  
  #footer .footer-top .social-links a:hover {
    background: #65c9cd;
    text-decoration: none;
  }
  
  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    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: #1D267D;
    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: #555555;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
  }
  
  #footer .footer-top .footer-links ul a:hover {
    color: #1D267D;
  }
  
  #footer .footer-top .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 6px 10px;
    position: relative;
    border: 1px solid #d5d5d5;
    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: -1px;
    right: -1px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #1D267D;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
  }
  
  #footer .footer-top .footer-newsletter form input[type=submit]:hover {
    background: #65c9cd;
  }
  
  #footer .copyright {
    text-align: center;
    padding-top: 30px;
  }
  
  #footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
  }