body{
    top: 0;
    overflow-x: hidden;
    margin: 0 auto;
	  background-color: #fff;
    position: relative;
    max-width: 100%;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #767676;
}
.container{
    width: 100%;
    max-width: 1200px;
}
.container-fluid {
    width: 100%;
    padding: 0 50px;
}
a, a:hover, a:focus {
	text-decoration:none;
    outline:none;
    color: #2f3996;
    transition: color 0.3s ease;
}
b, strong {
    font-weight: 700;
}

img {
	max-width:100%;
	height: auto;
}

ol, ul{
    padding: 0;
    margin: 0;
}
ul li{
    list-style: none;
}

h1{
    font-size: 50px;
    line-height: 60px;
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: 20px;
}
h2{
    font-size: 40px;
    line-height: 50px;
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: 20px;
}
h3{
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: 20px;
}
h4{
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: 20px;
}
h5{
    font-size:19px;
    line-height: 26px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 20px;
}
h6{
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    color: #2f2f2f;
    margin-bottom: 20px;
}
p{
    font-size: 16px;
    line-height:28px;
    font-weight: 400;
    color: #767676;
    margin-bottom: 30px;
}

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

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

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

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

/* btns */
.common-btn,
.appointment-btn {
 text-transform: capitalize;
  position: relative;
  font-size: 15px;
  font-weight: 700;
  min-width: 170px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
  border: none;
  border-radius: 60px;
  overflow: hidden;
  transition: all 0.3s linear;
  color: #fff;
  background-color: #2f3996;
}
.common-btn:hover,
.appointment-btn:hover{
	color: #fff;
	transition: all 0.3s linear;
	background-color: #50b9e2;
}
.appointment-btn svg {
    margin-right: 5px; 
}
.appointment-btn  {
    margin-left: 30px; 
}
/* btns */

/* header top */

.header-topbar{
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    background-color: #2f3996;
}
.header-topbar .contact-list {
    display: flex;
    align-items: center;
}
.header-topbar .contact-list li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    margin-right: 20px;
  }
  .header-topbar .contact-list li svg {
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
  }
  .header-topbar .contact-list li a:not(.btn) {
    color: #f4f4f4;
  }
  .make-appointment-btn {
    position: relative;
    z-index: 151;
    height: 50px;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 10px 10px 0 0;
    color: #2f3996;
    background-color: #fff;
    box-shadow: none;
    border: none;
  }
  .make-appointment-btn::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .make-appointment-btn.active::after {
    content: "\f077";
  }
 .social-icons li {
    margin-right: 10px;
 }
 .social-icons li:last-child {
    margin-right: 0;
 }
 .social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.social-icons li a {
    position: relative;
    z-index: 2;
    display: block;
    width: 23px;
    height: 23px;
    line-height: 23px;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    color: #2f3996;
    background-color: #fff;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  .social-icons li:hover a {
    background-color: #50b9e2;
}
.make-appointment-box {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    width: 310px;
    padding: 40px;
    border-radius: 0 0 6px 6px;
    background-color: #fff;
    box-shadow: 0 5px 83px 0 rgba(9,29,62,.15);
    transition: 0.3s ease;
    transform: translateY(20px);
    text-align: center;
}
.make-appointment-box.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.make-appointment-box .emergency-icon svg {
  font-size: 50px !important;
  line-height: 1;
  color: #2f3996 !important;  
  text-align: center;
  margin: 0 !important;
  margin-bottom: 15px !important;
}
.make-appointment-box a.phone-number {
  font-size: 22px;
  font-weight: 600;
  margin-bottom:10px;
  color: #2f3996 !important;
  display: block;
}
.make-appointment-box a.phone-number svg {
  color: #2f3996 !important;
  font-size: 24px !important;
}
.make-appointment-box a.phone-number:hover,
.make-appointment-box a.phone-number:hover svg {
  color: #2f3996 !important;
}
.make-appointment-box p  {
  color: #767676;
  font-size: 13px;
  line-height: 1.75;
  text-align: center
}
.make-appointment-box .contact-btn {
  padding-top: 24px;
  color: #2f3996 !important;
  font-size: 15px;
  font-weight: 700;
  text-transform: capitalize;
  position: relative;
  transition: all 0.3s linear;
}
.make-appointment-box .contact-btn svg {
  margin-left: 7px;
  color: #2f3996 !important;
  font-size: 15px !important;
}
.make-appointment-box .contact-btn:hover,
.make-appointment-box .contact-btn:hover svg {
  color: #2f3996 !important;
}
/* header top */

/* header */
.outer-menu {
    padding: 0;
    height: 100px;
    max-height: 100px;
    background-color: #fff;
}
.outer-menu ul li{
    margin-right: 29px;
    position: relative;
}
.outer-menu ul li a{
    font-size: 15px;
    font-weight: 700;
    text-transform: capitalize;
    display: block;
    position: relative;
    color: #212121;
    line-height: 100px;
    letter-spacing: .4px;
    padding-right: 15px;
}
.navbar .dropdown::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    border: none;
    vertical-align: middle;
    margin-left: 0;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
.outer-menu ul li a:hover, .outer-menu ul li a.active{
    color: #2f3996;
}
.outer-menu ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2f3996;
    transition: 0.5s ease;
  }
  .outer-menu ul li a.active::before,
  .outer-menu ul li a:hover::before {
    width: 100%;
  }
.mobile-menu {
    display: none;
}
.outer-menu img.logo {
  max-height: 70px;
  width: auto;
}
.navbar-nav {
    margin-left: auto;
}
.gallery-wrap {
    position: relative;
    margin-left: 30px;
    display: flex;
    align-items: center;
  }
.gallery-trigger .menu-lines {
    position: relative;
    width: 25px;
    height: 14px;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
  }
  .gallery-trigger .menu-lines::before, .gallery-trigger .menu-lines::after {
    content: '';
    position: absolute;
    right: 0;
    width: 14px;
    height: 2px;
    display: inline-block;
    background-color: #2f3996;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .gallery-trigger .menu-lines::before {
    top: 0;
  }
  .gallery-trigger .menu-lines::after {
    bottom: 0;
  }
  .gallery-trigger .menu-lines span {
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 2px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #2f3996;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .gallery-trigger a {
    color: #282d30;
    font-size: 15px;
    font-weight: 700;
  }  
  .gallery-trigger a:hover {
    color: #2f3996;
  }
  .outer-menu ul li .submenu,
  .gallery-items  {
    display: block;
    position: absolute;
    left: 0;
    right: auto;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    transform: translateY(10px);
    width: auto;
    min-width: 235px;
    box-shadow: 0 2px 6px 0 rgba(40,40,40,.1);
    padding: 25px 0 23px;
    border-radius: 0 0 6px 6px;
    background-color: #fff;
    margin: 0;
    border: none;
  }
  .outer-menu ul li.dropdown:hover > .submenu,
  .gallery-items.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .outer-menu ul li .submenu li,
  .gallery-items li {
    padding: 0 40px;
    margin-right: 0;
  }
  .outer-menu ul li .submenu li a,
  .gallery-items li a {
    font-size: 14px;
    color: #2f3996;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 36px !important;
    white-space: nowrap;
    position: relative;
  }
  .gallery-items li a {
      font-size: 14px !important;
      color: #2f3996 !important;
      font-weight: 400 !important;
      line-height: 36px !important;
    }
  .outer-menu ul li .submenu li a::after,
  .gallery-items li a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 10px;
    height: 2px;
    opacity: 0;
    background-color: #2f3996;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .outer-menu ul li .submenu li a::before,
  .gallery-items li a::before {
    display: none;
  }
  .outer-menu ul li .submenu li a:hover,
  .gallery-items li a:hover {
    color: #2f3996;
  }
  .outer-menu ul li .submenu li a:hover::after,
  .gallery-items li a:hover:after {
    opacity: 1;
    left: -15px;
  }
  .gallery-items {
    top: 100%;
    display: block;
    min-width: 220px;
    width: 220px;
    box-shadow: 0 5px 83px 0 rgba(9,29,62,.15) !important;
  }
    .gallery-trigger {
      position: relative;
      display: flex;
      align-items: center;
      font-size: 15px;
      font-weight: 700;
      height: 100px;
      color: #2f3996;
      transition: 0.3s ease;
    }
    .is-sticky {
      position: fixed;
      top: 0;
      right: 0;
      left: 0;
      width: 100%;
      z-index: 1040;
      border-bottom: 0 !important;
      height: 80px !important;
      max-height: 80px !important;
      background-color: #ffffff !important;
      -webkit-box-shadow: 0 3px 4px rgba(0,0,0,.07);
      box-shadow: 0 3px 4px rgba(0,0,0,.07);
      -webkit-animation: translateHeader 0.8s;
      animation: translateHeader 0.8s;
    }
    @keyframes translateHeader {
      0% {
        opacity:0;
        -webkit-transform:translateY(-100%);
        transform:translateY(-100%)
      }
      100% {
        opacity:1;
        -webkit-transform:translateY(0);
        transform:translateY(0)
      }
    }
    @keyframes headerAnimation {
      0% {
        opacity:0;
        -webkit-transform:translateY(-100%);
        transform:translateY(-100%)
      }
      100% {
        opacity:1;
        -webkit-transform:translateY(0);
        transform:translateY(0)
      }
    }
    .is-sticky .logo {
      display: inline-block;
      width: 180px;
      margin-top: -6px;
    }
    .is-sticky.outer-menu ul li a {
      line-height: 80px;
    }
    .is-sticky .gallery-trigger {
      height: 80px;
    }
    @media (min-width: 992px) {
      .close-mobile-menu {
        display: none;
      }
      }
