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: #3c3c7a;
    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;
}


/* 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: #3c3c7a;
}
.common-btn:hover,
.appointment-btn:hover{
	color: #fff;
	transition: all 0.3s linear;
	background-color: #a9cf46;
}
.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: #3c3c7a;
}
.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: #213360;
    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: #3c3c7a;
    background-color: #fff;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  .social-icons li:hover a {
    background-color: #a9cf46;
    color: #3c3c7a;
}
.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: #3c3c7a !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: #3c3c7a !important;
  display: block;
}
.make-appointment-box a.phone-number svg {
  color: #3c3c7a !important;
  font-size: 24px !important;
}
.make-appointment-box a.phone-number:hover,
.make-appointment-box a.phone-number:hover svg {
  color: #3c3c7a !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: #213360 !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: #3c3c7a !important;
  font-size: 15px !important;
}
.make-appointment-box .contact-btn:hover,
.make-appointment-box .contact-btn:hover svg {
  color: #a9cf46 !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: #3c3c7a;
}
.outer-menu ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3c3c7a;
    transition: 0.5s ease;
  }
  .outer-menu ul li a.active::before,
  .outer-menu ul li a:hover::before {
    width: 100%;
  }
.mobile-menu {
    display: none;
}
.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: #3c3c7a;
    -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: #3c3c7a;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .gallery-trigger a {
    color: #212121;
    font-size: 15px;
    font-weight: 700;
  }  
  .gallery-trigger a:hover {
    color: #3c3c7a;
  }
  .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(60,60,122,.81);
    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: #3c3c7a;
    text-transform: capitalize;
    font-weight: 400;
    line-height: 36px !important;
    white-space: nowrap;
    position: relative;
  }
  .gallery-items li a {
      font-size: 14px !important;
      color: #3c3c7a !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: #3c3c7a;
    -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: #3c3c7a;
  }
  .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: #3c3c7a;
      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)
      }
    }
    .logo  {
      width: 80px;
    }
    .is-sticky .logo {
      display: inline-block;
      width: 60px;
      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: 253px;
}
.inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
.inner-banner h1 {
  font-size: 40px;
  margin-bottom: 0 !important;
  line-height: 50px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  color: #fff;
  z-index: 5;
}

/* 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;
}
.banner-slider .slick-next {
  left: auto;
  right: 20px;
}
.banner-slider .slick-next::before  {
    content: "\f105";
    font-size: 50px;
    font-weight: 300;
    color: #213360;
    width: 50px;
    height: 100%;
    font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  text-shadow: none;
    outline: none;
    box-shadow: none;
}
.banner-slider .slick-prev::before  {
    content: "\f104";
    font-size: 50px;
    font-weight: 300;
    color: #213360;
    width: 50px;
    height: 100%;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    text-shadow: none;
    outline: none;
    box-shadow: none;
}
.banner-slider .slick-next::before,
.banner-slider .slick-prev::before  {
    color: #3c3c7a;
}
.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: #3c3c7a;
  }
  .contact-info .row .col-md-4:nth-child(2) .contact-box {
    background-color: #a9cf46;
  }
  .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 rgba(255,255,255,.25);
    color: #fff;
    background-color: transparent;
  }

  .contact-info .contact-box .common-btn svg  {
    margin-left: 5px;
  }
  .contact-info .contact-box .common-btn:hover {
    height: 42px;
    border: 1px solid #3c3c7a;
    color: #fff;
    background-color: #3c3c7a;
  }
  .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: 35px;
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
    background-color: #a9cf46;
    color: #3c3c7a;
    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: 110px 0 80px;
}
.about h2 {
    display: inline-block;
    margin-bottom: 40px;
    border-bottom: 1px solid #3c3c7a;
    padding-bottom: 15px;
    text-transform: uppercase;
    color: #3c3c7a;
}
.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: #213360;
}
.about-text .common-btn,
.why-choose-us .common-btn  {
    background-color: transparent;
    border: 2px solid #3c3c7a;
    color: #3c3c7a;
}
.about-text .common-btn:hover,
.why-choose-us .common-btn:hover  {
    background-color: #3c3c7a;
    color: #fff;
}

/* 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 #3c3c7a;
    padding-bottom: 15px;
    text-transform: uppercase;
    font-size: 37px;
    color: #3c3c7a;
    margin: 0 auto;
}
.treatments h3 small {
    display: block;
    font-size: 15px;
    color: #3c3c7a;
    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-text  {
  padding:30px;
}
.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: #3c3c7a;
    transition: all 0.4s linear;
}
.treatments-box h6 {
    margin-top: 10px;
    margin-bottom: 19px;
    font-size: 16px;
}
.treatments-box .common-btn { 
  background-color: transparent;
  border: 2px solid #3c3c7a;
  color: #3c3c7a;
  height: 50px;
}
.treatments-box .common-btn svg { 
    margin-left: 5px;
}
.treatments-box .common-btn:hover {
    background-color: #3c3c7a;
    color: #fff;
}
.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: #3c3c7a;
    box-shadow: 0 0 0 5px rgba(33,205,192,.15);
}  
.slick-dots {
    text-align: center;
    margin-top: 25px;
}

/* why-choose-us   */

