* {
  outline: none;
}

ul {
  list-style-type: none !important;
  margin-bottom: 0 !important;
  padding-left: 0px;
}

img {
  pointer-events: none !important;
}

a {
  text-decoration: none !important;
}

figure {
  margin: 0;
}

/*------------------------------------------------------------------//
  Bootstrap Edit:                             
//------------------------------------------------------------------*/
.row {
  margin: 0;
  width: 100%;
}

.right {
  float: right !important;
  display: block;
}

.left {
  float: left !important;
  display: block;
}

.no-background {
  background: none !important;
  position: relative !important;
}

.clear {
  clear: both;
  display: block;
}

.full-image img {
  width: 100% !important;
  display: block !important;
  height: auto !important;
}

.no-padding {
  padding: 0 !important;
}

.no-left {
  padding-left: 0 !important;
}

.no-right {
  padding-right: 0 !important;
}

.mobileClear {
  clear: both;
  display: none;
}

/*------------------------------------------------------------------//
Theme Options:                              
//------------------------------------------------------------------*/
:root {
  --fontFamily: 'Montserrat', sans-serif;
  --generalTransition: cubic-bezier(0.23, 1, 0.32, 1);
  --white: #fff;
}

/*------------------------------------------------------------------//
  Main CSS  
//------------------------------------------------------------------*/
body {
  font-family: var(--fontFamily);
  overflow-x: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  background-color: #fff;
  height: 110px;
}

.header--logo {
  padding: 42px 30px;
  background-color: #fff;
}

.header--menu nav > ul > li {
  position: relative;
}

