@charset "UTF-8";
body {
  font-family: "Open Sans", sans-serif;
  color: #333333;
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  outline: none !important;
  overflow: auto;
  font-weight: 400;
}

a {
  color: #00778e;
  text-decoration: none;
}
a:hover {
  color: #acd28f;
  text-decoration: none;
}

#main {
  position: relative;
  transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  margin-top: 145px;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #00778e;
  border-top-color: #ecf8f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
/* Back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 12px;
  bottom: 12px;
  z-index: 996;
  background: #00778e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #acd28f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Sections General */
section {
  overflow: hidden;
}
section .section-title {
  text-align: center;
  margin-bottom: 2rem;
}
section .section-title h1,
section .section-title h2 {
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 2rem;
  margin: 0 !important;
  position: relative;
  color: #333333;
}
section .section-title h1:after,
section .section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #00778e;
  bottom: 0;
  left: calc(50% - 25px);
}
section .section-title p {
  margin-top: 2rem;
  margin-bottom: 0;
  color: #333333;
}
section .section-footer {
  text-align: center;
  margin-top: 0.5rem;
}
section .section-footer .show-more-btn {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  white-space: nowrap;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 25px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  color: #fff;
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
  margin: 0;
  background-color: #00778e;
  text-transform: uppercase;
}
section .section-footer .show-more-btn:hover {
  background-color: #acd28f;
}

.webapp-map iframe {
  border: 0 !important;
  width: 100%;
  height: 350px;
  margin: 0 !important;
  padding: 0 !important;
  position: relative;
  display: block;
}

.whatsapp-btn {
  position: fixed;
  right: 12px;
  bottom: 64px;
  z-index: 996;
  background-color: #25D366;
  color: #ffffff !important;
  font-size: 30px;
  border-radius: 4px;
  width: 40px;
  height: 40px;
  transition: all 0.1s;
  -webkit-transition: all 0.1s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

/* Breadcrumbs */
.breadcrumbs {
  position: relative;
  background-color: #f5f5f5;
}
.breadcrumbs .breadcrumb-title-page {
  font-weight: 500;
  margin: 0;
  color: #00778e;
  text-transform: capitalize;
  font-size: 1.4rem;
}
.breadcrumbs .breadcrumb {
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  font-size: 1rem;
}

/* swal */
.webApp-swal-popup {
  color: #333333 !important;
  border-radius: 0 !important;
}

.webApp-swal-btn {
  border-radius: 0 !important;
  padding: 0.5rem 0.75rem !important;
}

.swal2-confirm {
  background-color: #00778e !important;
  color: #FFFFFF !important;
}

.swal2-confirm:hover {
  background-color: #acd28f !important;
}

.swal2-cancel {
  border-radius: 0 !important;
  padding: 0.5rem 0.75rem !important;
}

/* validation form */
.webAppForm-is-valid {
  color: #1BC5BD !important;
  border: 1px solid #1BC5BD !important;
}

label.webAppForm-is-valid {
  border: unset !important;
}

.webAppForm-is-invalid {
  color: #F64E60 !important;
  border: 1px solid #F64E60 !important;
}

label.webAppForm-is-invalid {
  border: unset !important;
}

#recaptcha-error {
  display: none;
  color: #F64E60 !important;
}

.webapp-section-layout {
  position: relative;
  display: inline-block;
  width: -webkit-fill-available;
}
.webapp-section-layout .webapp-section-layout-left {
  float: left;
}
.webapp-section-layout .webapp-section-layout-right {
  float: right;
}

@media screen and (max-width: 992px) {
  #main {
    margin-top: 125px;
  }
}
@media screen and (max-width: 768px) {
  /*  Disable aos animation delay on mobile devices */
  [data-aos-delay] {
    transition-delay: 0 !important;
    -webkit-transition-delay: 0 !important;
  }
  .section-footer .show-more-btn {
    padding: 8px 18px !important;
    font-size: 12px !important;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs .breadcrumb-title-page {
    font-size: 1.2rem !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
@media print {
  /* Hide the header on all pages except the first */
  header.print-header,
  #topbar.print-header {
    display: block !important;
    position: relative !important;
  }
  @page {
    margin-top: 0 !important;
  }
  @page :first {
    margin-top: auto !important;
  }
}
/* Base font size for desktop */
html {
  font-size: 14px;
}

body {
  font-size: 1rem;
  line-height: 1.2;
}

h1, h2, h3, h4, h5, h6 {
  color: #00778e;
  font-family: "Roboto", sans-serif;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.2rem;
}

h6 {
  font-size: 1.1rem;
}

p {
  font-size: 1.3rem;
  line-height: 1.25;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  body {
    font-size: 1rem;
    line-height: 1.2;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  h4 {
    font-size: 1.2rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  h6 {
    font-size: 1rem;
  }
  p {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #00778e;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  z-index: 998;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
}
#topbar .topbar-scrolled {
  top: -40px;
}
#topbar i {
  color: #acd28f;
}
#topbar i:before {
  vertical-align: middle;
}
#topbar label {
  color: #acd28f;
}
#topbar .topbar-item-sociallinks ul {
  position: relative;
  display: flex;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
#topbar .topbar-item-sociallinks ul li {
  margin-right: 0.5rem;
}
#topbar #webApp-Set-Language .setLang-dropdown-btn {
  background-color: #ffffff;
  border-radius: 0.42rem;
  color: #00778e;
  font-weight: 600;
  padding: 2px 4px;
  border: 1px solid #f6f6f6;
  text-transform: uppercase !important;
}
#topbar #webApp-Set-Language .webApp-SetLanguage-menu {
  background-color: #f6f6f6;
  border-radius: 0.42rem;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.25);
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.25);
  padding: 0 !important;
  overflow: hidden;
  text-transform: uppercase !important;
}
#topbar #webApp-Set-Language .webApp-SetLanguage-menu .webApp-SetLanguage-option {
  position: relative;
  color: #333333 !important;
  font-weight: 600;
}
#topbar #webApp-Set-Language .webApp-SetLanguage-menu .webApp-SetLanguage-option:hover {
  background-color: #00778e !important;
  color: #ffffff !important;
}
#topbar #webApp-Set-Language .webApp-SetLanguage-menu .webApp-SetLanguage-option.active {
  color: #acd28f !important;
  background-color: transparent;
}
#topbar #webApp-Set-Language .webApp-SetLanguage-menu .webApp-SetLanguage-option.active:before {
  display: block;
  left: 2px;
  top: 4px;
  bottom: 4px;
  position: absolute;
  width: 5px;
  background-color: #acd28f;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  border-radius: 2px;
  content: " ";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  z-index: 997;
  top: 38px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .header-scrolled {
  top: 0;
}
#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
#header a {
  color: #333333;
}
#header img {
  max-height: 80px;
}
#header:has(.navbar-mobile) {
  z-index: 999 !important;
}

