/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
      background: #869791; }

/**
 * 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%;
}
@keyframes MoveUpDown {
  0%, 100% {
    bottom: 0;
  }
  50% {
    bottom: 400px;
  }
}
@keyframes MoveUpDownTwo {
  0%, 100% {
    right: 0px;
  }
  50% {
    top: 300px;
  }
}
@keyframes MoveUpDownThree {
  0%, 100% {
    left: 200px;
  }
  50% {
    top: 200px;
  }
}
/* .service-cn.owl-theme .owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -65px;
} */
.cloud-section {
  border-radius: 20px;
  color: #fff;
  margin-top: -100px;
}

.banner-section {
  background: #EEF8FA;
}
.banner-section .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
}
.banner-section h1 {
  font-size: 54px;
  line-height: 58px;
}
.banner-section h1 span {
  color: #2A8AC3;
}
.banner-section .content {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 81px;
}
.banner-section .content-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

.book-demo {
  margin-left: 30px;
}

.bn-left {
  position: absolute;
  top: 0;
  left: 0;
}

.bn-pdd {
  padding-right: 65px;
}

.shake {
  display: block;
  position: relative;
  display: inline-block;
}
.shake:hover {
  -webkit-animation-name: spaceboots;
  -webkit-animation-duration: 0.9s;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}
.shake:focus {
  -webkit-animation-name: spaceboots;
  -webkit-animation-duration: 0.9s;
  -webkit-transform-origin: 50% 50%;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}

.shake.inline {
  display: inline-block;
}

.bn1 {
  position: absolute;
  left: 100px;
  bottom: 50px;
  width: auto !important;
  max-width: 100%;
}

.bn2 {
  position: absolute;
  right: -50px;
  bottom: 0;
  width: auto !important;
  max-width: 100%;
}

.sl-img {
  width: auto !important;
  max-width: 100%;
}

.owl-theme .owl-dots .owl-dot span {
  background-color: #2A8AC3;
  width: 25px;
  height: 8px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #00577D;
}

.a-one {
  position: absolute;
  bottom: 0;
  left: 45px;
  animation: MoveUpDown 35s linear infinite;
}

.a-two {
  position: absolute;
  top: 20px;
  left: auto;
  right: 0px;
  animation: MoveUpDownTwo 25s linear infinite;
}

.a-three {
  position: absolute;
  top: 50px;
  left: 200px;
  animation: MoveUpDownThree 15s linear infinite;
}

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

.offer-section {
  margin-top: 0px !important;
}

.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: 110px;
}
.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 !important;
  max-width: 125px;
  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;
}

.service-cn {
  border-radius: 12px;
  background: #F4F6F7;
  padding: 25px;
  height: 261px;
  margin-top: 40px;
}
.service-cn .owl-prev {
  margin-top: -25px !important;
  background-color: transparent !important;
}
.service-cn .owl-next {
  margin-top: -25px !important;
  background-color: transparent !important;
}
.service-cn .item {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 10px;
  transition: 0.5s;
  padding-bottom: 20px;
}
.service-cn .item:hover {
  background: #0E5782;
  color: #fff;
}
.service-cn .item:hover .content {
  color: #fff;
}
.service-cn .item:hover .h-hover {
  display: block !important;
}
.service-cn .item:hover .h-img {
  display: none !important;
}
.service-cn .item:hover .icon-image {
  background-color: #fff;
}
.service-cn .item:hover .read-more {
  display: block;
}
.service-cn h1 {
  font-size: 18px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-cn .content {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 54px;
}

.icon-image {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background-color: #073149;
  margin: 15px auto;
}
.icon-image img {
  max-width: 33px;
  margin: auto;
  padding-top: 15px;
}

.h-hover {
  display: none !important;
}

.read-more {
  display: none;
  background: #FFFFFF;
  border-radius: 8px;
  width: 160px;
  margin: 15px auto;
  height: 35px;
  line-height: 35px;
}

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

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

.doctors-contr {
  margin-top: 60px;
}
.doctors-contr .owl-prev {
  margin-top: -40px !important;
  background-color: transparent !important;
}
.doctors-contr .owl-next {
  margin-top: -40px !important;
  background-color: transparent !important;
}
.doctors-contr h2 {
  color: #012636;
  margin-top: 15px;
  margin-bottom: 5px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 25px;
}
.doctors-contr .content {
  color: #012636;
  margin-top: 15px;
  margin-bottom: 5px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 27px;
}
.doctors-contr img {
  border-radius: 10px;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.doctors-contr .item:hover .meet-doctor {
  display: block !important;
}

.offer-section img {
  margin-top: 45px;
}

.offer-title {
  color: #0E5782;
  margin-top: 45px;
  text-align: center;
}

.offer-slider-iamge {
  border-radius: 26px;
}

.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;
}

.testimonial-main {
  padding-top: 90px;
  padding-bottom: 70px;
}

.testimonial-contr {
  margin-top: 50px;
}
.testimonial-contr .item {
  padding-left: 90px;
}
.testimonial-contr .item img {
  width: 70px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0px;
}
.testimonial-contr h1 {
  font-size: 18px;
  margin-bottom: 5px;
}
.testimonial-contr p {
  font-size: 16px;
}

.star-cn {
  margin-top: 15px;
}
.star-cn img {
  max-width: 12px;
  float: left;
  margin-right: 5px;
  height: auto !important;
  position: initial !important;
}

.why-choose {
  background: #F5F6F7;
}

.choose-contr {
  padding-top: 90px;
  padding-bottom: 90px;
}
.choose-contr img {
  border-radius: 15px;
}
.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;
}

