.transparent-header {
  position: absolute;
  z-index: 9;
  height: 75px;
  padding: 5px 4%;
  width: 100%;
}
.transparent-header .logo-image img {
  width: 250px;
}
.transparent-header .header {
  display: flex;
  justify-content: space-between;
}
.transparent-header .nav-list {
  display: flex;
}
.transparent-header .nav-list .nav-link a {
  line-height: 66px;
  font-size: 16px;
  font-weight: 600;
  background-image: linear-gradient(to right, #000, #000 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: -100%;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.6s ease-in-out;
}
.transparent-header .nav-list .nav-link a::before {
  content: "";
  background: #000;
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 1.5px;
  transition: all 0.6s ease-in-out;
}
.transparent-header .nav-list .nav-link a:hover {
  background-position: 0;
}
.transparent-header .nav-list .nav-link a:hover::before {
  width: 100%;
}

p {
  margin: 0;
  padding: 0;
}

.no-padding {
  padding: 0 !important;
}

.no-margin {
  margin: 0 !important;
}

.yellow-color {
  color: #F6CD0F;
}

.relative {
  position: relative;
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  color: #000;
  text-decoration: none;
}

.bg-white {
  background-color: #fff;
}

.btn {
  padding: 1em 2em;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #006f89;
  transition: all 1000ms;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  border: 2px solid #006f89;
  z-index: 7;
}

.button:hover {
  color: #ffffff !important;
  box-shadow: 4px 5px 17px -4px #006f89;
}

.button::before {
  content: "";
  position: absolute;
  left: -50px;
  width: 0;
  top: 0;
  height: 100%;
  background-color: #2c9caf;
  transform: skewX(45deg);
  z-index: -1;
  transition: width 1000ms;
}

.button:hover::before {
  width: 250%;
}

.button a {
  transition: all ease-in-out 0.5s;
}

.button:hover a {
  color: #fff;
  transition: all ease-in-out 0.5s;
}

.small-btn {
  margin: 0;
  min-width: 100px;
  border: none;
  padding: 6px;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  letter-spacing: 2px;
}
.small-btn:hover {
  color: #000 !important;
  background-color: #eaeaea;
  border: 0;
  box-shadow: none;
}

.subscribe_button button::before {
  display: none;
}

.search-header {
  padding: 20px 15px;
  background-color: #fff;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.35s;
}
.search-header.search-show {
  opacity: 1;
  visibility: visible;
  transition: all ease-in-out 0.35s;
}
.search-header .search-form {
  position: relative;
}
.search-header .form-control {
  border: none;
  border-bottom: 2px solid #eaeaea;
  width: 100%;
}
.search-header .search-close {
  position: absolute;
  right: 0;
  top: 0px;
  cursor: pointer;
}
.search-header .search-close img {
  width: 45px;
}

.form-control {
  border-radius: 5px;
}

.form-control:focus {
  box-shadow: none;
}

.cta-btn .btn {
  color: #fff;
  border: 2px solid #fff;
  border-radius: 5px;
}
.cta-btn button:hover.btn {
  color: #006f89;
  border: 2px solid #006f89;
  border-radius: 5px;
}

.tab-below {
  display: none;
}

.mobile-none {
  display: block;
}

.nav-icon img, .responsive-close img {
  width: 30px;
}

header.colored {
  position: fixed;
  top: -100px;
  background-color: #fff;
  width: 100%;
  height: 95px;
}

header.colored.sticky {
  top: 0;
  width: 100%;
  transition: all 0.2s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  z-index: 999;
}

.non-transparent {
  display: none;
}

.transparent {
  display: block;
}

.transparent-header.colored.sticky .nav-list .nav-link a {
  background-image: linear-gradient(to right, #000, #000 50%, #006f89 50%);
}
.transparent-header.colored.sticky .nav-list .nav-link a::before {
  background-color: #000;
}
.transparent-header.colored.sticky .non-transparent {
  display: block;
}
.transparent-header.colored.sticky .transparent {
  display: none;
}

.mobile-navDetail {
  display: none;
}

/* From uiverse.io by @mrhyddenn */
.scrolldown {
  --color: white;
  --sizeX: 30px;
  --sizeY: 50px;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  margin-left: var(sizeX/2);
  border: calc(var(--sizeX) / 10) solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
  margin-bottom: 16px;
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  left: 45%;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: scrolldown-anim 2s infinite;
          animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px rgba(42, 84, 112, 0.4);
}

@-webkit-keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }
  40% {
    opacity: 1;
    height: 10px;
  }
  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }
  100% {
    height: 3px;
    opacity: 0;
  }
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }
  40% {
    opacity: 1;
    height: 10px;
  }
  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }
  100% {
    height: 3px;
    opacity: 0;
  }
}
.chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  -webkit-animation: pulse54012 500ms ease infinite alternate;
          animation: pulse54012 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  -webkit-animation: pulse54012 500ms ease infinite alternate 250ms;
          animation: pulse54012 500ms ease infinite alternate 250ms;
}

@-webkit-keyframes pulse54012 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}