/* header */

/* inner banner */

.inner-banner {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
  min-height: 350px;
}
.inner-banner h1 {
  font-size: 40px;
  margin-bottom: 0 !important;
  line-height: 50px;
  position: absolute;
  transform: translate(0, -50%);
  top: 50%;
}

/* banner */

.banner {
    position: relative;
}
.banner-slider .slick-prev,
.banner-slider .slick-next {
    font-size: 0;
    width: 50px;
    height: 50px;
    text-shadow: none;
    outline: none;
    box-shadow: none;
    position: absolute;
    top: 50%;
    left: 20px;
    background-color:transparent;
    border: none;
    z-index: 5;
    transform: translate(0, -50%);
}
.banner-slider .slick-next {
  left: auto;
  right: 20px;
}
.banner-slider .slick-next::before  {
    content: "\f105";
    font-size: 50px;
    font-weight: 300;
    color: #2f3996;
    width: 50px;
    height: 100%;
    font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
  text-shadow: none;
    outline: none;
    box-shadow: none;
}
.banner-slider .slick-prev::before  {
    content: "\f104";
    font-size: 50px;
    font-weight: 300;
    color: #2f3996;
    width: 50px;
    height: 100%;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    text-shadow: none;
    outline: none;
    box-shadow: none;
}
.banner-slider .slick-next::before,
.banner-slider .slick-prev::before  {
    color: #2f3996;
}
.banner-slider {
  position: relative;
}

/* contact-info */


.contact-info {
    position: relative;
}
.contact-info .row {
    position: relative;
    z-index: 3;
    margin-left: 0;
    margin-right: 0;
    margin-top: -40px;
    overflow: hidden;
    border-radius: 10px;
  }
  .contact-info .row .col-md-4 {
    padding: 0;
  }
  .contact-info .contact-box {
    position: relative;
    padding: 45px;
    height: 100%;
    display: flex;
    background-color: #2f3996;
  }
  .contact-info .row .col-md-4:nth-child(2) .contact-box {
    background-color: #50b9e2;
  }
  .contact-info .contact-box .contact-icon {
    font-size: 46px;
    flex: 0 0 65px;
    max-width: 65px;
    color: #fff;
  }
  .contact-info .contact-box h5,
  .contact-info .contact-box p {
    color: #fff;
  }
  .contact-info .contact-box .common-btn {
    height: 42px;
    border: 1px solid #2f3996;
    background-color: #2f3996;
    color: #fff;
  }

  .contact-info .contact-box .common-btn svg  {
    margin-left: 5px;
  }
  .contact-info .contact-box .common-btn:hover {
    height: 42px;
   opacity: 0.8;
  }
  .contact-info .contact-box .phone-number {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
  }
  .contact-info .contact-box .phone-number .icon {
    font-size: 12px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
    background-color: #fff;
    color: #2f3996;
    display: inline-block;
  }
  .contact-info .contact-box ul li  {
     display: flex;
     justify-content: space-between;
     padding-bottom: 10px;
     margin-bottom: 10px;
     border-bottom: 1px solid #dcdee2;
     font-size: 16px;
     color: #fff;
}
.contact-info .contact-box ul li:last-child  {
    border: none;
}

/*  about */

.about   {
    position: relative;
    padding: 40px 0 80px;
}
.about h2 {
    display: inline-block;
    margin-bottom: 40px;
    border-bottom: 1px solid #2f3996;
    padding-bottom: 15px;
    text-transform: uppercase;
    color: #2f3996;
}
.about-img img {
  width: 100%;
  height: auto;
  border-radius: 14px;
}
.about-main-doctor .about-img img {
  border-radius: 0;
}
.about .about-text {
    padding: 0 40px;
    position: relative;
}
.about .about-text p strong {
    font-weight: 600;
    position: relative;
    display: block;
}
.about .about-text p strong::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: -40px;
    width: 2px;
    background-color: #50b9e2;
}
.about-text .common-btn,
.doctor .common-btn  {
    background-color: transparent;
    border: 2px solid #2f3996;
    color: #2f3996;
}
.about-text .common-btn:hover,
.doctor .common-btn:hover  {
    background-color: #2f3996;
    color: #fff;
}
.about-main-doctor h6 {
  font-weight: normal;
  font-size: 16px;
}
.about-main-doctor h6 strong {
  display: block;
  font-size: 20px;
  margin-bottom: 5px;
}
.about-main-doctor ul li,
.doctor ul li {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #767676;
  margin-bottom: 10px;
  position: relative;
  list-style: none;
  display: inline-block;
  vertical-align: top;
  width: 49%;
  padding-right: 10px;
}
.about-main-doctor ul li svg,
.doctor ul li svg {
  margin-right: 10px;
  color: #2f3996;
}
.doctor ul li,
.doctor ul li svg {
  color: #fff;
}

/* why us */

.why-choose-us {
  position: relative;
  padding: 80px 0;
  background-color: #2f39960f;
}
.title-text {
  padding: 20px 0;
  border-top: #2f3996 solid 1px;
  border-bottom: #2f3996 solid 1px;
  margin-bottom: 20px;
}
.title-text p {
  margin: 0;
}
.why-choose-us h4 {
  padding: 12px 0;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 20px;
  color: #2f3996;
  margin: 0;
}
.why-us-image {
  position: absolute;
  bottom: 130px;
}
/* treatments */

