/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(/images/vendor/owl.carousel/dist/owl.video.play.png?7f01b07148f205f6e8258e92bbf652d9) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.mn-title-sec {
  padding: 80px 0px;
}
.mn-title-sec h1 {
  padding: 0px 100px;
  padding-bottom: 10px;
}

.mn-contr {
  border: 1px solid #012636;
  text-align: center;
  padding: 20px;
  min-height: 220px;
}
.mn-contr h2 {
  color: #0E5782;
}

.about-section {
  padding: 80px 0px;
  padding-bottom: 0px;
}
.about-section h2 {
  color: #0E5782;
}

.view-more-contr {
  background: #FFFFFF;
  box-shadow: 13px 10px 28px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  width: 200px;
  display: grid;
  position: absolute;
  right: 70px;
  bottom: -30px;
  padding: 25px;
}
.view-more-contr img {
  padding-right: 0;
  max-width: 198px;
  width: 257px !important;
  margin: auto;
}

.abt-img-sec img {
  width: 100%;
  padding-right: 100px;
}

.view-cn {
  border: 1px solid #012636;
  border-radius: 3px;
  height: 35px;
  line-height: 32px;
  width: 130px;
  margin: auto;
  margin-top: 20px;
}

.bg-color {
  background: #F5F6F7;
}

.insight-contr {
  padding-top: 80px;
}

.service-cn {
  margin-top: 30px;
}

.s-icon {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 100px;
}

.service {
  margin-bottom: 50px;
}
.service h2 {
  margin-top: 15px;
}
.service img {
  border-radius: 12px;
  width: 100%;
}
.service p {
  height: 54px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service:hover .overlay {
  opacity: 1;
}

.service-main-contr {
  padding-top: 80px;
  padding-bottom: 50px;
}

.view-all {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #0E5782;
}
.view-all svg {
  margin-left: 10px;
  position: relative;
  top: -1px;
}

.offer-cn {
  padding-right: 100px;
  margin-bottom: 20px;
}

.cloud-section {
  padding-bottom: 60px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: rgba(31, 143, 209, 0.68);
  border-radius: 12px;
  opacity: 0;
  transition: 0.5s;
  color: #fff;
}
.overlay img {
  width: 85px !important;
  height: 85px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid #fff;
  margin: auto;
}
.overlay h2 {
  margin-top: 15px;
}
.overlay h3 {
  font-size: 18px;
}

.get-contr {
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  box-shadow: 3px 4px 6px rgba(2, 59, 84, 0.31);
  border-radius: 50px;
  height: 43px;
  display: inline-block;
  line-height: 40px;
  padding: 0px 10px;
  margin-top: 15px;
}
.get-contr svg {
  margin-left: 15px;
  transition: 0.5s;
}
.get-contr:hover svg {
  margin-left: 30px;
}

.doctors-section {
  background: #F5F6F7;
  padding-top: 45px;
  padding-bottom: 45px;
}
.doctors-section h2 {
  color: #0E5782;
}

.doctors-contr {
  margin-top: 60px;
}
.doctors-contr h2 {
  color: #012636;
  margin-top: 15px;
  margin-bottom: 5px;
}
.doctors-contr img {
  border-radius: 10px;
}
.doctors-contr .item:hover .meet-doctor {
  display: block !important;
}

.meet-doctor {
  display: none !important;
  position: absolute;
  bottom: 125px;
  left: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  transition: 0.5s;
}
.meet-doctor:hover {
  color: #fff;
}

.best-service {
  width: 100%;
  float: left;
  margin-top: 20px;
}
.best-service h2 {
  float: left;
  margin-right: 20px;
}

.why-choose {
  background: #F5F6F7;
}

.choose-contr {
  position: relative;
  background: #004066;
  color: #fff;
  height: 550px;
  margin-top: 110px !important;
}
.choose-contr ul {
  margin-top: 30px;
  float: left;
  width: 100%;
}
.choose-contr ul li {
  float: left;
  width: 50%;
  position: relative;
  padding-left: 35px;
  margin: 8px 0px;
}
.choose-contr ul li::before {
  content: "";
  position: absolute;
  background-image: url(/images/li-icon.svg?0106a3dd9af7de389d1de81dc0ded8cd);
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  left: 0;
}

.play-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: -63px;
}

