@font-face {
  font-family: "Major Mono Display";
  src: url("../fonts/MajorMonoDisplay.ttf") format("truetype");
}
:root {
  --primary-color: #4da6e7;
  --secondary-color: #2a2a2a;
  --mono: "Major Mono Display";
  --accent: #0d6efd;
  --success: #28a745;
}

.header-area {
  box-shadow: none !important;
  background-color: transparent !important;
  z-index: 9999;
}
.header-area .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-area .logo img {
  max-height: 60px !important;
}
.header-area .logo .text h2 {
  font-size: 30px;
  font-family: var(--mono);
  color: var(--accent) !important;
}
.header-area .logo .text p {
  line-height: 1;
  font-size: 14px;
  white-space: nowrap;
  margin-left: 4px;
}
.header-area.background-header {
  background-color: #fff !important;
}
.header-area.background-header .main-nav .nav {
  float: none !important;
}
.header-area .main-nav .nav {
  float: right !important;
}
.header-area .main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .header-area .main-nav {
    display: block;
    align-items: flex-start;
  }
  .header-area .logo img {
    margin-top: 16px;
  }
  .header-area .logo .text {
    display: none;
  }
  .nav {
    background-color: #eee !important;
    margin-top: 0 !important;
  }
}
accent {
  color: var(--accent) !important;
}

dark {
  color: var(--secondary-color) !important;
}

.border-first-button a {
  color: var(--accent);
  border-color: var(--accent) !important;
}
.border-first-button a:hover {
  background-color: var(--accent) !important;
  color: #fff !important;
}

.main-banner .right-image {
  border-radius: 34px !important;
  overflow: hidden !important;
}

.about-left-image {
  border-radius: 34px !important;
  overflow: hidden !important;
}

.services-img {
  border-radius: 34px !important;
  overflow: hidden !important;
}

.services ul.nacc li .right-image img {
  max-width: unset !important;
}

/***** Custom Scrollbar *****/
body {
  --sb-track-color: #ffffff;
  --sb-thumb-color: #2a2a2a;
  --sb-size: 14px;
}

body::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 8px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 8px;
  border: 1px solid #ffffff;
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
/***** End Custom Scrollbar *****/
#services .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
#services .menu div {
  width: unset !important;
  padding-inline: 0.5rem;
}

.booking-card {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  overflow: hidden;
}
.booking-card .card-header {
  background-color: unset !important;
  padding: 1rem;
}
.booking-card .card-header h2 {
  text-transform: capitalize;
  font-size: 20px;
  color: var(--secondary-color);
}
.booking-card .card-footer {
  padding: 0.8rem 1rem;
}

.bg-success {
  background-color: var(--success) !important;
}

.no-wrap {
  white-space: nowrap;
}

.pt-128 {
  padding-top: 128px !important;
}

.loader {
  width: 60px;
  height: 16px;
  display: grid;
}

.loader:before,
.loader:after {
  content: "";
  grid-area: 1/1;
  --c: no-repeat linear-gradient(#046d8b 0 0);
  background: var(--c), var(--c), var(--c);
  animation: l16-1 1.5s infinite linear, l16-2 1.5s infinite linear;
  transform: scale(var(--s, 1)) translate(3px, -3px);
}

.loader:after {
  --s: -1;
}

@keyframes l16-1 {
  0%, 3% {
    background-size: 0 4px, 4px 0, 0 4px;
  }
  16.67% {
    background-size: 100% 4px, 4px 0, 0 4px;
  }
  33.33% {
    background-size: 100% 4px, 4px 100%, 0 4px;
  }
  46%, 54% {
    background-size: 100% 4px, 4px 100%, 100% 4px;
  }
  66.67% {
    background-size: 0 4px, 4px 100%, 100% 4px;
  }
  83.33% {
    background-size: 0 4px, 4px 0, 100% 4px;
  }
  96%, 100% {
    background-size: 0 4px, 4px 0, 0 4px;
  }
}
@keyframes l16-2 {
  0%, 49.9% {
    background-position: 0 0, 100% 0, 100% 100%;
  }
  50%, 100% {
    background-position: 100% 0, 100% 100%, 0 100%;
  }
}
.js-preloader {
  z-index: 99999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
}

.fs-sm {
  font-size: 14px !important;
}

.header-area {
  z-index: 99 !important;
}

.menu .thumb {
  display: flex !important;
  align-items: center !important;
  flex-direction: column !important;
  justify-content: center !important;
}/*# sourceMappingURL=custom.css.map */