.treatments {
    position: relative;
    padding: 110px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.treatments h3 {
    display: inline-block;
    text-align: center;
    border-bottom: 1px solid #2f3996;
    padding-bottom: 15px;
    text-transform: uppercase;
    font-size: 37px;
    color: #2f3996;
    margin: 0 auto;
}
.treatments h3 small {
    display: block;
    font-size: 15px;
    color: #2f3996;
    margin-bottom: 12px
}
.treatments-box  {
   padding: 0;
   background-color: #fff;
   box-shadow: 0 5px 13px 0 rgba(9,29,62,.05);
   margin: 15px;
   transition:all 0.3s ease;    
   overflow: hidden;
   border-radius: 10px;
   position: relative;
   text-align: left;
}
.treatments-box:hover  {
   box-shadow: 0 5px 13px 0 rgba(9,29,62,.15)
}
.treatments-box::before  {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background-color: #2f3996;
    transition: all 0.4s linear;
}
.treatments-box h6 {
    min-height: 30px;
    margin-bottom: 19px;
}
.treatments-box .common-btn { 
  background-color: transparent;
  border: 2px solid #2f3996;
  color: #2f3996;
  height: 50px;
}
.treatments-box .common-btn svg { 
    margin-left: 5px;
}
.treatments-box .common-btn:hover {
    background-color: #2f3996;
    color: #fff;
}
.treatments-icon {
  height: 210px;
  overflow: hidden;
}
.treatments-icon img { 
    width: 100% !important;
    height: auto; 
}
/*.treatments .slick-list {
    margin: -15px;
    overflow: visible;
  }*/
.treatments .slick-slider {
    padding: 60px 0 0;
}
.slick-dots li {
    display: inline-flex;
    position: relative;
    width: 10px;
    height: 10px;
    margin: 0 7px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .slick-dots li button {
    display: block;
    font-size: 0;
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background-color: #2f2f2f;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    box-shadow: none;
    border: none;
    outline: none;
  }
  .slick-dots li.slick-active button {
    background: #2f3996;
    box-shadow: 0 0 0 5px rgba(33,205,192,.15);
}  
.slick-dots {
    text-align: center;
    margin-top: 25px;
}
.treatments-text {
  padding: 30px;
}

/* doctor */

.doctor  {
    position: relative;
    padding: 100px 0 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.doctor::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 45, 48, 0.83);
  }   
  .doctor  .row {
    position: relative;
    z-index: 5;
  }  
  .doctor h2  {
    color: #fff;
    margin: 0;
} 
.doctor h5  {
    color: #fff;
    margin-top: 15px;
} 
.doctor p  {
    color: #fff;
    margin-bottom: 15px;
} 
.doctor .common-btn  {
    border-color: #fff;
    color: #fff;
} 

/* testimonials */

.testimonials  {
    position: relative;
    padding: 130px 0 100px
} 
.testimonials h2 {
  display: inline-block;
  border-bottom: 1px solid #2f3996;
  padding-bottom: 15px;
  text-transform: uppercase;
  color: #2f3996;
} 
.testimonials h5 {
  font-size: 19px;
  line-height: 28px;
  margin-bottom: 30px;
}
.testimonial-meta {
    padding-top: 10px;
    display: flex !important;
    align-items: center;
    transition: opacity 0.3s ease;
    opacity: 0.5;
}
.testimonial-meta.slick-current {
    opacity: 1;
    transition: opacity 0.3s ease;
}  
.testimonial-thumb  {
  position: relative;
  width: 65px !important;
  height: 65px;
  padding: 6px;
  margin-bottom: 0;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 50%;
  line-height: 65px;
}
.testimonial-meta.slick-current .testimonial-thumb {
    border: 2px solid #2f3996;
    background-color: #fff;
  }
  .testimonial-thumb img {
    display: block;
    border-radius: 50%;
    margin: auto;
    max-width: 117px;
  }
  .testimonial-meta.slick-current .testimonial-thumb::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f10d";
    position: absolute;
    top: -5px;
    left: -5px;
    font-size: 12px;
    opacity: 1;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    color: #2f3996;
    background-color: #fff;
    transition: all 0.4s ease;
}
.testimonial-meta h6 {
    font-size: 14px;
    margin-bottom: 4px;
    white-space: nowrap;
    font-weight: 700;
  }
  .testimonial-meta p {
    position: relative;
    z-index: 2;
    font-size: 13px;
    line-height: 1;
    margin-bottom: 0;
  }
  .testimonials .slider-with-navs .slick-dots  {
    display: none !important;
}

/* footer */

footer {
    position: relative;
    padding-top: 85px;
    background-color: #2f3996;
}
.footer-about {
    margin-top: 40px;
    max-width: 265px;
}
.footer-menu {
    margin-top: 40px;
}
.footer-about p {
    color: #f9f9f9 !important;
    font-size: 14px;
    line-height: 1.75;
  margin-bottom: 15px;
  margin-top: 30px;
  }
  .footer-appointment-btn {
    color:#fff;
    font-size: 15px;
  font-weight: 700;
  transition: all 0.3s linear;
  text-transform: capitalize;
  }
  .footer-appointment-btn {
    margin-left: 5px;
}
.footer-appointment-btn:hover {
    color: #f9f9f9 !important;
}
.footer-menu h4,
.footer-contact h4 {
    color: #fff;
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 30px;
    border-bottom: 1px solid #fff;
    padding-bottom: 15px;
  }
  .footer-menu ul li a {
    display: block;
    position: relative;
    color: #fff;
    font-size: 15px;
    margin-bottom: 11px;
}
.footer-menu ul li a svg {
    margin-right: 6px;
}
.footer-menu ul li a:hover {
    color: #50b9e2;
  }
  .footer-contact {
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
    border-radius: 15px;
    background-color: #fff;
  }
  .footer-contact::before {
    content: "\f2a0";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -30px;
    bottom: -15px;
    font-size: 170px;
    line-height: 1;
    color: rgba(40,59,106,.05);
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
    z-index: 0;
  }
  .footer-contact h4 {
    color: #2f3996;
    border-bottom: 1px solid #2f3996;
 }
 .footer-contact p {
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 0;
    color: #767676;
 }
 .footer-contact .phone-number,
 .footer-contact .email-address {
    margin: 8px 0 10px;
    font-size: 12px;
    color: #2f3996;
    font-weight: 700;
    display: block;
  }
  .footer-contact .phone-number svg,
 .footer-contact .email-address svg {
   margin-right: 6px;
 }
  .footer-contact .phone-number:hover,
  .footer-contact .email-address:hover {
    color: #767676;
 }
 .footer-contact .social-icons {
    margin-top: 15px;
}
 .footer-contact .social-icons li a {
    position: relative;
    z-index: 2;
    display: block;
    width: 23px;
    height: 23px;
    line-height: 23px;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    color: #fff;
    background-color: #2f3996;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  .footer-contact .social-icons li a:hover {
    background-color: #50b9e2;
  }
  .footer-contact::after {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 0;
    width: 3px;
    background-color: #50b9e2cc;
  }

  .footer-bottom  {
    position: relative;
    padding: 18px 0;    
    background-color: #50b9e2;
    margin-top: 60px;
  }
  .footer-bottom  p {
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 0;
}