.why-choose-us  {
    position: relative;
    padding: 130px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(60, 60, 122, 0.83);
  }   
  .why-choose-us  .row {
    position: relative;
    z-index: 5;
  }  
  .why-choose-us h2  {
    color: #fff;
    margin: 0 0 30px;
} 
.why-choose-us h5  {
    color: #fff;
    margin-top: 15px;
} 
.why-choose-us p   {
    color: #fff;
    margin-bottom: 15px;
} 
.why-choose-us ul li   {
  color: #fff;
  margin-bottom:25px;
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  display: flex;
  align-items: center;
} 
.why-choose-us p  .common-btn  {
    border-color: #fff;
    color: #fff;
} 
.icon-box {
  width: 60px;
  height: 60px;
  background-color: #fff;
  text-align: center;
  line-height:60px;
  border: #a9cf46 solid 5px;
  color: #a9cf46;
  font-size: 20px;
  display:flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
} 
/* testimonials */

.testimonials  {
    position: relative;
    padding: 130px 0 100px
} 
.testimonials h2 {
  display: inline-block;
  border-bottom: 1px solid #3c3c7a;
  padding-bottom: 15px;
  text-transform: uppercase;
  color: #3c3c7a;
} 
.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 #3c3c7a;
    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: #3c3c7a;
    background-color: #fff;
    transition: all 0.4s ease;
}
.testimonial-meta h6 {
    font-size: 16px;
    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: #3c3c7a;
}
.footer-about {
    margin-top: 40px;
    max-width: 265px;
}
.footer-about a img {
  width: 80px;
  height: auto;
}
.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 #232342;
    padding-bottom: 15px;
  }
  .footer-menu ul li a {
    display: block;
    position: relative;
    color: #dec7cc;
    font-size: 15px;
    margin-bottom: 11px;
}
.footer-menu ul li a svg {
    margin-right: 6px;
}
.footer-menu ul li a:hover {
    color: #a9cf46;
  }
  .footer-contact {
    position: relative;
    overflow: hidden;
    padding: 40px;
    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: #3c3c7a;
 }
 .footer-contact p {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 0;
    color: #767676;
 }
 .footer-contact .phone-number,
 .footer-contact .email-address {
    margin: 8px 0 10px;
    font-size: 13px;
    color: #3c3c7a;
    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: #a9cf46;
 }
 .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: #3c3c7a;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  .footer-contact .social-icons li a:hover {
    background-color: #a9cf46;
  }
  .footer-contact::after {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 0;
    width: 3px;
    background-color: #3c3c7a;
  }

  .footer-bottom  {
    position: relative;
    padding: 18px 0;
    background-color: #a9cf46;
    margin-top: 60px;
  }
  .footer-bottom  p {
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 0;
}
.designed {
    text-align: right;
    color: #3c3c7a;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}
.designed a {
color: #3c3c7a;
font-weight: 600;
}
.floatingwhatsapp {
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 9999;
    background: #4dc247;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 42px;
    border-radius: 50%;
    box-shadow: -8px 9px 5px -7px rgb(0 0 0 / 24%);
  }
  #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-color: #3c3c7a;
    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;
}
.doctor-details h3 {
  display: inline-block;
  font-size: 37px;
  margin-bottom:40px;
  border-bottom: 1px solid #3c3c7a;
  padding-bottom: 15px;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
  color: #3c3c7a;
}
.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: #3c3c7a;
  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;
}