@media screen and (max-width: 992px) {
  #header .logo img {
    max-height: 60px;
  }
}
/**
* Appointment Button
*/
.appointment-btn {
  font-family: "Roboto", sans-serif;
  margin-left: 10px;
  background: #00778e;
  color: #fff !important;
  border-radius: 4px;
  padding: 6px 10px;
  white-space: nowrap;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  letter-spacing: 1px;
}
.appointment-btn:hover {
  background: #acd28f;
  color: #fff !important;
}

@media screen and (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
}
@media screen and (max-width: 500px) {
  .appointment-btn {
    display: none !important;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #333333;
  white-space: nowrap;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  text-transform: uppercase;
  font-weight: 500;
}
.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: #acd28f !important;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul a {
  padding: 10px;
  text-transform: none;
  line-height: 0.5;
  font-size: 12px;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover,
.navbar .dropdown ul a .active:hover,
.navbar .dropdown ul a li:hover > a {
  color: #acd28f !important;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #333333;
  font-size: 40px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media screen and (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
  .appointment-btn {
    margin-right: 10px;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(60, 60, 60, 0.9);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 8px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #333333 !important;
}
.navbar-mobile a:hover,
.navbar-mobile a .active,
.navbar-mobile a li:hover > a,
.navbar-mobile a:focus:hover,
.navbar-mobile a:focus .active,
.navbar-mobile a:focus li:hover > a {
  color: #acd28f !important;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul a .active:hover,
.navbar-mobile .dropdown ul a li:hover > a {
  color: #acd28f !important;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

#footer {
  background: #eeeeee;
  color: #333333;
}
#footer .footer-top {
  background: #f6f6f6;
}
#footer .footer-top .footer-info h3 {
  margin-bottom: 1.5rem;
  line-height: normal;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #acd28f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 0.5rem;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #00778e;
  text-decoration: none;
}
#footer .footer-top h4 {
  font-weight: 600;
  position: relative;
  margin-bottom: 1.5rem;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #acd28f;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #333333;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  display: inline-block;
  line-height: 1;
  text-transform: uppercase;
}
#footer .footer-top .footer-links ul a:hover {
  color: #acd28f;
}
#footer .copyright {
  text-align: center;
}

/*--------------------------------------------------------------
# webapp-carousel Section
--------------------------------------------------------------*/
#section-webapp-carousel {
  overflow: unset !important;
}

#webapp-carousel {
  width: 100%;
  height: 70vh;
  background-color: rgba(60, 60, 60, 0.8);
  position: relative;
}
#webapp-carousel .carousel,
#webapp-carousel .carousel-inner,
#webapp-carousel .carousel-item,
#webapp-carousel .carousel-item-img,
#webapp-carousel .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#webapp-carousel .carousel-item {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#webapp-carousel .carousel-item-img {
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: -1;
}
#webapp-carousel .container {
  margin: auto;
  margin-bottom: 4.5rem !important;
}
#webapp-carousel .container .webapp-carousel-content {
  background: rgba(255, 255, 255, 0.5);
  border-top: 4px solid #00778e;
  width: 50%;
  padding: 1rem;
  line-height: 1;
  text-align: justify;
}
#webapp-carousel .container .webapp-carousel-content h2 {
  color: #00778e;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1;
}
#webapp-carousel .container .webapp-carousel-content p {
  margin: 0 auto 1rem auto;
  color: #333333;
  font-weight: 700;
}
#webapp-carousel .carousel-inner .carousel-item {
  transition-property: opacity;
  -webkit-transition-property: opacity;
}
#webapp-carousel .carousel-inner .carousel-item,
#webapp-carousel .carousel-inner .active.carousel-item-start,
#webapp-carousel .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#webapp-carousel .carousel-inner .active,
#webapp-carousel .carousel-inner .carousel-item-next.carousel-item-start,
#webapp-carousel .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
#webapp-carousel .carousel-inner .carousel-item-next,
#webapp-carousel .carousel-inner .carousel-item-prev,
#webapp-carousel .carousel-inner .active.carousel-item-start,
#webapp-carousel .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}
#webapp-carousel .carousel-control-next-icon,
#webapp-carousel .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(0, 119, 142, 0.8);
  border-radius: 50px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#webapp-carousel .carousel-control-next-icon:hover,
#webapp-carousel .carousel-control-prev-icon:hover {
  background: #00778e;
  color: rgba(255, 255, 255, 0.8);
}
#webapp-carousel .carousel-indicators {
  margin-bottom: 2.5rem !important;
}
#webapp-carousel .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
#webapp-carousel .carousel-indicators li.active {
  opacity: 1;
  background: #00778e;
}
#webapp-carousel .btn-read-more {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 24px;
  border-radius: 4px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  line-height: 1;
  color: #fff;
  background: #00778e;
}
#webapp-carousel .btn-read-more:hover {
  background: #acd28f;
}