.designed {
    text-align: right;
    color: #2f3996;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}
.designed a {
color: #fff;
font-weight: 600;
}
.floatingdiv {
  position: fixed;
  top: 45%;
  right: 10px;
  z-index: 9999;
  width: 45px;
  height: 100px;
}
.floatingwhatsapp {   
    background: linear-gradient(to right,#2f3996,#50b9e2);    
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 42px;
    border-radius: 50%;
    box-shadow: -8px 9px 5px -7px rgb(0 0 0 / 24%);
    display: block;
    margin-bottom: 10px;
  }
  .floatingwhatsapp img {
    width: 28px;
    height: auto;
  }
  .floatingcall {    
    background: linear-gradient(to right,#2f3996,#50b9e2);  
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 42px;
    border-radius: 50%;
    box-shadow: -8px 9px 5px -7px rgb(0 0 0 / 24%);
    color: #fff;
    font-size: 18px;
    display: block;
  }
  .floatingcall svg {
    color: #fff;
  }
  #scrollTopBtn {
    position: fixed;
    right: 10px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    opacity: 0;
    z-index: 1000;
    font-size: 18px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(to right,#2f3996,#50b9e2);  
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    border: none;
  }
  #scrollTopBtn.actived {
    right: 30px;
    opacity: 1;
  }

  /* about page */

.about-content  {
  padding-right: 6px;
}
.about-main-doctor .about-content  {
  padding-right: 0;
  padding-left: 30px;
}
.doctor-details h3 {
  display: inline-block;
  font-size: 37px;
  margin-bottom:40px;
  border-bottom: 1px solid #2f3996;
  padding-bottom: 15px;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
  color: #2f3996;
}
.doctor-details ul li {
  display: block;
  margin: 0 0 22px;
  border-radius: 50px;
  padding-left: 23px;
  position: relative;
  font-size: 16px;
  color: #767676;
}
.doctor-details ul li::before {
  position: absolute;
  left: -2px;
  top:9px;
  content: '';
  background-color: #2f3996;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.doctor-details h4 {
  font-size: 24px;
}
.doctor-details table {
  width: 100%;
}
.doctor-details table  td {
  border: 1px solid #dee2e6;
  padding: .75rem;
  color: #212529;
  font-size: 16px;
}
.our-specialists .our-specialists-image img {
  width: auto;
  height: 300px;
}
.our-specialists-details {
  padding-top: 20px;
}
.our-specialists-details ul li {
  width: 100%;
  display: block;
}
.doctor .our-specialists-details h3 {
  color: #fff;
}
/* contact */
.contact {
  position: relative;
  padding: 60px 0 70px;
}
.contact .col-md-6:first-child {
  width: 52%;
}
.contact .col-md-6:last-child {
  width: 48%;
}
.map iframe {
  border-radius: 10px;
  margin-bottom: 7px;
}
.contact-form  {
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 701px;
  padding: 54px 60px 76px;
}
.contact-form h2 {
  color: #fff;
  margin-bottom: 37px;
}
.contact-form input,
.contact-form select  {
  width: 100%;
  height: 58px;
  border-radius: 5px;
  background-color: #F5F5F5;
  font-size: 16px;
	line-height: 21px;
	color: #767676;
  font-weight: 400;
  padding: 20px 24px;
  margin-bottom: 22px;
  border: none;
  box-shadow: none;
  outline: none;
  display: block;
}
.contact-form select  {
  appearance: none;
  background-image: url(../images/drop-down.svg);
  background-position: right 26px center;
  background-repeat: no-repeat;
}
.contact-form input::placeholder {
 opacity: 1;
 color: #767676;
}
.contact-form  .common-btn {
  width: 173px;
  height: 49px;
  margin-top: 30px;
}
.contact-details ul li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  padding: 56px 10px 20px;
  background-color: #dbeefa;
  width: 38.2%;
  text-align: center;
  border-radius: 10px;
  background-image: url(../images/location-outline.png);
  background-position: center top 20px;
  background-repeat: no-repeat;
  min-height: 172px;
}
.contact-details ul li.contact-form-phone {
  width: 23%;
  background-image: url(../images/phone-linear.png);
  background-position: center top 20px;
  background-repeat: no-repeat;
}
.contact-details ul li.contact-form-phone a {
  display: block;
  margin: 0 0 6px;
}
.contact-details ul li.contact-form-phone a:last-child {
  margin-bottom: 0;
}
.contact-details ul li:last-child {
  margin-right: 0;
  width: 35%;
  background-image: url(../images/email.png);
  background-position: center top 20px;
  background-repeat: no-repeat;
}
.contact-details ul li p {  
  font-size: 13px;
  line-height: 22px;
  margin-top: 8px;
  margin-bottom: 0;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  word-wrap: break-word;
}
.contact-details ul li a { 
  color: #767676;
}
.contact-details ul li svg {
  color: #2f3996;
  font-size: 20px;
}
.thanks  {
  position: relative;
  padding: 40px 0 50px;
}
.thanks h4 {
  color: #2f3996;
}
.thanks .common-btn  {
  margin: 0 auto !important;
}
.thanks .common-btn:hover  {
  background-color: #242424 !important;
  color: #fff !important;
}

/* Start Gallery CSS */

.our-gallery {
  position: relative;
  padding: 50px 0 80px;
}
  .thumb {
    margin-bottom: 15px;
  }
  .thumb:last-child {
    margin-bottom: 0;
  }
  .img-thumbnail
  {
    border:none;
    border-radius: 10px;
  }
  .img-thumbnail {
  padding: 2px;
  background: none;
  }
  .thumb 
  figure img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    height: auto;
    width: 100%;
  }
  .thumb 
  figure:hover img {
    opacity: 0.8;
    background: #2f3996;
  }
  .thumb figure {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
  }
  .thumb figure::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 0;
    width: 100%;
    background-color: #2f3996;
    opacity: 0.5;
    transition: all 0.2s ease;
    z-index: 2;
  }
  .thumb figure:hover:before {
    height: 100%;
  }
  .span-extra{
    display: none;
    color: #282d30;
    justify-content: space-around;
    font-weight: 600;
    padding: 8px 10px;
    position: absolute;
    margin-top: -41px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    background:#fff;
    }
    .thumb 
    figure:hover .span-extra
    {
      display:flex;
      color:#282d30;
      justify-content: center;
    font-weight: 500;
    position: relative;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px
    }
/* doctors list */

.doctors-list  {
  position: relative;
  padding-bottom: 69px;
}
.doctors-list h2  {
  margin-bottom: 49px;
}
.doctors-box {
   display: block;
   border: 1px solid #2f3996;
   border-radius: 10px;
   padding: 20px 22px 24px;
}
.doctors-box-image,
.doctors-box-content  {
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
}
.doctors-box-content  {
  margin-right: 0;
  text-align:left;
}
.doctors-box-content h6  {
  font-size: 14px;
  line-height: 31.52px;
  font-weight: 700;
  margin-bottom: 2px;
}
.doctors-box-content p  {
  margin-bottom: 4px;
  font-size:12px;
  line-height:16px;
}
.doctors-box-content p:first-of-type {
  margin-bottom: 14px;
}
.doctors-box-content p small  { 
  color: #606060;
  margin-left: 2px;
  font-size:10px;
  line-height: 20.06px;
}

