html,
body {
  font-family: "Open Sans", sans-serif;
  color: #565656;
}

#vue-app {
  transition: opacity 0.15s;
  opacity: 1;
}

#vue-app[v-cloak] {
  opacity: 0;
}

.container-large {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
  max-width: 1440px;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.layout__footer {
  margin-top: auto !important;
  background: #f32;
}

/********** Template CSS **********/
:root {
  --second: #b5016c;
  --primary: #0463fa;
  --light: #eff5ff;
  --dark: #1b2c51;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-black {
  font-weight: 900 !important;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  padding: 20px 12px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (max-width: 991.98px) {
  .navbar .navbar-nav {
    border-top: 1px solid #eeeeee;
  }
}
.navbar .navbar-brand,
.navbar a.btn {
  height: 75px;
  height: 64px;
}

.navbar .navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
}

.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar .navbar-toggler {
  border: none;
  margin-right: 0;
  outline: none;
  box-shadow: none !important;
  background: rgba(var(--bs-light-rgb), 0.7);
  color: var(--primary);
  position: relative;
  width: 32px;
  height: 32px;
  padding: 0;
}
.navbar .navbar-toggler .icon-bar {
  position: absolute;
  display: block;
  width: 20px;
  height: 0;
  transition: all 0.2s;
  margin: 0;
  transform-origin: 50% 50%;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.navbar .navbar-toggler .icon-bar::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  left: 0;
  top: -1px;
  width: 100%;
  border-radius: 2px;
  background: var(--primary);
}
.navbar .navbar-toggler .icon-bar:nth-of-type(1) {
  margin-top: -7px;
}
.navbar .navbar-toggler .icon-bar:nth-of-type(3) {
  margin-top: 7px;
}
.navbar .navbar-toggler[aria-expanded=true] .icon-bar:nth-of-type(1) {
  margin-top: 0;
  transform: rotate(-45deg) translateY(-50%);
}
.navbar .navbar-toggler[aria-expanded=true] .icon-bar:nth-of-type(2) {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar .navbar-toggler[aria-expanded=true] .icon-bar:nth-of-type(3) {
  margin-top: 0;
  transform: rotate(45deg) translateY(-50%);
}
.navbar .navbar-toggler i {
  transition: transform 0.2s;
}
.navbar .navbar-toggler[aria-expanded=true] i {
  transform: rotate(90deg);
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}
/*** Header ***/
.header-carousel-outer [data-action=stop],
.header-carousel-outer [data-action=start] {
  display: none;
}

.header-carousel-outer .header-carousel .tns-item {
  height: 650px;
}

.header-carousel-outer .header-carousel .tns-item img {
  position: absolute;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.header-carousel-outer .header-carousel-text {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 3rem;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

.header-carousel-outer .tns-controls {
  position: absolute;
  width: 200px;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.header-carousel-outer .tns-controls [data-controls=prev],
.header-carousel-outer .tns-controls [data-controls=next] {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  overflow: hidden;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

.header-carousel-outer .tns-controls [data-controls=prev]:hover,
.header-carousel-outer .tns-controls [data-controls=next]:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.header-carousel-outer .tns-controls [data-controls=prev]:before,
.header-carousel-outer .tns-controls [data-controls=next]:before {
  content: "\f053";
  display: block;
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  text-rendering: auto;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  text-wrap-mode: nowrap;
  white-space-collapse: collapse;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.header-carousel-outer .tns-controls [data-controls=next]:before {
  content: "\f054";
}

.header-carousel-outer .tns-nav {
  position: absolute;
  height: 45px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.header-carousel-outer .tns-nav button {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 15px;
  transition: 0.5s;
}

.header-carousel-outer .tns-nav button::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 4px;
  left: 4px;
  background: #ffffff;
  border-radius: 5px;
}

.header-carousel-outer .tns-nav button.tns-nav-active {
  background: var(--primary);
  border-color: var(--primary);
}

.page-header {
  background: #4d87ba top center no-repeat;
  background-size: cover;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

.breadcrumb-item.active {
  color: var(--second);
}

/*** Service ***/
.service-item {
  transition: 0.5s;
}

.service-item:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
  transform: translateY(-10px);
}

.service-item .btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 40px;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.5s;
}

.service-item:hover .btn {
  width: 140px;
}

.service-item__icon i {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
  font-size: calc(1.275rem + 0.3vw) !important;
}

/*** Feature ***/
@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }
  .feature-text {
    padding-left: calc((100% - 960px) / 2 + 0.75rem);
  }
}
@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc((100% - 1140px) / 2 + 0.75rem);
  }
}
@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc((100% - 1320px) / 2 + 0.75rem);
  }
}
/*** Team ***/
.team-item .team-text {
  position: relative;
  height: 100px;
  transition: 0.25s;
  z-index: 10;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.team-item .team-text:hover {
  margin-top: -50px;
  height: 150px;
}

.team-social {
  transition: 0.5s;
  display: flex;
  gap: 4px;
}

.team-text .team-social {
  opacity: 0;
}

.team-text:hover .team-social {
  opacity: 1;
}

.team-social .btn {
  display: inline-flex;
  color: var(--primary);
  background: #ffffff;
  border-radius: 40px;
}

.team-social .btn:hover {
  color: #ffffff;
  background: var(--primary);
}

.team-carousel {
  display: block;
  text-decoration: none;
}
.team-carousel__wrapper {
  position: relative;
}
.team-carousel__wrapper [data-controls=prev]:before,
.team-carousel__wrapper [data-controls=next]:before {
  content: "\f053";
  display: block;
  position: absolute;
  font-family: "Font Awesome 6 Free";
  font-weight: 800;
  text-rendering: auto;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  text-wrap-mode: nowrap;
  white-space-collapse: collapse;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  color: rgba(var(--bs-primary-rgb), 1);
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
}
.team-carousel__wrapper [data-controls=next]:before {
  content: "\f054";
}
.team-carousel__wrapper .tns-controls {
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 100%;
  pointer-events: none;
}
.team-carousel__wrapper .tns-controls button {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  font-size: 18px;
  line-height: 18px;
  color: transparent;
  background: #fff;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  transform: scale(1);
  transition: all 0.25s;
}
.team-carousel__wrapper .tns-controls button:disabled {
  opacity: 0.65;
  filter: grayscale(1);
  box-shadow: none;
  transform: scale(0.95);
}
.team-carousel__wrapper .tns-nav {
  position: absolute;
  z-index: 1;
  bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  pointer-events: none;
}
.team-carousel__wrapper .tns-nav button {
  display: block;
  flex: 0 0 8px;
  padding: 0;
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  pointer-events: auto;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(var(--bs-primary-rgb), 0.6);
}
.team-carousel__wrapper .tns-nav .tns-nav-active {
  background: rgba(var(--bs-primary-rgb), 1);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
}
.team-carousel .tns-item {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 9/12;
}
.team-carousel .tns-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.tooltip {
  pointer-events: none;
}

/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
  top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
  border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
  font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  padding: 10px;
  border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
  background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
  border-bottom-color: var(--primary);
}

