* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-dark: #07484A;
  --primary-light: #70908B;
  --black: #000000;
  --light-gray: #ECECEC;
  --accent-yellow: #FFC107;
  --accent-mint: #CAF3E5;
  --accent-blue: #E0EFF6;
  --accent-pink: #F9D9DA;
  --white: #ffffff;
  --heading-font: "Roboto", sans-serif;
  --paragraph-font: "Open Sans", sans-serif;
  --Poppins: "Poppins", serif;
  --Playfair: "Playfair Display", serif;
  --font-paragraph-small: 12px;
  --font-paragraph-medium: 14px;
  --font-paragraph-large: 16px;
}

h1 {
  font-family: "Black Han Sans", sans-serif !important;
  margin: 0 !important;
  font-weight: normal;
  color: var(--primary-dark);
}

@media (min-width:1400px) {
  h1 {
    font-size: 4rem;
  }
}

h2 {
  margin: 0 !important;
  color: var(--primary-dark);
  font-weight: bold;
  font-family: var(--Poppins);
}

@media (min-width:1400px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  margin: 0 !important;
  font-weight: 400;
}

h4 {
  margin: 0 !important;
  font-weight: 400;
}

h5 {
  margin: 0 !important;
  font-weight: 400;
}

h6 {
  margin: 0 !important;
  font-weight: 400;
}

p {
  font-size: var(--font-paragraph-medium);
  color: var(--color-black);
  font-weight: 400;
  line-height: normal;
  font-style: normal;
  font-family: var(--paragraph-font);
  margin: 0;
}

@media (min-width:768px) {
  p {
    font-size: var(--font-paragraph-large);
  }
}

a {
  font-size: var(--font-paragraph-small) !important;
  color: var(--color-black);
  font-weight: 400;
  line-height: normal;
  font-style: normal;
  font-family: var(--paragraph-font);
}

@media (min-width:768px) {
  a {
    font-size: var(--font-paragraph-medium) !important;
  }
}

a:hover {
  color: var(--primary-dark);
}

.button {
  padding: 14px 24px;
  background-color: var(--primary-light);
  color: var(--white) !important;
  border-radius: 4px;
  border: 1px solid var(--primary-light);
  font-weight: 600;
  text-decoration: none;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-family: var(--paragraph-font);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.button::after {
  content: url('../images/payments/arrow.svg');
  margin-left: 8px;
  vertical-align: middle;
}

/*---- nav-icon style start ------*/
.navbar-brand img {
  width: 180px;
}

@media (max-width:768px) {
  .navbar-brand img {
    width: 150px;
  }
}
@media (max-width:350px) {
  .navbar-brand img {
    width: 120px;
  }
}
.search-input {
  width: 70%;
}

.search-icon {
  /*position: absolute;*/
  /*top: 50%;*/
  /*left: 10px;*/
  /*transform: translateY(-50%);*/
  color: #9e9e9e;
}

.mobile-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 50;
  padding-top: 10px;
}

.navbar .search-bar {
  display: none;
}

.navbar .search-bar.show {
  display: block;
}

@media (max-width: 767px) {
  .navbar .search-bar {
    display: none;
  }

  .search-input {
    width: 100%;
  }
}

.navbar .nav-icon {
  font-size: 18px !important;
  color: var(--primary-dark);
}

@media (max-width:768px) {
  .navbar .nav-icon {
    font-size: 16px !important;
    color: var(--primary-dark);
  }
}

/*----- nav-icon style end -----*/