@media screen and (min-width: 1024px) {
  #webapp-carousel .carousel-control-prev,
  #webapp-carousel .carousel-control-next {
    width: 6%;
  }
}
@media screen and (max-width: 991px) {
  #webapp-carousel .webapp-carousel-content {
    width: fit-content !important;
    padding: 0.4rem !important;
  }
  #webapp-carousel .webapp-carousel-content h2 {
    font-size: 1.5rem !important;
    margin-bottom: 0.35rem !important;
  }
  #webapp-carousel .webapp-carousel-content p {
    font-size: 1rem !important;
    margin-bottom: 0.35rem !important;
  }
  #webapp-carousel .carousel-control-next,
  #webapp-carousel .carousel-control-prev {
    width: 10% !important;
  }
  #webapp-carousel .carousel-control-next-icon,
  #webapp-carousel .carousel-control-prev-icon {
    font-size: 20px !important;
    width: 40px !important;
    height: 40px !important;
  }
  #webapp-carousel .btn-read-more {
    font-size: 12px !important;
    padding: 0.75rem !important;
  }
}
@media screen and (max-width: 747px) {
  #webapp-carousel .carousel-item {
    background-size: contain;
  }
  #webapp-carousel .container {
    margin-bottom: 1.5rem !important;
  }
  #webapp-carousel .webapp-carousel-content {
    padding: 0.5rem !important;
  }
  #webapp-carousel .webapp-carousel-content h2 {
    font-size: 1rem !important;
    margin-bottom: 0.25rem !important;
  }
  #webapp-carousel .webapp-carousel-content p {
    font-size: 0.75rem !important;
    margin-bottom: 0.25rem !important;
  }
  #webapp-carousel .carousel-control-next,
  #webapp-carousel .carousel-control-prev {
    width: 10% !important;
  }
  #webapp-carousel .carousel-control-next-icon,
  #webapp-carousel .carousel-control-prev-icon {
    font-size: 15px !important;
    width: 30px !important;
    height: 30px !important;
  }
  #webapp-carousel .carousel-indicators {
    margin-bottom: 0.5rem !important;
  }
  #webapp-carousel .carousel-indicators li {
    width: 10px !important;
    height: 10px !important;
  }
  #webapp-carousel .btn-read-more {
    font-size: 10px !important;
    padding: 0.5rem !important;
  }
}
@media screen and (max-width: 576px) {
  #webapp-carousel .carousel-control-next,
  #webapp-carousel .carousel-control-prev {
    display: none !important;
  }
}
.webapp-cyclecounter {
  margin-top: -1.5rem;
  z-index: 1 !important;
  position: relative;
  text-align: justify;
}
.webapp-cyclecounter .webapp-cyclecounter-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 4px solid #00778e;
}
.webapp-cyclecounter .webapp-cyclecounter-box i {
  display: block;
  font-size: 2rem;
  color: #00778e;
  float: left;
}
.webapp-cyclecounter .webapp-cyclecounter-box .cyclecounter-box-title {
  margin-bottom: 0.5rem;
}
.webapp-cyclecounter .webapp-cyclecounter-box .cyclecounter-box-title span,
.webapp-cyclecounter .webapp-cyclecounter-box .cyclecounter-box-title h2 {
  display: block;
  font-weight: 700;
  color: #333333;
  margin-left: 15px;
  margin-bottom: 0 !important;
  font-size: 1.5rem;
}
.webapp-cyclecounter .webapp-cyclecounter-box p {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 768px) {
  .webapp-cyclecounter {
    margin-top: -0.25rem !important;
  }
  .webapp-cyclecounter .webapp-cyclecounter-box .cyclecounter-box-title span {
    font-size: 1.5rem;
  }
}
.webapp-openinghours-box {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 4px solid #00778e;
}
.webapp-openinghours-box i {
  display: block;
  font-size: 2rem;
  color: #00778e;
  float: left;
}
.webapp-openinghours-box .openinghours-box-title {
  margin-bottom: 0.5rem;
}
.webapp-openinghours-box .openinghours-box-title h3 {
  line-height: 1;
  display: block;
  font-weight: 700;
  color: #333333;
  margin-left: 15px;
  margin-bottom: 0 !important;
  font-size: 1.5rem;
}
.webapp-openinghours-box .openinghours-list li {
  line-height: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 1px solid #e7e7e7;
}
.webapp-openinghours-box .openinghours-list li label {
  color: #333333;
}
.webapp-openinghours-box .openinghours-list li span {
  color: #00778e;
  float: right;
}
.webapp-openinghours-box .openinghours-list li:last-child {
  border-bottom: none;
}
.webapp-openinghours-box .openinghours-list li.today label,
.webapp-openinghours-box .openinghours-list li.today span {
  color: #acd28f !important;
}

.webapp-cyclecounter .webapp-openinghours-box .openinghours-box-title h3 {
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .webapp-cyclecounter .webapp-openinghours-box .openinghours-box-title h3 {
    font-size: 1.5rem !important;
  }
}
.webapp-welcome {
  background-color: #f5f5f5;
}
.webapp-welcome .webapp-welcome-img {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
.webapp-welcome p {
  color: #333333;
  text-align: justify;
}
.webapp-welcome .moreaboutus-btn {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 25px;
  color: #fff;
  border: 2px solid #dfecef;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  margin-top: auto;
  background: linear-gradient(90deg, #00778e, #acd28f);
  position: relative;
}
.webapp-welcome .moreaboutus-btn:hover {
  background: #ffffff;
  border: 2px solid #00778e;
  color: #00778e;
}

@media screen and (max-width: 768px) {
  .webapp-welcome .moreaboutus-btn {
    padding: 8px 18px !important;
  }
}
@media screen and (max-width: 575px) {
  .webapp-welcome {
    text-align: center;
  }
}
.webapp-appointment {
  overflow: hidden;
  background: linear-gradient(90deg, #00778e, #acd28f);
}
.webapp-appointment .webapp-appointment-title {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.webapp-appointment .webapp-appointment-text {
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 600;
}
.webapp-appointment .webapp-appointment-btn {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 25px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  margin: 0;
}
.webapp-appointment .webapp-appointment-btn i {
  vertical-align: middle;
  margin-right: 0.5rem !important;
}
.webapp-appointment .webapp-appointment-btn:hover {
  background-color: #ffffff;
  color: #00778e;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .webapp-appointment .webapp-appointment-btn {
    padding: 8px 18px !important;
  }
}
.services-slider {
  overflow: hidden;
}
.services-slider .swiper-slide {
  height: auto !important;
}
.services-slider .services-item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background-color: #f5f5f5;
  text-align: center;
  border-radius: 4px;
  border-bottom: 4px solid #00778e;
  transition: all 0.35s;
  -webkit-transition: all 0.35s;
}
.services-slider .services-item .fa-link {
  position: absolute;
  color: #acd28f;
  background-color: rgba(51, 51, 51, 0.7);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.services-slider .services-item:hover i {
  opacity: 1;
}
.services-slider .services-item .services-item-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.services-slider .services-item .services-item-info {
  padding: 1rem;
}
.services-slider .services-item .services-item-info .services-item-title {
  position: relative;
  font-weight: 600;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: #333333;
}
.services-slider .services-item .services-item-info .services-item-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #00778e;
  bottom: 0;
  left: calc(50% - 25px);
}
.services-slider .services-item .services-item-info .services-item-description {
  margin: 0 !important;
  color: #333333;
}
.services-slider .services-item .services-item-btn {
  font-family: "Roboto", sans-serif;
  margin-top: auto !important;
  padding: 1rem;
  padding-top: 0 !important;
  vertical-align: middle;
  line-height: 1;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 600;
}
.services-slider .services-item .services-item-btn i {
  margin-right: 0.3125rem;
}
.services-slider .swiper-pagination {
  margin-top: 2rem;
  position: relative;
}
.services-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 2px solid #00778e;
  background-color: #f5f5f5;
}
.services-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00778e;
}

