@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* general styling */
@font-face {
  font-family: "Minion Pro";
  src: local("Minion Pro"),
    url("./webfonts/MinionPro-Regular.woff") format("woff"),
    url("./webfonts/MinionPro-Medium.woff") format("woff"),
    url("./webfonts/MinionPro-Semibold.woff") format("woff");
}

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

body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
}

a {
  color: black;
  text-decoration: none;
}

.container {
  max-width: 1170px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/* Header section */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background-color: transparent;
  transition: all 0.3s ease-in-out;
}
header .container {
  max-width: 1400px;
  overflow: visible;
}

header.active {
  background-color: #fff;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  z-index: -2;
}

header.active::before {
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  gap: 20px;
}

header .nav-items {
  max-width: 500px;
  display: block;
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

header .nav-items a {
  color: #fff;
}

header.active .nav-items a {
  color: #737373;
}

.buttons a {
  color: #ff8c00;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 210px;
  width: 100%;
  transition: all 0.3s ease 0s;
}

.buttons svg {
  transition: all 0.3s ease 0s;
  padding: 10px;
  fill: #fff;
  background-color: #ff8c00;
  border-radius: 100%;
  width: 38px;
}

#menu-btn {
  display: none;
}

/* Hero Section */
#hero-section {
  min-height: 600px;
  height: calc(100vh + 38px);
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel .hero-title {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
}

.hero-carousel .hero-title > h1 {
  font-size: 28px;	
}

.hero-carousel .hero-title > h1::after {
  content: "";
  width: 100px;
  height: 5px;
  background: #fff;
  display: block;
  margin: 20px auto;
}

.hero-carousel .hero-title h2 {
  font-size: 18px;
}

.hero-carousel .prev {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  border-radius: 50%;
  opacity: 1;
  transition: 0.5s;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background-color: transparent;
  border: 2px solid #fff;
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.hero-carousel .prev svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #fff;
  width: 15px;
}

.hero-carousel .next {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  border-radius: 50%;
  opacity: 1;
  transition: 0.5s;
  width: 55px;
  height: 55px;
  line-height: 55px;
  background-color: transparent;
  border: 2px solid #fff;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  color: #fff;
  transition: all 0.2s ease-in-out;
}

.hero-carousel .next svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: #fff;
  width: 15px;
}

.hero-carousel > ul {
  padding: 0;
  margin: 0;
}

.slide {
  position: absolute;
  top: 0;
  z-index: -1;
  opacity: 0;
  height: 100%;
  width: 100%;
  transition: opacity 0.5s ease-in-out;
  transition-delay: 0.5s;
}

.slide.active {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  transition-delay: 0s;
}

.slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.9);
}

/* Booking Section */
#booking-section form {
  display: flex;
  align-items: center;
  padding: 10px 10px 10px 50px;
  background-color: #fff;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  margin: -30px auto 30px;
  max-width: 1024px;
  position: relative;
  z-index: 1;
  border-radius: 40px;
  max-width: 800px;
}

.name-container,
.email-container,
.contact-container {
  width: 25%;
}

.name-container input,
.email-container input,
.contact-container input {
  width: 100%;
  /* height: 58px; */
  font-size: 18px;
  border: none;
  padding: 10px;
  outline: none;
}

.email-container input {
  border: solid 1px #dedbdb;
  border-top: none;
  border-bottom: none;
}

.book-now-btn {
  width: 20%;
  /* height: 58px; */
  margin: 0 0 0 auto;
}

.book-now-btn > button {
  width: 100%;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background-color: #ff8c00;
  color: #fff;
  font-size: 18px;
  padding: 10px;
  border-radius: 40px;
}

/* Gallery Section */
#gallery {
  background: url(../images/cottage-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 80px 0;
  position: relative;
}

#gallery .right-bg {
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(180deg);
  width: 170px;
}

#gallery h2 {
  font-family: "Cinzel Decorative", serif;
  font-size: 40px;
  color: #ff8c00;
  margin: 0 0 40px;
}

#gallery p {
  font-size: 18px;
  width: 65%;
  margin: 0 auto;
  text-align: justify;
  text-align-last: center;
}

.gallery-container .flex {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
  justify-content: space-evenly;
  margin: 0 0 30px;
}

.flex .left {
  width: 49%;
}

.flex .right {
  width: 49%;
}

