/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  /* Google Font */
  --montserrat: 'Montserrat', sans-serif;

  /* Color Palette */
  --white: #fff;
  --black: #000;
  --primary: #ff7800;
  --dark: #1a191a;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  color: var(--black);
  font-size: 16px;
  font-family: var(--montserrat);
  font-weight: 400;
  line-height: normal;
  background-color: var(--white);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
section,
.section {
  position: relative;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
a,
button {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
a,
button {
  outline: none;
  box-shadow: none;
}
button {
  background: unset;
  padding: 0;
  border: none;
}
ol,
ul {
  margin: 0;
  padding: 0;
}
ol li,
ul li {
  list-style: none;
}
img {
  height: auto;
  max-width: 100%;
  object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
  outline: none;
  box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
  margin: 0;
  padding: 0;
}

*::-moz-selection {
  background: var(--black);
  color: var(--white);
  text-shadow: none;
}
::-moz-selection {
  background: var(--black);
  color: var(--white);
  text-shadow: none;
}
::selection {
  background: var(--black);
  color: var(--white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--body-color);
  font-size: 16px;
  opacity: 1;
}

/* Reusable CSS Start */
.btn {
  font-size: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  letter-spacing: -0.1px;
  background-color: transparent;
  color: inherit;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 13px 17px;
  transition: all 0.3s ease-in-out;
}
.btn--primary {
  color: var(--primary);
  border-color: var(--primary);
}
.btn--primary:hover {
  color: var(--black);
  background-color: var(--primary);
}
.btn--white {
  color: var(--white);
  border-color: var(--white);
}
.btn--white:hover {
  color: var(--black);
  background-color: var(--white);
}
.btn-outline-primary {
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn--black {
  color: var(--white);
  border-color: var(--black);
  background-color: var(--black);
}
.btn--black:hover {
  color: var(--black);
  background-color: var(--white);
  border-color: var(--white)
}
.btn--orange {
  color: var(--white);
  border-color: var(--primary);
  background-color: var(--primary);
}
.btn--orange:hover {
  color: var(--primary);
  background-color: var(--white);
  border-color: var(--white)
}
.fw-extrabold {
  font-weight: 800;
}

.letter-spacing-05 {
  letter-spacing: -0.05px;
}
.letter-spacing-10 {
  letter-spacing: -0.1px;
}
/* Reusable CSS End */

/* Bootstrap Customized CSS Start */
.fs-1 {
  font-size: 28px !important;
  line-height: 1.08;
}
.fs-2 {
  font-size: 26px !important;
  line-height: 1.23;
}
.fs-3,
.fs-4 {
  font-size: 26px !important;
  line-height: 1.1;
}

.text-primary {
  color: var(--primary) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}
.bg-dark {
  background-color: var(--dark) !important;
}
/* Bootstrap Customized CSS End */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header {
  padding: 16px 0;
}
.logo,
.menu__logo {
  max-width: 88px;
}
.header__menu__btn,
.menu__close {
  width: 36px;
  height: 36px;
  padding: 8px;
  color: var(--primary);
  font-size: 16px;
  border: 1px solid var(--primary);
  transition: all 0.3s ease-in-out;
  background-color: transparent;
}
.header__menu__btn:hover,
.menu__close:hover {
  color: var(--black);
  background-color: var(--primary);
}

.menu .offcanvas {
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}
.menu__nav__item {
  border-bottom: 1px solid rgba(255, 119, 0, 0.2);
}
.menu__link {
  color: var(--white);
  padding: 14px 16px;
}
.menu__link:hover {
  color: var(--primary);
  background-color: rgba(255, 119, 0, 0.05);
}

.header__ul {
  gap: 20px;
}
.header__nav__link {
  color: var(--white);
}
.header__nav__link:hover {
  color: var(--primary);
}
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero__wrapper {
  width: 100%;
  aspect-ratio: 1.8 / 1;
}
.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Tolet Section CSS Start */
/* =============================== */
.tolet__wrapper {
  padding: 40px 0 60px;
  background: linear-gradient(to right, #ff6500 0%, #ff7800 100%);
}
.tolet__wrapper__title {
  font-size: 22px;
}
.tolet__info {
  gap: 10px;
}
.tolet__info__icon {
  gap: 3px;
  margin-top: 6px;
}
.tolet__info__icon span {
  width: 16px;
  height: 2px;
}
.tolet__map {
  max-width: 244px;
  margin: 0 auto 48px;
}
.tolet__map__image {
  mix-blend-mode: multiply;
}
.tolet__map__location {
  right: 22%;
  bottom: 24%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.tolet__map__animation {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--white);
}
.mapCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--white);
  background-color: transparent;
  opacity: 0;
  animation: mapAnim 4s infinite cubic-bezier(0.36, 0.11, 0.89, 0.32);
  transform: translate(-50%, -50%);
}
.mapCircle:nth-child(1) {
  animation-delay: 0;
}
.mapCircle:nth-child(2) {
  animation-delay: 0.75s;
}
.mapCircle:nth-child(3) {
  animation-delay: 1.5s;
}
.mapCircle:nth-child(4) {
  animation-delay: 2.25s;
}
.mapCircle:nth-child(5) {
  animation-delay: 3s;
}
@keyframes mapAnim {
  from {
    width: 10px;
    height: 10px;
    opacity: 0.5;
  }
  to {
    width: 2000%;
    height: 2000%;
    opacity: 0;
  }
}
/* =============================== */
/* :: 6.0 Tolet Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Slider Section CSS Start */
/* =============================== */
.slider__item {
  background: no-repeat center / cover, var(--primary);
  width: 100%;
  aspect-ratio: 1.8 / 1;
}
.slider__item--one {
  background-image: url('../imgs/bg-thumbs/slider/key-specifications.webp');
}
.slider__item--two {
  background-image: url('../imgs/bg-thumbs/slider/slider-bg-2.jpg');
}
.slider__item--three {
  background-image: url('../imgs/bg-thumbs/slider/slider-bg-3.jpg');
}
.slider__title__sm {
  font-size: 75%;
}
.slider__item--three .slider__text {
  padding-top: 20px;
}
.slider__text__box h3 span,
.slider__text__box ul li span {
  padding: 2px 4px;
}
.slider__text__box h3 {
  font-size: 16px;
  line-height: 1.05;
  margin-bottom: 10px;
}
.slider__text__box ul li {
  font-size: 12px;
}
.slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: transparent;
  border: 1px solid var(--white);
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.slider .swiper-pagination-bullet-active {
  background-color: var(--white);
}
/* =============================== */
/* :: 7.0 Slider Section CSS End */
/* =============================== */

/* ======================================================== */
/* :: 8.0 Available Section + Accommodation Section CSS Start */
/* ======================================================== */
.available__banner {
  padding: 34px 0;
}
.available__thumb {
  width: 100%;
  height: 300px;
  padding: 20px 16px;
  background: no-repeat center / cover, var(--white);
}
.available__thumb--one {
  background-image: url(../imgs/bg-thumbs/available/available-thumb-1.jpg);
}
.available__thumb--two {
  background-image: url(../imgs/bg-thumbs/available/available-thumb-2.jpg);
}
.available__Count__box {
  font-size: 24px;
}
.count-text {
  font-size: 220%;
}

.accommodation__wrapper {
  max-width: 1440px;
  padding: 52px 0 92px;
}
.accommodation__table tr:not(tfoot tr) {
  border-bottom: 1px solid var(--white);
}
.accommodation__table th,
.accommodation__table td {
  padding: 10px 16px;
  text-align: right;
  vertical-align: top;
  letter-spacing: -0.1px;
}
.accommodation__table th:first-child,
.accommodation__table td:first-child {
  padding-left: 0;
  text-align: left;
}
.accommodation__table th:not(:last-child),
.accommodation__table td:not(:last-child) {
  border-right: 1px solid var(--white);
}
.accommodation__thumb {
  position: relative;
  padding: 16px;
}
.accommodation__thumb__text {
  position: absolute;
  left: 24%;
  top: 57%;
}
.text-btn {
  color: var(--white);
}
.text-btn:hover {
  color: var(--black);
}
.notice-bar,
.notice-bar-icon {
  width: 2px;
  height: 80px;
  background-color: var(--white);
  display: inline-block;
}
.notice-bar-icon {
  width: 12px;
  height: 12px;
}
.accommodation .notice-bar {
  margin-left: 24%;
}
.bottom-section-btn {
  max-height: 24px;
  height: 100%;
}
/* ======================================================== */
/* :: 8.0 Available Section + Accommodation Section CSS End */
/* ======================================================== */

/* ====================================================== */
/* :: 9.0 Highlights Section + Features Section CSS Start */
/* ====================================================== */
.highlights__items__wrap {
  gap: 24px;
}
.highlights__item {
  width: 60%;
}
.highlights__text {
  max-width: 134px;
  width: 100%;
}
.highlights__icon {
  height: 40px;
  max-width: 35px;
}

/* ====================================================== */
/* :: 9.0 Highlights Section + Features Section CSS End */
/* ====================================================== */

/* =============================== */
/* :: 10.0 Key-feature CSS Start */
/* =============================== */

/* removeable */
.tolet__title {
  font-size: 18px !important;
}
/* removeable--end */

.feature--area {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  background-image: url('../imgs/bg-thumbs/key-features-bg.webp');
  z-index: 1;
  padding: 40px 0px 70px;
  min-height: 50vh;
}
.feature--area::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 280px;
  content: '';
  z-index: -1;
  background-image: linear-gradient(to top, #27405b, #080d1200);
}
.feature__header {
  margin-bottom: 20px;
}
.feature__box {
  background-color: #7289b4d9;
  padding: 18px 16px;
}
.feature__box p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

/* =============================== */
/* :: 10.0 Key-feature CSS End */
/* =============================== */

/* =============================== */
/* :: 11.0 clean CSS Start */
/* =============================== */

.clean--area {
  padding: 35px 0px 38px;
}

.clean__content {
  margin-bottom: 24px;
}

.clean__content h2 {
  margin-bottom: 12px;
}

.clean__content h3 {
  margin-bottom: 12px;
}

.clean__content p:not(:last-child) {
  margin-bottom: 13px;
}

.clean__content p {
  font-size: 16px;
  line-height: 1.5;
}

.clean__thumbnail img {
  max-width: 100%;
}

/* =============================== */
/* :: 11.0 clean CSS End */
/* =============================== */

/* =============================== */
/* :: 12.0 Service CSS Start */
/* =============================== */

.services__items .col {
  width: 50%;
  flex: 0 0 auto;
}

.services__item-img {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.services__item-img img {
  max-height: 100%;
}

.services__item {
  margin-bottom: 25px;
}

.services--area {
  padding: 40px 0px 20px;
}
.services__item h6 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 0px;
}
/* =============================== */
/* :: 12.0 Service CSS End */
/* =============================== */

/* =============================== */
/* :: 13.0 Block Image CSS Start */
/* =============================== */

.blockImg--area {
  height: 50vh;
}
.blockImg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
/* =============================== */
/* :: 13.0 Block Image CSS End */
/* =============================== */

/* =============================== */
/* :: 14.0 packed-area CSS Start */
/* =============================== */

.packed--area {
  padding: 40px 0px 40px;
}

.packed__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 720px;
  gap: 20px;
  margin-bottom: 24px;
}

.packed__thambnail img {
  max-width: 100%;
  min-height: 720px;
}

/* =============================== */
/* :: 14.0 packed-area CSS End */
/* =============================== */

/* =============================== */
/* :: 15.0 Terms CSS Start */
/* =============================== */
.terms {
  min-height: 720px;
}
.terms__content {
  padding: 30px 0px 40px;
}

.terms__content h2 {
  margin-bottom: 15px;
}

.terms__block {
  margin-bottom: 24px;
}

.terms__block h3 {
  margin-bottom: 7px;
}
.terms__map img {
  width: 100%;
  min-height: 720px;
  object-fit: cover;
}
.terms__map .w3w {
  position: absolute;
  bottom: 0;
  background: #fff;
  padding: 10px;
  font-size: clamp(1.375rem, 0.693vw + 1.196rem, 1.75rem);
  line-height: clamp(1.375rem, 0.693vw + 1.196rem, 1.75rem);
}
/* =============================== */
/* :: 15.0 Terms CSS End */
/* =============================== */

/* =============================== */
/* :: 16.0 Agent CSS Start */
/* =============================== */

.agent--area {
  padding: 30px 0px 40px;
}

.agent__title {
  margin-bottom: 24px;
}

.agent__item-img {
  margin-bottom: 15px;
}
.agent__item-content p a:hover {
  text-decoration: underline;
}

/* =============================== */
/* :: 16.0 Agent CSS End */
/* =============================== */

/* =============================== */
/* :: 17.0 footer CSS Start */
/* =============================== */
.footer {
  padding: 10px 0px 20px;
}
.footer__menu li a {
  text-align: center;
  display: block;
  color: #fff;
  padding: 4px 0px;
}
.footer__menu li:hover a {
  text-decoration: underline;
}
.footer__wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* =============================== */
/* :: 17.0 footer CSS End */
/* =============================== */