.webapp-ourdoctors {
  background-color: #f5f5f5;
  /*background-image: url("../img/doctors/our-doctors-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;*/
}

.ourdoctors-member {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.075);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.075);
}
.ourdoctors-member .fa-link {
  position: absolute;
  color: #acd28f;
  background-color: rgba(51, 51, 51, 0.7);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.ourdoctors-member:hover i {
  opacity: 1;
}
.ourdoctors-member .ourdoctors-member-img {
  position: relative;
  overflow: hidden;
}
.ourdoctors-member .ourdoctors-member-info {
  padding: 1rem;
}
.ourdoctors-member .ourdoctors-member-info .ourdoctors-member-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333333;
}
.ourdoctors-member .ourdoctors-member-info .ourdoctors-member-position {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #aaaaaa;
}

.blogs-slider {
  overflow: hidden;
}
.blogs-slider .blogs-item {
  box-sizing: content-box;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}
.blogs-slider .blogs-item .blogs-item-img {
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 4px solid #00778e;
}
.blogs-slider .blogs-item .fa-link {
  position: absolute;
  color: transparent;
  background-color: rgba(51, 51, 51, 0.75);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 1;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.blogs-slider .blogs-item:hover .fa-link {
  opacity: 1;
  color: #acd28f;
}
.blogs-slider .blogs-item .blogs-item-info {
  position: absolute;
  margin: auto;
  display: flex;
  align-items: start;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  top: 0;
  flex-direction: column;
  padding: 1rem;
  z-index: 1;
}
.blogs-slider .blogs-item .blogs-item-date {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.blogs-slider .blogs-item .blogs-item-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.blogs-slider .blogs-item .blogs-item-btn {
  font-family: "Roboto", sans-serif;
  vertical-align: middle;
  line-height: 1;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 600;
}
.blogs-slider .blogs-item .blogs-item-btn i {
  margin-right: 0.3125rem;
}
.blogs-slider .swiper-pagination {
  margin-top: 2rem;
  position: relative;
}
.blogs-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 2px solid #00778e;
  background-color: #f5f5f5;
}
.blogs-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00778e;
}

.webapp-calltoday {
  overflow: hidden;
  background-color: #f5f5f5;
}
.webapp-calltoday .calltoday-title {
  color: #00778e;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.webapp-calltoday .calltoday-text {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  margin: 0 !important;
}
.webapp-calltoday .calltoday-btn {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  white-space: nowrap;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 25px;
  color: #fff;
  border: 2px solid #dfecef;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  margin-top: auto;
  background: linear-gradient(90deg, #acd28f, #00778e);
  position: relative;
}
.webapp-calltoday .calltoday-btn i {
  vertical-align: middle;
  margin-right: 0.5rem !important;
}
.webapp-calltoday .calltoday-btn:hover {
  background: #ffffff !important;
  border: 2px solid #00778e;
  color: #00778e;
}

@media screen and (max-width: 991px) {
  .webapp-calltoday {
    text-align: center !important;
  }
  .webapp-calltoday .calltoday-btn {
    margin-top: 1rem !important;
    font-size: 14px !important;
    padding: 8px 18px !important;
  }
}
.webapp-contactinfo {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 4px solid #00778e;
}
.webapp-contactinfo .contactinfo-box {
  color: #333333 !important;
  text-align: center;
}
.webapp-contactinfo .contactinfo-box i {
  font-size: 32px;
  color: #00778e;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #00778e;
  margin-bottom: 1rem;
}
.webapp-contactinfo .contactinfo-box h3 {
  color: #333333 !important;
  font-weight: 700;
  margin-bottom: 1rem;
}
.webapp-contactinfo .contactinfo-box p {
  padding: 0;
  line-height: 24px;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.webapp-contactinfo .contactinfo-box p a {
  color: #333333;
}
.webapp-contactinfo .contactinfo-box p a:hover {
  color: #acd28f !important;
}
.webapp-contactinfo .contactinfo-box:last-child p {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 768px) {
  .webapp-contactinfo .contactinfo-box p {
    font-size: 1.1rem;
  }
}
.webapp-contactform {
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  background-color: #ffffff;
  border-bottom: 4px solid #00778e;
}
.webapp-contactform .form-title {
  padding: 1rem;
  text-align: center;
  background: linear-gradient(90deg, #00778e, #acd28f);
}
.webapp-contactform .form-title h2 {
  color: #ffffff;
  margin-bottom: 0 !important;
}
.webapp-contactform .webapp-contactform-sendmessage {
  padding: 2rem;
  width: 100%;
}
.webapp-contactform .webapp-contactform-sendmessage input,
.webapp-contactform .webapp-contactform-sendmessage textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
  padding: 0.5rem;
}
.webapp-contactform .webapp-contactform-sendmessage input:focus,
.webapp-contactform .webapp-contactform-sendmessage textarea:focus {
  border-color: #acd28f;
}
.webapp-contactform .webapp-contactform-sendmessage button[type=submit] {
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
  white-space: nowrap;
  background: #00778e;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  -webkit-transition: 0.4s;
  border-radius: 4px;
  font-size: 14px;
}
.webapp-contactform .webapp-contactform-sendmessage button[type=submit] i {
  vertical-align: middle;
  margin-right: 0.5rem;
}
.webapp-contactform .webapp-contactform-sendmessage button[type=submit]:hover {
  background: #acd28f;
}

.form {
  position: relative;
  overflow: hidden;
}
.form .webapp-spinner-form {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: auto;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}
.form .webapp-spinner-form.webapp-spinner-hide {
  display: none !important;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  .webapp-contactform-sendmessage button[type=submit] {
    padding: 8px 18px !important;
    font-size: 12px !important;
  }
}
aside {
  font-family: "Roboto", sans-serif;
}
aside nav ul.nav {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #f5f5f5;
  padding: 0 !important;
}
aside nav ul.nav li.nav-item a.nav-link {
  position: relative;
  padding: 0.8rem 0.5rem;
  line-height: 1;
  color: #00778e;
  background-color: transparent;
  font-weight: 600;
  font-size: 1.1rem !important;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
}
aside nav ul.nav li.nav-item a.nav-link:hover, aside nav ul.nav li.nav-item a.nav-link:active, aside nav ul.nav li.nav-item a.nav-link.active {
  background-color: #f5f5f5;
  color: #acd28f;
  border-left: 4px solid #acd28f;
}
aside nav ul.nav li.nav-item:not(:last-child) {
  border-bottom: 1px solid #f5f5f5;
}
aside nav #ourdoctorsSubMenu {
  list-style: none !important;
  padding: 0 !important;
}
aside nav #ourdoctorsSubMenu a {
  font-size: 1rem !important;
  padding: 0.5rem !important;
  font-weight: 500;
}
aside nav #ourdoctorsSubMenu a::before {
  content: "";
  font-size: 1.5rem;
  margin: auto 0.5rem auto 0;
  vertical-align: middle;
}
aside nav #ourdoctorsSubMenu a:hover, aside nav #ourdoctorsSubMenu a:active, aside nav #ourdoctorsSubMenu a.active {
  border-left: 0 !important;
}