.flex .left .left-top {
  display: flex;
  width: 100%;
  height: 380px;
  gap: 10px;
  margin: 0 0 10px;
  justify-content: space-between;
}

.left-top .left-img {
  width: 49%;
}

.left-top .right-img {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.left-top .left-img div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.left-top .left-img div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease-in-out;
}

.left-top .right-img div {
  overflow: hidden;
}

.left-top .right-img div img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease-in-out;
}

.flex .left .left-bottom {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.flex .left .left-bottom div {
  width: 100%;
  height: 170px;
  overflow: hidden;
}

.flex .left .left-bottom div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease-in-out;
}

.flex .right .right-top {
  display: flex;
  width: 100%;
  height: 380px;
  gap: 10px;
  margin: 0 0 10px;
  justify-content: space-between;
}

.right-top .right-img {
  width: 49%;
}

.right-top .left-img {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.right-top .right-img div {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.right-top .right-img div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease-in-out;
}

.right-top .left-img div {
  width: 100%;
  height: 185px;
  overflow: hidden;
}

.right-top .left-img div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease-in-out;
}

.flex .right .right-bottom {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.flex .right .right-bottom div {
  width: 32%;
  max-height: 170px;
  height: 100%;
  overflow: hidden;
}

.flex .right .right-bottom div img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease-in-out;
}

/* Cottage Section */
#cottages-section {
  text-align: center;
  padding: 80px 0 0;
  min-height: 600px;
}

#cottages-section h2 {
  font-family: "Cinzel Decorative", serif;
  font-size: 40px;
  color: #ff8c00;
  margin: 0 0 40px;
}

#cottages-section .container {
  height: 100%;
  position: relative;
}

.cotSwiper .swiper-slide img {
  width: 85%;
  height: 350px;
  object-fit: cover;
  position: relative;
}

.cotSwiper {
  display: flex;
  justify-content: center;
  align-items: center;
}

#cottages-section .swiper-button-prev {
  position: absolute;
  top: 50%;
  color: #fff;
  background-color: #ff8c00;
  height: 35px;
  width: 35px;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

#cottages-section .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 900;
}

#cottages-section .swiper-button-next {
  position: absolute;
  top: 50%;
  color: #fff;
  background-color: #ff8c00;
  height: 35px;
  width: 35px;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}

#cottages-section .swiper-button-next::after {
  font-size: 20px;
  font-weight: 900;
}
#cottages-section .swiper-slide {
  margin: 0 0 40px;
}

#cottages-section .swiper-slide .text-wrapper h3 {
  position: relative;
  padding: 10px;
  width: 90%;
  max-width: 350px;
  background: #ffffff;
  box-shadow: 0px 10px 23px -8px rgba(0, 0, 0, 0.11);
  margin: -30px auto 0;
}

.cotSwiper .swiper-slide img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-linear-gradient(
    bottom,
    #202f59 0%,
    rgba(32, 47, 89, 0) 100%
  );
  transition: all 0.25s ease;
  height: 100%;
  width: 100%;
  z-index: 100000000;
}

/* videos section */
#videos-section {
  text-align: center;
  padding: 80px 0 40px;
  position: relative;
}

#videos-section .left-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 170px;
}

#videos-section h2 {
  font-family: "Cinzel Decorative", serif;
  font-size: 40px;
  color: #ff8c00;
  margin: 0 0 10px;
}

#videos-section h3 {
  font-size: 20px;
  color: #ff8c00;
  margin: 0 0 60px;
}

#videos-section .videos {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
}

.videos .youtube-player {
  max-width: 560px;
  max-height: 315px;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  transition: all ease-in-out 0.2s;
  position: relative;
  left: -30px;
}

.youtube-player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.youtube-player .play-btn.active {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translate(-50%, -50%);
  border: none;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ff8c00;
  cursor: pointer;
}

.youtube-player .play-btn {
  display: none;
}

.youtube-player .fa-play {
  font-size: 20px;
  color: #fff;
}

.videos .flex-left {
  width: 42%;
  border: solid 2px #ff8c00;
  padding: 20px 0;
  border-radius: 10px;
  background-color: #fff;
}

.videos .flex-right {
  width: 42%;
  border: solid 2px #ff8c00;
  padding: 20px 0;
  border-radius: 10px;
  background-color: #fff;
}

#videos-section .line-through {
  background-color: #ff8c00;
  height: 2px;
  width: 100%;
  position: relative;
  bottom: 50px;
  z-index: -100;
}