.treatment-bx{
  padding: 3rem 0 2rem;
  background-color: #f1f1f1;
}
.treatment-bx .tr-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.treatment-bx .tr-content p{
  width: 65%;
}
.treatment-bx .tr-content a{
  color: #000000;
  font-size: 18px;
  font-weight: 600;
}
.treatment-bx .tr-content a:hover{
  color: #2f3996;
}
.treatment-bx .tr-content .padd{
  width: 85%;
}
.treatment-bx h3{
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 48px;
  color: #2f3996;
  padding: 10px 0;
  margin: 0;
}
.treatment-bx p{
  margin: 0;
  padding-bottom: 20px;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #282d30;
  /* text-align: center;
  padding: 15px; */
}
.card-text1{
  text-align: justify;
  padding: 5px 20px 18px 20px;
}
.card-body img{
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.treatment-bx .tratment-swiper{
  position: relative;
  margin-top: 3rem;
  margin-left: 7rem;
  margin-bottom: 3rem;
}
.treatment-bx .tratment-swiper .swiper {
        width: 100%;
        height: 100%;
      }
.treatment-bx .tratment-swiper .swiper-slide {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    padding: 0px;
    background-color: #FFFFFF;
    box-shadow: 4px 6px 6px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    max-width: 370px;
    height: 100%;
    /* align-items: flex-start; */
    flex-direction: column;
      }
.treatment-bx .tratment-swiper .swiper-slide .img-icond{
  background-color: #2f3996;
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}
.treatment-bx .tratment-swiper .swiper-slide h4{
  padding: 12px 0;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  color: #282d30;
  margin: auto;
  text-align:center;
}

     .treatment-bx .tratment-swiper .swiper-slide img {
        display: block;
        width: 100%;
        /* height: 100%; */
        object-fit: cover;
        
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
      }
      .treatment-bx .tratment-swiper .arrow-main{
        position: relative;
        left: 0;
        width: 120px;
        height: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
      }
      .treatment-bx .tratment-swiper .button-prev{
    background-color: #2f3996;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    opacity: 0.5;
    display: flex;
    justify-content: center;
    align-items: center;
      }
      .treatment-bx .tratment-swiper .button-prev:hover{
        background-color: #1EDACBcc;
      }
      .treatment-bx .tratment-swiper .button-next{
        background-color: #2f3996;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    left: 90px;
    display: flex;
    justify-content: center;
    align-items: center;

      }
      .card-tr{
        background: #FFFFFF;
        box-shadow: 4px 6px 6px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        position: relative;
        display: flex;
        flex-direction: column;
        min-width: 0;
        word-wrap: break-word;
        background-color: #fff;
        background-clip: border-box;
        border-radius: 10px;
        margin: 1rem 0;
      }
      .address-bx .card-tr{
        height: 100%;
      }
      .treatment-wrap .card-tr {
        height: 100%;
        margin: 0;
        position: relative;
      }
      .treatment-wrap .btn-wrap {
        padding-top: 60px;
      }
      .treatment-wrap .col-md-4 {
        margin: 1rem 0;
     }
      .card-tr-det{
        background: #FFFFFF;
        box-shadow: 4px 6px 6px rgba(0, 0, 0, 0.15);
        border-radius: 10px;
        position: relative;
        display: flex;
        flex-direction: column;
        min-width: 0;
        word-wrap: break-word;
        background-color: #fff;
        background-clip: border-box;
        border-radius: 10px;
        margin: 1rem 0;
        min-height: 558px;
      }
      
      .card-tr-det .card-body {
        flex: 1 1 auto;
        /* padding: 1.5rem 1.5rem; */
        padding:0;
      }
      .card-tr-det .card-body .button-card{
        color: #fff;
        background-color: #2f3996;
        border-radius: 10px;
        padding: 13px 30px;
        margin: 5px 0;
      }
      .card-tr-det .card-body .button-card:hover{
      background-color: #50b9e2;
      color: #fff;
      }
      .card-tr-det .card-body .span_sm{
      width: 80px;
      height: 80px;
      background-color: #2f3996;
      padding: 15px;
      margin-bottom: 1rem;
      align-items: center;
      justify-content: center;
      display: flex;
      border-radius: 10px;
      }
      .card-tr-det .card-body .span_sm img{
      width: 55px;
      height: 57px;
      }
      .card-tr-det .card-body .card-title,
      .card-doctors .card-body .card-title{
      font-size: 14px;
      color: #282d30;
      font-weight: 600;
      line-height: 20px;
      padding-top: 1rem;
      text-align:center;
      }
      
      .card-tr .card-body {
          flex: 1 1 auto;
          /* padding: 1.5rem 1.5rem; */
          padding:0;
      }
      .card-tr .card-body .button-card{
          color: #fff;
          background-color: #2f3996;
          border-radius: 10px;
          padding: 13px 30px;
          margin: 5px 0;
      }
      .card-tr .card-body .button-card:hover{
        background-color: #50b9e2;
        color: #fff;
      }
      .card-tr .card-body .span_sm{
        width: 80px;
        height: 80px;
        background-color: #2f3996;
        padding: 15px;
        margin-bottom: 1rem;
        align-items: center;
        justify-content: center;
        display: flex;
        border-radius: 10px;
      }
      .card-tr .card-body .span_sm img{
        width: 55px;
        height: 57px;
      }
      .card-tr .card-body .card-title{
        font-size: 20px;
        color: #282d30;
        font-weight: 600;
        line-height: 30px;
        padding-top: 1rem;
        text-align:center;        
      }
      .treatment-wrap .card-body .card-title{
        margin-bottom: 20px;
      }
      .card-doctors{
          position: relative;
          display: flex;
          flex-direction: column;
          min-width: 0;
          word-wrap: break-word;
          background: none;
          background-clip: border-box;
          margin: 1rem 0;
          align-items: center;
          text-align: center;
      }
      .row.our-specialists .card-doctors .card-body .card-title {
        margin-top: 0;
        color: #fff;
      }
      .row.our-specialists {
        padding-top: 30px;
      }      
      .card-doctors .card-body p {
        padding-bottom: 0;
        margin-bottom: 0;
        font-size: 12px;
        line-height: 18px;
      }
      @media (max-width: 991.98px){
        .card-tr .card-body .button-card{
          padding: 13px 20px;
        }
      }
  .treatment-bx .tratment-swiper {
    position: relative;
    margin-top: 3rem;
    margin-left: 0rem; 
    margin-bottom: 3rem;
}
.treatment-bx .tr-content .padd {
    width: 60%;
}
.btn-danger-sm{
  font-size: 16px;
}
.img-wrapper {
  position: relative;
  overflow: hidden;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}
.inner-img {
  transition: 0.3s;
  height: 299px;
}
.inner-img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
.img-overlay {
  background: rgba(0,0,0,0.7);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  i {
    color: #fff;
    font-size: 3em;
  }
}
.img-overlay span
{
	color:#fff;
	cursor:pointer;
}
.book-now-btn {
  background-color: #2f3996;
  padding: 10px 30px;
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  line-height: 24px;
  display: flex;
  align-items: center;
  width: 90%;
  text-align: center;
  margin: auto;
  justify-content: center;
  margin: 20px;
  border: none;
  outline: none;
  box-shadow: none;
}
.book-now-btn:hover {
  background-color: #50b9e2;
  color: #fff;
}
.treatment-wrap  .book-now-btn {
  position: absolute;
  bottom: 20px;
  margin: 0;
  width: auto;
  left: 20px;
  right: 20px;
}
@media (max-width: 575.98px){
  .treatment-bx .tratment-swiper {
    position: relative;
    margin: 3rem 1rem;
}
.treatment-bx .tr-content p {
    width: 100%;
}
#gallery p{
  width: 100%;
}
.treatment-bx .tr-content .padd {
    width: 50%;
}
.btn-danger-sm{
  font-size: 16px;
}
.treatments-details-box:hover h5 a {
  color: #fff;
}
}

/*----
Doctors portfolio----*/
.doctors-portfolio{
  padding: 3rem 0;
  background-color: #fff;
}

.doctors-portfolio .dr-content{
  display: flex;
    justify-content: space-between;
    align-items: center;
}
.doctors-portfolio .dr-content p{
  width: 80%;
}
.doctors-portfolio .dr-content a{
    color: #000000;
    font-size: 18px;
    font-weight: 600;
}
.doctors-portfolio .dr-content a:hover{
   color: #2f3996;
}
.doctors-portfolio .treatment-swiper{
  position: relative;
  margin-top:10px;
}
.doctors-portfolio .treatment-swiper a{
	color:#fff;
}
.doctors-portfolio .treatment-swiper .swiper {
        width: 100%;
        height: 100%;
      }

.doctors-portfolio .treatment-swiper .swiper-slide {
    text-align: center;
    background: #fff;
    display: flex;
    justify-content: center;
    background-color: #FFFFFF;
    align-items: center;
    flex-direction: column;
      }

.doctors-portfolio .treatment-swiper .swiper-slide h4{
  padding: 15px 0 0px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 40px;
  color: #282d30;
  margin: 0;
}
.doctors-portfolio .treatment-swiper .swiper-slide h6{
  font-size: 16px;
  font-style: normal;
  line-height: 26px;
  color: #282d30;
  margin: 0;
  padding: 0;


}
.doctors-portfolio .treatment-swiper .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
.doctors-portfolio .treatment-swiper .arrow-main{
        position: relative;
        left: 0;
        width: 120px;
        height: 100%;
        display: flex;
        justify-content: space-between;
        margin-top: 50px;
      }
.doctors-portfolio .treatment-swiper .button-prev{
    background-color: #2f3996;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    opacity: 0.5;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    display: flex;
    justify-content: center;
    align-items: center;
      }
      .doctors-portfolio .treatment-swiper .button-prev:hover{
        background-color: #1EDACBcc;
      }
.doctors-portfolio .treatment-swiper .button-next{
    background-color: #2f3996;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    left: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
      }
      .doctors-portfolio .treatment-swiper .button-next:hover{
        background-color: #1EDACBcc;
      }
      @media (max-width: 575.98px){
        .doctors-portfolio .dr-content p{
          width: 100%;
        }
        .doctors-portfolio h3{
          font-size: 24px;
        }
        .treatment-bx h3{
          font-size: 24px;
          line-height: 36px;
        }
      }
     
/* appointment */