@keyframes pulse54012 {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}
.mobile-only {
  display: none;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  font-size: 18px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next, .swiper-button-prev {
  background-color: #006f89;
  padding: 0px 12px;
  width: 38px;
  border-radius: 7px;
  top: 45%;
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 16px;
  color: #fff;
}

.fixed-btn {
  bottom: 8%;
  left: 0%;
  right: auto;
  z-index: 99;
  transform: translateY(-50%);
  position: fixed;
}
.fixed-btn .side-btn {
  padding-left: 0;
  list-style-type: none;
}
.fixed-btn .side-btn a {
  color: #fff;
  display: block;
  height: 45px;
  position: relative;
  text-align: center;
  line-height: 40px;
  width: 45px;
  z-index: 2;
  font-size: 20px;
  padding-right: 6px;
  padding-top: 4px;
}
.fixed-btn .side-btn a span {
  line-height: 45px;
  left: 40px;
  position: absolute;
  text-align: center;
  width: 200px;
  visibility: hidden;
  transition-duration: 0.5s;
  z-index: 1;
  opacity: 0;
  background-color: #006f89;
  border-top-right-radius: 8px;
  border-radius: 6px;
  font-size: 16px;
}
.fixed-btn .side-btn a:hover span {
  visibility: visible;
  left: 47px;
  opacity: 1;
  z-index: 2;
}
.fixed-btn .side-btn li {
  background-color: #006f89;
  margin-bottom: 2px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}

@media only screen and (max-width: 1300px) {
  .nav-link {
    padding: 8px;
  }
  .transparent-header {
    height: 65px;
    padding: 5px 3%;
  }
  .transparent-header .header {
    align-items: center;
  }
  .transparent-header .logo-image img {
    width: 195px;
  }
}
.desktop-only {
  display: block;
}

.button {
  transform: scale(0.85);
  transform-origin: left;
}

@media only screen and (max-width: 992px) {
  header.colored {
    height: 78px;
  }
  .desktop-only {
    display: none;
  }
  .nav-icon {
    display: flex;
    gap: 15px;
    align-items: center;
  }
  .transparent-header .header {
    display: flex;
    justify-content: space-between;
  }
  .transparent-header .responsive-nav {
    width: 100%;
    position: fixed;
    background-color: #fff;
    top: 0;
    height: 100%;
    z-index: 18;
    transform: translateX(-50%);
    left: 152%;
    transition: all ease-in-out 0.45s;
  }
  .transparent-header .responsive-nav.Dblock {
    left: 50%;
    transition: all ease-in-out 0.45s;
  }
  .transparent-header .nav-list {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .transparent-header .nav-list .nav-link {
    padding: 8px 15px;
  }
  .transparent-header .nav-list .nav-link a {
    line-height: 30px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    position: relative;
  }
  .transparent-header .nav-list .nav-link a::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #006f89;
    bottom: 0;
    left: 0;
    transition: all ease-in-out 0.45s;
  }
  .transparent-header .nav-list .nav-link a:hover::before {
    width: 100%;
    transition: all ease-in-out 0.45s;
    background-color: #fff;
  }
  .transparent-header .nav-list .nav-link a:hover {
    font-size: 18px;
    transition: all ease-in-out 0.45s;
  }
  .tab-below {
    display: flex;
  }
  .navlist-section {
    position: relative;
  }
  .nav-list {
    padding-top: 45px;
  }
  .responsive-close {
    position: absolute;
    left: auto;
    right: 0;
    text-align: center;
    padding: 2px;
    top: 0px;
    background-color: #006f89;
  }
  .responsive-close img {
    filter: brightness(0) invert(1);
  }
  .mobile-navDetail {
    display: block;
  }
  .mobile-navDetail .contact-info-nav {
    display: block;
    border-top: 1.5px solid #006f89;
    margin: 10px;
    padding: 25px 10px;
    padding-bottom: 0;
  }
  .mobile-navDetail .contact-info-nav .contact-nav-title {
    font-size: 20px;
    font-weight: 700;
    color: #006f89;
    margin-bottom: 10px;
  }
  .mobile-navDetail .contact-nav-social {
    margin: 10px;
    padding: 25px 10px;
    padding-top: 0;
    margin-top: 0;
  }
  .mobile-navDetail .social-nav-title {
    font-size: 20px;
    font-weight: 700;
    color: #006f89;
    margin-bottom: 10px;
  }
  .mobile-navDetail .contact-nav-list {
    margin-bottom: 8px;
  }
  .mobile-navDetail .contact-nav-list a {
    font-size: 18px;
    font-weight: 600;
  }
  .mobile-navDetail .contact-nav-list i {
    color: #006f89;
    padding-right: 5px;
  }
  .mobile-navDetail .social-nav-list .headerSocial_link {
    list-style-type: none;
    display: flex;
    gap: 15px;
    padding-left: 0;
  }
  .nav-icon img {
    filter: brightness(0) invert(1);
  }
  .search-icon {
    filter: brightness(0) invert(1);
  }
  header.colored .nav-icon img {
    filter: brightness(1) invert(0);
  }
  header.colored .search-icon {
    filter: brightness(1) invert(0);
  }
}
@media only screen and (max-width: 600px) {
  .transparent-header {
    padding: 0 3%;
  }
  .transparent-header .nav-list .nav-link a {
    background-image: linear-gradient(to right, #000, #000 50%, #006f89 50%);
  }
  .mobile-none {
    display: none;
  }
  .mobile-only {
    display: block;
  }
  .subscribe_section .subscribe_newsletter .subscribe_button .small-btn {
    border-radius: 5px;
    padding: 8px 15px !important;
    color: #000 !important;
    font-weight: 600 !important;
  }
  .button {
    transform-origin: center;
  }
  .booking-end-button {
    justify-content: center;
    align-items: center;
  }
  .btn {
    font-size: 12px;
    letter-spacing: 4px;
    text-align: center;
  }
  .swiper-button-next, .swiper-button-prev {
    padding: 0px 8px;
    width: 30px;
    height: 32px;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 12px;
    color: #fff;
  }
  .fixed-btn {
    bottom: 5%;
  }
}
.button.blog-small_btn {
  transform: scale(0.65);
}

.coloredbar {
  background-color: #b6b6b6 !important;
  opacity: 0.65;
}

.return-date {
  transition: all ease-in-out 0.45s;
}

.not-show {
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.45s;
  position: absolute;
}/*# sourceMappingURL=nav.css.map */