.appointment-btn {
  background: #00577D;
  border: 2px solid #00577D;
  box-shadow: 3px 4px 11px rgba(2, 59, 84, 0.41);
  border-radius: 49px;
  color: #fff;
  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;
}

.cs02 {
  width: auto !important;
  max-width: 100% !important;
}

.fl-slide {
  padding: 0;
}

html:lang(ar) body a.appointment-btn svg {
  margin-left: 0;
  transition: 0.5s;
  transform: scaleX(-1);
  margin-right: 15px;
  position: relative;
  top: -2px;
}
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 .appointment-btn {
  direction: rtl;
}
html:lang(ar) body .read-more {
  direction: rtl;
}
html:lang(ar) body .read-more svg {
  transform: scaleX(-1);
}
html:lang(ar) body .banner-section .center-cn {
  text-align: right;
}
html:lang(ar) body .abt-img-sec img {
  padding-right: 0;
  padding-left: 100px;
}
html:lang(ar) body .abt-img-sec .view-more-contr {
  right: auto;
  bottom: -30px;
  left: 70px;
}
html:lang(ar) body .abt-img-sec .view-more-contr img {
  padding-left: 0 !important;
}
@media (max-width: 991px) {
  html:lang(ar) body .abt-img-sec img {
    padding-right: 0;
    padding-left: 20px;
  }
  html:lang(ar) body .abt-img-sec .view-more-contr {
    left: 0;
  }
}

@media (max-width: 1199px) {
  .banner-section h1 {
    font-size: 36px;
    line-height: 42px;
  }
  .bn2 {
    right: 0;
  }
  .insight-contr {
    padding-left: 20px;
    padding-right: 20px;
  }
  .owl-prev {
    left: -30px;
  }
  .owl-next {
    right: -30px;
  }
  .doctors-contr {
    padding-left: 20px;
    padding-right: 20px;
  }
  .doctors-contr .owl-prev {
    left: -8px;
  }
  .doctors-contr .owl-next {
    right: -8px;
  }
}
@media (max-width: 991px) {
  .abt-img-sec img {
    padding-right: 20px;
  }
  .abt-img-sec .view-more-contr {
    right: 0;
  }
  .offer-section img {
    margin-top: 45px;
  }
  .banner-section h1 {
    font-size: 15px !important;
    line-height: 20px;
  }
  .banner-section .owl-dots {
    bottom: 15px;
  }
  .choose-contr ul li {
    width: 100%;
  }
  .mc1 {
    width: 100%;
  }
  .mc-top {
    margin-top: 20px;
  }
  .insight-contr {
    padding-top: 30px;
  }
  .service-cn {
    padding-top: 30px;
  }
  .mn-title-sec {
    padding: 40px 0px;
    padding-bottom: 20px;
  }
  .about-section {
    padding: 60px 0px;
    padding-bottom: 60px;
  }
  .doctors-contr {
    margin-top: 40px;
  }
  .choose-contr {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .banner-section .owl-dots {
    bottom: -37px;
  }
  .insight-contr {
    padding-top: 50px;
  }
  .a-one {
    display: none;
  }
  .mn-title-sec h1 {
    padding: 0px 15px;
    padding-bottom: 10px;
  }
  .why-choose .appointment-btn {
    margin-bottom: 20px;
  }
  .abt-img-sec img {
    margin-bottom: 40px;
  }
  .abt-img-sec .view-more-contr {
    width: 150px;
    padding: 10px;
    bottom: 0;
  }
  .abt-img-sec .view-more-contr img {
    margin-bottom: 0;
    max-width: 100px;
    padding-top: 10px;
  }
  .abt-img-sec .view-more-contr .view-cn {
    height: 32px;
    line-height: 32px;
    width: 105px;
    margin-top: 16px;
    font-size: 16px;
  }
  .banner-section .fl-slide {
    height: 185px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .banner-section .bn-pdd {
    padding-right: 0px;
  }
  .banner-section .col-6 {
    width: 100%;
  }
  .s-full {
    width: 100%;
  }
  .choose-contr {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .appointment-btn {
    display: none;
  }
}