/* Contact-us section */
#contactus-section {
  background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1.0)), url( https://www.sollunaresort.com/holidays-festivals-offers/images/lawn_desk.webp);
  position: relative;
  text-align: center;
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#contactus-section .flex-container {
  display: flex;
  justify-content: center;
  gap: 30px;
}

#contactus-section .flex-container .left .contact-img {
  width: 500px;
  height: 550px;
  object-fit: cover;
  border-radius: 0 50px 0 50px;
  box-shadow: 4px -1px 20px -6px #737373;
  display: none;
}

#contactus-section .flex-container .right {
  max-width: 550px;
  width: 100%;
  text-align: left;
}

#contactus-section .flex-container .right h2 {
  font-family: "Cinzel Decorative", serif;
  color: #ff8c00;
  font-size: 40px;
  margin: 0 0 20px;
  text-align: center;
}

#contactus-section .flex-container .right input {
  font-size: 14px;
  margin: 0 0 20px;
  border-radius: 20px;
  border: none;
  /*background-color: #dedbdb;*/
  background-color: #fff;
  padding: 10px 15px;
  outline: none;
  width: 100%;
}

#contactus-section .flex-container .right label {
  display: block;
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 500;
}

#contactus-section .flex-container .right .name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.name .first-name {
  width: 45%;
}

.name .last-name {
  width: 45%;
}

#contactus-section .flex-container .right .dates {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.dates .check-in-date {
  width: 45%;
}

.dates .check-out-date {
  width: 45%;
}

#contactus-section .flex-container .right .submit {
  text-align: center;
}

#contactus-section .flex-container .right input[type="button"] {
  max-width: 200px;
  background-color: #ff8c00;
  color: #fff;
  font-weight: 500;
}

.error {
  border: 1px solid red;
}

/* Footer */
footer {
  padding: 60px 0 0;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 -8px 32px 0 rgba(0, 0, 0, 0.05);
}

footer .flex-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 10px;
  padding: 0 0 5px;
  border-bottom: solid 1px #737373;
}

.credentials p {
  margin: 0 0 10px;
  font-size: 15px;
}

.credentials a {
  margin: 0 0 10px;
  font-size: 15px;
}

.credentials .socials {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.credentials .socials a {
  font-size: 15px;
  width: 30px;
  height: 30px;
  background: rgb(255, 140, 0, 0.7);
  border-radius: 100%;
  text-align: center;
  margin: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
  color: #fff;
}

.footer-nav ul {
  list-style-type: none;
}

.footer-nav ul li {
  margin: 0 0 10px;
}

.footer-nav ul li a {
  transition: all 0.3s ease-in-out;
}

/* social icons */
.socialicons {
  display: block;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 2;
}

.socialicons a {
  display: block;
  font-size: 25px;
  width: 35px;
  height: 40px;
  background: rgb(255, 140, 0, 0.7);
  text-align: center;
  margin: 5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
  color: #fff;
}

.top-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 2;
  text-align: center;
  transition: all 0.3 ease-in-out;
}

.top-btn a {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  border-radius: 100%;
}

.top-btn .fa-chevron-down {
  background: rgb(255, 140, 0, 0.7);
  border-radius: 100%;
  padding: 8px;
}

.top-btn .fa-chevron-down:hover {
  background: rgb(255, 140, 0);
}

.rotated {
  transform: rotate(180deg);
}

/* Media Queries */