/*** Testimonial ***/
.testimonial-carousel {
  position: relative;
}

.testimonial-carousel::before,
.testimonial-carousel::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.testimonial-carousel::after {
  left: auto;
  right: 0;
  background: linear-gradient(to left, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
}

@media (min-width: 768px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 200px;
  }
}
@media (min-width: 992px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    width: 300px;
  }
}
.testimonial-carousel .testimonial-item {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.testimonial-carousel .testimonial-item__inner {
  max-width: 500px;
  margin: 0 auto;
}

.testimonial-carousel .testimonial-item .testimonial-text {
  background: var(--light);
  color: var(--secondary);
  transform: scale(0.8);
  transition: 0.35s;
}

.testimonial-carousel .testimonial-item.centered .testimonial-text {
  background: var(--primary);
  color: var(--light);
  transform: scale(1);
}

.testimonial-carousel .testimonial-item h5 {
  color: var(--secondary);
  transition: 0.35s;
}

.testimonial-carousel .testimonial-item.centered h5 {
  color: var(--light);
}

.testimonial-carousel .testimonial-item.centered img {
  background: var(--primary) !important;
}

.testimonial-carousel .tns-controls {
  position: absolute;
  width: 350px;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transition: 0.2s;
  z-index: 1;
}

.testimonial-carousel:hover .tns-controls {
  width: 300px;
  opacity: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .testimonial-carousel .tns-controls {
    width: 300px;
    opacity: 1;
  }
}
.testimonial-carousel .tns-controls button {
  display: block;
  position: relative;
  color: var(--primary);
  font-size: 45px;
  transition: 0.15s;
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: none;
  background: none;
  pointer-events: auto;
}

.testimonial-carousel .tns-controls button:not(:disabled):hover {
  color: var(--dark);
}

.testimonial-carousel .tns-controls button:disabled {
  filter: grayscale(1);
  opacity: 0.4;
}

/*** Footer ***/
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 14px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--primary);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--primary);
}

.location-map-popup {
  font-size: 10px;
}
.location-map-popup h5 {
  margin: 3px 0;
  font-size: 12px;
}
.location-map-popup p {
  margin: 1px 0;
  border-bottom: 1px solid #eee;
}
.location-map-popup p:last-child {
  border-bottom: none;
}
.location-map-popup .leaflet-popup-content {
  margin: 10px;
}
.location-map-popup img {
  max-width: 100%;
  overflow: hidden;
  border-radius: 6px;
}
.location-map-popup .leaflet-popup-close-button {
  background-color: #fff !important;
  border-radius: 8px;
}
