:root {
  --primary-color: #e90000; /* global scope */
  --primary-bg-color: #fff6f6; /* global scope */
  --primary-text-color: #000; /* global scope */
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 30px;
  margin: auto;
  position: relative;
}

/* btn */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--primary-color);
  padding: 8px 15px;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
}
.btn img {
  width: 100%;
  max-width: 15px;
  display: block;
}
.btn-primary {
  background-color: var(--primary-color);
}
.btn-secondary {
  color: var(--primary-color);
}

/* header */
.header {
  /* background-color: var(--bg-color); */
  background-color: #fff;
  min-height: 80px;
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  border-bottom: 1px solid var(--primary-color);
  z-index: 999;
  padding: 5px 0;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo-wrap img {
  width: 100%;
  max-height: 80px;
}
.header-menu-wrapper {
  display: flex;
  align-items: center;
  list-style: none;
}
.header-menu-wrap a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hamburger {
  max-width: 30px;
  width: 100%;
  display: none;
}

/* hero-section */
.hero-section {
  margin-top: 90px;
  position: relative;
}
.hero-slider-wrap {
  background-color: rgba(0, 0, 0, 0.8);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 60px 0 120px;
  min-height: 550px;
  /* display: flex !important; */
  position: relative;
}
.hero-slider-wrap::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.hero-slider-wrap1 {
  background-image: url(./assets/hero-bg1.jpg);
}
.hero-slider-wrap2 {
  background-image: url(./assets/hero-bg2.jpg);
}
.hero-main-wrapper {
  width: 60%;
  margin: auto;
  text-align: center;
}
.hero-slider-tagline {
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  background: var(--primary-color);
  padding: 4px 10px;
  font-size: 12px;
  margin-bottom: 5px;
}
.hero-slider-heading {
  font-size: 60px;
  color: #fff;
}
.hero-slider-para {
  color: #fff;
  margin-top: 10px;
  line-height: 150%;
}
.hero-slider-btn-wrap {
  display: flex;
  margin-top: 30px;
  gap: 10px;
  justify-content: center;
}
.hero-arrow-wrap {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
}
.hero-arrow-wrap > img {
  width: 100%;
  max-width: 40px;
  cursor: pointer;
}
.hero-left-arrow {
  transform: rotate(180deg);
}

/* form-main-wrapper */
.form-main-wrapper {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 70%;
  margin: -70px auto 0;
  box-shadow: 1px 0px 13px rgba(0, 0, 0, 0.2);
}
.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 1%;
}
.form-wrapper > input {
  width: 32.5%;
  min-height: 40px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid var(--primary-bg-color);
  font-size: 14px;
}
.form-wrapper > input#no-of-person,
.form-wrapper > input#form-submit {
  width: 49.3%;
}
.form-wrapper > input#form-submit {
  background-color: var(--primary-color);
  color: #fff;
}

/* trending-events-section */
.trending-events-section {
  padding: 60px 0;
}
.trending-main-wrapper > h2 {
  font-size: 40px;
  color: var(--primary-text-color);
  text-align: center;
}
.trending-event-wrapper {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}
.trending-event-wrap {
  border-radius: 24px;
  overflow: hidden;
  margin: 0 10px;
}
.trending-event-wrap > img {
  width: 100%;
  min-height: 230px;
}
.trending-arrow-wrap > img {
  background-color: var(--primary-color);
}
.trending-event-slider .slick-arrow {
  position: absolute;
  background: var(--primary-color);
  max-width: 40px;
  width: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  left: -10px;
  transform: rotate(180deg);
  z-index: 1;
}
.trending-event-slider .slick-arrow:last-child {
  right: -10px;
  transform: rotate(0);
  left: unset;
  z-index: 1;
}