@media screen and (max-width: 768px) {
  aside nav ul.nav li.nav-item a.nav-link {
    font-size: 12px !important;
    padding: 0.5rem !important;
  }
  aside nav #ourdoctorsSubMenu a {
    font-size: 11px !important;
  }
}
.aboutus-content-img {
  border-radius: 4px;
  border: 3px solid #ffffff;
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.075);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.075);
  width: 55%;
  float: right;
  margin-left: 1.5rem;
}

.aboutus-content-title {
  font-weight: 500;
  padding-bottom: 1.5rem;
  position: relative;
  color: #333333;
  margin-bottom: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-size: 1.7rem;
}
.aboutus-content-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #00778e;
  bottom: 0;
}

.aboutus-content-text {
  font-family: "Roboto", sans-serif;
  color: #333333;
  margin: 0 !important;
  text-align: justify;
}

.webapp-ourmission {
  background-color: #00778e;
  overflow: hidden;
}
.webapp-ourmission .sec-ourmission {
  font-family: "Roboto", sans-serif;
  text-align: center;
  width: 100%;
}
.webapp-ourmission .sec-ourmission .sec-ourmission-title {
  font-weight: 500;
  padding-bottom: 1.5rem;
  position: relative;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.webapp-ourmission .sec-ourmission .sec-ourmission-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #acd28f;
  bottom: 0;
  left: calc(50% - 25px);
}
.webapp-ourmission .sec-ourmission .sec-ourmission-text {
  color: #FFFFFF;
  margin: 0 !important;
}

.webapp-achievements {
  overflow: hidden;
}
.webapp-achievements .sec-achievements-title {
  font-weight: 500;
  padding-bottom: 1.5rem;
  position: relative;
  color: #333333;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: "Roboto", sans-serif;
}
.webapp-achievements .sec-achievements-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #00778e;
  bottom: 0;
  left: calc(50% - 25px);
}
.webapp-achievements .sec-achievements-img {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}
.webapp-achievements .sec-achievements-img img {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
}
.webapp-achievements .sec-achievements-list {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  position: relative;
  text-align: justify;
}
.webapp-achievements .sec-achievements-list li {
  position: relative;
  display: flex;
}
.webapp-achievements .sec-achievements-list li::before {
  content: "▶";
  color: #00778e;
  font-size: 1rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  line-height: 2;
}
.webapp-achievements .sec-achievements-list li:not(:last-child) {
  margin-bottom: 1rem;
}
.webapp-achievements .sec-achievements-list li p {
  margin: 0;
  color: #333333;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .aboutus-content-title {
    font-size: 1.5rem;
  }
  .aboutus-content-img {
    float: none !important;
    margin-left: 0 !important;
    width: 100%;
  }
}
.doctor-content .doctor-content-img {
  position: relative;
  display: block;
  width: 100%;
  max-width: 250px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  margin-right: 1rem;
}
.doctor-content .doctor-content-img img {
  position: relative;
  display: block;
  width: 100%;
  margin: auto;
}
.doctor-content .doctor-content-desc {
  font-family: "Roboto", sans-serif;
}
.doctor-content .doctor-content-desc .doctor-content-name {
  color: #00778e;
  font-weight: 600;
}
.doctor-content .doctor-content-desc .doctor-content-subtitle {
  color: #acd28f;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
  font-size: 1.3rem;
}
.doctor-content .doctor-content-desc .doctor-content-position {
  color: #333333;
  font-size: 1.1rem;
  font-weight: 500;
}
.doctor-content .doctor-content-bio {
  list-style: none;
  padding: 0;
  margin: 0 !important;
  position: relative;
  text-align: justify;
}
.doctor-content .doctor-content-bio li {
  position: relative;
  display: flex;
}
.doctor-content .doctor-content-bio li::before {
  content: "▶";
  color: #00778e;
  font-size: 1rem;
  margin-right: 0.5rem;
  vertical-align: middle;
  line-height: 2;
}
.doctor-content .doctor-content-bio li:last-child {
  font-weight: 600;
}
.doctor-content .doctor-content-bio li:last-child::before {
  content: none !important;
}
.doctor-content .doctor-content-bio li:last-child p {
  margin-left: 1.25rem;
}
.doctor-content .doctor-content-bio li:not(:last-child) {
  margin-bottom: 1rem;
}
.doctor-content .doctor-content-bio li p {
  margin: 0;
  color: #333333;
  line-height: 1.6;
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .doctor-content-name {
    font-size: 16px !important;
  }
  .doctor-content-subtitle {
    font-size: 14px !important;
  }
  .doctor-content-position {
    font-size: 12px !important;
  }
  .doctor-content-bio li p {
    font-size: 1rem !important;
  }
}
.publications-content-header {
  margin-bottom: 1rem;
  color: #acd28f;
  text-align: justify;
  font-weight: 600;
  font-size: 1.4rem;
}

