body {
  font-family: "Montserrat", sans-serif;
}

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

a {
  text-decoration: none;
}

figure {
  margin: 0;
}

.space {
  height: 100px;
}
@media (max-width: 991px) {
  .space {
    height: 50px;
  }
}

.med-space {
  height: 50px;
}

header .top-bar {
  background: #e3ddd2;
  padding: 10px 0;
}
header .top-bar ul {
  display: flex;
  justify-content: end;
  gap: 20px;
}
@media (max-width: 991px) {
  header .top-bar ul {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  header .top-bar ul {
    gap: 10px;
  }
}
header .top-bar ul li {
  position: relative;
}
header .top-bar ul li a {
  color: #104c90;
  font-weight: 600;
  font-size: 13px;
  transition: all 400ms;
}
@media (max-width: 600px) {
  header .top-bar ul li a {
    font-size: 12px;
  }
}
header .top-bar ul li a:hover {
  color: #000;
  transition: all 400ms;
}
header .top-bar ul li .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0px;
  top: 100%;
  transition: all 400ms linear;
  display: flex;
  flex-direction: column;
  z-index: 100;
  min-width: 240px;
  background: #fff;
  padding: 15px;
  gap: 10px;
  line-height: 15px;
}
header .top-bar ul li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
header .head-left .head-logo {
  padding: 15px 0;
}
header .head-left .head-logo img {
  width: 250px;
}
header .head-right {
  align-items: center;
  justify-content: end;
  display: flex;
}
@media (max-width: 991px) {
  header .head-right nav {
    width: 100%;
    display: none;
    position: relative;
  }
}
header .head-right nav ul {
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  header .head-right nav ul {
    flex-direction: column;
    gap: 0;
    background: #004890;
    padding: 15px;
    position: absolute;
    z-index: 9;
    width: 100%;
  }
}
header .head-right nav ul li.dropdown {
  position: relative;
  padding: 32px 0;
  /* Rotate arrow */
}
@media (max-width: 991px) {
  header .head-right nav ul li.dropdown {
    padding: 10px 0;
    border-bottom: 1px solid #064e97;
  }
}
header .head-right nav ul li.dropdown a {
  color: #333;
  font-size: 14px;
  font-weight: 500;
  padding-right: 20px;
  position: relative;
}
header .head-right nav ul li.dropdown a:hover {
  color: #064e97;
}
@media (max-width: 991px) {
  header .head-right nav ul li.dropdown a {
    color: #fff;
    width: 100%;
    display: block;
  }
}
header .head-right nav ul li.dropdown .arrow {
  display: inline-block;
  margin-left: 6px;
  transition: 0.3s;
  border: solid #000;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  position: absolute;
  top: 2px;
  right: 0;
  /* default arrow right */
}
@media (max-width: 991px) {
  header .head-right nav ul li.dropdown .arrow {
    border: solid #fff;
    border-top: none;
    border-left: none;
  }
}
header .head-right nav ul li.dropdown .arrow.rotate {
  transform: rotate(-135deg);
  /* arrow down */
}
header .head-right nav ul li.dropdown ul.submenu {
  background: #231f20;
  position: absolute;
  left: 0px;
  top: 100%;
  width: 300px;
  flex-direction: column;
  z-index: 20;
  padding: 20px 20px;
  gap: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 400ms linear;
}
header .head-right nav ul li.dropdown ul.submenu li a {
  color: #fff;
}
header .head-right nav ul li.dropdown ul.submenu li a:hover {
  color: #024384;
}
header .head-right nav ul li.dropdown .megamenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #231f20;
  padding: 30px;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  justify-content: space-between;
}
@media (max-width: 991px) {
  header .head-right nav ul li.dropdown .megamenu {
    position: static;
    background: #024384;
    padding: 20px;
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 10px 30px;
  }
}
header .head-right nav ul li.dropdown .megamenu li {
  width: calc(33.3333333333% - 30px);
}
@media (max-width: 991px) {
  header .head-right nav ul li.dropdown .megamenu li {
    width: 100%;
  }
}
header .head-right nav ul li.dropdown .megamenu li h5 {
  font-size: 16px;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  header .head-right nav ul li.dropdown .megamenu li h5 {
    margin: 20px 0;
    font-size: 14px;
    cursor: pointer;
    position: relative;
  }
}
header .head-right nav ul li.dropdown .megamenu li h5 .plus {
  display: none;
}
@media (max-width: 991px) {
  header .head-right nav ul li.dropdown .megamenu li h5 .plus {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
  }
}
header .head-right nav ul li.dropdown .megamenu li h5 .plus:after {
  content: "+";
  font-size: 18px;
  float: right;
  transition: 0.3s;
}
header .head-right nav ul li.dropdown .megamenu li h5 .plus.open:after {
  content: "-";
}
header .head-right nav ul li.dropdown .megamenu li a {
  color: #fff;
}
header .head-right nav ul li.dropdown .megamenu li a:hover {
  color: #024384;
}
header .head-right nav ul li.dropdown .megamenu li ul.sub-dropdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Plus/Minus for h5 */
}
@media (max-width: 991px) {
  header .head-right nav ul li.dropdown .megamenu li ul.sub-dropdown {
    width: 100%;
    position: static;
    display: none;
  }
}
header .head-right nav ul li.dropdown .megamenu li ul.sub-dropdown li {
  width: 100%;
  position: relative;
  padding-left: 15px;
}
@media (max-width: 991px) {
  header .head-right nav ul li.dropdown .megamenu li ul.sub-dropdown li {
    line-height: 30px;
  }
}
header .head-right nav ul li.dropdown .megamenu li ul.sub-dropdown li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  background: #fff;
  width: 5px;
  height: 5px;
  border-radius: 50px;
}
@media (max-width: 991px) {
  header .head-right nav ul li.dropdown .megamenu li ul.sub-dropdown li:before {
    top: 15px;
  }
}
header .head-right nav ul li.dropdown .megamenu li ul.sub-dropdown li a {
  color: #fff;
}
header .head-right nav ul li.dropdown .megamenu li ul.sub-dropdown li:hover a {
  color: #024384;
}
header .head-right nav ul li.dropdown:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transition: all 400ms;
}
header .head-right nav ul li.dropdown:hover ul.submenu {
  opacity: 1;
  visibility: visible;
}
header .head-right nav ul li.dropdown:last-child {
  border-bottom: none;
  padding-bottom: none;
}
header .head-right nav ul li.dropdown:last-child ul.submenu {
  left: auto;
  right: 0px;
}
header .head-right nav ul li.dropdown.is-mega-menu {
  position: static;
}
header .head-right nav.active {
  display: block;
}
header .head-right .mobile-menu-icon {
  width: 50px;
  height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
@media (max-width: 991px) {
  header .head-right .mobile-menu-icon {
    display: flex;
    position: absolute;
    top: 60px;
  }
}
header .head-right .mobile-menu-icon span {
  width: 50px;
  height: 3px;
  background-color: #00498d;
  display: block;
  margin: 3px auto;
}

.banner {
  border-top: 7px solid #104c90;
  border-bottom: 7px solid #104c90;
}
.banner .owl-item .item {
  position: relative;
  z-index: 9;
}
.banner .owl-item .item figure {
  height: 500px;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  z-index: 9;
}
.banner .owl-item .item figure:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  z-index: -9;
}
.banner .owl-item .item .det {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  flex-direction: column;
  z-index: 9;
  transform: translateY(30px);
  transition: all 400ms;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 991px) {
  .banner .owl-item .item .det {
    padding: 0 30px;
    text-align: center;
  }
}
.banner .owl-item .item .det h2 {
  font-size: 72px;
  font-weight: 900;
  color: #fff;
}
@media (max-width: 991px) {
  .banner .owl-item .item .det h2 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .banner .owl-item .item .det h2 {
    font-size: 30px;
  }
}
.banner .owl-item .item .det h3 {
  font-size: 36px;
  color: #fff;
}
@media (max-width: 991px) {
  .banner .owl-item .item .det h3 {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .banner .owl-item .item .det h3 {
    font-size: 17px;
  }
}
.banner .owl-item .item .det a {
  background: #e3ddd2;
  color: #004a91;
  padding: 15px 30px;
  display: inline-block;
  font-size: 18px;
  margin-top: 30px;
  transition: all 400ms;
}
.banner .owl-item .item .det a:hover {
  color: #fff;
  background: #004a91;
}
.banner .owl-item.active .item .det {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 3s;
}
.banner .owl-nav {
  width: 100px;
  height: 44px;
  margin: 0 auto;
  bottom: 30px;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner .owl-nav button span {
  font-size: 45px;
  color: #fff;
}
.banner .owl-nav button.owl-prev {
  position: absolute;
  left: 0;
}
.banner .owl-nav button.owl-next {
  position: absolute;
  right: 0;
}
.banner .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 38px;
  text-align: center;
  width: 50px;
  margin: auto;
}
.banner .owl-dots button {
  width: 8px;
  height: 8px;
  background: #fff;
  margin: 0 4px;
}

.services .service-box {
  position: relative;
  z-index: 9;
}
.services .service-box:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 120px;
  background: rgba(0, 102, 204, 0.8705882353);
}
@media (max-width: 1400px) {
  .services .service-box:after {
    min-height: 70px;
  }
}
.services .service-box figure {
  overflow: hidden;
}
.services .service-box figure img {
  width: 100%;
  transition: all 400ms;
}
.services .service-box figure:hover img {
  transform: scale(1.1);
  transition: all 400ms;
}
.services .service-box h3 {
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 20px;
  margin: 0;
  color: #fff;
  width: 90%;
  z-index: 9;
}
@media (max-width: 1400px) {
  .services .service-box h3 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .services .service-box h3 {
    text-align: center;
    width: 100%;
  }
}