@media screen and (max-width: 992px) {
  header .nav-items a {
    font-size: 15px;
  }

  .buttons a {
    font-size: 15px;
  }

  .hero-carousel .hero-title {
    width: 90%;
    padding: 0 15px;
  }

  .hero-carousel .hero-title > h1 {
    font-size: 20px;
  }

  #gallery {
    padding: 80px 0 40px;
  }

  #gallery .right-bg {
    width: 150px;
  }

  #gallery p {
    width: 80%;
  }

  #cottages-section {
    padding: 40px 0;
    min-height: 0;
  }

  #cottages-section .flex-container .top,
  #cottages-section .flex-container .bottom {
    align-items: center;
  }

  .cotSwiper .swiper-slide img {
    width: 80%;
    object-fit: cover;
  }

  #cottages-section .swiper-button-prev {
    left: 40px;
    top: 50%;
  }

  #cottages-section .swiper-button-next {
    right: 40px;
    top: 50%;
  }

  .top {
    margin: 0 0 20px;
    border-bottom: solid 1px #737373;
    padding: 0 25px 20px;
    justify-content: space-between;
  }

  .top .images {
    flex-direction: column;
    justify-content: center;
  }

  .top .images .items img {
    border-radius: 10px;
  }

  .top .items img {
    width: 200px;
  }

  .bottom {
    padding: 0 25px 20px;
  }

  .bottom .images {
    flex-wrap: wrap-reverse;
    max-width: 500px;
    justify-content: left;
  }

  .bottom .images .items img {
    width: 200px;
    border-radius: 10px;
  }

  #videos-section .left-bg {
    width: 150px;
  }

  .videos .flex-left,
  .videos .flex-right {
    height: 300px;
  }

  .videos iframe {
    height: 100%;
  }

  #contactus-section .flex-container .left .contact-img {
    width: 400px;
    height: 500px;
  }

#about-section {
  padding: 40px 0 !important;
}}

@media screen and (max-width: 768px) {
  #gallery {
    background: none;
  }

  .site-logo a > img {
    width: 150px;
  }

  header.active #menu-btn {
    color: #ff8c00;
  }

  .buttons {
    display: block;
    gap: 20px;
  }

  #menu-btn {
    display: block;
    border: none;
    font-size: 25px;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .buttons a {
    position: fixed;
    display: block;
    bottom: 10px;
    left: 10px;
    width: 36px;
    min-width: 0;
  }

  .buttons a > p {
    display: none;
  }

  .fa-phone {
    padding: 9px;
    font-size: 18px;
    background: rgb(255, 140, 0, 0.7);
  }

  header .nav-items {
    flex-direction: column;
    position: absolute;
    top: 100%;
    background-color: #ff8c00;
    height: auto;
    width: 10rem;
    box-shadow: 0px 20px 14px 0px rgb(0 0 0 / 20%);
    right: -100%;
    z-index: 2;
    transition: right 0.2s ease-in-out;
  }

  header .nav-items.active {
    right: 0;
    color: #ffffff;
  }

  header .nav-items.active a {
    text-align: center;
    width: 100%;
    color: #fff;
  }

  header .nav-items a {
    padding: 15px;
    font-size: 16px;
  }

  .hero-carousel .prev {
    width: 45px;
    height: 45px;
    line-height: 45px;
    left: 10px;
    font-size: 15px;
  }

  .hero-carousel .next {
    width: 45px;
    height: 45px;
    line-height: 45px;
    right: 10px;
    font-size: 15px;
  }

  #booking-section form {
    padding: 15px;
  }

  .name-container input,
  .email-container input,
  .contact-container input {
    font-size: 15px;
  }

  .name-container input,
  .email-container input,
  .contact-container input {
    padding: 10px 0 10px 5px;
  }

  .book-now-btn > button {
    font-size: 15px;
    padding: 10px 5px;
  }

  .top {
    padding: 0 0 20px;
  }

  .top .images .items img {
    width: 120px;
    border-radius: 10px;
  }

  .top .content p {
    font-size: 15px;
  }

  .top .content ul li {
    font-size: 15px;
  }

  .bottom {
    padding: 0;
  }

  .bottom .images .items img {
    width: 120px;
    border-radius: 10px;
  }

  .bottom .content p {
    font-size: 15px;
  }

  .gallery-container .flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .flex .left {
    width: 100%;
  }

  .flex .right {
    width: 100%;
  }

  #gallery p {
    width: 100%;
  }

  #gallery .right-bg {
    width: 100px;
  }

  .flex .left .left-bottom div {
    height: 110px;
  }

  .flex .right .right-bottom div img {
    height: 110px;
  }

  #cottages-section .swiper-button-prev {
    left: 10px;
    top: 50%;
  }

  #cottages-section .swiper-button-next {
    right: 10px;
    top: 50%;
  }

  #videos-section h3 {
    margin: 0 0 30px;
  }

  #videos-section .left-bg {
    width: 100px;
  }

  #videos-section .videos {
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
  }

  .videos .flex-left,
  .videos .flex-right {
    width: 90%;
    height: 300px;
  }

  .videos .youtube-player {
    max-width: 700px;
    height: 100%;
  }

  #contactus-section .flex-container {
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    align-items: center;
  }

  #contactus-section .flex-container .left .contact-img {
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.5);
    z-index: -100;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    overflow: hidden;
  }

  #contactus-section .flex-container .right label {
    color: #fff;
  }

  .footer-nav ul li {
    font-size: 12px;
  }

  .credentials p {
    margin: 0 0 10px;
    font-size: 12px;
  }

  .credentials a {
    margin: 0 0 10px;
    font-size: 12px;
  }

  .socialicons {
    display: none;
  }

  .top-btn {
    bottom: 10px;
    right: 10px;
  }

  .top-btn a {
    width: 34px;
  }
}

