/*
    Project Name: Retina Consultants Surgery Center
    Project Author: Firoz Malik
    Author URL: https://www.pixologix.in
*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap");

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #494646;
  font-weight: 400 !important;
  font-size: 16px !important;
  outline: 0;
}

a {
  color: #013e7f;
  text-decoration: none !important;
  font-weight: 400 !important;
}

a:hover {
  color: #717174;
  text-decoration: none !important;
  transition: all 200ms linear;
}

.brand-blue-text {
  color: #013e7e !important;
}

.brand-grey-text {
  color: #3c3933 !important;
}

.white-text {
  color: #ffffff !important;
}

.brand-blue-bg {
  background-color: #013e7f;
}

.hr {
  border-top: 1px solid #cccccc;
  height: 1px;
  margin: 20px 0px 36px 0px;
}
p {
  color: #494646 !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  outline: 0;
}
.o-button{
    color: #ffffff !important;
    border-color: #013e7e !important;
    font-size: 15px !important;
    line-height: 60px !important;
    background-color: #013e7e !important;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    text-transform: uppercase !important;
    border-width: 1px !important;
    padding: 15px 40px !important;
    letter-spacing: 1px !important;
}

.o-button:hover{
  background-color: #be953f !important;
  color: #ffffff !important;
}

@media (min-width: 992px) {
  .container {
    min-width: 1080px;
  }

  .nav-menu a {
    padding: 10px !important;
  }
  
}

@media (max-width: 768px) {
  .o-button{
    padding: 8px 20px !important;
    line-height: 35px !important;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #01b1d7;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #013e7f;
  color: #fff;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #013e7f;
  padding: 5px 0;
  font-size: 13px;
  color: #ffffff;
}

#topbar .contact-info a {
  line-height: 1;
  color: #ffffff !important;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #01b1d7 !important;
}

#topbar .contact-info i {
  color: #01b1d7;
  padding: 4px;
}

#topbar .contact-info .phone-icon {
  padding-left: 20px;
  margin-left: 20px;
}

#topbar .social-links a {
  color: #ffffff;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
  border-left: 1px solid #e9e9e9;
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
}

#header.header-scrolled {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  letter-spacing: 1px;
}

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

#header .logo h1 a span,
#header .logo h1 a:hover span {
  color: #01b1d7 !important;
}

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

@media (max-width: 768px) {
  #header .logo img {
    max-height: 36px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #013e7f;
  padding: 16px 10px 16px 10px;
  transition: 0.3s;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.4px;
}

.nav-menu a:hover,
.nav-menu .active > a,
.nav-menu li:hover > a {
  color: #01b1d7;
  text-decoration: none;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(180% - 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: rgba(0, 35, 76, 0.8);
  transition: ease all 0.1s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 200px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 11px;
  
  text-transform: uppercase;
  color: #ffffff;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active > a,
.nav-menu .drop-down ul li:hover > a {
  color: #01b1d7;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }

  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }

  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 10px !important;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #354144;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #354144;
  padding: 10px 20px;
  
  outline: none;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #01b1d7;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(31, 38, 39, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 77vh;
  background-color: rgba(0, 0, 0, 0.99);
  overflow: hidden;
  position: relative;
  padding: 0;
}

#hero .carousel-item {
  width: 100%;
  height: 79vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.11);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .carousel-content {
  text-align: center;
  padding-top: 20%;
}

#hero h2 {
  color: #013e7f;
  font-size: 42px;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 40%);
  font-weight: 400;
  text-transform: uppercase;
}

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

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-left,
#hero .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

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

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

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

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .carousel-indicators li {
  display: none;
  cursor: pointer;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 4px;
  transition: ease-in;
  opacity: 0.7;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background-color: #01b1d7;
}

#hero .btn-get-started {
  
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 22px;
  border-radius: 16px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff !important;
  background: #013e7f;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

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

@media (max-width: 768px) {
  #hero {
    height: 40vh;
  }

  #hero .carousel-item {
    height: 40vh;
  }

  #hero .carousel-content {
    padding-top: 36%;
  }

  #hero h2 {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

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

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

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

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #354144;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #f3f5f5;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  section {
    padding: 36px 0px;
  }

  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 21px 0 18px 0;
  background: #717174;
  min-height: 40px;
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}

.breadcrumbs h2 {
  font-size: 20px;
  color: #ffffff !important;
}

.breadcrumbs a {
  color: #01b1d7 !important;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumbs a:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

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

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

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

/* internal page */
.our-doctors-ph {
  background-image: url("../img/backgrounds/our-doctors.jpg");
  background-position: right 30% top 35%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.dr-rupan-trikha {
  background-image: url("../img/backgrounds/dr-rupan-trikha.jpg");
  background-position: right 30% top 45%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.dr-chirag-patel {
  background-image: url("../img/backgrounds/dr-chirag-patel.jpg");
  background-position: right 30% top 53%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.dr-sana-idrees {
  background-image: url("../img/backgrounds/dr-sana-idrees.jpg");
  background-position: right 30% top 53%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.about-us-ph {
  background-image: url("../img/backgrounds/about-us.jpg");
  background-position: right 30% top 45%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.facilities-ph {
  background-image: url('../img/backgrounds/facilities.jpg');
  background-position: right 30% top 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.diseases-and-conditions-ph {
  background-image: url('../img/backgrounds/diseases-and-conditions.jpg');
  background-position: right 30% top 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.central-serous-retinopathy-ph {
  background-image: url('../img/backgrounds/central-serous-retinopathy.jpg');
  background-position: right 30% top 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.choroidal-melanoma-ph {
  background-image: url('../img/backgrounds/choroidal-melanoma.jpg');
  background-position: right 30% top 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.choroidal-nevus-ph {
  background-image: url('../img/backgrounds/choroidal-nevus.jpg');
  background-position: right 30% top 14%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.diabetic-macular-edema-ph {
  background-image: url('../img/backgrounds/diabetic-macular-edema.jpg');
  background-position: right 30% top 48%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.diabetic-retinopathy-ph {
  background-image: url('../img/backgrounds/diabetic-retinopathy.jpg');
  background-position: right 30% top 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.flashes-and-floaters-ph {
  background-image: url('../img/backgrounds/flashes-and-floaters.jpg');
  background-position: right 30% top 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.lattice-degeneration-ph {
  background-image: url('../img/backgrounds/lattice-degeneration.jpg');
  background-position: right 30% top 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.macular-degeneration-ph {
  background-image: url('../img/backgrounds/macular-degeneration.jpg');
  background-position: right 30% top 10%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.macular-hole-ph {
  background-image: url('../img/backgrounds/macular-hole.jpg');
  background-position: right 30% top 25%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.macular-pucker-ph {
  background-image: url('../img/backgrounds/macular-pucker.jpg');
  background-position: right 30% top 30%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.pars-planitis-ph {
  background-image: url('../img/backgrounds/pars-planitis.jpg');
  background-position: right 30% top 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.retinal-detachment-ph {
  background-image: url('../img/backgrounds/retinal-detachment.jpg');
  background-position: right 30% top 99%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.retinal-tear-ph {
  background-image: url('../img/backgrounds/retinal-tear.jpg');
  background-position: right 30% top 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.retinal-vein-occlusion-ph {
  background-image: url('../img/backgrounds/retinal-vein-occlusion.jpg');
  background-position: right 30% top 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.retinoschisis-ph {
  background-image: url('../img/backgrounds/retinoschisis.jpg');
  background-position: right 30% top 40%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.patient-education-ph {
  background-image: url('../img/backgrounds/patient-education.jpg');
  background-position: right 30% top 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}
.before-your-visit-ph{
  background-image: url('../img/backgrounds/before-your-visit.jpg');
  background-position: right 30% top 32%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.helpful-links-ph{
  background-image: url('../img/backgrounds/helpful-links.jpg');
  background-position: right 30% top 22%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.testimonials-ph{
  background-image: url('../img/backgrounds/testimonials.jpg');
  background-position: right 30% top 38%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.referring-doctors-ph{
  background-image: url('../img/backgrounds/referring-doctors.jpg');
  background-position: right 30% top 52%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.contact-us-ph {
  background-image: url('../img/backgrounds/contact-us.jpg');
  background-position: right 30% top 32%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

.terms-and-conditions-ph {
  background-image: url('../img/backgrounds/terms-and-conditions.jpg');
  background-position: right 30% top 10%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}
.sitemap-ph {
  background-image: url('../img/backgrounds/sitemap.jpg');
  background-position: right 30% top 35%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.51);
}

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

  .breadcrumbs ol {
    display: block;
  }

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about .content h3 {
  line-height: 25px;
  font-size: 17px;
}

.about .content p {
  font-weight: 400;
}

.about .btn-about {
  
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 22px;
  border-radius: 11px;
  transition: 0.5s;
  line-height: 1;
  margin: 5px 0px 16px 0px;
  color: #fff;
  background: #013e7f;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.about .btn-about:hover {
  background: #019cbe;
}

.about-int span {
  color: #DD272A;
  font-size: 18px;
}

/* internal page */
.about-int div:first-child { 
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; 
}

.about-int div:nth-child(2){
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; 
}

.about-int div:nth-child(3){
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s; 
}

.about-int h4 {
  color: #00254C;
  font-size: 18px;
  text-transform: capitalize;
}

.about-int p {
  font-size: 15px;
  padding-bottom: 21px;
}

.about-int img {
  border-radius: 11px;
}

.about-int-expertise {
  background-image: url('../img/backgrounds/home-facilities.png');
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-int-expertise .about-int-expertise-bg {
  content: '';
  background-color: rgba(0, 0, 0, 0.51);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9;
  min-height:inherit;
  /*min-height: 100vh;*/
  margin: -60px 0px;
  padding: 60px 0px;
}

.about-int-expertise .about-int-expertise-bg img {
  background-color: #013e7f;
  color: #ffffff;
  margin-bottom: 28px;
  border-radius: 25px;
}

.about-int-expertise h1 {
  margin-bottom: 30px;
}
.about-int-expertise i{
  font-style: normal !important;
  display: block;
  padding-bottom: 11px;
  margin-bottom: 25px;
}

.about-int-expertise i a {
  padding-bottom: 11px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 20px;
}

.about-int-expertise i a:hover {
  color: #019cbe !important;
  text-decoration: none !important;
}

.about-int-expertise i a span {
  background-color: #ffffff;
  border-radius: 50%;
  margin-right: 11px;
  padding: 9px 11px;
  font-size: 16px;
  color: #013e7f;
}

.about-int-expertise i a:hover span {
  background-color: #013e7f;
  color: #ffffff;
  transition: 0.2s;
}

.about-int-expertise .btn-about {
  
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 22px;
  border-radius: 11px;
  transition: 0.5s;
  line-height: 1;
  margin: 16px 0px;
  color: #fff;
  background: #019cbe;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.about-int-expertise .btn-about:hover {
  background: #013e7f;
}

@media (max-width: 768px) {
  .about .content h2 {
    font-size: 36px;
    line-height: 36px;
  }
}

/*--------------------------------------------------------------
# Facilities
--------------------------------------------------------------*/
.facilities {
  background-image: url("../img/backgrounds/home-facilities.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  margin: 60px 0px;
}

.facilities .facilities-bg {
  content: "";
  background-color: rgba(0, 0, 0, 0.51);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9;
  /*min-height: 100vh;*/
  margin: -60px 0px;
  padding: 60px 0px;
}

.facilities h1 {
  font-size: 30px;
  margin-bottom: 60px;
  color: #ffffff;
}

.facilities h6 {
  padding-bottom: 25px;
  display: block;
  margin: 0px 0px 36px 0px !important;
}

.facilities i {
  border-radius: 50%;
  background-color: rgba(1, 62, 126, 0.99);
  padding: 16px 18px;
  font-size: 36px;
  color: #ffffff;
}

.facilities span {
  font-size: 28px;
  margin: 20px;
  color: #ffffff;
}

.facilities .btn-facilities {
  
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 22px;
  border-radius: 11px;
  transition: 0.5s;
  line-height: 1;
  margin: 5px 0px 16px 80px;
  color: #fff;
  background: #019cbe;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.facilities .btn-facilities:hover {
  background: #013e7f;
}

.facilities img {
  padding: 0px 0px 25px 0px;
}

/* internal page */
.facilities-int div:first-child { 
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; 
}

.facilities-int div:nth-child(2){
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; 
}

.facilities-int div:nth-child(3){
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s; 
}

.facilities-int {
  background-color: #f5f5f5;
}

.facilities-int-img1 {
  background-image: url('../img/facilities/facilities-7.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 350px;
  min-width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
}

.facilities-int-img2 {
  background-image: url('../img/facilities/facilities-5.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 350px;
  min-width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
}

.facilities-int-img3 {
  background-image: url('../img/facilities/facilities-4.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 350px;
  min-width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
}

.facilities-int-img4 {
  background-image: url('../img/facilities/facilities-3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 350px;
  min-width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
}

.facilities-int-img5 {
  background-image: url('../img/facilities/facilities-8.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 350px;
  min-width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .facilities h1 {
    font-size: 24px;
  }

  .facilities h6 {
    padding-bottom: 1px;
    display: block;
  }

  .facilities i {
    padding: 16px;
    font-size: 20px;
    color: #ffffff;
  }

  .facilities span {
    font-size: 18px;
    font-weight: 500;
    margin: 10px 20px;
    color: #ffffff;
  }

  .facilities .btn-facilities {
    margin-bottom: 36px;
  }
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta h1 {
  font-size: 30px !important;
  
  margin-bottom: 20px !important;
  color: #000000;
}

.cta h2 {
  font-size: 18px !important;
  
  margin-top: 20px !important;
  color: #000000;
}

.cta .btn-cta {
  
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 22px;
  border-radius: 11px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  background: #013e7f;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.cta .btn-cta:hover {
  background: #019cbe;
  text-decoration: none !important;
}

.cta a {
  margin-right: 20px;
}

.cta a:hover {
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .cta h1 {
    font-size: 20px !important;
  }

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

  .cta h2 span {
    display: block !important;
    margin-bottom: 11px !important;
  }
}

/*--------------------------------------------------------------
# Our Doctors
--------------------------------------------------------------*/
.our-doctors a {
  color: #ffffff !important;
  font-size: 15px !important;
}
.our-doctors img {
  box-shadow: 0 0 5px rgb(0 0 0 / 20%);
  padding: 3px;
  margin-bottom: 16px;
}

.our-doctors h3 {
  font-size: 22px !important;
  line-height: 32px;
  font-weight: 400 !important;
  letter-spacing: 1px;
  text-transform: uppercase !important;
}
.separator.small {
  background-color: #303030;
  height: 2px;
  position: relative;
  width: 22px;
  display: block;
  margin: 0px auto;
  text-align: center;
}
/*
.our-doctors img {
  border-radius: 50%;
  background-color: rgba(1, 62, 127, 0.88);
  border: 7px solid #013e7f;
  width: 250px !important;
  height: 250px !important;
  margin-bottom: 27px;
  z-index: 9;
  position: relative;
}

.our-doctors span {
  border-radius: 50%;
  background-color: rgba(14, 95, 182, 0.8);
  width: 200px !important;
  height: 200px !important;
  margin-left: -182px;
  margin-top: 28px;
  z-index: 2;
  position: absolute;
}
*/

.our-doctors h1 {
  font-size: 36px;
  margin: 00px 0px 29px 0px;
}

.our-doctors p {
  font-size: 16px;
  margin: 20px 0px;
}

.our-doctors .btn-meet {
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 22px;
  border-radius: 11px;
  transition: 0.5s;
  line-height: 1;
  margin: 5px 0px 16px 0px;
  color: #fff;
  background: #013e7f;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.our-doctors .btn-meet:hover {
  background: #019cbe;
}

@media (max-width: 768px) {
  .our-doctors .btn-meet {
    margin-bottom: 43px;
  }
}

/* internal page */
.our-doctors-int div:first-child { 
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; 
}

.our-doctors-int div:nth-child(2){
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; 
}

.our-doctors-int div:nth-child(3){
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s; 
}

.our-doctors-int {
  font-size: 15px;
  line-height: 1.65em !important;
}

.our-doctors-int img {
  box-shadow: 0 0 5px rgb(0 0 0 / 20%);
  padding: 3px;
}
/*
  .our-doctors-int img {
  border-radius: 50%;
  background-color: rgba(1, 62, 127, 0.88);
  border: 11px solid #013e7f;
  margin-bottom: 27px;
  z-index: 9;
  position: relative;
  width: 88%;
}

.our-doctors-int span {
  border-radius: 50%;
  background-color: rgba(14, 95, 182, 0.8);
  width: 300px !important;
  height: 300px !important;
  margin-left: -275px;
  margin-top: 77px;
  z-index: 2;
  position: absolute;
}
*/
.our-doctors-int h1 {
  font-size: 36px;
  margin: 00px 0px 20px 0px;
}

.our-doctors-int h6 {
  font-size: 17px;
  font-weight: 400;
  margin: 00px 0px 25px 0px;
  line-height: 1.35em;
}

.our-doctors-int h4 {
  font-size: 24px;
  
  margin: 00px 0px 16px 0px;
}

.our-doctors-int h4 i {
  font-size: 27px;
  color: #000000;
}

.our-doctors-int em {
  font-size: 20px;
  margin: 10px 00px 0px 9px;
  font-style: normal !important;
}

.our-doctors-int ol li {
  font-size: 15px;
  line-height: 1.65em;
  padding-bottom: 9px;
}

.our-doctors-int ul li {
  font-size: 15px;
  line-height: 1.65em;
  padding-bottom: 9px;
}

.our-doctors-int ul li i {
  font-style: italic;
}

.our-doctors-int .bottom-hr {
  border-bottom: 1px dotted #000000;
  padding: 29px 15px 18px 15px;
}

.our-doctors-int .bottom-hr-last {
  padding: 29px 15px 0px 15px;
}

.div-bot {
  padding-bottom: 18px;
}

.others-doctors {
  background-color: rgba(1, 62, 127, 0.15);
  border-radius: 16px;
  border: 1px solid rgb(1, 62, 127);
  padding: 16px;
  margin-bottom: 70px;
}

.others-doctors img {
  box-shadow: 0 0 5px rgb(0 0 0 / 20%);
  padding: 3px;
  margin-bottom: 20px;
  z-index: 9;
  position: relative;
  width: 96%;
}

/*
.others-doctors img {
  border-radius: 50%;
  background-color: rgba(1, 62, 127, 0.88);
  border: 7px solid #013e7f;
  margin-bottom: 20px;
  z-index: 9;
  position: relative;
  width: 96%;
}
*/
.others-doctors h3 a {
  color: #013e7f;
}

.others-doctors h3 a:hover {
  text-decoration: none !important;
}

.others-doctors .btn-meet {
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 22px;
  border-radius: 11px;
  transition: 0.5s;
  line-height: 1;
  margin: 5px 0px 16px 0px;
  color: #fff;
  background: #013e7f;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.others-doctors .btn-meet:hover {
  background: #019cbe;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .our-doctors-int h1 {
    font-size: 29px;
  }

  .others-doctors {
    text-align: center !important;
    width: 90% !important;
    margin: 0px auto;
    margin-bottom: 36px !important;
  }

  .others-doctors img {
    width: 50% !important;
  }

  /*.our-doctors-int span {
    border-radius: 50%;
    background-color: rgba(14, 95, 182, 0.8);
    width: 200px !important;
    height: 200px !important;
    margin-left: -182px;
    margin-top: 7%;
    z-index: 2;
    position: absolute;
  }*/

  .others-doctors .btn-meet {
    margin-bottom: 36px;
  }

  .others-doctors .col-lg-6 {
    margin-bottom: 36px !important;
  }

  
}

/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/
.testimonial {
  background-image: url("../img/backgrounds/home-testimonial.png");
  background-size: cover;
  background-position: right;
  background-repeat: no-repeat;
  z-index: 1;
}

.testimonial i {
  font-size: 15px;
  color: yellow;
  
  padding: 0px 3px;
}

.testimonial h1 {
  font-size: 36px;
  margin: 20px 0px 29px 0px;
  color: #ffffff;
}

.testimonial p {
  font-size: 14px;
  color: #ffffff !important;
  padding: 0% 11%;
}

.testimonial .btn-testimonial {
  
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 22px;
  border-radius: 11px;
  transition: 0.5s;
  line-height: 1;
  margin: 36px 0px 16px 0px;
  color: #013e7f;
  background: #ffffff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.testimonial .btn-testimonial:hover {
  background: #019cbe;
}

/* internal */

.testimonial-int i {
  font-size: 18px;
  color: yellow;
  text-shadow: 0px 0px 1px #000000;
  font-weight: 900;
  padding: 0px 3px;
}

.testimonial-int h1 {
  font-size: 36px;
  margin: 20px 0px 36px 0px;
}
.testimonial-int .box{
  padding: 16px 20px;
  border-radius: 16px;
  background: url('../img/testimonial-quote.png') no-repeat top right;
  margin-bottom: 30px;
  line-height: 1.55em;
}

.testimonial-int .light-grey-box{
  background-color: #f5f5f5;
}
.testimonial-int .dark-grey-box{
  background-color: #D9D9D9;
}
@media (max-width: 768px) {
  .testimonial-int h1 {
    font-size: 30px;
  }
}
/*--------------------------------------------------------------
# Patients Education
--------------------------------------------------------------*/
.patients h1 {
  font-size: 38px;
  margin-bottom: 60px;
  color: #000000;
}

.patients h6 {
  font-size: 18px;
  color: #000000;
  margin-bottom: 20px;
}

.patients i {
  border-radius: 50%;
  background-color: rgba(1, 62, 127, 0.99);
  padding: 16px 18px;
  font-size: 36px;
  font-weight: 200;
  color: #ffffff;
  width: 75px;
  margin-bottom: 100px;
}

.patients p {
  font-size: 20px;
  color: #013e7f;
  padding-left: 85px;
  margin-top: -45px;
  transition: 0.5s;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.patients p:hover {
  color: #019cbe;
  transition: 0.5s;
}

.patients .btn-patients {
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 22px;
  border-radius: 11px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  background: #019cbe;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.patients .btn-patients:hover {
  background: #013e7f;
}


/*--------------------------------------------------------------
# Patient Education
--------------------------------------------------------------*/
.patient-education-int .patient-education-int-bg {
  content: '';
  background-color: rgba(0, 0, 0, 0.50);
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 9;
  border-radius: 16px;
  min-height: 350px;
  min-width: 100%;
  padding: 30px 50px !important;
  text-align: center;
  color: #ffffff;
  transition: 0.5s;
}

.patient-education-int .patient-education-int-bg:hover {
  content: '';
  background-color: rgba(0, 0, 0, 0.75);
  transition: 0.5s;
}

.patient-education-int-img1 {
  background-image: url('../img/patient-education/patient-education-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 250px;
  min-width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
}

.patient-education-int-img2 {
  background-image: url('../img/patient-education/patient-education-2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 250px;
  min-width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
}

.patient-education-int-img3 {
  background-image: url('../img/patient-education/patient-education-3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 250px;
  min-width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
}

.patient-education-int-img4 {
  background-image: url('../img/patient-education/patient-education-4.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 250px;
  min-width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
}
.patient-education-int h1{
  font-size: 40px;
  margin-bottom: 29px;
  padding-top:16%;
}

.patient-education-int .btn-patient-education-int {
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 22px;
  border-radius: 11px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  background: #019cbe;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 20px;
}

.patient-education-int .btn-patient-education-int:hover {
  background: #013e7f;
}
/*--------------------------------------------------------------
# Before Your Visit
--------------------------------------------------------------*/
.before-your-visit img {
  border-radius: 16px;
  margin-bottom: 16px;
}

.before-your-visit h1 {
  font-size: 25px !important;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000000;
}

.before-your-visit p {
  font-size: 15px;
}

.before-your-visit .btn-before {
  
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 22px;
  border-radius: 11px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  margin-top: 11px;
  background: #013e7f;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.before-your-visit .btn-before:hover {
  background: #019cbe;
}


/*--------------------------------------------------------------
# Diseases & Conditions
--------------------------------------------------------------*/
.diseases-and-conditions a {
  margin-bottom: 45px;
}
.diseases-and-conditions a:hover h5{
  color: #000000 !important;
}
.diseases-and-conditions iframe {
  border-radius: 16px;
  margin-bottom: 16px;
  min-height: 310px;
}

.diseases-and-conditions img {
  border-radius: 16px;
  margin-bottom: 10px;
}

.diseases-and-conditions h5 {
  color: #013e7f !important;
  transition: 0.5s;
}
.diseases-and-conditions h5:hover {
  color: #000000 !important;
  transition: 0.5s;
}
.diseases-and-conditions h5{
  font-size: 20px !important;
  font-weight: 600;
  margin: 0px 0px 16px 0px;
  color: #000000;
}

.diseases-and-conditions p{
  font-size: 14px !important;
  font-weight: 400;
  min-height: 70px;
  color: #000000;
}

.diseases-and-conditions .btn-diseases-and-conditions {
  
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 22px 11px 22px;
  border-radius: 11px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  background: #013e7f;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.diseases-and-conditions .btn-diseases-and-conditions:hover {
  background: #019cbe;
}

/* internal page */
.diseases-and-conditions-int img {
  margin-bottom: 25px;
  border-radius: 16px;
}

.diseases-and-conditions-int iframe {
  border-radius: 16px;
  min-height: 425px;
  margin-bottom: 16px;
  background-color: #354144;
}

.diseases-and-conditions-int h1 {
  margin-bottom: 11px;
  font-size: 36px;
}

.diseases-and-conditions-int h2 {
  margin: 30px 0px 11px;
  font-size: 28px;
}

.diseases-and-conditions-int p {
  margin-bottom: 11px;
  font-size: 15px;
}

.diseases-and-conditions-int .aside{
  border-radius: 16px;
  background-color: #fafafa;
  padding: 20px 25px;
  border-left: 1px solid #cccccc;
}

.diseases-and-conditions-int h3 {
  margin-bottom: 18px;
  font-size: 22px;
}

.diseases-and-conditions-int li {
  margin-bottom: 7px;
  margin-left: -11px;
  font-size: 16px !important;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .diseases-and-conditions iframe {
    min-height: auto !important;
  }
  .diseases-and-conditions-int iframe {
    min-height: 200px !important;
  }
  .diseases-and-conditions-int h1 {
    font-size: 30px;
  }
  .diseases-and-conditions-int h2 {
    font-size: 24px;
  }
  .diseases-and-conditions p{
    min-height: 30px !important;
  }
  .diseases-and-conditions-int .aside{
    margin-top: 30px;
    border-bottom: 1px solid #cccccc;
    border-left: 0px solid #cccccc;
  }
  
}
/*--------------------------------------------------------------
# Helpful Links
--------------------------------------------------------------*/
.helpful-links-img1 {
  background-image: url('../img/facilities/facilities-8.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 340px;
  min-width: 100%;
  border-radius: 16px;
  margin-bottom: 25px;
}

.helpful-links h1 {
  font-size: 30px !important;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000000;
}

.helpful-links p {
  font-size: 15px;
}


/*--------------------------------------------------------------
# Referring Doctors
--------------------------------------------------------------*/
.referring-doctors img{
  border-radius: 16px;
  margin-bottom: 20px;
}

.referring-doctors h5 {
  font-weight: 600;
  font-size: 20px;
  margin: 0px 0px 20px 0px;
}

.referring-doctors p {
  font-size: 15px !important;
}

.referring-doctors h3 {
  font-weight: 600;
  font-size: 24px;
  margin: 20px 0px 20px 0px;
}

.referring-doctors li{
  font-size: 15px !important;
  line-height: 1.65em;
}

.referring-doctors .btn-referring-doctors {
  
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 22px;
  border-radius: 11px;
  transition: 0.5s;
  line-height: 1;
  margin-top: 11px;
  color: #fff;
  background: #013e7f;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.referring-doctors .btn-referring-doctors:hover {
  background: #019cbe;
}

/*--------------------------------------------------------------
# Contact Us
--------------------------------------------------------------*/
.contact-us-int a {
  font-weight: 600;
}

.contact-us-int .box {
  border-radius: 11px;
  padding: 20px;
  border: 1px solid #354144;
}

@media (max-width: 768px) {
  .contact-us-int h1 {
      font-size: 30px !important;
  }

  .contact-us-int h4 {
      font-size: 20px !important;
  }

}


/*--------------------------------------------------------------
# Terms and Conditions
--------------------------------------------------------------*/
.terms-and-conditions h4 {
  
  font-size: 24px;
  line-height: 30px;
  margin-top: 20px;
  text-transform: uppercase;
}

.terms-and-conditions p {
  
  font-size: 15px;
}

/*--------------------------------------------------------------
# Sitemap
--------------------------------------------------------------*/
.sitemap h5 {
  font-weight: 600;
  font-size: 16px;
  line-height: 25px;
  margin: 4px 0px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 0 0 10px 0;
  background: #013e7f;
  color: #ffffff !important;
  font-size: 13px !important;
}

#footer .footer-logo {
  width: 53%;
  padding-bottom: 16px;
}

#footer .btn-visit {
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 9px 22px;
  border-radius: 11px;
  transition: 0.5s;
  line-height: 1;
  margin-top: 16px;
  color: #fff;
  background: #013e7f;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

#footer .btn-visit:hover {
  background: #01b1d7;
}

#footer .footer-top {
  border-bottom: 1px solid #354144;
  background-image: url("../img/backgrounds/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  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;
}

#footer .footer-top .footer-info p {
  font-size: 14px !important;
  line-height: 24px;
  margin-bottom: 0;
  color: #ffffff !important;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #354144;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-locations p{ 
  color: #ffffff !important;
  font-size: 14px !important;
}

#footer .footer-top .social-links a:hover {
  background: #01b1d7;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  text-transform: uppercase;
  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: #40dcfe;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 4px 0;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

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

#footer .footer-locations b {
  font-weight: 600;
}

#footer .footer-locations a {
  color: #fff;
  font-size: 500 !important;
}

#footer .footer-locations a:hover {
  color: #01b1d7;
}

#footer .copyright {
  text-align: center;
  padding-top: 10px;
}

#footer .copyright a {
  color: #fff;
  padding-left: 10px;
}

#footer .copyright a:hover {
  color: #01b1d7;
}

@media (max-width: 768px) {
  #footer .footer-top .footer-links {
    margin-bottom: 10px;
  }

  #footer .footer-logo {
    width: 90% !important;
  }

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

  #footer .copyright {
    padding-bottom: 10px;
  }

  #footer .copyright strong {
    display: block;
  }
}