.service-list {
  background: #e3ddd2;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .service-list {
    padding: 50px 0;
  }
}
.service-list:before, .service-list:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  background: #fff;
  height: 50px;
  z-index: -9;
}
@media (max-width: 991px) {
  .service-list:before, .service-list:after {
    display: none;
  }
}
.service-list:after {
  bottom: 0;
  top: auto;
}
.service-list figure {
  min-height: 620px;
  background-size: cover !important;
  background-position: center !important;
}
@media (max-width: 991px) {
  .service-list figure {
    background-position: top !important;
  }
}
.service-list .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-list .right .content-outer {
  padding-left: 50px;
}
@media (max-width: 991px) {
  .service-list .right .content-outer {
    padding: 30px 0 0;
    text-align: center;
  }
}
.service-list .right .content-outer h2 {
  font-size: 40px;
  color: #014a91;
  font-weight: 600;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .service-list .right .content-outer h2 {
    font-size: 25px;
  }
}
.service-list .right .content-outer h2:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -20px;
  width: 125px;
  height: 10px;
  background: #66ccff;
}
@media (max-width: 991px) {
  .service-list .right .content-outer h2:after {
    right: 0;
    margin: auto;
  }
}
.service-list .right .content-outer p {
  color: #333333;
  font-size: 18px;
}
.service-list .right .content-outer ul {
  padding-left: 50px;
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
}
@media (max-width: 991px) {
  .service-list .right .content-outer ul {
    margin: 0;
    gap: 0 20px;
    justify-content: center;
    padding-left: 0;
  }
}
.service-list .right .content-outer ul li {
  width: 50%;
  position: relative;
  padding: 5px 0 5px 15px;
}
@media (max-width: 991px) {
  .service-list .right .content-outer ul li {
    width: auto;
  }
}
.service-list .right .content-outer ul li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 15px;
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background: #333;
}
.service-list .right .content-outer a {
  background: #004a91;
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  margin-top: 30px;
  transition: all 400ms;
  border: 1px solid #004a91;
}
.service-list .right .content-outer a:hover {
  border: 1px solid #004a91;
  color: #004a91;
  transition: all 400ms;
  background: transparent;
}
.service-list.team {
  background: #004990;
}
.service-list.team .row {
  flex-direction: row-reverse;
}
.service-list.team .row .right .content-outer h2 {
  color: #fff;
}
.service-list.team .row .right .content-outer p {
  color: #fff;
}
.service-list.team .row .right .content-outer ul li {
  color: #fff;
}
.service-list.team .row .right .content-outer ul li:before {
  background: #fff;
}
.service-list.team .row .right .content-outer a {
  background: #e3ddd2;
  color: #004a91;
  margin-right: 30px;
  transition: all 400ms;
  border: 1px solid #e3ddd2;
}
@media (max-width: 991px) {
  .service-list.team .row .right .content-outer a {
    margin-right: 5px;
  }
}
.service-list.team .row .right .content-outer a:hover {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  transition: all 400ms;
}