@media screen and (max-width: 480px) {
  .bottom {
    padding: 0;
    flex-direction: column;
  }

  .bottom .images {
    justify-content: space-between;
    width: 100%;
    gap: 5px;
  }

  .bottom .images .items img {
    width: 105px;
  }

  #cottages-section .flex-container .bottom {
    text-align: center;
  }
}

@media screen and (max-width: 375px) {
  .bottom .images {
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  .bottom .images .items img {
    width: 120px;
  }
}

/* Call to Action button */
.btn-home-bg {
  background-color: #ff8c00;
  border: 1px solid #ff8c00;
  border-radius: 30px;
  color: #fff;
  font-size: 15px;
  padding: 12px 32px;
  transition: all 0.3s ease 0s;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: capitalize;
  display: inline-block;
}

.btn-home-bg:hover,
.btn-home-bg:focus {
  background-color: #fff;
  color: #ff8c00;
  border-color: #fff;
}

/* About Section */
#about-section {
  padding: 100px 0 40px 0;
}

#about-section .flex-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

#about-section .flex-container .left {
  flex-basis: 50%;
  padding: 0 0 0 25px;
}

#about-section .flex-container .left > h2 {
  color: #ff8c00;
  margin: 0 0 10px;
  font-family: "Cinzel Decorative", serif;
  font-size: 40px;
}

#about-section .flex-container .left > h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  margin: 0 0 20px;
  text-transform: uppercase;
}

#about-section .flex-container .left > p {
  text-align: justify;
  line-height: 25px;
}

#about-section .flex-container .right {
  flex-basis: 50%;
}

#about-section .flex-container .right > img {
  width: 100%;
  border-radius: 0 20px 0 20px;
}

@media screen and (max-width: 1024px) {
  #about-section .flex-container {
    flex-direction: column;
    align-items: center;
  }

  #about-section .flex-container .right,
  #about-section .flex-container .left {
    padding: 0 25px;
  }
}

@media screen and (max-width: 768px) {
  #about-section .flex-container {
    flex-direction: column;
    align-items: center;
  }

  #about-section .flex-container .right,
  #about-section .flex-container .left {
    padding: 0;
  }
}

#packages-section {
  text-align: center;
  padding: 80px 0;
}

.theme-swiper {
  width: 100%;
}

#packages-section .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 0 0 20px;
  gap: 10px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 4px -1px 20px -6px #a7a7a7;
  margin: 0 0 20px;
}

#packages-section .swiper-slide .text-wrapper {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}

#packages-section .swiper-slide > img {
  width: 100%;
  height: 80%;
  max-height: 400px;
  min-height: 360px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

#packages-section .swiper-slide .text-wrapper > a {
  padding: 5px 10px;
  background-color: #eb7e23bf;
  color: #fff;
  border-radius: 5px;
}

#packages-section .section-header > h2 {
  color: #ff8c00;
  margin: 0 0 10px;
  font-family: "Cinzel Decorative", serif;
  font-size: 40px;
}

#packages-section .section-header > h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  margin: 0 0 20px;
  text-transform: uppercase;
}

#faq {
  text-align: center;
  padding: 80px 0;
}

#faq .heading h2 {
  font-family: "Cinzel Decorative", serif;
  font-size: 40px;
  color: #ff8c00;
  margin: 0 0 20px;
}