.publications-content-list {
  text-align: justify;
  list-style: none;
  padding: 0;
  margin: 0 !important;
  direction: ltr !important;
  font-family: "Roboto", sans-serif;
  position: relative;
}
.publications-content-list li {
  position: relative;
  display: flex;
}
.publications-content-list li::before {
  content: "•";
  color: #00778e;
  font-size: 1.5rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}
.publications-content-list li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.publications-content-list li p {
  margin: 0;
  font-size: 1.1rem;
  color: #333333;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .publications-content-header {
    font-weight: 500 !important;
    font-size: 1.25rem !important;
  }
}
.ourservices-content .service-item {
  position: relative;
  margin-bottom: 1.5rem;
}
.ourservices-content .service-item:last-child {
  margin-bottom: 0 !important;
}
.ourservices-content .service-item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background-color: #ffffff;
  text-align: center;
  border-radius: 4px;
  border-bottom: 4px solid #00778e;
  -webkit-box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.075);
  box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.075);
  transition: all 0.35s;
  -webkit-transition: all 0.35s;
}
.ourservices-content .service-item a .fa-link {
  position: absolute;
  color: #acd28f;
  background-color: rgba(51, 51, 51, 0.7);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.ourservices-content .service-item a:hover {
  transform: translateY(-0.5rem);
  -webkit-transform: translateY(-0.5rem);
}
.ourservices-content .service-item a:hover i {
  opacity: 1;
}
.ourservices-content .service-item a .service-item-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ourservices-content .service-item a .service-item-info {
  padding: 1rem;
}
.ourservices-content .service-item a .service-item-info .service-item-title {
  position: relative;
  font-weight: 600;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: #333333;
}
.ourservices-content .service-item a .service-item-info .service-item-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #00778e;
  bottom: 0;
  left: calc(50% - 25px);
}
.ourservices-content .service-item a .service-item-info .service-item-description {
  margin: 0 !important;
  color: #333333;
}
.ourservices-content .service-item a .service-item-btn {
  font-family: "Roboto", sans-serif;
  margin-top: auto !important;
  padding: 1rem;
  padding-top: 0 !important;
  vertical-align: middle;
  line-height: 1;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 600;
}
.ourservices-content .service-item a .service-item-btn i {
  margin-right: 0.3125rem;
}