/* Banner Section Style */
.banner-sec {
  width: 100%;
  background-image: url('../image/banner/banner.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 36px 0;
}

@media (min-width:1200px) {
  .banner-sec {
    background-size: cover;
    padding: 52px 0 400px 0;
  }
}

@media (min-width:1400px) {
  .banner-sec {
    /* height: 810px; */
    background-size: 100% 100%;
  }
}

.banner-sec h1 {
  font-family: "Black Han Sans", sans-serif !important;
  font-size: 24px;
}

@media (min-width:992px) {
  .banner-sec h1 {
    font-size: 60px;
  }
}

.banner-sec p {
  font-family: "Black Han Sans", sans-serif !important;
  font-size: 18px;
}

@media (min-width:768px) {
  .banner-sec p {
    font-size: 28px;
  }
}

/*------- banner style end -------*/

/*------- popular-products style sec --------*/
.popular-products {
  overflow: hidden;
  position: relative;
}

.popular-products .fixedImg {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 50%;
}

@media (min-width:992px) {
  .popular-products .fixedImg {
    max-width: 35%;
  }
}

@media (min-width:1200px) {
  .popular-products .fixedImg {
    max-width: 30%;
  }
}

@media (min-width:1400px) {
  .popular-products .fixedImg {
    max-width: 25%;
  }
}

.popular-products .popular-product-swiper {
  overflow: visible;
}

.popular-products .popular-product-swiper .swiper-slide {
  border-radius: 8px;
  min-height: 400px;
}

.popular-products .popular-product-swiper .swiper-slide:nth-child(odd) {
  background-color: var(--accent-mint);
}

.popular-products .popular-product-swiper .swiper-slide:nth-child(even) {
  background-color: var(--accent-blue);
}

/* Default (Mobile-first) styles */
.popular-products .popular-product-swiper .swiper-slide img {
  max-width: 100%;
  height: 213px;
  display: block;
  margin: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

/* Desktop-specific styles */
@media (min-width: 768px) {
  .popular-products .popular-product-swiper .swiper-slide img {
    max-width: 263px;
    height: 213px;
  }
}

.popular-products .popular-product-swiper .swiper-slide h5 {
  font-size: var(--font-paragraph-large);
  font-family: var(--paragraph-font) !important;
  font-weight: 600;
  line-height: normal;
  font-style: normal;
  margin: 0;
  color: var(--primary-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.popular-products .popular-product-swiper .swiper-slide p {
  color: var(--primary-dark);
  font-size: var(--font-paragraph-medium);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.popular-products .popular-product-swiper .swiper-slide del {
  font-weight: 400;
}

.popular-products .popular-product-swiper .swiper-slide span {
  font-size: var(--font-paragraph-medium);
  font-family: var(--paragraph-font);
  font-weight: bold;
  line-height: normal;
  font-style: normal;
  margin: 0;
  color: var(--primary-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* .popular-products .popular-product-navigation{
  position: relative!important;
} */
.popular-products .popular-products-next,
.popular-products .popular-products-prev {
  background-color: var(--accent-mint);
  width: 18px !important;
  height: 18px !important;
  border-radius: 18px !important;
  overflow: hidden;
  padding: 18px !important;
  position: relative !important;
  bottom: 0 !important;
  right: 0 !important;
}

.popular-products .popular-products-next {
  background-color: var(--accent-pink);
}

/*------- popular products style end --------*/

/*------- special-package-sec style start ------*/

.special-package-sec .item p,
.special-package-sec .item small {
  color: var(--primary-dark);
}

.special-package-sec .review .fa-star {
  color: var(--accent-yellow);
  font-size: var(--font-paragraph-medium);
}

.special-package-sec .special-package button {
  padding: 10px 24px;
  background: var(--primary-light);
  border: none;
  font-size: 12px;
  text-transform: capitalize;
  color: var(--white);
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

.special-package-sec .special-thumbnails-slider .swiper-wrapper {
  width: 90%;
  margin: 0;
}

.special-package-sec .special-thumbnails-slider .swiper-slide {
  cursor: pointer;
}

.special-package-sec .special-thumbnails-slider .swiper-slide .w-100 {
  background: var(--accent-mint);
  padding: 8px;
  border-radius: 8px;
}

.special-package-sec .special-thumbnails-slider .special-thumbnails-prev {
  top: 40%;
  right: 0;
  left: auto;
  background-color: var(--accent-mint);
  width: 18px;
  height: 18px;
  border-radius: 18px;
  overflow: hidden;
  padding: 18px;
  opacity: 1;
  transform: rotate(90deg);
}

.special-package-sec .special-thumbnails-slider .special-thumbnails-next {
  bottom: 40%;
  top: auto;
  right: 0;
  left: auto;
  background-color: var(--accent-pink);
  width: 18px;
  height: 18px;
  border-radius: 18px;
  overflow: hidden;
  padding: 18px;
  opacity: 1;
  transform: rotate(90deg);
}

/*------ special-package-sec style end -------*/

/*------ benefits sec start -------*/
.benefits-sec {
  background: var(--accent-blue);
  padding: 72px 0;
}

.benefits-sec h2,
.benefits-sec h4 {
  font-family: var(--Playfair);
  font-weight: bold;
}

/*------ benefits sec start -------*/

/*------ owncreation-sec style start -------*/
.owncreation-sec .col-lg-4 {
  background-color: var(--primary-light);
  border-radius: 0 8px 8px 0;
  min-height: 300px;
  /* margin: 72px 0; */
}

.owncreation-sec .col-lg-4 h2 {
  font-family: var(--Playfair);
}

.owncreation-sec .col-lg-4 h2,
.owncreation-sec .col-lg-4 p {
  color: var(--white);
}

.owncreation-sec .ownCreation .swiper-slide {
  position: relative;
  display: flex;
  justify-content: center;
}

.owncreation-sec .ownCreation .swiper-slide a {
  position: absolute;
  bottom: 16px;
  background: var(--white);
  color: var(--primary-dark);
  padding: 12px 24px;
  text-decoration: none;
  font-family: var(--paragraph-font);
  font-size: var(--font-paragraph-medium);
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

.owncreation-sec .ownCreation-pagination {
  position: relative;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: 0 !important;
  display: flex;
}

.owncreation-sec .ownCreation-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  border-radius: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-mint);
}

.owncreation-sec .ownCreation-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-dark);
}

.owncreation-sec .ownCreation-prev,
.owncreation-sec .ownCreation-next {
  background-color: var(--accent-mint);
  width: 18px !important;
  height: 18px !important;
  border-radius: 18px !important;
  overflow: hidden;
  padding: 18px !important;
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  right: auto !important;
  left: auto !important;
  margin: 0 !important;
}

.owncreation-sec .ownCreation-next {
  background-color: var(--accent-pink);
}

/*------ owncreation-sec sec style end -------*/

/*----- rooms-inspiration-sec style star -------*/
.rooms-inspiration-sec {
  background-color: var(--accent-mint);
}

.rooms-inspiration-sec .rooms-inspiration-prev,
.rooms-inspiration-sec .rooms-inspiration-next {
  background-color: var(--accent-blue);
  width: 18px !important;
  height: 18px !important;
  border-radius: 18px !important;
  overflow: hidden;
  padding: 18px !important;
}

.rooms-inspiration-sec .rooms-inspiration-next {
  background-color: var(--accent-pink);
}

/*----- rooms-inspiration-sec style end ------*/

/*----- testimonial-sec style start ------*/
.testimonial-sec h2 {
  font-family: var(--Playfair);
}

.testimonial-sec .testimonial-swiper .swiper-slide::before {
  content: url('../images/icons/quote.svg');
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width:768px) {
  .testimonial-sec .testimonial-swiper .swiper-slide::before {
    display: none;
  }
}

.testimonial-sec .testimonial-swiper .swiper-slide img {
  width: 200px;
  height: 200px;
  aspect-ratio: 1;
  object-fit: contain;
}

@media (max-width:768px) {
  .testimonial-sec .testimonial-swiper .swiper-slide img {
    width: 120px;
    height: 120px;
  }
}

.testimonial-sec .testimonial-swiper .swiper-slide p {
  font-family: var(--paragraph-font) !important;
  color: var(--primary-dark);
  font-size: var(--font-paragraph-large);
}

.testimonial-sec .testimonial-swiper .swiper-slide p .hidden-text {
  display: none;
}

.testimonial-sec .testimonial-swiper .swiper-slide p .read-more {
  font-weight: bold;
  color: var(--primary-dark);
}

.testimonial-sec .testimonial-swiper .swiper-slide .user-profile strong,
.testimonial-sec .testimonial-swiper .swiper-slide .user-profile span {
  font-size: var(--font-paragraph-medium);
  color: var(--primary-dark);
  display: block;
}

.testimonial-sec .testimonial-prev,
.testimonial-sec .testimonial-next {
  background-color: var(--accent-mint);
  width: 18px !important;
  height: 18px !important;
  border-radius: 18px !important;
  overflow: hidden;
  padding: 18px !important;
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  right: auto !important;
  left: auto !important;
  margin: 0 !important;
}

.testimonial-sec .testimonial-next {
  background-color: var(--accent-pink);
}

.testimonial-sec .testimonial-pagination {
  position: relative;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: 0 !important;
  display: flex;
  background-color: var(--accent-mint);
}

.testimonial-sec .testimonial-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  border-radius: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-mint);
}

.testimonial-sec .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-dark);
}

.testimonial-sec .all-review {
  font-size: var(--font-paragraph-medium);
  color: var(--primary-dark);
}

/*----- testimonial-sec style end -----*/

/*----- breadcrumb-sec sec start ------*/
.breadcrumb-sec {
  background-color: var(--accent-mint);
}

/*----- breadcrumb-sec sec end -------*/

/*----- product-details style start ------*/
.product-details .thumbnails-slider .swiper-slide {
  width: 100% !important;
  border-radius: 8px;
  background-color: red;
}

.product-details .thumbnails-slider .swiper-slide.undefined {
  opacity: .7;
}

.product-details .thumbnails-slider .swiper-slide img {
  width: 100%;
  height: 100px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}

.product-details .col-lg-6 .main-image-slider {
  background: #F9F1E7;
  border-radius: 8px;
}

/*----- product detail style end -------*/

/*------- swiper js style stat ------*/
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: var(--font-paragraph-small) !important;
  color: var(--primary-dark) !important;
  font-weight: bold;
}

/*------- swiper js style end -------*/

/*-------- footer style start ---------*/
.custom-footer {
  background-color: var(--accent-mint);
}

.custom-footer .item h5 {
  font-weight: bold;
  font-family: var(--Poppins);
  margin-bottom: 16px !important;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.custom-footer .item a {
  font-size: var(--font-paragraph-medium) !important;
  letter-spacing: 1px;
  font-family: var(--Poppins);
  font-weight: 400;
  color: var(--primary-dark);
}

.custom-footer .copyright {
  font-size: 14px;
  letter-spacing: 1px;
  font-family: var(--Poppins);
  font-weight: 400;
}

/*--------- footer style end ----------*/