.contact-panel {
  position: relative;
  z-index: 2;
  padding: 60px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 5px 83px 0 rgba(9,29,62,.1);
  display: flex;
  flex-wrap: wrap;
  max-width: 66.66%;
  margin: 0 auto;
}
.contact-panel .form-group {
  position: relative;
  margin-bottom: 30px;
}
.contact-panel .form-group-icon {
  position: absolute;
  top: 23px;
  left: 23px;
  z-index: 2;
  color: #d7d8da;
  pointer-events: none;
}
.form-control {
  font-size: 14px;
  height: 60px;
  padding: 0 20px 0 30px;
  border-radius: 55px;
  background-color: #fff;
  border: 2px solid #e6e8eb;
  outline: none;
  box-shadow: none;
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus {
  border-color: #2f3996;
  background-color: #fff;
  outline: none;
  box-shadow: none;
}
.contact-panel .common-btn {
  width: 100%;
}
.mob-logo,
.mob-social-icons {
  display: none;
}

/* blog*/

.blog {
  position: relative;
  padding: 0 0 50px;
}
.video-gallery {
  padding-top: 50px;
  background-color: #1EDACB26;
}
.blog h2 {
margin-bottom: 40px;
}
.blog ul li { 
display: inline-block;
vertical-align: top;
margin-right: 10px;
margin-bottom: 0;
width:19%;
}
.video ul li { 
  width:32.5%;
}
.video ul li:nth-child(3n) {  
  margin-right: 0;
}
.blog ul li:nth-child(5n) {
margin-right: 0;
}
.blog-box {
  position: relative;    
}   
.blog-video  {
  position: relative;
  z-index: 5;
  border-radius: 10px;
  overflow: hidden;
}
.blog-video img {
width: auto;
height: auto;
border-radius: 17px;
}
.blog-video iframe {
 border-radius: 10px;
}
.play-btn {
position: absolute;
left: 50%;
top: 50%;
width: 44px;
height: 44px;
transform: translate(-50%, -50%);
z-index: 5;
} 
.blog-details {
  position: relative;
  padding:0 0 0;
}
.blog-details p {
line-height: 20px;
font-size: 14px;
color: #5A5A5A;
font-family: 'Anek Telugu', sans-serif;
 }
 .our-specialists-tr .card-doctors .card-body .card-title {
  font-size: 14px;
  line-height: 24px;
 }
 .our-specialists-tr.treatment-bx p {
  font-size: 12px;
  line-height: 18px;
 }

 .address-bx .card-tr .card-body {
  box-shadow: 0 8px 16px 0 rgba(146,184,255,.11);
  border-radius: 10px;
}
.service-img-overlay {
  width: 100%;
  height: 100%;
  background:rgba(0,140,217,.52);
  opacity: .7;
  position: absolute;
}
.card-title-first {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  line-height: 30px;
  padding: 1rem 1.4rem 1rem 1.4rem;
  background:transparent;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: absolute;
  top: 0%;
  z-index: 10;
}
.card-title-first h2,
.card-title-first p { 
  color: #fff;
}
.address-bx .card-body .img-wrapper-first {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  height: 100%;
  border-radius: 10px;
}
.location-img {
  position: relative;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 180px;
}
.address-bx .card-tr .card-body .card-title {
  font-size: 14px;
  color: #bbafb0f5;
  font-weight: 600;
  line-height: 22px;
  padding: 1rem;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  position: relative;
  text-align: left;
  padding-bottom: 0;
}
.address-bx .card-tr .card-body .card-title h5 {
  color: #222;
  margin-bottom: 10px;
}
.address-bx .card-tr .card-body .icon-main {
  position: absolute;
}
.address-bx .card-tr .card-body .address-main {
  font-size: 14px;
  position: relative;
  color: #222;
  margin-left: 24px;
  bottom: 1px;
}
.address-bx .card-tr .card-body .address-main p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 15px;
}
.address-bx .card-tr .card-body .address-main p a {
  color: #767676;
}
.address-bx .card-tr .card-body .address-main:last-child p {
  margin-bottom: 0;
}

/* awards */