/* yacht-list-section */
.yacht-list-section {
  padding: 60px 0;
  background-color: var(--primary-bg-color);
}
.yacht-list-main-wrapper > h2 {
  font-size: 40px;
  color: var(--primary-text-color);
  text-align: center;
}
.yacht-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1.3%;
  margin-top: 50px;
}
.yacht-list-wrap {
  background: white;
  border-radius: 12px;
  width: 24%;
  overflow: hidden;
}
.yacht-list-img-wrap {
  min-height: 250px;
  background-color: #f6f6f6;
}
.yacht-list-img-wrap > img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  max-height: 250px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.yacht-list-content-wrap {
  padding: 20px;
  color: var(--primary-text-color);
  border: 1px solid #e90000;
  border-radius: 0 0 12px 12px;
}
.yacht-list-heading {
  font-size: 20px;
}
.yacht-list-features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.yacht-list-features-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.yacht-list-features-wrap > img {
  max-width: 25px;
}
.yacht-list-features-wrap > p {
  font-size: 14px;
}
.yacht-list-price {
  font-size: 20px;
  font-weight: 700;
}
.yacht-list-price span {
  font-size: 16px;
}
.yacht-list-content-wrap > .btn {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
}

/* benefit-section */
.benefit-section {
  padding: 80px 0;
  background-image: url(./assets/benefits.bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
  position: relative;
}
.benefit-section::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.benefit-main-wrapper > h2 {
  font-size: 40px;
  color: #fff;
  text-align: center;
}
.benefit-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}
.benefit-wrap > img {
  width: 100%;
  max-width: 60px;
}
.benefit-wrap > h4 {
  color: #fff;
  margin: 10px 0;
}
.benefit-wrap > p {
  color: #fff;
  margin-bottom: 20px;
}