/* contact */
.contact {
  position: relative;
  padding: 92px 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;
  position: relative;
}
.contact-form::before  {
  content: "";
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}
.contact-form h2 {
  color: #fff;
  margin-bottom: 37px;
  position: relative;
  z-index: 5;
}
.contact-form form {
  position: relative;
  z-index: 5;
}
.contact-form input,
.contact-form select,
.contact-form textarea  {
  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 textarea  {
  height: 150px;
} 
.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,
.contact-form textarea::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: 6px;
  padding: 56px 10px 20px;
  background-color: #E6F4EC;
  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: 14px;
  line-height: 22px;
  margin-top: 8px;
  margin-bottom: 0;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}
.contact-details ul li a { 
  color: #767676;
}
.contact-details ul li svg {
  color: #AB386E;
  font-size: 20px;
}
.thanks  {
  position: relative;
  padding: 40px 0 50px;
}
.thanks h4 {
  color: #AB386E;
}
.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: 82px 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: 290px;
    width: 100%;
  }
  .thumb 
  figure:hover img {
    opacity: 0.8;
    background: #3c3c7a;
  }
  .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: #3c3c7a;
    opacity: 0.5;
    transition: all 0.2s ease;
    z-index: 2;
  }
  .thumb figure:hover:before {
    height: 100%;
  }
  .span-extra{
    display: none;
    color: #000;
    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:#000;
      justify-content: center;
    font-weight: 500;
    position: relative;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px
    }

    /* treatments */

.service {
  position: relative;
  padding: 92px 0 64px;
}

.service ul li {
  display: inline-block;
  vertical-align: top;
  margin-right: 19px;
  margin-bottom:30px;
  width: 32%;
}
.service ul li:nth-child(3n) {
  margin-right: 0;
}
.service-box {
    position: relative;
    margin: 0 0;
    border-radius: 10px;
    overflow: hidden;
}
.service-image  {
  position: relative;
}
.service-image::after  {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  background-color: #a9cf46;
  opacity: 0.5;
  transition: all 0.2s ease;
}
.service-image:hover:after  {
  height: 100%;
}  
.service-image img {
  width: 100%;
  height:auto;
}
.service-box h5 {
   padding: 18px 10px 19px 10px;
   border-radius: 0;
   background-color: #3c3b7d;
   text-align: center;
   margin: 0 auto 0;
   color: #fff;
   position: relative;
  display: table;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  text-transform: capitalize;
}
.service-box h5 a {
  color: #fff;
}
.service-box:hover h5 {
  background-color: #a9cf46;
  color: #fff;
}
.service-box:hover h5 a {
  color: #fff;
}

/* updates */ 

.updates-item {
  border: #3c3c7a solid 1px;
  min-height: 465px;
}
.updates-item iframe {
  width: 100%;
  margin-bottom: 30px;
}
.clipboard {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 50px;
  border: #3c3c7a solid 1px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin-top: -60px;
  background-color: #a9cf44;
  position: relative;
  z-index: 2;
  margin-left: 30px;
}
.updates-item h6 {
  padding: 10px 30px 0; 
  text-transform: capitalize; 
}
.updates-item p {
  padding: 10px 30px 0; 
}
.date  {
  margin-left: 30px;
  color: #3c3c7a;
}
 