.award {
  position: relative;
  background-color: #1EDACB26;
  padding: 60px 0;
}
.award p {
  font-size: 15px;
  line-height: 26px;
  text-align: justify;
  font-weight: normal;
  color: #b56627;
}
/* Media query  */


  @media only screen and (max-width:1300px){
    .container-fluid {
      padding: 0 30px;
    }
    .blog ul li {
      margin-right: 10px;
    }
    .header-topbar .contact-list li {
      margin-right: 15px;
    }
  }
  @media only screen and (max-width:1200px){
    .container-fluid {
      padding: 0 15px;
    }
    .outer-menu ul li {
      margin-right: 21px;
    }
    .outer-menu ul li a {
      font-size: 14px;
    }  
   footer {
      padding-top:35px;      
    }
    .footer-bottom {
      padding:20px 0;
      margin-top:60px;
    } 
    .footer-bottom::after {
      left:20px;
      right:20px;
      height:3px;
    }
    .footer-contact {
      padding:20px 15px;
    }
    .footer-contact .phone-number, .footer-contact .email-address {
      font-size: 12px;
    }
    .footer-contact:after {
      top:20px;
      bottom:20px;
    }   
    .footer-menu h4, 
    .footer-contact h4 {
      margin-bottom:15px;
    }
    .footer-menu ul li a {
      font-size:13px
    }  
    .footer-contact p.address br {
      display: none;
    }  
    .contact-info .contact-box {
      padding:35px;
    }
    .banner-slider .slick-arrow.slick-prev {
      left:10px;
    }
    .banner-slider .slick-arrow.slick-next {
      right:10px
    }
    .inner-banner {
      min-height: 200px;
    }
    .contact-details ul li {
      margin-right:6px;
    }
    .treatments-details ul li {
      margin-right: 17px;
    }
    .doctors-list {
      padding-bottom: 50px;
     }
     .doctors-box-image {
      margin-right: 10px;
    }
    .doctors-box-content h6 {
      font-size: 12px;
      line-height: 28.52px;
    } 
    .doctors-box-content p {
      font-size: 11px;
      line-height:14px;
    }
       .doctors-box-image img {
      width: 100px;
      height: auto;
    }
    .contact-details ul li p {
      font-size: 12px;
      line-height: 18px;
    }
    .card-doctors .card-body .card-title {
      font-size: 16px;
      line-height: 24px;
    }
    .about-main-doctor .about-content {
      padding-right: 15px;
      padding-left: 15px;
    }
    .header-topbar .contact-list li {
      font-size: 11px;
    }
    .blog  {
      padding: 0 0 30px;
    }
   
    .specialities-box  {
      min-height: 240px;
    }
    .blog ul li {
      margin-right:9px;
    }
    .blog-video iframe {
      height: 250px !important;
    }
    .address-bx .card-tr .card-body .address-main p { 
      font-size: 12px;
    }
  }
  @media only screen and (max-width:1100px){
    .mobile-menu {
      display: block !important;
    }
    .header-topbar,
    .gallery-wrap {
      display: none;
    }
    .outer-menu ul li {
      margin-right: 20px;
    }
    .outer-menu ul li:last-child {
      margin-right: 0;
    }
    .header .logo-dark {
      width: 180px;
      margin-top: -10px;
    }
    .contact-info .contact-box {
      padding:25px;
    }
    .contact-info .contact-box .contact-icon {
      font-size:37px;
      flex:0 0 65px;
      max-width:47px;
    }
    h6 {
      font-size: 16px;
      line-height: 22px;
    }
    .treatments-box h6 {
      margin-bottom: 10px;
    }
    .treatments-text {
      padding: 20px;
    }
   .treatments-box::before {
      left:20px;
      right:20px
    }
    .testimonials h5 {
      font-size: 15px;
      line-height: 26px;
    }
    .testimonial-meta h6 {
      font-size: 13px;
      line-height: 20px;
      white-space:unset;
    }
    .testimonial-meta p {
      font-size: 12px;
      line-height: 20px;
    }
    .treatments {
      padding: 80px 0 80px;
    }
    .testimonials  {
      padding: 100px 0 100px;
    }
    .doctor  {
      padding: 80px 0 30px;
    }
    .footer-contact p,
    .footer-about p {
      font-size: 13px;
      line-height: 24px;
    }
    .contact-details ul li {
      margin-right:5px;
    }
    .contact-details ul li p {
      font-size: 11px;
      line-height: 18px;
    }
    .thumb figure img  {
      height:250px;
    }
    
    .treatments-details-image {
      min-height: 515px;
    }
    .treatments-details-content p {
      margin-bottom: 15px;
    }
    .contact-panel {
      max-width:70%;
      margin: 0 auto;
      padding: 50px;
    }
    .contact-panel .form-group {
      margin-bottom: 25px;
    }
    .mob-social-icons.mobile-menu {
      display: none !important;
    }
    .about-main-doctor .about-content {
      padding-right: 0;
      padding-left: 0;
    }
    .blog ul li {
      margin-right: 7px;
    }
    .blog-details {
      padding: 0 0 0;
    }
    .blog-video iframe {
      height: 220px !important;
    }
    .our-specialists-tr .card-doctors .card-body .card-title {
      font-size: 12px;
      line-height: 20px;
    }
    .address-bx .card-tr .card-body .address-main p { 
      font-size: 12px;
      line-height: 18px;
    }
  }
  @media only screen and (max-width:991px){
    .header .navbar-brand img.logo {
      height: 70px;
      width: auto;
    }
    .header .mob-logo {
      display: block;
      margin-left: 8px;
      margin-bottom: 20px;
    }
    .header .mob-logo img.logo {
      height: 44px;
      width: auto;
    }
    .mob-social-icons.mobile-menu {
      display: block !important;
    }
    .mob-social-icons .social-icons {
      margin-left: 15px;
      margin-top: 15px;
    }
    .mob-social-icons .social-icons li {
      margin-right: 6px;
    }
    .mob-social-icons .social-icons li a {
      background-color: #2f3996;
      color: #fff;
      display: block;
      width: 23px;
      height: 23px;
      line-height: 23px !important;
      border-radius: 50%;
      font-size: 12px;
      text-align: center;
      padding: 0 !important;
    }
    .mob-social-icons .social-icons li a:hover {
      background-color: #222;
      color: #fff;
    }
  .outer-menu .navbar-toggler{
    border: none;
    box-shadow: none;
    position: absolute;
    right: 15px;
    height: 13px;
    border-radius: 0;
    width: 23px;
    padding: 0;
  }
  .outer-menu .navbar-toggler .menu-lines {
    display: inline-block;
  }
  .outer-menu .navbar-toggler .menu-lines::before, 
  .outer-menu .navbar-toggler .menu-lines::after {
    content: '';
    position: absolute;
    left: 0;
    width: 23px;
    height: 1px;
    display: inline-block;
    background-color: #2f3996;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .outer-menu .navbar-toggler .menu-lines::before {
    top: 0;
  }
  .outer-menu .navbar-toggler .menu-lines::after {
    top: 12px;
  }
  .outer-menu .navbar-toggler .menu-lines span {
    position: absolute;
    top: 6px;
    left: 0;
    width: 18px;
    height: 1px;
    background-color: #2f3996;
  }
  .outer-menu .collapse:not(.show) {
    display: block;
  }
  .outer-menu .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    background-color: rgba(0,0,0,.6);
    z-index: 1000;
    padding: 0;
    transition: 0.4s ease;
  }
  .outer-menu .navbar-collapse.menu-opened {
    opacity: 1;
    visibility: visible;
  }
  .outer-menu .navbar-collapse.menu-opened .navbar-nav {
    opacity: 1;
    transform: translateX(0);
  }
  .outer-menu .navbar-collapse .navbar-nav {
    opacity: 0;
    width: 240px;
    height: 100%;
    overflow-y: auto;
    padding: 10px 0 20px;
    background-color: #fff;
    transform: translateX(-100%);
    transition: 0.3s ease;
    transition-delay: 0s;
    transition-delay: 0.4s;
    margin: 0;
  }
  .outer-menu .navbar-collapse.menu-opened .close-mobile-menu {
    opacity: 1;
    transform: scale(1);
  }
  .outer-menu .close-mobile-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1100;
    width: 35px;
    height: 35px;
    line-height: 33px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transform: scale(.8);
    transition: all 0.4s ease;
    transition-delay: 0s;
    transition-delay: 0.5s;
    background-color: transparent;
    box-shadow: none;
  }
  .outer-menu li a {
    color: #282d30;
    line-height: 35px !important;
    padding-left: 15px;
  }
  .outer-menu ul li a.active::before, 
  .outer-menu ul li a:hover::before,
  .outer-menu ul li a::before {
   display: none;
  } 
  .navbar .submenu li a {
    padding: 0;
  }
  .outer-menu ul li.dropdown:hover > .submenu {
    display: none;
  }
  .outer-menu ul li.dropdown .submenu {
    transform:none !important;
    position: static;
    float: none;
    display: none;
    padding: 0;
    box-shadow: none;
  }
  .outer-menu ul li.dropdown.open .submenu {
    visibility: visible;
    opacity: 1;
  }  
  .navbar .dropdown::after {
    top: 17px;
    right: 20px;
    z-index: -1;
  }
  .contact-info .contact-box {
    padding: 25px 15px;
  }
  .contact-info .contact-box .contact-icon {
    font-size: 30px;
    flex: 0 0 55px;
    max-width: 42px;
  }
  h2,
  .inner-banner h1 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 15px;
  }
  h3 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  h5 {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .doctor-details ul li,
  .about-main-doctor ul li,
  .doctor ul li{
    font-size: 14px;
    line-height: 26px;
  }
  .doctor-details table td   {
    font-size: 14px;
    line-height: 26px;
  }
  .contact-info .contact-box .phone-number .icon {
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    margin-right: 6px;
  }
  .contact-info .contact-box .phone-number {
    font-size: 15px;
  }
  .contact-info .contact-box ul li {
    font-size: 14px;
  }
  .about .col-md-5,
  .about .col-md-7,
  .about .col-md-3,
  .about .col-md-9,
  .testimonials .col-md-5,
  .testimonials .col-md-7,
  footer  .col-md-4 {
    width: 100%;
  } 
  footer  .col-md-3,
  footer  .col-md-2  {
    width: 50%;
  } 
  .about-img  {
    margin-bottom: 25px;
  } 
  .about-img img {
    width: 100%;
    height: auto;
  } 
  .about h2,
  .doctor-details h3 {
    margin-bottom: 30px;
  } 
  .treatments h3,
  .doctor-details h3 {
    font-size: 30px;
    line-height: 40px;
  }
  .treatments .slick-slider {
    padding: 40px 0 0;
  } 
  .common-btn {
    height: 50px;
  }
  .contact-panel .common-btn {
    height: 60px;
  }
  .footer-about {
    margin-top: 0;
    max-width: 100%;
  } 
  .footer-contact {
    margin-top: 30px;
  } 
  .treatments h3 small {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 20px;
  } 
  .outer-menu {
    padding: 0;
    height: 80px;
    max-height: 80px;
  }
  .inner-banner {
    min-height: 180px;
  }
  .contact .col-md-6:first-child {
    width: 100%;
    order: 2;
  }
  .contact .col-md-6:last-child {
    width: 100%;
    order: 1;
  }
  .contact,
  .our-gallery {
    padding: 50px 0;
  }  
    .contact-form {
      padding: 30px;
      min-height: auto;
      margin-bottom: 47px;
    }
    
    .contact-details ul li {
      margin-right: 8px;
      min-height: 132px;
    }
    .map iframe {
      height:400px !important;
    }
    .thumb figure img  {
      height:200px;
    }
   
    .doctors-list .row  {
      justify-content: center;
    }  
    .doctors-list .col-md-4  {
      width: 50%;
      margin-bottom: 24px;
    }  
    .treatments-details.white-bg h2  {
      text-align: left;
      margin-bottom: 16px;
    } 
    .doctors-list h2 {
      margin-bottom: 30px;
    } 
    .doctors-list {
      padding-bottom:40px;
     }  
   
.contact-panel {
  max-width: 80%;
  margin: 0 auto;
  padding: 40px;
}
.contact-panel .form-group {
  margin-bottom: 20px;
}
.contact-details ul li p {
  font-size: 12px;
  line-height: 18px;
}
.our-specialists .col-md-2 {
  width: 33.33%;
}
.blog ul   {
  text-align: center;
}
.blog ul li {
  width: 32%;    
  margin-right: 10px;  
}
.blog ul li:nth-child(5n) {
  margin-right: 10px;
}  
.blog ul li:nth-child(3n) {
  margin-right: 0;
}  
.blog h2 {
  margin-bottom: 30px;
}
.blog {
  padding: 0 0 25px;
}
.blog-video iframe {
  height: 250px !important;
}
.our-specialists-tr.treatment-bx .col-md-2 {
  width: 33.33%;
}
.address-bx {
  width: 50%;
  margin-bottom: 25px;
}
.contact-info .row {
  margin-top: 40px;
}
.outer-menu ul li {
  margin-right: 0;
}
.why-us-image {
  position: relative;
  bottom: auto;
  text-align: center;
  margin-bottom: 30px;
}
.why-choose-us {
  padding: 70px 0;
}
}
@media only screen and (max-width:767px){
  .contact-info .contact-box {
    padding: 15px 15px;
  }
  .about, .treatments {
    padding: 40px 0;
  }
  .doctor, .testimonials, .why-choose-us {
    padding: 60px 0;
  }
  .contact-info .contact-box ul li:last-child  {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  h2,
  .inner-banner h1 {
    font-size: 26px;
    line-height:32px;
    margin-bottom: 15px;
  }
  h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  h5 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  p {
    font-size: 13px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  .doctor-details ul li {
    font-size: 13px;
    line-height: 26px;
    margin-bottom: 15px;
    padding-left: 15px;
  }
  .about-main-doctor ul li,
  .doctor ul li {
    font-size: 13px;
    line-height: 26px;
    margin-bottom: 6px;
  }
  .doctor-details table td   {
    font-size: 13px;
    line-height: 26px;
  }
  .common-btn {
    font-size: 13px;
    min-width: 120px;
    height: 40px;
  }
  .treatments h3 small {
    margin-bottom: 6px;
    font-size: 13px;
  }
  .treatments h3,
  .doctor-details h3 {
    font-size: 22px;
    line-height: 30px;
  }
  .treatments .slick-slider {
    padding: 30px 0 0;
  }  
  .doctor .col-md-4 img {
    margin-bottom: 20px;
  }
  footer .col-md-3:last-child {
    width: 100%;
  }  
  .designed,
  .copyright  {
    text-align: center;
  }   
  #scrollTopBtn {
    bottom: 20px;
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  #scrollTopBtn.actived {
    right: 20px;
  }
  .banner-slider .slick-arrow.slick-prev {
    left:0
  }
  .banner-slider .slick-arrow.slick-next {
    right:0
  }
  .doctor-details {
    margin-top: 30px;
  }
  .inner-banner {
    min-height: 165px;
  }
  .doctor-details ul li::before {
    left: 0px;
    top: 11px;
    width: 6px;
    height: 6px;
  }
  .doctor-details h4 {
    font-size: 20px;
  }
  .contact-details ul li {
    margin-right: 6px;
    min-height: 156px;
  }
  .contact-form h2 {
    margin-bottom: 30px;
  }
  .map iframe {
    height: 350px !important;
  }
  .thumb figure img  {
    height:300px;
  }
  .treatments-details ul li,
  .treatments-details ul li:nth-child(3n) {
    margin-right: 10px;
  }
  .treatments-box h5 {
    padding: 14px 37px 12px 37px;
    margin: -26px auto 0;
  }
  .treatments-details ul li {      
    margin-bottom: 24px;
  }
  .treatments-details ul li:last-child {
    margin-bottom: 8px;
    margin-right: 0;
  }  
  .doctors-list .container {
    max-width: 540px;
  }
  .doctors-list .col-md-4  {
    width: 100%;
    margin-bottom: 24px;
  } 
  .doctors-list .col-md-4:last-child  {
    margin-bottom: 0;
  }
  .doctors-box {
    padding: 15px 18px 24px;
  }
  .doctors-box-image {
    margin-right: 15px;
  }
  .treatments-details-image {
    min-height: 400px;
  }
  .treatments-details-wrap {
    padding: 40px 0;
  }
  .contact-panel {
    max-width: 100%;
    margin: 0;
    padding: 30px;
  }
  .contact-panel .form-group {
    margin-bottom: 15px;
  }
  .contact-panel .common-btn {
    height: 60px;
  }
  .doctor h2 {
    margin-top: 30px;
  }
  .banner-slider .slick-next::before, 
.banner-slider .slick-prev::before { 
  font-size: 40px;
}
.blog h2 {      
  margin-bottom: 24px;
}
.blog-details {
  padding: 5px 0 0;
} 
.blog ul li {
  margin-right: 7px;
}  
.blog ul li:nth-child(5n) {
  margin-right: 7px;
}
.blog ul li:nth-child(3n) {
  margin-right: 0;
}
.blog-video iframe {
  height: 220px !important;
}
.video ul li { 
  width:49%;
}
.video ul li:nth-child(2n),
.video ul li:last-child {
  margin-right: 0;
}
.about-img {
  margin-top: 25px;
}
}
@media only screen and (max-width:600px){
.contact-details ul li {
  margin-right: 0;
  min-height: 132px;
  width: 100% !important;
  margin-bottom: 15px;
}
.contact-details ul li.contact-form-phone,
.contact-details ul li:last-child  {
  min-height: 116px;
}
.contact-details ul li.contact-form-phone a {
  display: inline-block;
  margin: 0 5px 0;
}
.map iframe {
  height: 300px !important;
} 
.our-specialists .col-md-2 {
  width: 50%;
}
.blog ul li{
  margin-right: 0;
  width: 100%;
}
.blog ul li:nth-child(3n) {
  margin-right: 0;
}  
.blog-details p {
  font-size: 16px;
  line-height: 24px;
} 
.blog-video iframe {
  height: 300px !important;
}
.about-main-doctor ul li,
.doctor ul li {
  display: block;
  padding-right: 0;
  width: 100%;
}
.blog-video img {
  width: 100%;
  height: auto;
}
.address-bx {
  width: 100%;
}
.address-bx .card-body .img-wrapper-first {
  min-height: 300px;
}
.banner .img-slide img {
  height: 300px;
  width: auto;
  max-width: none;
}
} 
@media only screen and (max-width:500px){
  footer .col-md-3, footer .col-md-2 {
    width: 100%;
  }
  .footer-menu {
    margin-top: 20px;
  }
  .footer-bottom {
    padding: 15px 0;
    margin-top: 40px;
  }
  .why-choose-us {
    padding: 40px 0;
  }
  .testimonial-thumb {
    width: 50px !important;
    height: 50px;
    line-height: 50px;
    padding: 3px;
  }
  .testimonial-thumb img {
    width: 40px;
    height:40px;
  }
  .testimonial-meta h6 {
    font-size: 12px;
    line-height: 15px;
  }
  .testimonial-meta p {
    font-size: 10px;
    line-height: 14px;
  }
  .footer-bottom p {
    font-size: 12px;
    line-height: 22px;
  }
  .header .navbar-brand img.logo {
    max-width: 160px;
    height: auto;
  }
  .banner-slider .slick-arrow.slick-prev {
    display: none;
  }
  .banner-slider .slick-arrow.slick-next {
    display: none;
  }
  .inner-banner {
    min-height: 135px;
  }
  .contact,
  .our-gallery {
    padding: 40px 0 35px;
  }
  .contact-form h2 {
    margin-bottom: 24px;
  }
  .map iframe {
    height: 288px !important;
    margin-bottom: 15px;
  }
  .thumb figure img  {
    height:300px;
  }
  .thumb {
    margin-bottom: 0;
  }
  .treatments-details {
    padding: 24px 0 70px;
  }
  .doctors-list h2 {
    margin-bottom: 24px;
  }
  .doctors-list {
    padding-bottom: 0;
    margin-bottom: -26px;
   }
 
  .contact-panel {
    padding: 30px 15px;
  }
  .slick-dots li {
    margin: 0 4px;
  }
  .banner-slider .slick-next::before, 
  .banner-slider .slick-prev::before { 
     font-size: 36px;
  }
  .our-specialists-tr.treatment-bx .col-md-2 {
    width: 50%;
  }
}
@media only screen and (max-width:400px){
.about .about-text {
  padding: 0 30px;
  position: relative;
}
.about .about-text p strong::before { 
  left: -30px;
}
.testimonial-meta { 
  display: block !important;
  padding: 0 5px;
  text-align: center;
  margin: 0 auto;
}
.inner-banner {
  min-height: 100px;
}
.thumb figure img  {
  height:200px;
}
.treatments-icon {
  height: 170px;
}
.our-specialists .col-md-2 {
  width: 100%;
}
.testimonial-thumb {
  margin: 0 auto 10px;
}
.inner-img {
  height: 250px;
}
.banner .img-slide img {
  height: 250px;
}
.why-choose-us {
  padding: 30px 0;
}
}