/* service-section */
.service-section {
  padding: 60px 0;
}
.service-main-wrapper > h2 {
  font-size: 40px;
  color: var(--primary-text-color);
  text-align: center;
}
.service-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 1.2%;
}
.service-wrap {
  /* width: 49.4%; */
  width: 32.5%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 230px;
  max-height: 230px;
}
.service-wrap:before {
  content: "";
  background: linear-gradient(270deg, black 20%, transparent);
  width: 60%;
  height: 100%;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
}
.service-wrap > img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* max-height: 500px;
  min-height: 500px; */
}
.service-content-wrap {
  position: absolute;
  width: 70%;
  right: 0;
  padding: 15px;
  top: 0;
  bottom: 0;
  text-align: right;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-content-wrap > h6 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
  text-transform: capitalize;
}
.service-btn-wrap {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.service-btn-wrap > a {
  flex: 1;
  justify-content: center;
  font-size: 14px;
}

/* trusted-section */
.trusted-section {
  padding: 60px 0;
  background-color: var(--primary-bg-color);
}
.trusted-main-wrapper > h2 {
  font-size: 40px;
  color: var(--primary-text-color);
  text-align: center;
}
.trusted-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.trusted-wrapper .slick-track {
  display: flex;
  align-items: center;
}
.trusted-wrap {
  width: 33%;
  margin: 0 10px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.trusted-wrap > img {
  width: 50%;
  margin: auto;
}

/* search section */
.search-section {
  padding: 60px 0;
  background-image: url(./assets/search-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.search-section::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.search-main-wrapper > h2 {
  font-size: 40px;
  color: #fff;
  text-align: center;
}
.search-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
  gap: 20px 1%;
  flex-wrap: wrap;
}
.search-wrap {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 24%;
}
.search-wrap > img {
  max-width: 50px;
  width: 100%;
}
.search-btn-wrapper {
  text-align: center;
  margin-top: 30px;
}

/* review-section */
.review-section {
  padding: 60px 0;
  /* background-color: var(--primary-bg-color); */
}
.review-main-wrapper > h2 {
  font-size: 40px;
  color: var(--primary-text-color);
  text-align: center;
}
.review-wrapper {
  display: flex;
  gap: 20px 1.2%;
  flex-wrap: wrap;
  margin-top: 50px;
}
.review-wrap {
  width: 32.5%;
  background-color: #fff;
  padding: 15px;
  border-radius: 12px;
  color: var(--primary-text-color);
  margin: 0 10px 10px;
  border: 1px solid var(--primary-bg-color);
}
.review-name-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.review-profile-wrap {
  width: 46px;
  height: 46px;
  background-color: #f6f6f6;
  border-radius: 100px;
  overflow: hidden;
}
.review-profile-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.review-name-wrap > h6 {
  font-size: 14px;
}
.review-name-wrap > p {
  font-size: 12px;
}
.review-content-wrap {
  margin-top: 20px;
}
.review-star-wrap {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.review-star-wrap > img {
  max-width: 18px;
  width: 100%;
  display: block;
}
.review-content-wrap > p {
  font-size: 14px;
  margin-top: 10px;
}

/* faq-section */
.faq-section {
  padding: 60px 0;
}
.faq-main-wrapper > h2 {
  font-size: 40px;
  color: var(--primary-text-color);
  text-align: center;
}
.faq-wrapper {
  margin-top: 30px;
}
.faq-wrap {
  margin-bottom: 20px;
  color: var(--primary-text-color);
}
.faq-ques {
  padding: 15px 55px 15px 15px;
  background: var(--primary-bg-color);
  cursor: pointer;
  position: relative;
}
.faq-ques::after {
  content: "";
  background-image: url(./assets/down.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(0deg);
  transition: all 0.2s ease-in-out;
}
.faq-wrap.active .faq-ques::after {
  transform: rotate(180deg);
  transition: all 0.2s ease-in-out;
}
.faq-ans {
  padding: 15px;
  font-size: 14px;
  border: 1px solid var(--primary-bg-color);
  display: none;
}

/* footer */
.footer {
  padding: 40px 0 30px;
  background-color: var(--primary-bg-color);
  text-align: center;
  color: var(--primary-text-color);
}
.footer-logo {
  max-width: 170px;
  width: 100%;
  display: inline-block;
}
.footer-logo > img {
  width: 100%;
}
.footer-main-wrapper > p {
  width: 60%;
  margin: 30px auto 0;
}
.footer-link-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0 0;
  gap: 20px;
}
.footer-link-wrap a {
  color: var(--primary-text-color);
}

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.slick-dots li {
  margin: 0 !important;
  width: 10px !important;
  height: 10px !important;
}
.slick-dots button {
  padding: 0 !important;
  background-color: #d9d6d6 !important;
  border-radius: 100%;
  width: 100% !important;
  height: 100% !important;
}
.slick-dots button::before {
  display: none;
}
.slick-dots .slick-active button {
  background-color: var(--primary-color) !important;
}

/* media query */
@media (max-width: 1024px) {
  .hero-main-wrapper {
    width: 100%;
  }
  .hamburger {
    display: block;
  }
  .header-menu-wrapper {
    position: absolute;
    background: #fff;
    width: 100%;
    left: 0;
    top: 85px;
    padding: 20px;
    display: none;
  }
  .header-menu-wrap {
    width: 100%;
  }
  .hero-slider-heading {
    font-size: 40px;
  }
  .yacht-list-wrap {
    width: 32.4%;
  }
  .trusted-wrap > img {
    width: 70%;
  }
  .service-wrap,
  .search-wrap {
    width: 49.4%;
  }
}
@media (max-width: 767px) {
  .trending-main-wrapper > h2,
  .yacht-list-main-wrapper > h2,
  .benefit-main-wrapper > h2,
  .review-main-wrapper > h2,
  .faq-main-wrapper > h2 {
    font-size: 34px;
  }
  .yacht-list-wrap {
    width: 49.3%;
  }
  .benefit-wrapper {
    flex-wrap: wrap;
  }
  .benefit-wrap {
    width: 49%;
  }
  .footer-main-wrapper > p,
  .service-wrap,
  .search-wrap,
  .form-wrapper > input,
  .form-main-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 600px) {
  .yacht-list-wrap,
  .benefit-wrap {
    width: 100%;
  }
}