.video-left {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 250px;
  max-width: 100%;
  padding-right: 100px;
}

.video-thumb {
  height: 550px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.appointment-btn {
  background: #00577D;
  border: 2px solid #00577D;
  box-shadow: 3px 4px 11px rgba(2, 59, 84, 0.41);
  border-radius: 49px;
  color: #fff;
  height: 40px;
  display: inline-block;
  line-height: 35px;
  padding: 0px 10px;
  margin-top: 20px;
}
.appointment-btn:hover {
  color: #fff;
}
.appointment-btn:hover svg {
  margin-left: 20px;
}

a.appointment-btn svg {
  margin-left: 15px;
  transition: 0.5s;
}

#exampleModal .modal-body {
  padding: 0;
}
#exampleModal .modal-header {
  padding: 0;
  border: none;
}
#exampleModal .modal-content {
  border-radius: 0;
  background-color: transparent;
  border: none;
}
#exampleModal button.btn-close {
  position: absolute;
  right: 8px;
  top: 8px;
  cursor: pointer;
  z-index: 1;
}

html:lang(ar) body .abt-img-sec img {
  padding-right: 0px;
  padding-left: 100px;
}
html:lang(ar) body .best-service h2 {
  float: right;
  margin-right: 0;
  margin-left: 20px;
}
html:lang(ar) body .choose-contr ul li::before {
  left: auto;
  right: 0;
  transform: scaleX(-1);
}
html:lang(ar) body .choose-contr ul li {
  padding-left: 0;
  padding-right: 35px;
}
html:lang(ar) body a.appointment-btn {
  direction: rtl;
}
html:lang(ar) body a.appointment-btn svg {
  margin-left: 0;
  transition: 0.5s;
  transform: scaleX(-1);
  margin-right: 15px;
  position: relative;
  top: -1px;
}
html:lang(ar) body .get-contr {
  direction: rtl;
}
html:lang(ar) body .get-contr svg {
  transform: scaleX(-1);
  margin-right: 15px;
  position: relative;
  top: -2px;
  margin-left: 0;
}
@media (max-width: 1199px) {
  html:lang(ar) body .abt-img-sec img {
    padding-left: 50px;
  }
}
@media (max-width: 991px) {
  html:lang(ar) body .abt-img-sec img {
    padding-left: 0;
  }
}

@media (max-width: 1600px) {
  .video-left {
    padding-left: 100px;
  }
}
@media (max-width: 1199px) {
  .abt-img-sec img {
    padding-right: 50px;
  }
  .service-cn {
    padding-left: 15px;
    padding-right: 15px;
  }
  .doctors-contr {
    padding-left: 15px;
    padding-right: 15px;
  }
  .video-left {
    padding-left: 40px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .choose-contr ul li {
    width: 100%;
  }
  .video-left {
    padding-left: 55px;
  }
  .mc1 {
    width: 100%;
  }
  .mc-top {
    margin-top: 20px;
  }
  .mn-title-sec {
    padding: 35px 0px;
    padding-bottom: 15px;
  }
  .abt-img-sec img {
    padding-right: 0;
  }
  .about-section {
    padding: 50px 0px;
    padding-bottom: 0px;
  }
  .abt-img-sec.mc1 {
    margin-bottom: 30px;
  }
  .choose-contr {
    margin-top: 50px !important;
  }
  .abt-img-sec img {
    width: auto;
    max-width: 100%;
    margin: auto;
    display: table;
  }
  .about-section {
    text-align: center;
  }
  .best-service {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    display: table;
    float: none;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .s-fl {
    width: 100%;
    position: relative;
  }
  .video-left {
    padding-top: 30px;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .play-icon {
    margin: auto;
    left: 0;
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .choose-contr {
    height: auto;
  }
  .video-thumb {
    height: auto;
  }
}