.header--menu nav > ul > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: -5px;
  width: 100%;
  height: 5px;
  background-color: #ec6921;
  z-index: -1;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.header--menu nav > ul > li:hover:before {
  top: 0;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.header--menu nav > ul > li:hover > ul {
  pointer-events: auto;
  top: 110px;
  opacity: 1;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.header--menu nav > ul > li > a {
  color: #353535;
  padding: 47px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: 600 14px var(--fontFamily);
}

.header--menu nav > ul > li > ul {
  position: absolute;
  top: 150px;
  left: 0;
  min-width: 200px;
  background-color: #ec6921de;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.header--menu nav > ul > li > ul > li {
  padding: 10px 20px;
  border-bottom: 1px solid #0000002b;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.header--menu nav > ul > li > ul > li:last-child {
  border: none;
}

.header--menu nav > ul > li > ul > li:hover {
  background-color: #c65519de;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.header--menu nav > ul > li > ul > li > a {
  color: #fff;
  font: 600 14px var(--fontFamily);
  white-space: nowrap;
}

.header.minimal .header--logo {
  padding: 10px 130px 10px 0px !important;
  background-color: transparent !important;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.slider {
  height: 100vh;
  overflow: hidden;
}

.slider figure {
  height: 100vh;
  overflow: hidden;
}

.slider figure img {
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-us--article {
  background-image: url(../images/pattern.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-right: 60px;
  padding-left: 250px;
  padding-top: 110px;
  height: 100vh;
}

.about-us--article span {
  color: #353535;
  font: 600 18px var(--fontFamily);
  padding-right: 100px;
  position: relative;
}

.about-us--article span:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -210px;
  width: 300px;
  height: 2px;
  background-color: #353535;
}

.about-us--article p {
  color: #353535;
  font: 500 13px/27px var(--fontFamily);
  text-align: right;
}

.about-us--article a {
  color: #353535;
  font: 600 13px var(--fontFamily);
  padding: 13px 60px;
  border: 1px solid #353535;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.about-us--article a:hover {
  background-color: #353535;
  color: #fff;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.about-us--img figure {
  height: 100vh;
  overflow: hidden;
}

.about-us--img figure img {
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.why-us--img {
  position: relative;
  z-index: 99;
}

.why-us--img figure {
  height: 100vh;
  overflow: hidden;
}

.why-us--img figure img {
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.why-us--img__desc {
  position: absolute;
  right: 0;
  bottom: 10%;
  width: 580px;
  padding: 40px 20px;
  background-color: #ffffffa6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.why-us--img__desc strong {
  color: #353535;
  font: 800 45px/65px var(--fontFamily);
  text-transform: uppercase !important;
}

.why-us--article {
  background-image: url(../images/pattern.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-left: 60px;
  padding-right: 250px;
  padding-top: 110px;
  height: 100vh;
}

.why-us--article span {
  color: #353535;
  font: 600 18px var(--fontFamily);
  padding-left: 100px;
  position: relative;
}

.why-us--article span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -210px;
  width: 300px;
  height: 2px;
  background-color: #353535;
}

.why-us--article p {
  color: #353535;
  font: 500 13px/27px var(--fontFamily);
  text-align: left;
}

.why-us--article a {
  color: #353535;
  font: 600 13px var(--fontFamily);
  padding: 13px 60px;
  border: 1px solid #353535;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.why-us--article a:hover {
  background-color: #353535;
  color: #fff;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.our-doctors--article {
  height: 100vh;
  padding-top: 110px;
  padding-left: 200px;
  overflow: hidden;
}

.our-doctors--article span {
  color: #353535;
  font: 600 18px var(--fontFamily);
  padding-left: 180px;
  position: relative;
}

.our-doctors--article span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 170px;
  height: 2px;
  background-color: #353535;
}

.our-doctors--article strong {
  color: #353535;
  font: 800 36px var(--fontFamily);
  padding-top: 80px;
  padding-bottom: 20px;
}

.our-doctors--article p {
  color: #353535;
  font: 500 14px var(--fontFamily);
  margin-bottom: 50px;
}

.our-doctors--article a {
  color: #353535;
  font: 600 13px var(--fontFamily);
  padding: 13px 60px;
  border: 1px solid #353535;
  text-transform: uppercase;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.our-doctors--article a:hover {
  background-color: #353535;
  color: #fff;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.our-doctors--slide {
  height: 100vh;
  padding-top: 150px;
  overflow: hidden;
}

.our-doctors--slide ul li {
  padding: 0px 5px 250px 5px;
  height: 100%;
}

.our-doctors--slide figure {
  max-height: 400px;
  overflow: hidden;
}

.our-doctors--slide__article {
  padding-top: 10px;
  padding-bottom: 15px;
  border-bottom: 5px solid #ec6921;
  position: relative;
  z-index: 999;
}

.our-doctors--slide__article:after {
  content: "";
  position: absolute;
  left: 0;
  top: -60px;
  width: 100%;
  height: 300px;
  background-image: url(../images/doctor-after.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 9;
}

.our-doctors--slide__article a {
  color: #353535;
  font: 800 26px var(--fontFamily);
  letter-spacing: 0.5px;
  margin-bottom: 5px;
  display: block;
  position: relative;
  z-index: 99999;
}

.blog--article {
  height: 100vh;
  padding-top: 110px;
  padding-left: 200px;
  overflow: hidden;
}

.blog--article span {
  color: #353535;
  font: 600 18px var(--fontFamily);
  padding-left: 180px;
  position: relative;
}

.blog--article span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 170px;
  height: 2px;
  background-color: #353535;
}

.blog--article strong {
  color: #353535;
  font: 800 36px var(--fontFamily);
  padding-top: 80px;
  padding-bottom: 20px;
}

.blog--article p {
  color: #353535;
  font: 500 14px var(--fontFamily);
  margin-bottom: 50px;
}

.blog--article a {
  color: #353535;
  font: 600 13px var(--fontFamily);
  padding: 13px 60px;
  border: 1px solid #353535;
  text-transform: uppercase;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.blog--article a:hover {
  background-color: #353535;
  color: #fff;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.blog--slide {
  padding-top: 150px;
  height: 100vh;
  overflow: hidden;
}

.blog--slide ul li {
  padding-right: 130px;
  position: relative;
}

.blog--slide__bar .blog-article {
  padding: 50px 30px;
  position: absolute;
  left: 110px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: #ffffffd9;
}

.blog--slide__bar .blog-article strong {
  color: #353535;
  font: 800 20px var(--fontFamily);
  margin-bottom: 15px;
}

.blog--slide__bar .blog-article p {
  color: #353535;
  font: 600 13px var(--fontFamily);
}

.blog--slide__bar .blog-article a {
  color: #353535;
  font: 400 14px var(--fontFamily);
  text-decoration: underline !important;
}

.contact--img figure {
  height: 100vh;
  overflow: hidden;
}

.contact--img figure img {
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact--article {
  padding-right: 200px;
  height: 100vh;
  overflow: hidden;
  padding-top: 110px;
  padding-left: 50px;
}

.contact--article > span {
  color: #353535;
  font: 600 18px var(--fontFamily);
  padding-left: 100px;
  position: relative;
}

.contact--article > span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -210px;
  width: 300px;
  height: 2px;
  background-color: #353535;
}

.contact--article > a {
  color: #353535;
  font: 500 17px/24px var(--fontFamily);
  margin-bottom: 10px;
}

.contact--article > a strong {
  font-weight: 600;
}

.contact--article__social {
  margin-top: 20px;
  margin-bottom: 50px;
}

.contact--article__social a {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  background-color: #a0a0a0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
}

.contact--article__social a i {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background-color: #353535;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 20px;
}

.contact--article__form span {
  color: #353535;
  font: 700 15px var(--fontFamily);
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact--article__form input {
  height: 60px;
  width: 75%;
  padding-left: 20px;
  border: 2px solid #353535;
  font: 500 15px var(--fontFamily);
  color: #353535;
}

.contact--article__form input::-webkit-input-placeholder {
  font: 500 15px var(--fontFamily);
  color: #353535;
}

.contact--article__form input:-ms-input-placeholder {
  font: 500 15px var(--fontFamily);
  color: #353535;
}

.contact--article__form input::-ms-input-placeholder {
  font: 500 15px var(--fontFamily);
  color: #353535;
}

.contact--article__form input::placeholder {
  font: 500 15px var(--fontFamily);
  color: #353535;
}

.contact--article__form button {
  border: none;
  width: 25%;
  height: 60px;
  background-color: #353535;
  color: #fff;
  font: 700 15px var(--fontFamily);
}

.logo-title {
  width: 400px;
  padding: 30px 0px;
}

/** Mobile Contact **/
.mContact {
  display: none;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 0px 0px;
  z-index: 99999999;
  border: none !important;
  /* font-family: open sans; */
}

.mContact .col-md-6 {
  width: 50% !important;
  float: left;
  padding: 7px !important;
}

.mContact .col-md-6 a {
  padding: 10px;
  font-size: 14px;
}

.mContact .col-md-6 span {
  font-weight: bold;
  color: #fff;
  padding: 5px;
  position: relative;
  top: 1px;
}

.mContact .wp {
  background: #55cd6c;
}

.mContact .tl {
  background: #171717;
}

.mContact .col-md-6 img {
  width: 30px;
}

/** Mobile Contact **/
.whatsappFixed {
  position: fixed;
  top: 50%;
  z-index: 999999;
  background: rgba(29, 177, 84, 0.96);
  color: #fff;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
}

.whatsappFixed a {
  padding: 9px 11px;
  color: #fff;
  font-size: 23px;
}

#back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 30px;
  background: #000000;
  color: #fff;
  cursor: pointer;
  border: 0;
  border-radius: 2px;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
  opacity: 0;
  border-radius: 100%;
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

#back-to-top:hover {
  background: #00000089;
}

#back-to-top.show {
  opacity: 1;
}

/* Navigations */
.slider .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  width: 100%;
  bottom: 45%;
  z-index: 9999999;
}

.slider .owl-carousel .owl-nav button.owl-next, .slider .owl-carousel .owl-nav button.owl-prev, .slider .owl-carousel button.owl-dot {
  width: 80px;
  height: 80px;
  background: #ffffffad;
  outline: none !important;
  z-index: 9999999 !important;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

button.owl-prev {
  left: 30px;
  position: absolute;
}

button.owl-next {
  position: absolute;
  right: 30px;
}

/* Dots */
.slider .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 100%;
  bottom: 10%;
  z-index: 9999999;
}

.slider .owl-carousel .owl-dots button {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 100%;
  outline: none !important;
  z-index: 9999999 !important;
  margin: 0px 3px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.58) inset;
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.58) inset;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.slider .owl-carousel .owl-dots button.active {
  background: #575757;
  border: 6px solid #fff;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

/* Why us Slider nav */
.why-us--img .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  width: 660px;
  height: 150px;
  bottom: 10%;
  right: 0;
  z-index: 9999999;
}

.why-us--img .owl-carousel .owl-nav button.owl-next, .why-us--img .owl-carousel .owl-nav button.owl-prev, .why-us--img .owl-carousel button.owl-dot {
  width: 70px;
  height: 70px;
  background: transparent !important;
  outline: none !important;
  z-index: 9999999 !important;
  border: 2px solid #fff;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.why-us--img button.owl-prev {
  left: 0;
  position: absolute;
  top: 80px;
}

.why-us--img button.owl-next {
  left: 0;
  position: absolute;
  top: 5px;
}

/* Doctor Dots*/
.our-doctors--slide .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 17%;
}

.our-doctors--slide .owl-carousel .owl-nav button.owl-next, .our-doctors--slide .owl-carousel .owl-nav button.owl-prev, .our-doctors--slide .owl-carousel button.owl-dot {
  width: 100%;
  height: 10px;
  background: #353535;
  outline: none !important;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.our-doctors--slide button.owl-dot.active {
  background: #ec6921;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

/* Doctor Dots*/
.blog--slide .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 17%;
}

.blog--slide .owl-carousel .owl-nav button.owl-next, .blog--slide .owl-carousel .owl-nav button.owl-prev, .blog--slide .owl-carousel button.owl-dot {
  width: 100%;
  height: 10px;
  background: #353535;
  outline: none !important;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}

.blog--slide button.owl-dot.active {
  background: #ec6921;
  -webkit-transition: all 0.8s var(--generalTransition);
  transition: all 0.8s var(--generalTransition);
}
.subPage .title {
  background-size: cover;
  background-attachment: fixed;
  background-repeat: repeat-x;
  padding: 50px 0px;
  text-align: center;
  background: rgb(53, 53, 53);
  background-image: url(../images/subPage.png);
}

.subPage .title h1 {
    margin: 0px;
    color: #ffffff;
    font-size: 43px;
    /* letter-spacing: -0.6px; */
    font-weight: 500;
    text-shadow: 0px 1px 7px rgba(0, 0, 0, 0.35);
}

.subPage .contentInner {
  margin: 40px 0 155px 0;
}

.subPage .contentInner .category ul li {
  /* position: absolute; */
  padding: 8px;
  margin-bottom: 10px;
  list-style-type: none;
}

.subPage .contentInner .category ul li .item {
  border: 1px solid #ccc;
  padding: 14px;
  /* box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.16); */
  min-height: 344px;
  /* list-style-type: none; */
}

.subPage .contentInner .category ul li .article {
  text-align: center;
}

.subPage .contentInner .category ul li .article h3 {
  margin: 10px 0px;
  font-size: 17px;
  font-weight: 600;
  color: #494949;
  letter-spacing: -0.7px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.subPage .contentInner .category ul li .article p {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.3px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.subPage .contentInner .category ul li .article a.more {
  border: none;
  padding: 13px 20px;
  width: 100%;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background: #00225b;
  border: 1px solid transparent;
  margin-top: 1px;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
  display: block;
  margin-top: 10px;
  /* width: 100px; */
  margin: 16px auto;
  font-size: 13px;
}

.subPage .contentInner .category ul li .article a.more:hover {
  background: transparent;
  border: 1px solid #2a2a2b;
  color: #2a2a2b;
}

.subPage .contentInner .leftContent figure {
  margin-bottom: 15px;
  padding: 0px 7px;
}

.subPage .contentInner .leftContent article .alignleft {
  float: left;
  margin: 15px 15px 15px 0;
  display: block;
}

.subPage .contentInner .leftContent article .alignright {
  float: right;
  margin: 15px 0 15px 15px;
  display: block;
}

.subPage .contentInner .leftContent article .aligncenter {
  float: none;
  margin: 15px auto;
  display: block;
}

.subPage .contentInner .leftContent article p {
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 23px;
  margin-bottom: 13px;
}

.subPage .contentInner .leftContent article p a {
  display: inline-block;
  color: #000000;
  font-weight: 500;
  letter-spacing: -0.6px;
}

.subPage .contentInner .leftContent article h2 {
  font-size: 25px;
  font-weight: 600;
  position: relative;
  display: block;
  color: #00aeef;
  letter-spacing: -0.5px;
}

.subPage .contentInner .leftContent article h3 {
  font-size: 27px;
  font-weight: 600;
  position: relative;
  margin: 10px 0;
  display: block;
  color: #007ac3;
}

.subPage .contentInner .leftContent article h4 {
  font-size: 21px;
  font-weight: 600;
  position: relative;
  display: block;
  color: #a88b6f;
}

.subPage .contentInner .leftContent article h5 {
  font-size: 19px;
  font-weight: 600;
  position: relative;
  display: block;
  color: #178ab1;
}

.subPage .contentInner .leftContent article h6 {
  font-size: 17px;
  font-weight: 600;
  position: relative;
  display: block;
  color: #178ab1;
}

.subPage .contentInner .leftContent article ul {
  padding-left: 30px !important;
  display: inline-block;
}

.subPage .contentInner .leftContent article ul li {
  list-style: disc;
  font-size: 15px;
}

.subPage .contentInner .leftContent article ul li ul li {
  list-style-type: circle;
}

.subPage .contentInner .leftContent.contact h3 {
  margin-top: 0;
  line-height: 45px;
  border-bottom: 1px solid #333;
  display: block;
  position: relative;
}

.subPage .contentInner .leftContent.contact h3:after {
  content: "";
  height: 2px;
  width: 200px;
  background-color: #000;
  background-color: #333;
  position: absolute;
  bottom: 0;
  left: 0;
}

.subPage .contentInner .leftContent.contact .item {
  display: block;
  margin-bottom: 10px;
}

.subPage .contentInner .leftContent.contact .item i {
  width: 35px;
  text-align: center;
}

.subPage .contentInner .leftContent.contact .item a {
  color: #000;
}

.subPage .contentInner .leftContent .table .thead-inverse {
  background-color: #333 !important;
  color: #fff;
}

.subPage .contentInner .leftContent .table .thead-inverse tr {
  background-color: #333 !important;
}

.subPage .contentInner .leftContent .table td,
.subPage .contentInner .leftContent .table th {
  text-align: center;
}

.subPage .contentInner .leftContent .table tr a {
  line-height: 25px;
  padding: 0 5px;
  border-radius: 3px;
  background-color: #333;
  color: #fff;
  text-align: center;
}

.subPage .contentInner .leftContent .table tr {
  border-top: 1px solid #eceeef;
  font-size: 13px;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.subPage .contentInner .leftContent .table tr:nth-child(2n) {
  background-color: #eceeef;
}

.subPage .contentInner .leftContent .table tr:hover {
  background-color: #d5d8d9;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.subPage .contentInner .leftContent a {
  display: inline-block;
  font-weight: 600;
}

.subPage aside.sidebar {
  /* background-image: linear-gradient(145deg, #ffffff 25%, #000000 100%); */
  background-repeat: repeat-x;
  padding: 20px 20px 0 20px;
  text-align: center;
  border-radius: 6px;
  padding-bottom: 15px;
  box-shadow: 3px 1px 19px 1px rgba(62, 62, 62, 0.75);
  background: #353535;
  background-image: linear-gradient(145deg, #373737 15%, #000000 100%);
}

.subPage aside.sidebar .topIcon {
  width: 60px;
  background: #ffffff;
  position: absolute;
  top: -25px;
  height: 60px;
  left: 50%;
  line-height: 62px;
  margin-left: -30px;
  color: #00225b;
  font-size: 30px;
  border: 1px solid #fcfcfc;
  border-radius: 100%;
  box-shadow: 1px 1px 5px -1px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.subPage aside.sidebar .topIcon.active {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}

.subPage aside.sidebar span.titleForm {
  color: #ffffff;
  font-size: 28px;
  display: block;
  font-weight: 500;
  margin-top: 21px;
  margin-bottom: 11px;
  letter-spacing: -0.5px;
}

.subPage aside.sidebar select {
  width: 100%;
  padding: 10px;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 5px;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
  color: #fff;
  padding-left: 5px;
}

.subPage aside.sidebar select option {
  color: #1f1f1f;
}

.subPage aside.sidebar textarea {
  height: 70px;
  resize: none;
  width: 100%;
  color: #ffffff;
  padding: 10px;
  border: none;
  background: transparent;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 5px;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.subPage aside.sidebar textarea::-webkit-input-placeholder {
  color: #ffffff;
}

.subPage aside.sidebar textarea:focus {
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
}

.subPage aside.sidebar input {
  resize: none;
  letter-spacing: -0.4px;
  width: 100%;
  color: #ffffff;
  padding: 10px;
  border: none;
  background: transparent;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 5px;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  -o-transition: all 0.7s;
  transition: all 0.7s;
}

.subPage aside.sidebar input::-webkit-input-placeholder {
  color: #ffffff;
}

.subPage aside.sidebar input:focus {
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
}

.subPage aside.sidebar .col-md-6 {
  width: 100%;
  padding: 0px;
}

.subPage aside.sidebar .col-md-12 {
  width: 100%;
  padding: 0px !important;
}

.subPage aside.sidebar input[type="submit"] {
  background: #ffffff;
  border: none;
  padding: 13px 20px;
  width: 100%;
  border-radius: 5px;
  font-weight: bold;
  color: #000000;
  border: 1px solid #ffffff;
  margin-top: 1px;
  -webkit-transition: all 0.6s;
  margin-top: 10px;
  -moz-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.subPage aside.sidebar input[type="submit"]:hover {
  background: transparent;
  border: 1px solid #fff;
  color: #ffffff;
}

.subPage {
  display: grid !important;
  padding-top: 85px;
}

.subPageHead {
  background: #0097ff !important;
  padding: 18px 0;
}

.subPageHead .header-top {
  margin-top: 0px;
}

.subPage .doctors .items-in {
  padding: 0 6px; }

.subPage .doctors .items .in {
  background: #eeeeee;
  position: relative;
  z-index: 111; }
.subPage .doctors .items .in .text {
    padding: 28px 15px;
    text-align: center; }
.subPage .doctors .items .in .text a {
      display: block;
      color: #00225b;
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px; }
.subPage .doctors .items .in .text span {
      display: block;
      color: #686868;
      font-size: 13px;
      font-weight: 500; }
.subPage .doctors .items .in:hover {
    -webkit-transition: all 0.6s;
    transition: all 0.6s; }
.subPage .doctors .items .in:hover:after {
      -webkit-transition: all 0.6s;
      transition: all 0.6s;
      height: 100%;
      opacity: 1; }

      .our-doctors--slides a {
        font-size: 24px;
    }