#faq .heading h2 span {
  font-size: 30px;
}
.faq {
  border-bottom: 1px solid #e0e1e3;
  padding: 20px 0 0;
  margin: 0 0 30px;
  position: relative;
  text-align: left;
  width: 80%;
  margin: 0 auto;
}
.faq .faq-title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px;
  margin: 0 0 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.faq.active .faq-title-wrapper {
  background: rgb(0 0 0 / 0.1);
  margin: 0 0 20px;
}
.faq .faq-title {
  transition: margin 0.3s;
  font-size: 16px;
}
.faq .faq-text-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.faq.active .faq-text-wrapper {
  max-height: 200px;
}
.faq .faq-text {
  margin: 0 0 20px;
  font-size: 16px;
  padding: 0 5px;
}
.faq .faq-text a {
  color: #eb7e23;
  font-weight: 700;
}
.faq.active .faq-title {
  color: #eb7e23;
}
.faq.active .faq-text {
  display: block;
}
.faq .faq-toggle {
  position: relative;
}
.faq .faq-toggle .strip {
  height: 3px;
  width: 20px;
  background-color: #eb7e23;
  display: block;
  cursor: pointer;
}
.faq .faq-toggle .strip-top {
  position: absolute;
  transform: rotate(-90deg);
  transition: transform 0.25s ease-in-out;
}
.faq.active .faq-toggle .strip-top {
  transform: rotate(0deg);
}
@media (max-width: 640px) {
  .faq {
    width: 100%;
  }
  .page-head {
    margin: 50px 0 50px;
  }
}

/* testimonial section */
#testimonials {
  text-align: center;
  padding: 80px 0;
  position: relative;
  min-height: 600px;
}
#testimonials > img {
  position: absolute;
  z-index: -1000;
  height: 100%;
  width: 100%;
  left: 0;
  object-fit: cover;
  object-position: bottom;
}
#testimonials .heading {
  text-transform: uppercase;
}
#testimonials .heading h2 {
  font-family: "Cinzel Decorative", serif;
  font-size: 40px;
  color: #ff8c00;
  margin: 0 0 20px;
}
#testimonials .heading p {
  margin: 0 0 60px;
  font-family: "Minion Pro";
  font-weight: 500;
  font-size: 25px;
  text-transform: capitalize;
}
#testimonials .heading p span {
  display: block;
  font-weight: 600;
  font-style: italic;
}
#testimonials .testimonial-area {
  background-color: #eb7e23;
  text-align: center;
  font-family: "Minion Pro";
  color: #fff;
  border-radius: 30px;
  position: relative;
  padding: 20px 0;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  transition: all ease-in-out 0.5s;
}
#testimonials .testimonial-area h3 {
  font-weight: 100;
  font-size: 35px;
  margin: 0 0 20px;
}
.testimonial-area .test-card {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  font-size: 22px;
  padding: 0 20px;
}
.testimonial-area .test-card .feedback {
  margin: 0 0 20px;
  font-weight: 100;
  line-height: 40px;
  text-align: justify;
}
.testimonial-area .test-card .name {
  display: inline;
  font-style: italic;
  font-size: 30px;
  font-weight: 500;
  border-bottom: solid 2px #fff;
}
.test-card .feedback .fa-quote-right {
  width: 20px;
}
.test-card .feedback .fa-quote-left {
  width: 20px;
}
.test-swiper-button-prev {
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.test-swiper-button-prev::after {
  font-size: 30px;
  font-weight: 900;
}
.test-swiper-button-next {
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.test-swiper-button-next::after {
  font-size: 30px;
  font-weight: 900;
}

@media (max-width: 992px) {
  #testimonials .testimonial-area {
    width: 90%;
  }
  .testimonial-area .test-card {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  #testimonials .testimonial-area {
    width: 100%;
  }
  #testimonials .heading p {
    font-size: 18px;
    margin: 0 0 30px;
  }
  #testimonials .testimonial-area h3 {
    font-size: 25px;
  }
  .testimonial-area .test-card .feedback {
    font-size: 18px;
  }
  .testimonial-area .test-card .name {
    font-size: 18px;
  }
  .testimonial-area .test-card .feedback {
    line-height: 30px;
  }
}

@media (max-width: 576px) {
  #testimonials .heading h2 {
    font-size: 30px;
  }

  #faq .heading h2 {
    font-size: 30px;
  }

  #gallery h2 {
    font-size: 30px;
  }

  #about-section .flex-container .left > h2 {
    font-size: 30px;
  }

  #packages-section .section-header > h2 {
    font-size: 30px;
  }

  #cottages-section h2 {
    font-size: 30px;
  }

  #videos-section h2 {
    font-size: 30px;
  }

  #contactus-section .flex-container .right h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  #cottages-section .swiper-slide .text-wrapper h3 {
    font-size: 18px;
    width: 70%;
  }
}