.service-content .service-content-body {
  font-family: "Roboto", sans-serif;
  line-height: 1.5 !important;
}
.service-content .service-content-body h2,
.service-content .service-content-body h3,
.service-content .service-content-body h4,
.service-content .service-content-body p,
.service-content .service-content-body ol,
.service-content .service-content-body ul {
  line-height: 1.5 !important;
  margin-bottom: 0.5rem !important;
}
.service-content .service-content-body h2 {
  font-weight: bold;
}
.service-content .service-content-body ol li::marker {
  color: #00778e;
  font-size: 1.5rem;
  font-weight: bold;
}
.service-content .service-content-body .service-content-info {
  text-align: justify;
}
.service-content .service-content-body .service-content-info p {
  font-size: 1.2rem !important;
}
.service-content .service-content-body .service-content-hashtags {
  height: 0px !important;
}
.service-content .service-content-body .service-content-hashtags label {
  color: #FFFFFF !important;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem !important;
}
.service-content .service-content-body .service-content-hashtags label i {
  margin-right: 0.5rem;
  vertical-align: middle;
}
.service-content .service-content-body .service-content-hashtags p {
  color: #FFFFFF !important;
  font-size: 1.1rem;
  font-weight: 500;
}
.service-content .service-content-body .service-content-youtube label {
  color: #00778e;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem !important;
}
.service-content .service-content-body .service-content-youtube label i {
  margin-right: 0.5rem;
  vertical-align: middle;
}
.service-content .service-content-body .service-content-youtube p {
  color: #333333;
  font-weight: 500;
  font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
  .service-content .service-content-body .service-content-info p {
    font-size: 1rem !important;
  }
  .service-content .service-content-body .service-content-hashtags label {
    font-size: 1.15rem !important;
  }
  .service-content .service-content-body .service-content-hashtags p {
    font-size: 0.9rem !important;
  }
  .service-content .service-content-body .service-content-youtube label {
    font-size: 1.15rem !important;
  }
  .service-content .service-content-body .service-content-youtube p {
    font-size: 0.9rem !important;
  }
}
.allblogs-content .blog-item {
  position: relative;
  margin-bottom: 1.5rem;
}
.allblogs-content .blog-item a {
  box-sizing: content-box;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: block;
}
.allblogs-content .blog-item a .blog-item-img {
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 4px solid #00778e;
}
.allblogs-content .blog-item a .fa-link {
  position: absolute;
  color: transparent;
  background-color: rgba(51, 51, 51, 0.75);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 1;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.allblogs-content .blog-item a:hover .fa-link {
  opacity: 1;
  color: #acd28f;
}
.allblogs-content .blog-item a .blog-item-info {
  position: absolute;
  margin: auto;
  display: flex;
  align-items: start;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  top: 0;
  flex-direction: column;
  padding: 1rem;
  z-index: 1;
}
.allblogs-content .blog-item a .blog-item-date {
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.allblogs-content .blog-item a .blog-item-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.allblogs-content .blog-item a .blog-item-btn {
  font-family: "Roboto", sans-serif;
  vertical-align: middle;
  line-height: 1;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 600;
}
.allblogs-content .blog-item a .blog-item-btn i {
  margin-right: 0.3125rem;
}

.blog-content .blog-content-header {
  position: relative;
  display: block;
}
.blog-content .blog-content-header .blog-content-header-title {
  font-family: "Roboto", sans-serif;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 0.75rem;
  background: rgba(51, 51, 51, 0.51);
}
.blog-content .blog-content-header .blog-content-header-title h2 {
  margin: 0 !important;
  font-size: 1.5rem;
  line-height: 1.5 !important;
  vertical-align: middle;
  color: #ffffff;
}
.blog-content .blog-content-header .blog-content-header-title span {
  line-height: 1.5 !important;
  font-size: 1rem;
  margin-left: 0.5rem !important;
  font-weight: 600;
  color: #ffffff;
  vertical-align: middle;
  padding: 0.5rem;
  background: #00778e;
  border-radius: 0 12px 0 12px;
}
.blog-content .blog-content-body {
  font-family: "Roboto", sans-serif;
  line-height: 1.5 !important;
}
.blog-content .blog-content-body h2,
.blog-content .blog-content-body h3,
.blog-content .blog-content-body h4,
.blog-content .blog-content-body p,
.blog-content .blog-content-body ol,
.blog-content .blog-content-body ul {
  line-height: 1.5 !important;
  margin-bottom: 0.5rem !important;
}
.blog-content .blog-content-body ol li::marker {
  color: #00778e;
  font-size: 1.5rem;
  font-weight: bold;
}
.blog-content .blog-content-body .blog-content-info {
  text-align: justify;
}
.blog-content .blog-content-body .blog-content-info p {
  font-size: 1.2rem !important;
}
.blog-content .blog-content-body .blog-content-hashtags {
  height: 0px !important;
}
.blog-content .blog-content-body .blog-content-hashtags label {
  color: #FFFFFF !important;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem !important;
}
.blog-content .blog-content-body .blog-content-hashtags label i {
  margin-right: 0.5rem;
  vertical-align: middle;
}
.blog-content .blog-content-body .blog-content-hashtags p {
  color: #FFFFFF !important;
  font-size: 1.1rem;
  font-weight: 500;
}
.blog-content .blog-content-body .blog-content-youtube label {
  color: #00778e;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem !important;
}
.blog-content .blog-content-body .blog-content-youtube label i {
  margin-right: 0.5rem;
  vertical-align: middle;
}
.blog-content .blog-content-body .blog-content-youtube p {
  color: #333333;
  font-weight: 500;
  font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
  .blog-content .blog-content-header .blog-content-header-title h2 {
    font-size: 1rem !important;
  }
  .blog-content .blog-content-header .blog-content-header-title span {
    font-size: 0.85rem !important;
  }
  .blog-content .blog-content-body .blog-content-info p {
    font-size: 1rem !important;
  }
  .blog-content .blog-content-body .blog-content-hashtags label {
    font-size: 1.15rem !important;
  }
  .blog-content .blog-content-body .blog-content-hashtags p {
    font-size: 0.9rem !important;
  }
  .blog-content .blog-content-body .blog-content-youtube label {
    font-size: 1.15rem !important;
  }
  .blog-content .blog-content-body .blog-content-youtube p {
    font-size: 0.9rem !important;
  }
}
.allfaqs-content .faq-list {
  padding: 0;
  list-style: none;
  text-align: justify;
}
.allfaqs-content .faq-list li {
  border-bottom: 1px solid #d9f1f2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.allfaqs-content .faq-list .faq-question {
  display: block;
  position: relative;
  line-height: 24px;
  font-weight: 600;
  padding-left: 25px;
  cursor: pointer;
  color: #acd28f !important;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.allfaqs-content .faq-list .faq-question h2 {
  font-size: 1.4rem;
  color: #acd28f !important;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.allfaqs-content .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
}
.allfaqs-content .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
  color: #333333;
  font-size: 1.2rem !important;
}
.allfaqs-content .faq-list .icon-show {
  display: none;
}
.allfaqs-content .faq-list .collapsed {
  color: #00778e !important;
}
.allfaqs-content .faq-list .collapsed h2 {
  color: #00778e !important;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.allfaqs-content .faq-list .collapsed:hover {
  color: #acd28f !important;
}
.allfaqs-content .faq-list .collapsed:hover h2 {
  color: #acd28f !important;
}
.allfaqs-content .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
  -webkit-transition: 0.6s;
}
.allfaqs-content .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
  -webkit-transition: 0.6s;
}

@media screen and (max-width: 768px) {
  .allfaqs-content .faq-list .faq-question h2 {
    font-size: 1.15rem !important;
  }
  .allfaqs-content .faq-list p {
    font-size: 1rem !important;
  }
}
.youtube-row {
  width: 100%;
}

.youtube-item a {
  box-sizing: content-box;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.youtube-item a i {
  position: absolute;
  background-color: rgba(51, 51, 51, 0.5);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  width: 100%;
  height: 100%;
  color: #acd28f;
  opacity: 0.5;
  transition: all 0.35s ease;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.youtube-item a .youtube-item-img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: -10% 0;
}
.youtube-item a:hover i {
  opacity: 1;
  z-index: 2 !important;
  background-color: rgba(51, 51, 51, 0.75);
}
.youtube-item a .youtube-item-title {
  position: absolute;
  width: 100%;
  display: block;
  bottom: 0;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.75);
  margin: 0;
  z-index: 1;
  text-align: center;
  border-bottom: 4px solid #00778e;
}

@media screen and (max-width: 575px) {
  .youtube-item a i {
    font-size: 30px;
  }
  .youtube-item a .youtube-item-title {
    font-size: 0.7rem;
    padding: 0.25rem;
  }
}
html[dir=rtl] #topbar i.fa-phone {
  margin-right: 0 !important;
  margin-left: 0.25rem !important;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