.news h2 {
  color: #0c4c91;
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
}
@media (max-width: 600px) {
  .news h2 {
    font-size: 25px;
    margin-bottom: 25px;
  }
}
.news .news-slider .owl-news-slider {
  display: flex;
  gap: 30px;
  padding-bottom: 60px;
}
.news .news-slider .owl-news-slider .item {
  width: calc(33.3333333333% - 30px);
}
.news .news-slider .owl-news-slider .item figure {
  position: relative;
  overflow: hidden;
}
.news .news-slider .owl-news-slider .item figure img {
  transition: all 400ms;
}
.news .news-slider .owl-news-slider .item figure:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 30px;
  background: #006699;
  opacity: 0.7;
  z-index: 9;
}
.news .news-slider .owl-news-slider .item .det {
  padding-top: 25px;
}
@media (max-width: 600px) {
  .news .news-slider .owl-news-slider .item .det {
    text-align: center;
  }
}
.news .news-slider .owl-news-slider .item .det h4 {
  font-size: 24px;
  color: #0c4c91;
}
.news .news-slider .owl-news-slider .item .det span {
  color: #666666;
  font-size: 12px;
}
.news .news-slider .owl-news-slider .item .det p {
  color: #000;
  margin: 14px 0;
}
.news .news-slider .owl-news-slider .item .det a {
  font-size: 12px;
  color: #004a91;
  text-decoration: none;
}
.news .news-slider .owl-news-slider .item:hover figure img {
  transform: scale(1.1);
  transition: all 400ms;
}
.news .news-slider .border-dot {
  width: 300px;
  margin: 0 auto;
}
.news .news-slider .border-dot ul {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.news .news-slider .border-dot ul li {
  width: 8px;
  height: 8px;
  background: #e3ddd2;
}

.mission {
  text-align: center;
}
.mission h2 {
  font-size: 40px;
  width: 73%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .mission h2 {
    width: 100%;
    font-size: 25px;
  }
}
.mission h2 i {
  font-weight: 600;
}
.mission ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}
@media (max-width: 600px) {
  .mission ul {
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .mission ul li img {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .mission ul li img {
    width: 200px;
  }
}

footer .foot-left .left-cnt {
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  footer .foot-left .left-cnt {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
footer .foot-left .left-cnt .det {
  width: 70%;
}
@media (max-width: 991px) {
  footer .foot-left .left-cnt .det {
    width: 100%;
  }
}
footer .foot-left .left-cnt .det h4 {
  font-size: 24px;
  color: #104c90;
  font-weight: bold;
  margin-bottom: 15px;
}
footer .foot-left .left-cnt .det h5 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 20px;
}
footer .foot-left .left-cnt .det .add {
  display: flex;
  gap: 40px;
  width: 100%;
}
@media (max-width: 991px) {
  footer .foot-left .left-cnt .det .add {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
}
footer .foot-left .left-cnt .det .add .left {
  width: 50%;
}
@media (max-width: 600px) {
  footer .foot-left .left-cnt .det .add .left {
    width: 100%;
  }
}
footer .foot-left .left-cnt .det .add .left h6 {
  color: #104c90;
  font-weight: bold;
}
footer .foot-left .left-cnt .det .add .left p {
  font-size: 14px;
  color: #333;
  margin: 0;
}
footer .foot-left .left-cnt .det .add .left p a {
  color: #333;
  text-decoration: none;
}
footer .foot-left .left-cnt .det .add .left .gap {
  height: 15px;
}
footer .foot-left .left-cnt .det .add .right {
  width: 50%;
}
@media (max-width: 600px) {
  footer .foot-left .left-cnt .det .add .right {
    width: 100%;
  }
}
footer .foot-left .left-cnt .det .add .right p {
  font-size: 14px;
  color: #333;
  margin: 0;
}
footer .foot-left .left-cnt .det .add .right p a {
  color: #333;
  text-decoration: none;
}
footer .foot-right .right-outer {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  footer .foot-right .right-outer {
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
  }
}
footer .foot-right .right-outer .quick-links h4 {
  font-size: 24px;
  color: #104c90;
  font-weight: bold;
  margin-bottom: 15px;
}
footer .foot-right .right-outer .quick-links ul li a {
  color: #333;
  font-size: 14px;
}
footer .foot-right .right-outer .quick-links ul li a:hover {
  color: #104c90;
  transition: all 400ms;
}
footer .foot-right .right-outer .contact-address {
  width: 60%;
  text-align: right;
}
@media (max-width: 991px) {
  footer .foot-right .right-outer .contact-address {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
}
footer .foot-right .right-outer .contact-address .social-links {
  margin-bottom: 10px;
}
footer .foot-right .right-outer .contact-address p,
footer .foot-right .right-outer .contact-address a {
  color: #333;
  font-size: 14px;
}
footer .foot-right .right-outer .contact-address p a {
  text-decoration: underline;
}
footer .foot-right .right-outer .contact-address p a:hover {
  color: #104c90;
  transition: all 400ms;
}
footer .foot-bg-btm {
  height: 30px;
  background: #114c90;
  margin-top: 50px;
}

.inner-banner {
  height: 370px;
  background-size: cover !important;
  background-position: center !important;
  border-top: 7px solid #02488d;
  border-bottom: 7px solid #02488d;
}

@media (max-width: 991px) {
  .patient-information .left .det-cnt {
    text-align: center;
  }
}
.patient-information .left .det-cnt h1 {
  font-size: 27px;
  color: #004a91;
  position: relative;
  margin-bottom: 50px;
}
.patient-information .left .det-cnt h1:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -20px;
  width: 125px;
  height: 10px;
  background: #cccccc;
}
@media (max-width: 991px) {
  .patient-information .left .det-cnt h1:after {
    margin: auto;
    right: 0;
  }
}
.patient-information .left .det-cnt p {
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .patient-information .left .det-cnt p {
    margin-bottom: 15px;
  }
}
.patient-information .left .det-cnt h5 {
  margin-bottom: 15px;
  width: 100%;
  display: block;
}
@media (max-width: 991px) {
  .patient-information .left .det-cnt h5 {
    font-size: 15px;
  }
}
.patient-information .left .det-cnt h6 {
  font-size: 18px;
  font-weight: 600;
}
.patient-information .left .det-cnt ul {
  padding-left: 20px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .patient-information .left .det-cnt ul {
    margin-bottom: 15px;
    padding-left: 0px;
  }
}
.patient-information .left .det-cnt ul li {
  position: relative;
  padding: 5px 0 5px 15px;
}
@media (max-width: 991px) {
  .patient-information .left .det-cnt ul li {
    padding-left: 0;
    font-size: 15px;
  }
}
.patient-information .left .det-cnt ul li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 15px;
  width: 5px;
  height: 5px;
  border-radius: 50px;
  background: #333;
}
@media (max-width: 991px) {
  .patient-information .left .det-cnt ul li:before {
    display: none;
  }
}
.patient-information .left .det-cnt .more-btn a {
  background: #e3ddd2;
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  margin-top: 30px;
  color: #004990;
  margin-right: 20px;
  transition: all 400ms;
  border: 1px solid transparent;
}
.patient-information .left .det-cnt .more-btn a:hover {
  border: 1px solid #004a91;
  transition: all 400ms;
  background: transparent;
}
.patient-information .left .det-cnt .more-btn a.bg {
  background: #004a91;
  color: #fff;
  transition: all 400ms;
}
.patient-information .left .det-cnt .more-btn a.bg:hover {
  border: 1px solid #004a91;
  transition: all 400ms;
  background: transparent;
  color: #004990;
}
.patient-information .right .box-sec {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.patient-information .right .box-sec .service-box {
  position: relative;
  z-index: 9;
}
.patient-information .right .box-sec .service-box:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 120px;
  background: rgba(0, 102, 204, 0.8705882353);
}
@media (max-width: 1400px) {
  .patient-information .right .box-sec .service-box:after {
    min-height: 70px;
  }
}
.patient-information .right .box-sec .service-box figure {
  overflow: hidden;
}
.patient-information .right .box-sec .service-box figure img {
  width: 100%;
  transition: all 400ms;
}
.patient-information .right .box-sec .service-box figure:hover img {
  transform: scale(1.1);
  transition: all 400ms;
}
.patient-information .right .box-sec .service-box h3 {
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 20px;
  margin: 0;
  color: #fff;
  width: 90%;
  z-index: 9;
}
@media (max-width: 1400px) {
  .patient-information .right .box-sec .service-box h3 {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .patient-information .right .box-sec .service-box h3 {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .physicians {
    text-align: center;
  }
}
.physicians h1 {
  font-size: 27px;
  color: #004a91;
  position: relative;
  margin-bottom: 50px;
}
.physicians h1:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -20px;
  width: 125px;
  height: 10px;
  background: #cccccc;
}
@media (max-width: 991px) {
  .physicians h1:after {
    right: 0;
    margin: auto;
  }
}
.physicians .cnt-outer {
  margin-top: 50px;
}
.physicians .cnt-outer figure {
  height: 300px;
  background-size: cover !important;
  width: 60%;
  background-position: center !important;
  width: 260px;
  min-width: 260px;
  max-width: 260px;
}
@media (max-width: 1199px) {
  .physicians .cnt-outer figure {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .physicians .cnt-outer figure {
    height: 500px;
  }
}
.physicians .cnt-outer .det {
  display: flex;
  gap: 30px;
}
@media (max-width: 991px) {
  .physicians .cnt-outer .det {
    flex-direction: column;
  }
}
.physicians .cnt-outer .det h5 {
  font-size: 20px;
  color: #666666;
  font-weight: 600;
}
.physicians .cnt-outer .det span {
  font-style: italic;
  color: #333333;
  font-size: 14px;
}
.physicians .cnt-outer .det h6 {
  margin: 20px 0;
}/*# sourceMappingURL=theme-style.css.map */