/* specialities */

.our-specialities {
  padding: 80px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
}
.our-specialities::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(60, 60, 122, 0.83);
}
.our-specialities .container {
  max-width: 900px;
}
.our-specialities h2,
.our-specialities h5 {
  color: #fff;
}
.our-specialities h5 {
  margin: 0;
}
.specialities-box  {
  border-right:solid 1px #fff;
  position: relative;
  z-index: 5;
}
.our-specialities .col-md-4:last-child .specialities-box  {
  border-right:none;
}
/* Media quer  */


  @media only screen and (max-width:1300px){
    .container-fluid {
      padding: 0 30px;
    }
  }
  @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;
    }
    .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 ul li,
    .service ul li {
      margin-right: 17px;
    }
  }
  @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-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;
    }
    .about,
    .treatments {
      padding: 80px 0 80px;
    }
    .why-choose-us,
    .testimonials  {
      padding: 100px 0 100px;
    }
    .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: 12px;
      line-height: 18px;
    }
    .thumb figure img  {
      height:250px;
    }
    .treatments ul li,
    .service ul li {
      margin-right: 14px;
    }
    .service-box h5 {
      padding: 18px 10px 19px 10px;
    }
    .service-box  {
      margin: 16px 0;
    }   
    .updates-item p {
      padding: 10px 20px 0;
    }
    .date,
    .clipboard {
      margin-left: 20px;
    }
    .updates-item h6 {
      padding: 10px 20px 0;
    }
  }
  @media only screen and (max-width:991px){
  .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: #213360;
    -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: #213360;
  }
  .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: 50px 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: #222;
    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;
  }
  .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{
    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-6,
  .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-top: 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;
  }
  .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,
  .service,
  .our-specialities {
    padding: 60px 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;
    }
    .treatments ul {
      text-align: center;
    }
    .service ul li {
      width: 48.7%;      
    }
    .service ul li:nth-child(3n) {
      margin-right: 14px;
    }
    .service ul li:nth-child(2n) {
      margin-right: 0;
    }  
}
@media only screen and (max-width:767px){
  .contact-info .contact-box {
    padding: 15px 15px;
  }
  .about, .treatments,
  .our-specialities {
    padding: 40px 0;
  }
  .why-choose-us, .testimonials {
    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;
  }
  .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;
  }  
  .why-choose-us .col-md-6 img {
    margin-bottom: 20px;
    width: 100%;
  }
  footer .col-md-3:last-child {
    width: 100%;
  }  
  .designed,
  .copyright  {
    text-align: center;
  }  
  .contact-info .row  {
    margin-top: -25px;
  }  
  #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;
  }
  .service-box h5 {
    padding: 14px 10px 12px 10px;
  }
  .service ul li,
  .service ul li:nth-child(3n) {
    margin-right: 10px;
  }
  .service ul li:last-child  {
    margin-right: 0;
  }
  .updates-item {
    margin-bottom: 20px;
    min-height: auto;
  }
  .specialities-box  {
    border-right: none;
    border-bottom:solid 1px #fff;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .our-specialities .col-md-4:last-child .specialities-box {
    border-bottom:none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .specialities-box h2 {
    margin-bottom: 8px;
  }
}
@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;
} 
.service ul li,
.service ul li:nth-child(3n){
  margin-right: 0;
  width: 100%;
  margin-bottom: 0;
}
} 
@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;
  }
  .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: 100px;
  }
  .banner-slider .slick-arrow.slick-prev {
    display: none !important;
  }
  .banner-slider .slick-arrow.slick-next {
    display: none !important;
  }
  .inner-banner {
    min-height: 135px;
  }
  .contact,
  .our-gallery,
  .service {
    padding: 48px 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;
  }
}
@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;
}
}