html[dir=rtl] #topbar .topbar-item-callus {
  margin-left: 0 !important;
  margin-right: auto !important;
}
html[dir=rtl] #topbar .topbar-item-setlang {
  margin-right: 0.5rem !important;
  margin-left: 0 !important;
}
html[dir=rtl] #topbar .topbar-item-sociallinks ul li {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}
html[dir=rtl] #header .logo {
  margin-right: 0 !important;
  margin-left: auto !important;
}
html[dir=rtl] #header .appointment-btn {
  margin-right: 10px !important;
}
html[dir=rtl] .appointment-btn i {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}
html[dir=rtl] .navbar a i,
html[dir=rtl] .navbar a:focus i {
  margin-left: 0 !important;
  margin-right: 5px !important;
}
html[dir=rtl] .navbar .dropdown ul {
  left: unset !important;
  right: 14px !important;
}
html[dir=rtl] #footer .footer-links i {
  padding-right: 0 !important;
  padding-left: 2px !important;
}
html[dir=rtl] #footer .footer-top .social-links a {
  margin-right: 0 !important;
  margin-left: 0.5rem;
}
html[dir=rtl] .back-to-top {
  right: unset !important;
  left: 12px;
}
html[dir=rtl] #webapp-carousel .carousel,
html[dir=rtl] #webapp-carousel .carousel-inner,
html[dir=rtl] #webapp-carousel .carousel-item,
html[dir=rtl] #webapp-carousel .carousel-item::before {
  right: unset !important;
}
html[dir=rtl] #webapp-carousel .carousel-item:nth-child(2) .carousel-item-img, html[dir=rtl] #webapp-carousel .carousel-item:nth-child(3) .carousel-item-img, html[dir=rtl] #webapp-carousel .carousel-item:nth-child(5) .carousel-item-img {
  transform: scaleX(-1);
}
html[dir=rtl] .webapp-cyclecounter .webapp-cyclecounter-box .cyclecounter-box-title span,
html[dir=rtl] .webapp-cyclecounter .webapp-cyclecounter-box .cyclecounter-box-title h2 {
  margin-left: 0 !important;
  margin-right: 15px;
}
html[dir=rtl] .webapp-cyclecounter .opening-hours-list li span {
  float: left !important;
}
html[dir=rtl] .webapp-openinghours-box .openinghours-box-title span,
html[dir=rtl] .webapp-openinghours-box .openinghours-box-title h3 {
  margin-left: 0 !important;
  margin-right: 15px;
}
html[dir=rtl] .webapp-openinghours-box .openinghours-list li span {
  float: left !important;
}
html[dir=rtl] .services-item .services-item-btn i {
  margin-right: 0 !important;
  margin-left: 0.3125rem;
}
html[dir=rtl] .webapp-appointment-btn i {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}
html[dir=rtl] .blogs-slider .blogs-item .blogs-item-btn i {
  margin-right: 0 !important;
  margin-left: 0.3125rem;
}
html[dir=rtl] .webapp-calltoday .calltoday-btn {
  background: linear-gradient(90deg, #00778e, #acd28f);
}
html[dir=rtl] .webapp-calltoday .calltoday-btn i {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
html[dir=rtl] .breadcrumb .breadcrumb-item + .breadcrumb-item {
  padding-left: 0 !important;
  padding-right: 0.5rem !important;
}
html[dir=rtl] .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: right !important;
  padding-left: 0.5rem !important;
  padding-right: 0 !important;
}
html[dir=rtl] .webapp-contactform-sendmessage button[type=submit] i {
  margin-right: 0 !important;
  margin-left: 0.5rem;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
html[dir=rtl] aside nav ul.nav li.nav-item a.nav-link:hover, html[dir=rtl] aside nav ul.nav li.nav-item a.nav-link:active, html[dir=rtl] aside nav ul.nav li.nav-item a.nav-link.active {
  border-left: 0 !important;
  border-right: 4px solid #acd28f;
}
html[dir=rtl] aside nav #ourdoctorsSubMenu a::before {
  margin: auto 0 auto 0.5rem !important;
}
html[dir=rtl] aside nav #ourdoctorsSubMenu a:hover, html[dir=rtl] aside nav #ourdoctorsSubMenu a:active, html[dir=rtl] aside nav #ourdoctorsSubMenu a.active {
  border-right: 0 !important;
}
html[dir=rtl] .webapp-section-layout .webapp-section-layout-left {
  float: right;
}
html[dir=rtl] .webapp-section-layout .webapp-section-layout-right {
  float: left;
}
html[dir=rtl] .webapp-achievements .sec-achievements-list li::before {
  content: "◀" !important;
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
  line-height: 2.5 !important;
}
html[dir=rtl] .doctor-content .doctor-content-img {
  margin-right: 0 !important;
  margin-left: 1rem;
}
html[dir=rtl] .doctor-content .doctor-content-bio li::before {
  content: "◀" !important;
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
  line-height: 2.5 !important;
}
html[dir=rtl] .service-item .service-item-btn i {
  margin-right: 0 !important;
  margin-left: 0.3125rem;
}
html[dir=rtl] .service-content .service-content-body .service-content-hashtags label i {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}
html[dir=rtl] .service-content .service-content-body .service-content-youtube label i {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}
html[dir=rtl] .aboutus-content-img {
  float: left !important;
  margin-left: 0 !important;
  margin-right: 1.5rem !important;
}
html[dir=rtl] .blog-item .blog-item-btn i {
  margin-right: 0 !important;
  margin-left: 0.3125rem;
}
html[dir=rtl] .blog-content .blog-content-header .blog-content-header-title span {
  margin-left: 0 !important;
  margin-right: 0.5rem !important;
}
html[dir=rtl] .blog-content .blog-content-body .blog-content-hashtags label i {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}
html[dir=rtl] .blog-content .blog-content-body .blog-content-youtube label i {
  margin-right: 0 !important;
  margin-left: 0.5rem !important;
}
html[dir=rtl] .allfaqs-content .faq-list .faq-question {
  padding-left: 0 !important;
  padding-right: 25px !important;
}
html[dir=rtl] .allfaqs-content .faq-list i {
  left: unset !important;
  right: 0 !important;
}
html[dir=rtl] .allfaqs-content .faq-list p {
  padding: 10px 25px 0 0 !important;
}
html[dir=rtl] .whatsapp-btn {
  left: 12px !important;
  right: unset !important;
}

@media screen and (min-width: 991px) {
  html[dir=rtl] .appointment-btn {
    margin-left: 0px !important;
  }
}
@media screen and (max-width: 991px) {
  html[dir=rtl] .appointment-btn {
    margin-left: 10px !important;
  }
}
@media screen and (min-width: 768px) {
  html[dir=rtl] #topbar .topbar-item-callus {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
  html[dir=rtl] #topbar .topbar-item-setlang {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  html[dir=rtl] .aboutus-content-img {
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100%;
  }
}