@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --brand: #157F80;
  --brand-light: #127A7B;
  --orange: #F4A968;
  --brand-light-bg: rgba(220, 25, 45, 0.04);
  --bg-light-blue: #D7E9F3;
  --link-color: #1D242E;
  --heading-color: #454545;
  --dark: #1B1918;
  --grey: #7B7B7B;
  --border-color: rgba(112, 112, 112, 0.431);
  --br: .875rem;
  --body-text-color: #4B4B4B;
  --border-radius: .35rem;
  --white: #ffffff;
  --body-font: "Montserrat", sans-serif;
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  font-display: swap;
  line-height: 1.65;
  color: var(--body-text-color);
  font-weight: 500;
  font-style: normal;
  font-size: 1.067rem;
  padding-right: 0 !important;
}

.custom-container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-left: auto;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}

.custom-container.start {
  margin-left: 0;
  margin-right: auto;
  padding-left: 0;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}

@media (min-width: 576px) {
  .custom-container {
    width: 540px;
    margin-left: auto !important;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .custom-container {
    max-width: 720px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .custom-container {
    max-width: calc(100vw - var(--vwlg));
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .custom-container {
    margin-left: auto;
    margin-right: 0;
    max-width: calc(100vw - var(--vwxl));
  }
  .custom-container.start {
    margin-left: 0 !important;
    margin-right: auto;
  }
}
@media (min-width: 1400px) {
  .custom-container {
    margin-left: auto;
    margin-right: 0;
    max-width: calc(100vw - var(--vwxxl));
  }
}
@media (max-width: 576px) {
  .custom-container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    max-width: calc(100% - 20px);
    width: 100%;
    padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

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

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

.fs-15 {
  font-size: 0.937rem;
}

.bg-light {
  background-color: rgba(0, 62, 110, 0.07) !important;
}

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

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

.bg-gradient {
  background-color: rgba(215, 233, 243, 0.24) !important;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: 0.875rem;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.ff-heading {
  font-family: var(--second-font);
}

.text-primary {
  color: var(--brand) !important;
}

.text-primary-light {
  color: var(--brand-light) !important;
}

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

.text-oranged {
  color: var(--orange);
}

.text-4b {
  color: #4B4B4B;
}

.text-5a {
  color: #5a5a5a;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

.white__link {
  color: var(--white);
}
.white__link:hover {
  color: var(--dark);
  text-decoration: underline;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  white-space: normal;
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a svg {
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: var(--brand);
}
a.move:hover svg {
  transform: translateX(1rem);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  font-weight: 600;
  font-display: swap;
  color: var(--dark);
  border-radius: var(--border-radius);
  padding: 0.5rem 1.75rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  transition: all 0.4s ease-in-out;
}
.btn.height {
  min-height: 2.875rem;
}
.btn.height.sm {
  font-size: 0.875rem;
  min-height: 2.25rem;
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
  border-width: 2px;
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}
.btn-outline-white:hover svg path, .btn-outline-white:focus svg path, .btn-outline-white:active svg path {
  fill: var(--brand);
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  border-width: 2px;
  color: var(--brand);
}
.btn-white:hover, .btn-white:focus {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}

.modal-open {
  padding-right: 0 !important;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}

.tooltip {
  opacity: 1;
}
.tooltip .tooltip-inner {
  padding: 0 0.5rem;
  min-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  opacity: 1;
  line-height: 1.2;
}

.tooltip.show {
  opacity: 1 !important;
}

.form-control, .form-select {
  background-color: #EAEAEA;
  border: 1px solid rgba(255, 255, 255, 0.5882352941);
  border-radius: 6px;
  height: 3.5rem;
  font-weight: 500;
  color: var(--dark);
  padding-left: 1rem;
  padding-right: 1rem;
}

.form-control::-moz-placeholder {
  color: #747474;
  opacity: 1;
}

.form-control::placeholder {
  color: #747474;
  opacity: 1;
}

.form-control:focus {
  outline: 0;
  box-shadow: none;
  background-color: #EAEAEA;
}

.iti__selected-flag {
  min-width: 95px;
  width: 100%;
}

.iti input, .iti input[type=text], .iti input[type=tel] {
  padding-left: 105px !important;
  font-weight: 500;
}

.iti {
  width: 100%;
}

.iti__country-list {
  max-width: 400px;
}

.pagination .page-item {
  margin: 0.2rem;
}
.pagination .page-item .page-link {
  border: 1px solid #E5E5E5;
  font-weight: 600;
  color: var(--body-text-color);
  border-radius: 0%;
  line-height: 1;
  padding: 0.75rem 0.75rem;
  min-width: 2.5rem;
  text-align: center;
}
.pagination .page-item .page-link img {
  width: 1.125rem;
}
.pagination .page-item .page-link.active {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.pagination .page-item.active .page-link {
  background-color: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .btn {
    font-size: 0.937rem;
    padding: 0% 0.75rem;
  }
  .btn .arrow {
    width: 18px;
    height: 8px;
    background-size: contain;
  }
  .btn.height {
    min-height: 2.5rem;
  }
  .container {
    max-width: calc(100% - 20px);
  }
}
#preloader {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: 1050;
  background-color: #fff;
}
#preloader .loader .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border: 3px solid #ebebec;
  border-radius: 50%;
}
#preloader .loader .loader-container:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border-top: 3px solid var(--brand);
  border-radius: 50%;
  animation: loaderspin 1.8s infinite ease-in-out;
  -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}
#preloader .loader .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#preloader .loader .loader-icon img {
  animation: loaderpulse alternate 900ms infinite;
  width: 70px;
  height: auto;
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

/*====================== Navigation Styles ===================*/
.scrolled-down {
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}

.scrolled-up {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease-in-out;
  background-color: var(--white);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.scrolled-up .navbar-brand img {
  max-height: 5rem;
}

.navbar {
  z-index: 1030;
}
.navbar .navbar-brand img {
  max-height: 5rem;
  width: auto;
}
.navbar .nav-item .nav-link {
  font-size: 1rem;
  text-transform: uppercase;
  color: #242424;
  padding: 0.875rem 1rem !important;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link svg {
  width: 1.25rem;
  height: 1.25rem;
}
.navbar .nav-item .nav-link svg path {
  fill: #242424;
}
.navbar .nav-item .nav-link:hover {
  color: var(--brand);
  background-color: rgba(255, 255, 255, 0.2156862745);
}
.navbar .nav-item.active .nav-link {
  color: var(--brand);
}
.navbar .nav-item.active .nav-link svg path {
  fill: var(--brand);
}
.navbar .btn-primary {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.navbar .btn-primary svg path {
  transition: all 0.3s ease-in-out;
}
.navbar .btn-primary:hover, .navbar .btn-primary:focus, .navbar .btn-primary:active {
  filter: brightness(115%);
  border-color: var(--brand);
  background-color: var(--brand);
  color: var(--dark);
}
.navbar .btn-primary:hover svg path, .navbar .btn-primary:focus svg path, .navbar .btn-primary:active svg path {
  fill: var(--dark);
}
.navbar .dropdown {
  -webkit-appearance: none;
}
.navbar .dropdown .dropdown-menu {
  position: absolute;
  top: 96%;
  left: 0%;
  width: 100%;
  min-width: 26rem;
  transition: all 0.3s ease;
  transform: scaleY(0);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}
.navbar .dropdown .dropdown-menu .dropdown-item {
  color: var(--link-color);
  font-size: 0.937rem;
  display: block;
  padding: 0.5rem 1rem;
  position: relative;
}
.navbar .dropdown .dropdown-menu .dropdown-item:hover, .navbar .dropdown .dropdown-menu .dropdown-item:focus, .navbar .dropdown .dropdown-menu .dropdown-item:active {
  color: var(--brand);
  background-color: #e9ecef;
}
.navbar .dropdown .dropdown-menu .dropdown-item:last-child {
  padding-bottom: 0.55rem;
}
.navbar .dropdown .dropdown-menu .dropdown-item:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.navbar .dropdown .dropdown-menu .active .dropdown-item {
  color: var(--brand);
  border-left: 0.25rem solid var(--brand);
  background-color: #e9ecef;
}
.navbar .dropdown .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown:hover > .nav-link {
  color: var(--brand);
  background-color: rgba(255, 255, 255, 0.2156862745);
}
.navbar .divider {
  width: 1px;
  height: 5.1rem;
  background: var(--divider) no-repeat center center/cover;
}
.navbar .navbar-toggler {
  border: 1px solid transparent;
  width: 2.875rem;
  height: 2.875rem;
  position: relative;
  margin-left: 1rem;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.sideNav ul.links__list li {
  border-bottom: 1px solid #eee;
}
.sideNav ul.links__list li a {
  display: flex;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--link-color);
  justify-content: space-between;
  align-self: center;
  font-size: 1rem;
}
.sideNav ul.links__list li a svg {
  width: 1.25rem;
  height: 1.25rem;
}
.sideNav ul.links__list li a svg path {
  fill: var(--dark);
}
.sideNav ul.links__list li a.btn__link::after {
  content: "+";
  font-family: inherit;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--link-color);
}
.sideNav ul.links__list li a.btn__link:not(.collapsed) {
  color: var(--brand);
}
.sideNav ul.links__list li a.btn__link:not(.collapsed)::after {
  content: "−";
  color: var(--brand);
}
.sideNav ul.links__list li a.collapse__btn {
  border-left: 1px solid #eee;
}
.sideNav ul.links__list li a:hover, .sideNav ul.links__list li a:focus, .sideNav ul.links__list li a:active {
  color: var(--brand);
}
.sideNav ul.links__list li .collapse li:first-child {
  border-top: 1px solid #eee;
}

.booking__modal .modal-dialog {
  max-width: 700px;
}

@media (min-width: 1500px) and (max-width: 1540px) {
  .navbar .navbar-brand.me-5 {
    margin-right: 1rem !important;
  }
}
@media (max-width: 1500px) {
  .res__link {
    display: none;
  }
}
@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    display: block;
  }
  .navbar .dropdown:hover > .nav-link {
    background-color: rgba(255, 255, 255, 0.3254901961);
  }
  .navbar .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 1200px) {
  .navbar .nav-link {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .navbar .btn-primary {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
    border-radius: 0.625rem !important;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 4rem;
  }
}
footer {
  padding: 3rem 0 0rem 0;
}
footer a {
  color: var(--white);
  text-transform: capitalize;
  font-size: 0.937rem;
  font-weight: 500;
}
footer a:hover {
  text-decoration: underline;
  color: var(--brand);
}
footer .contact__form {
  box-shadow: -20px 6px 46px rgba(0, 0, 0, 0.1607843137);
}
footer .after__bg::before {
  content: "";
  width: calc(100% + 4rem);
  height: calc(100% + 4rem);
  background-color: #191919;
  position: absolute;
  top: -2rem;
  left: -2rem;
  z-index: 0;
  border-radius: 2rem;
}
footer .copyright__wrapp {
  border-top: 1px solid var(--border-color);
}

@media (min-width: 992px) {
  footer {
    margin-top: 10rem;
  }
  footer .contact__form {
    margin-top: -10rem;
  }
}
.social__links li a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 3px;
  background-color: var(--brand);
  color: var(--white);
}
.social__links li a svg {
  width: 1.125rem;
  height: 1.125rem;
}
.social__links li a svg path {
  fill: var(--white);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--dark);
  color: var(--white);
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  z-index: 999;
  display: none;
}
.backTop svg {
  width: 1.5rem;
  height: 1.5rem;
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}

@media (max-width: 767.99px) {
  footer .logo__main {
    max-height: 6rem;
    width: auto;
  }
  footer .logo {
    max-height: 4rem;
    width: auto;
  }
}
@media (max-width: 575.99px) {
  footer .logo__main {
    max-height: 5rem;
    width: auto;
    margin-bottom: 1rem;
  }
  footer .logo {
    max-height: 3rem;
    width: auto;
  }
}/*# sourceMappingURL=variables.css.map */