@import url("https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kufam:ital,wght@0,400..900;1,400..900&family=Murecho:wght@100..900&display=swap");

/* ====================
  Reset Default CSS Start
  ==================== */

:root {
  --primary-font: "Kufam", sans-serif;
  --secondary-font: "Murecho", sans-serif;
  --primary-color: rgba(250, 180, 29, 0.3);
  --secondary-color: #f7b935;
  --btn-hover: #ffcd29;
  --bg-1: #ffffff;
  --bg-2: #000000;
  --text-color-1: #000000;
  --text-color-2: #7d7d7d;
  --text-color-3: #ffffff;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

a {
  text-decoration: none !important;
}

ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

button {
  border: none;
  outline: none;
  font-family: var(--secondary-font);
}

input {
  outline: none;
}

/* Width of the scrollbar */
::-webkit-scrollbar {
  width: 14px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--btn-hover);
}

.container {
  max-width: 1340px !important;
}

/*====================
Reset Default CSS End
====================*/

/* Hero Start */

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow-x: hidden;
}

#hero .hero {
  position: relative;
  height: 100vh;
  width: 100%;
}

#hero .swiper-container-wrapper {
  height: 100%;
  z-index: 1;
}

#hero .swiper-slide {
  position: relative;
  overflow: hidden;
}

#hero .bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  transition: transform 1.5s ease-out;
}

#hero .swiper-slide img {
  width: 100%;
  height: 100%;
}

#hero .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: var(--bg-1) !important;
  opacity: 1 !important;
}

#hero .swiper-pagination-bullet-active {
  background: #ffa500 !important;
  width: 30px !important;
  transition: width 0.5s !important;
  border-radius: 5px !important;
  background: var(--secondary-color) !important;
  border: 1px solid transparent !important;
}

.hero-content {
  width: 100%;
  position: absolute;
  bottom: 37%;
  text-align: left;
  color: white;
  z-index: 2;
}

.hero-content h2 {
  max-width: 67%;
  line-height: 60px;
  font-size: 46px;
  margin-bottom: 20px;
  font-family: var(--primary-font);
  font-weight: bold;
  color: var(--text-color-3);
}

.hero-content p {
  max-width: 79%;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-3);
  margin-bottom: 30px;
}

/* hero booking Start */

.booking-wrapper {
  position: relative;
}

.booking-form-container {
  width: 100%;
  position: absolute;
  bottom: 80px;
  background: var(--bg-1);
  padding: 10px 40px 14px 40px;
  border-radius: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 95;
}

.booking-form {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  align-items: center;
}

.booking-form-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.booking-form-item {
  flex: 1 1 auto;
  margin: 10px;
}

.booking-form label {
  width: 100%;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  color: var(--text-color-1);
  margin-bottom: 2px;
  font-family: var(--secondary-font);
}

.booking-form input {
  width: 173px;
  font-size: 16px;
  padding: 10px 10px;
  text-align: center;
  font-family: var(--secondary-font);
  background: #f5f5f5;
  border: none;
  border-radius: 10px;
}

.booking-form input:focus {
  background: #f5f5f5;
}

.booking-form span {
  font-size: 30px;
  margin: 0px 20px;
  color: #bcbec4;
}

.booking-form input::placeholder {
  color: #bcbec4;
  text-align: center;
}

.booking-form .book-now-btn {
  display: inline-block;
  white-space: nowrap;
  font-size: 15px;
  background: var(--secondary-color);
  color: var(--text-color-1);
  font-weight: 600;
  border: none;
  border-radius: 40px;
  padding: 9px 30px;
  cursor: pointer;
  transition: 0.4s;
  border: 1px solid var(--secondary-color);
  margin-top: 16px;
}

.booking-form .book-now-btn:hover {
  background: var(--bg-1);
  border: 1px solid var(--secondary-color);
}

.emailjs_response {
  font-size: 14px;
  font-family: var(--secondary-font);
  font-weight: 500;
  color: var(--text-color-2);
  margin-top: 10px;
}

.title {
  margin-bottom: 25px;
}

.custom-select {
  width: 100%;
  position: relative;
}

.custom-select-options {
  background: #fff;
  position: absolute;
  top: 45px;
  left: 0;
  z-index: 9;
  max-height: 0;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06), 0 3px 6px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.custom-select-options li {
  position: relative;
  text-align: center;
  padding: 10px;
  border-bottom: 1px solid #ebebeb;
  cursor: pointer;
}

.custom-select-options li .custom-select-img-container {
  width: 20px;
  height: 20px;
  margin-right: 15px;
  display: inline-block;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
}

.custom-select-options li .custom-select-img-container img {
  width: 100%;
}

.custom-select-options li.is-highlighted {
  background: var(--secondary-color);
  color: var(--text-color-1);
}

.custom-select-options li.label {
  color: #333;
}

.custom-select-options li:last-of-type {
  border-bottom: none;
}

.custom-select-options li:hover {
  background: var(--secondary-color) !important;
  color: var(--text-color-1);
}

.custom-select-options.is-active {
  transition: max-height 0.8s;
  max-height: 800px;
  font-size: 14px;
  box-shadow: 0px 22px 36px 0px rgba(0, 0, 0, 0.1);
  z-index: 999999999999;
}

.custom-select-options.has-images li {
  padding-left: 35px;
}

.custom-select-active {
  width: 173px;
  font-size: 16px;
  padding: 10px 10px;
  text-align: center;
  font-family: var(--secondary-font);
  background: #f5f5f5;
  border: none;
  border-radius: 10px;
}

/* Booking input dropdown Start */

/* Datepicker Start */

.datepicker-wrapper .controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray);
  border-radius: 8px;
}

.datepicker-wrapper .controls:focus {
  border-color: #af2222 !important;
}

.datepicker-wrapper .controls .calander {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray);
  border-radius: 8px;
  z-index: 9999999999;
  right: 10px;
}

.datepicker-wrapper {
  margin-bottom: 20px;
}

.datepicker-wrapper .controls {
  border: none;
  position: relative;
}

.datepicker-wrapper .controls input {
  display: block;
  width: 100% !important;
}

.datepicker-wrapper .calander-icon {
  position: absolute;
  right: 10px;
  width: 30px !important;
  margin: 0px !important;
}

.datepicker-wrapper .controls img {
  width: 25px;
  height: 25px;
}

.datepicker-wrapper .form-control {
  border-radius: 8px;
  padding: 13px 10px;
}

.datepicker {
  top: 0;
  left: 0;
  padding: 10px;
  border: 1px solid var(--gray);
  color: var(--text-color);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.dropdown-menu {
  background: var(--bg-1) !important;
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid var(--gray) !important;
  box-shadow: 0px 22px 36px 0px rgba(0, 0, 0, 0.1);
}

.datepicker > div {
  display: none;
}

.datepicker table {
  font-family: var(--secondary-font);
  background: var(--bg-1);
  width: 100%;
  margin: 0;
}

.datepicker th {
  text-align: center;
  font-weight: 300;

  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.datepicker td {
  font-size: 12px;
  font-weight: 400;
  text-align: center;
}

.datepicker tr:first-child td {
  border-top: 0;
}

.datepicker thead tr:first-child {
  height: 30px;
}

.datepicker td p {
  border-radius: 50%;
  height: 27px;
  line-height: 27px;
  border: 1px solid var(--text-color-2);
  border-radius: 5px;
  width: 27px;
  cursor: pointer;
}

.datepicker td:nth-last-child(1) {
  color: red;
}

.datepicker th {
  font-size: 10px;
}

.datepicker td.day p {
  margin: 2px 2px !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.datepicker td.day p:hover {
  background: var(--secondary-color) !important;
  color: var(--text-color-1);
}

.datepicker td.old p,
.datepicker td.new p {
  color: #8b8b8b !important;
  background: #d8d8d9 !important;
  border-top: 0;
}

.datepicker td.active p,
.datepicker td.active:hover p {
  color: var(--text-color-1);
  background-color: var(--secondary-color) !important;
}

.datepicker td.active:hover,
.datepicker td.active:hover:hover,
.datepicker td.active:focus,
.datepicker td.active:hover:focus,
.datepicker td.active:active,
.datepicker td.active:hover:active,
.datepicker td.active.active,
.datepicker td.active:hover.active,
.datepicker td.active.disabled,
.datepicker td.active:hover.disabled,
.datepicker td.active[disabled],
.datepicker td.active:hover[disabled] {
  color: #ffffff;
}

.datepicker td.active:active,
.datepicker td.active:hover:active,
.datepicker td.active.active,
.datepicker td.active:hover.active {
  background-color: #003399 \9;
}

.datepicker td span {
  display: block;
  width: 47px;
  height: 44px;
  line-height: 44px;
  color: var(--text-color);
  float: left;
  margin: 2px;
  cursor: pointer;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.datepicker td span:hover {
  background: var(--background2);
  color: var(--white);
}

.datepicker td span.active {
  color: var(--white);
  background-color: var(--text-color2) !important;

  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  color: var(--white);
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.datepicker td span.old {
  color: var(--text-color) !important;
}

.datepicker th.switch {
  position: absolute;
  left: 0px;
  color: var(--text-color-1);
  font-family: var(--primary-font);
  text-align: left;
  font-size: 16px;
  width: 145px;
  height: 10px !important;
  margin: 3px 0px 0px 12px !important;
}

.datepicker th.next,
.datepicker th.prev {
  position: absolute;
  width: 40px !important;
  height: 20px !important;
  border-radius: 50% !important;
  font-size: 23px;
  padding: 5px;
  margin: 0px !important;
}

.datepicker th.next p,
.datepicker th.prev p {
  margin: 0px !important;
}

.datepicker th.prev {
  right: 20px;
  top: 0px;
}

.datepicker th.next {
  right: 0px;
  top: 0px;
}

.datepicker th.dow {
  font-weight: 400;
  padding: 5px 0;
}

.datepicker thead tr:first-child th {
  cursor: pointer;
  margin-bottom: 10px;
}

.input-append.date .add-on i,
.input-prepend.date .add-on i {
  display: block;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 0;
  margin-top: 10px !important;
}

.datepicker-months .table-condensed > tbody > tr > td,
.datepicker-years .table-condensed > tbody > tr > td {
  width: 210px;
  margin-top: 10px !important;
}

.datepicker .month {
  color: var(--text-color-1) !important;
  background: #d8d8d9;
}

.datepicker .month:hover {
  color: var(--text-color-1) !important;
  background: var(--secondary-color) !important;
}

.datepicker .year:hover {
  color: var(--text-color-1) !important;
  background: var(--secondary-color) !important;
}

.datepicker .month.active {
  color: var(--text-color-1) !important;
  background: var(--secondary-color) !important;
}

.datepicker .year {
  color: var(--text-color-1) !important;
  background: #d8d8d9;
}

.datepicker .year.active {
  color: var(--text-color-1) !important;
  background: var(--secondary-color) !important;
}

.datepicker .year .old p {
  color: var(--text-color-1) !important;
  background: var(--secondary-color) !important;
}

.table-condensed p {
  padding: 0;
  line-height: 32px;
}

/* Dethpicker End */

@media (max-width: 1200px) {
  .booking-form span {
    margin: 0;
  }
}

@media (max-width: 1100px) {
  .booking-form input {
    width: 143px;
  }

  .custom-select-active {
    width: 143px !important;
  }
}

@media (max-width: 1070px) {
  .hero-content {
    bottom: 43%;
  }

  .hero-content h2 {
    max-width: 100%;
    line-height: 50px;
    font-size: 38px;
    margin-bottom: 0px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    bottom: 52%;
  }

  .hero-content h2 {
    max-width: 100%;
    line-height: 50px;
    font-size: 32px;
    margin-bottom: 0px;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 15px;
    margin-bottom: 30px;
  }

  .booking-form-container {
    bottom: 50px;
    padding: 20px;
  }

  .booking-form-row {
    width: 100%;
  }

  .booking-form {
    flex-direction: column;
    gap: 0px;
  }

  .booking-form .full-width {
    text-align: center;
  }

  .booking-form .book-now-btn {
    width: 100%;
    margin-top: 10px;
  }

  .booking-form span {
    display: none;
  }

  .booking-form label {
    font-size: 16px;
    text-align: center !important;
    margin-bottom: 5px;
  }

  .booking-form input {
    font-size: 12px;
    padding: 8px;
  }

  .custom-select-active {
    padding: 8px !important;
    font-size: 12px !important;
    font-weight: 500;
  }

  .booking-form-item {
    margin: 0px 0px 10px 0px;
  }

  .booking-form input {
    width: 100%;
  }

  .custom-select-active {
    width: 100% !important;
  }

  .custom-select-active:nth-last-child(2) {
    width: calc(100% + 30px) !important;
  }
}

@media (max-width: 768px) {
  .hero-content {
    bottom: 49%;
  }

  .hero-content h2 {
    max-width: 100%;
    line-height: 50px;
    font-size: 26px !important;
  }
}

@media (max-width: 576px) {
  .hero-content {
    bottom: 55%;
  }

  .hero-content h2 {
    max-width: 100%;
    line-height: 35px;
    font-size: 26px !important;
    margin-bottom: 10px;
  }

  .hero-content p {
    max-width: 100%;
    font-size: 15px;
    margin-bottom: 0px;
  }
}

@media (max-width: 400px) {
  .hero-content {
    bottom: 50%;
  }

  .hero-content h2 {
    line-height: 30px;
    font-size: 26px !important;
    margin-bottom: 10px;
  }

  .hero-content p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/* Hero End */

/* Facilities Start */

#facilities {
  width: 100%;
  padding-top: 80px;
  background: var(--bg-1);
}

#facilities .facilities-heading span {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  background-color: var(--primary-color);
  padding: 8px 30px;
  border-radius: 30px;
}

#facilities .facilities-heading h2 {
  max-width: 430px;
  font-size: 34px;
  font-weight: bold;
  padding: 40px 0px 40px 0px;
  font-family: var(--primary-font);
  color: var(--text-color-1);
}

#facilities .card-wrapper {
  width: 100%;
  overflow: hidden;
}

#facilities .swiper-container {
  width: 100%;
}

#facilities .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-1);
  border-radius: 10px;
  border: 1px solid rgba(201, 201, 201, 1);
  font-size: 1.2rem;
  height: 220px;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 23px !important;
}

#facilities .swiper-slide .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  border-radius: 50%;
}

#facilities .swiper-slide .icon img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  border-radius: 50%;
}

#facilities .swiper-slide-content {
  display: flex;
  gap: 10px;
  justify-content: first baseline;
}

#facilities .swiper-slide h3 {
  margin: 0px 0px 10px 0px;
  font-size: 22px;
  font-family: var(--primary-font);
  font-weight: 600;
}

#facilities .swiper-slide p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color-2);
  font-family: var(--secondary-font);
}

@media screen and (max-width: 768px) {
  #facilities .facilities-heading h2 {
    max-width: 430px;
    font-size: 24px;
    padding: 30px 0px;
  }
}

/* Facilities End */

/* Our Services Start */

#our-services {
  width: 100%;
  background: var(--bg-1);
  padding-top: 80px;
}

#our-services .service-heading span {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  background-color: var(--primary-color);
  padding: 8px 30px;
  border-radius: 30px;
}

#our-services .service-heading h2 {
  max-width: 430px;
  font-size: 34px;
  font-weight: bold;
  padding: 40px 0px 40px 0px;
  margin: 0px;
  font-family: var(--primary-font);
  color: var(--text-color-1);
}

#our-services .our-services-wrapper .card {
  position: relative;
  width: 100%;
  box-shadow: none;
  margin: 10px 0;
}

#our-services .our-services-wrapper .card:hover img {
  transform: scale(1.1);
}

.our-services-wrapper .card .services-img {
  width: 100%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 24px;
}

.our-services-wrapper .card img {
  width: 100%;
  aspect-ratio: 16 / 12;
  border-radius: 24px;
  transition: 0.4s;
}

.our-services-wrapper .card .services-title {
  font-size: 34px;
  font-weight: 500;
  padding: 18px 0px 0px 0px;
  margin: 0;
  font-family: var(--primary-font);
  color: var(--text-color-1);
}

.our-services-wrapper .card .intro {
  font-size: 16px;
  font-weight: 500;
  padding: 18px 0px 100px 0px;
  margin: 0;
  font-family: var(--secondary-font);
  color: var(--text-color-2);
}

.our-services-wrapper .card .services-btn {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  bottom: 20px;
  left: 0px;
}

.our-services-wrapper .card .services-btn .button:hover {
  color: var(--text-color-1);
}

.our-services-wrapper .card .services-btn a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  transition: 0.3s;
}

.our-services-wrapper .card .services-btn a:hover {
  color: var(--secondary-color);
}

.our-services-wrapper .card .services-btn a i {
  color: var(--bg-2);
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.our-services-wrapper .card .services-btn a:hover i {
  transform: translateX(4px);
}

.our-services-wrapper .services-btn .button {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  background: none;
  border: 1px solid var(--secondary-color);
  padding: 9px 20px;
  border-radius: 40px;
  transition: 0.4s;
}

.our-services-wrapper .services-btn .button:hover {
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

@media screen and (max-width: 768px) {
  #our-services .service-heading h2 {
    font-size: 24px;
    padding: 30px 0;
  }

  .our-services-wrapper .card .services-title {
    font-size: 24px;
    padding-top: 26px;
  }
  .our-services-wrapper .card .intro {
    font-size: 16px;
    padding: 16px 0px 100px 0px;
  }
}

/* Our Services End */

/* Resort & Hotel Story Start */

#hotel-story {
  padding-top: 80px;
  background: white;
}

#hotel-story .row {
  display: flex;
  justify-content: space-between;
  background-color: none;
  width: 100%;
}

#hotel-story .row .col-lg-6:nth-last-child(1) {
  padding-right: 0px !important;
  padding-top: 0px;
}

#hotel-story .video-slider {
  width: 100%;
  position: relative;
  overflow: hidden;
}

#hotel-story .main-thumbnail,
#hotel-story .main-video {
  width: 97%;
  object-fit: fill;
  border-radius: 30px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

#hotel-story #videoPlayer {
  height: 284.88px;
  display: block;
  border-radius: 30px;
}

#hotel-story .main-thumbnail img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 30px !important;
}

#hotel-story .play-icon {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: white;
  cursor: pointer;
}

#hotel-story .swiper-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 150px 0px 30px 0px;
  margin-top: -130px;
  background: #cff2ff;
  border-radius: 30px;
}

#hotel-story .video-swiper-slide {
  display: flex;
  align-items: center;
  margin: 0px !important;
}

#hotel-story .video-swiper-slide .active {
  width: 70px;
  height: 70px;
  opacity: 1 !important;
}

#hotel-story .video-swiper-slide .thumbnail-wrapper {
  opacity: 0.5;
}

#hotel-story .thumbnail-wrapper {
  position: relative;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 10px;
  border: 2px solid transparent;
}

#hotel-story .thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hotel-story .thumbnail-wrapper .play-icon {
  display: block;
}

#hotel-story .content {
  width: 100%;
  margin-right: -60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}

#hotel-story .tag span {
  background-color: var(--primary-color);
  color: var(--text-color-1);
  font-size: 16px;
  font-family: var(--secondary-font);
  font-weight: 500;
  padding: 8px 40px;
  border-radius: 30px;
}

#hotel-story .content .title {
  max-width: 330px;
  margin: 0;
  margin: 40px 0px 40px 0px;
  line-height: 36px;
  font-size: 26px;
  font-family: var(--primary-font);
  font-weight: bold;
}

#hotel-story p {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-2);
  margin-bottom: 16px;
}

#hotel-story .read-story {
  width: 25%;
  display: inline-block;
  text-align: center;
  background-color: var(--secondary-color);
  border: none;
  color: var(--text-color-1);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  border: 1px solid var(--secondary-color);
  padding: 10px 10px;
  border-radius: 30px;
  margin-top: 40px;
  transition: 0.4s all;
}

#hotel-story .read-story:hover {
  background: none;
  border: 1px solid var(--secondary-color);
}

/* modal */
#hotel-story .modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999999999999999999999999;
}

#hotel-story .video-modal-content {
  position: relative;
  max-width: 680px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 12px 0px 0px;
  background-color: transparent;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--secondary-color);
}

#videoIframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px !important;
}

.video-modal-content .close {
  position: absolute;
  top: -50px;
  right: 0px;
  color: var(--secondary-color);
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 992px) {
  #hotel-story .main-thumbnail,
  #hotel-story .main-video {
    width: 100%;
  }

  #hotel-story .content {
    margin-top: 20px;
    padding-left: 0px;
  }

  #hotel-story .col-lg-6 {
    padding-right: 0px !important;
  }

  #hotel-story .container {
    padding-right: 0px !important;
  }

  #hotel-story .row .col-lg-6:nth-last-child(1) {
    padding-right: 0px !important;
    padding-top: 20px;
  }

  #hotel-story .read-story {
    width: 33%;
    padding: 6px 10px;
    font-size: 15px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  #hotel-story .content .title {
    font-size: 24px;
    margin: 30px 0;
  }
  #hotel-story .main-thumbnail img {
    aspect-ratio: 16 / 11;
  }
}

/* Resort & Hotel Story End */

/* Rooms & Suites Start */

#rooms-suites {
  width: 100%;
  background: var(--bg-1);
  padding-top: 80px;
}

#rooms-suites .service-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
}

#rooms-suites .header .tag {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  background-color: var(--primary-color);
  padding: 8px 30px;
  border-radius: 30px;
}

#rooms-suites .header h3 {
  font-size: 34px;
  font-weight: bold;
  padding: 40px 0px 0px 0px;
  font-family: var(--primary-font);
  color: var(--text-color-1);
  margin: 0;
}

#rooms-suites .filter-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

#rooms-suites .filter-btn-wrapper .filter {
  background: var(--bg-2);
  color: var(--text-color-3);
  padding: 6px 16px 10px 16px;
  font-family: var(--secondary-font);
  font-size: 16px;
  border-radius: 30px;
}

#rooms-suites .filter-btn-wrapper .filter svg {
  margin-left: 5px;
}

#rooms-suites .view-all {
  white-space: nowrap;
  text-align: right;
  transition: 0.4s;
}

#rooms-suites .view-all a:hover {
  background-color: var(--secondary-color);
  border: none;
}

#rooms-suites .view-all a {
  background-color: var(--secondary-color);
  border: none;
  padding: 10px 30px;
  border-radius: 20px;
  color: var(--text-color-1);
  font-size: 16px;
  border: 1px solid var(--secondary-color);
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

#rooms-suites .view-all a:hover {
  background: none;
  border: 1px solid var(--secondary-color);
}

.recommended-rooms .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.recommended-rooms .slider {
  position: relative;
}

.recommended-rooms .swiper-wrapper {
  display: flex;
}

.recommended-rooms .card {
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: none !important;
}

.recommended-rooms .card:hover .card-img img {
  transform: scale(1.1);
  border-radius: 24px;
}

.recommended-rooms .card .card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s ease;
  background-size: cover;
}

.recommended-rooms .card img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  transition: 0.3s ease;
  object-fit: cover;
}

.recommended-rooms .card-content {
  padding: 15px 0;
  box-shadow: none !important;
}

.recommended-rooms .card-content h3 {
  font-size: 28px;
  margin: 20px 0;
  font-family: var(--primary-font);
  font-weight: 600;
}

.recommended-rooms .card-content .price-and-button {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.recommended-rooms .rating {
  display: flex;
  align-items: baseline;
  color: var(--text-color-2);
  font-family: var(--secondary-font);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.recommended-rooms .rating .calender {
  margin: 0px 5px;
}

.recommended-rooms .rating i {
  color: var(--text-color-1);
  font-size: 0.9rem;
  margin-right: 5px;
  margin-bottom: 10px;
}

.recommended-rooms .price {
  font-size: 28px;
  font-family: var(--primary-font);
  font-weight: 600;
  color: var(--text-color-1);
}

.recommended-rooms .price span {
  font-size: 16px;
  font-weight: normal;
  font-family: var(--secondary-font);
  color: var(--text-color-2);
  vertical-align: super;
}

.recommended-rooms p {
  color: var(--text-color-2);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px !important;
  font-family: var(--secondary-font);
}

.recommended-rooms .price-and-button .view-room-btn {
  width: 100%;
  display: block;
  background: transparent;
  border: 1px solid var(--secondary-color) !important;
  border: none;
  padding: 8px 20px;
  font-family: var(--secondary-font);
  font-weight: 500 !important;
  color: var(--text-color-1);
  border-radius: 30px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.recommended-rooms .price-and-button .view-room-btn:hover {
  background-color: var(--secondary-color);
}

.recommended-rooms .room-slider {
  position: relative;
  padding-bottom: 30px !important;
}

.recommended-rooms .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: var(--text-color-2) !important;
  opacity: 1 !important;
}

.recommended-rooms .swiper-pagination-bullet-active {
  background: var(--secondary-color) !important;
  width: 30px !important;
  transition: width 0.5s !important;
  border-radius: 10px !important;
  background: var(--secondary-color) !important;
  border: 1px solid transparent !important;
}

@media (min-width: 1200px) {
  .recommended-rooms .swiper-slide {
    width: 30%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .recommended-rooms .swiper-slide {
    width: 50%;
  }
}

@media screen and (max-width: 992px) {
  #rooms-suites .filter-btn-wrapper {
    display: flex;
    gap: 20px;
    text-align: right;
  }

  #rooms-suites .filter-btn-wrapper .filter {
    font-size: 13px;
  }

  #rooms-suites .view-all a {
    padding: 10px 14px;
    font-size: 15px;
  }

  #rooms-suites .service-heading {
    display: block;
    align-items: start !important;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .recommended-rooms .swiper-slide {
    width: 100%;
  }

  .recommended-rooms .card-content h3 {
    font-size: 24px;
  }

  .recommended-rooms .price {
    font-size: 24px;
  }

  .recommended-rooms .view-room-btn {
    font-size: 0.9rem;
  }

  .recommended-rooms .card .card-img {
    width: 100%;
    aspect-ratio: 16 / 12 !important;
  }
  .recommended-rooms .card .card-img img {
    height: 100%;
    border-radius: 24px;
  }

  #rooms-suites .header h3 {
    max-width: 90%;
    font-size: 24px;
    padding: 30px 0;
  }

  #rooms-suites .view-all button {
    padding: 8px 10px;
    border-radius: 20px;
    color: var(--text-color-1);
    font-size: 12px;
  }

  #rooms-suites .header .tag {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--secondary-font);
    color: var(--text-color-1);
    background-color: var(--primary-color);
    padding: 6px 20px;
    border-radius: 30px;
  }

  .recommended-rooms .price span {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  #rooms-suites .news-item {
    flex: 1 1 100%;
  }

  #rooms-suites .header h3 {
    max-width: 100%;
  }
}

/* Rooms & Suites End */

/* Featured Offer Start */
#featured-wrapper {
  width: 100%;
  background: var(--bg-1);
  padding-top: 80px;
}

#featured-wrapper .service-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
}

#featured-wrapper .header .tag {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  background-color: var(--primary-color);
  padding: 8px 30px;
  border-radius: 30px;
}

#featured-wrapper .header h3 {
  font-size: 34px;
  font-weight: bold;
  padding: 40px 0px 10px 0px;
  font-family: var(--primary-font);
  color: var(--text-color-1);
  margin: 0;
}

#featured-wrapper .view-all {
  white-space: nowrap;
  text-align: right;
  transition: 0.4s;
}

#featured-wrapper .view-all button:hover {
  background-color: var(--secondary-color);
  border: none;
}

#featured-wrapper .view-all button {
  background-color: var(--secondary-color);
  border: none;
  padding: 8px 30px;
  border-radius: 20px;
  color: var(--text-color-1);
  font-size: 16px;
  border: 1px solid var(--secondary-color);
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

#featured-wrapper .view-all button:hover {
  background: none;
  border: 1px solid var(--secondary-color);
}

.recommended-room .section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.recommended-room .slider {
  position: relative;
}

.recommended-room .swiper-wrapper {
  display: flex;
}

.recommended-room .card {
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: none !important;
}

.recommended-room .card:hover .card-img img {
  transform: scale(1.1);
}

.recommended-room .card .card-img {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  transition: 0.3s ease;
  object-fit: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.recommended-room .card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: 0.3s ease;
  background-size: cover;
}

.recommended-room .card-content {
  padding: 15px 0;
  box-shadow: none !important;
}

.recommended-room .card-content h3 {
  font-size: 28px;
  margin: 20px 0;
  font-family: var(--primary-font);
  font-weight: 600;
}

.recommended-room .card-content .price-and-button {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.recommended-room .details {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.recommended-room .details p {
  color: var(--text-color-2);
  font-family: var(--secondary-font);
  font-size: 16px;
  font-weight: 500;
}

.recommended-room .book-offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recommended-room .services-btn a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  transition: 0.3s;
}

.recommended-room .services-btn a:hover {
  color: var(--secondary-color);
}

.recommended-room .services-btn a i {
  color: var(--bg-2);
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.recommended-room .services-btn a:hover i {
  transform: translateX(4px);
}

.recommended-room .book-offer .book-offer-btn {
  width: 100%;
  display: block;
  background: transparent;
  border: 1px solid var(--secondary-color) !important;
  border: none;
  padding: 8px 20px;
  font-family: var(--secondary-font);
  font-weight: 500 !important;
  color: var(--text-color-1);
  border-radius: 30px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.recommended-room .book-offer .book-offer-btn:hover {
  background-color: var(--secondary-color);
}

.recommended-room .featured-sliders {
  position: relative;
  padding-bottom: 30px !important;
}

.recommended-room .swiper-pagination {
  margin-top: 40px !important;
}

.recommended-room .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background: var(--text-color-2) !important;
  opacity: 1 !important;
}

.recommended-room .swiper-pagination-bullet-active {
  background: var(--secondary-color) !important;
  width: 30px !important;
  transition: width 0.5s !important;
  border-radius: 10px !important;
  background: var(--secondary-color) !important;
  border: 1px solid transparent !important;
}

@media (min-width: 1200px) {
  .recommended-room .swiper-slide {
    width: 50%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .recommended-room .swiper-slide {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .recommended-room .swiper-slide {
    width: 100%;
  }

  .recommended-room .card-content h3 {
    font-size: 1.3rem;
  }

  .recommended-room .book-offer .book-offer-btn {
    font-size: 0.9rem;
  }

  #featured-wrapper .header h3 {
    max-width: 100%;
    font-size: 24px;
    padding: 30px 0;
  }

  #featured-wrapper .header .tag {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--secondary-font);
    color: var(--text-color-1);
    background-color: var(--primary-color);
    padding: 6px 20px;
    border-radius: 30px;
  }

  .recommended-room .card img {
    height: 180px;
  }
  #featured-wrapper .service-heading {
    margin-bottom: 0px;
  }
}

@media (max-width: 480px) {
  #featured-wrapper .news-item {
    flex: 1 1 100%;
  }
}

/* Featured Offer End */

/* Globally Connected Resorts Start */

#globally-services {
  width: 100%;
  background: var(--bg-1);
  padding-top: 80px;
}

#globally-services .globally-services-wrapper .card {
  position: relative;
  width: 100%;
  box-shadow: none;
  padding-bottom: 20px;
  margin: 10px 0;
}

#globally-services .globally-services-wrapper .card:hover img {
  transform: scale(1.1);
}

#globally-services .globally-services-title {
  max-width: 430px;
  font-size: 34px;
  font-weight: bold;
  padding: 0 0 40px;
  font-family: var(--primary-font);
  color: var(--text-color-1);
  margin: 0;
}

#globally-services .globally-services-intro {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  font-family: var(--secondary-font);
  color: var(--text-color-2);
  padding-bottom: 30px;
}

#globally-services .view-more-btn {
  display: block;
  max-width: 40%;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 9px 20px;
  border-radius: 40px;
  transition: 0.4s;
}

#globally-services .view-more-btn:hover {
  border: 1px solid var(--secondary-color);
  background: none;
}

.globally-services-wrapper .card .services-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  object-fit: cover;
  background-size: cover;
  overflow: hidden;
  border-radius: 24px;
  background-position: center;
}

.globally-services-wrapper .card img {
  width: 100%;
  border-radius: 24px;
  transition: 0.4s;
}

.globally-services-wrapper .card .services-title {
  font-size: 34px;
  font-weight: 500;
  padding: 18px 0 0;
  margin: 0;
  font-family: var(--primary-font);
  color: var(--text-color-1);
}

.globally-services-wrapper .card .intro {
  font-size: 16px;
  font-weight: 500;
  padding: 18px 0 70px;
  margin: 0;
  font-family: var(--secondary-font);
  color: var(--text-color-2);
}

.globally-services-wrapper .card .services-btn {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  bottom: 20px;
  left: 0;
}

.globally-services-wrapper .card .services-btn a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  transition: 0.3s;
}

.globally-services-wrapper .card .services-btn a:hover {
  color: var(--secondary-color);
}

.globally-services-wrapper .card .services-btn a i {
  color: var(--bg-2);
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.globally-services-wrapper .card .services-btn a:hover i {
  transform: translateX(4px);
}

@media (max-width: 1200px) {
  #globally-services .globally-services-title {
    font-size: 30px;
  }

  #globally-services .globally-services-intro {
    font-size: 14px;
  }

  .globally-services-wrapper .card .services-title {
    font-size: 30px;
  }

  .globally-services-wrapper .card .intro {
    font-size: 14px;
    padding-bottom: 50px;
  }
}

@media (max-width: 992px) {
  #globally-services .globally-services-title {
    font-size: 28px;
  }

  #globally-services .globally-services-intro {
    font-size: 14px;
  }

  .globally-services-wrapper .card .services-title {
    font-size: 28px;
  }

  .globally-services-wrapper .card .intro {
    font-size: 14px;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .globally-services-wrapper .card .services-title {
    font-size: 24px;
    padding-top: 26px;
  }

  .globally-services-wrapper .card .intro {
    font-size: 14px;
    padding-bottom: 30px;
  }

  #globally-services .globally-services-title {
    font-size: 24px;
    padding-bottom: 30px;
  }
}

@media (max-width: 576px) {
  #globally-services .globally-services-title {
    font-size: 26px;
  }

  #globally-services .globally-services-intro {
    font-size: 14px;
    padding-bottom: 20px;
  }

  .globally-services-wrapper .card {
    margin: 10px 0;
  }

  .globally-services-wrapper .card .services-title {
    font-size: 22px;
  }

  .globally-services-wrapper .card .intro {
    font-size: 14px;
    padding-bottom: 20px;
  }

  .globally-services-wrapper .card .services-btn {
    position: static;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  #globally-services .globally-services-intro {
    font-size: 12px;
  }

  .globally-services-wrapper .card .services-title {
    font-size: 20px;
  }

  .globally-services-wrapper .card .intro {
    font-size: 12px;
    padding-bottom: 20px;
  }

  .globally-services-wrapper .card .services-btn a {
    font-size: 14px;
  }

  .globally-services-wrapper .card .services-btn a i {
    margin-left: 5px;
  }
}

/* Globally Connected Resorts End */

/* Blog & News Start */

#blog {
  width: 100%;
  background: var(--bg-1);
  padding-top: 80px;
}

#blog .service-heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

#blog .header .tag {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  background-color: var(--primary-color);
  padding: 8px 30px;
  border-radius: 30px;
}

#blog .header h2 {
  font-size: 34px;
  font-weight: bold;
  padding: 40px 0px 0px 0px;
  font-family: var(--primary-font);
  color: var(--text-color-1);
  margin: 0;
}

#blog .view-all {
  display: flex;
  align-items: end;
  white-space: nowrap;
  text-align: right;
  margin-bottom: 0px;
  transition: 0.4s;
}

#blog .view-all a:hover {
  background-color: var(--secondary-color);
  border: none;
}

#blog .view-all a {
  background-color: var(--secondary-color);
  border: none;
  padding: 10px 30px;
  border-radius: 20px;
  color: var(--text-color-1);
  font-size: 16px;
  border: 1px solid var(--secondary-color);
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}

#blog .view-all a:hover {
  background: none;
  border: 1px solid var(--secondary-color);
}

#blog .news-item-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#blog .news-item {
  background-color: var(--bg-1);
  overflow: hidden;
  object-fit: cover;
  flex: 1 1 calc(33.333% - 20px);
  display: flex;
  flex-direction: column;
  position: relative;
}

#blog .news-item img {
  width: 100%;
  height: auto;
  transition: 0.3s;
  border-radius: 24px;
}

#blog .image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
}

#blog .news-item:hover img {
  transform: scale(1.1);
}

#blog .news-item-active img {
  filter: brightness(50%);
}

#blog .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  width: 70px;
  height: 70px;
  background: url("../icons/blog-news-video-play-icon.svg") no-repeat center;
  background-size: contain;
  cursor: pointer;
}

#blog .news-item-active .play-icon {
  display: block;
}

#blog .news-item .content {
  position: relative;
  flex-grow: 1;
}

#blog .content .icon img {
  width: 20px;
  height: 20px;
}

#blog .news-item .content .meta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  margin: 30px 0px 10px 0px;
}

#blog .news-item .content span {
  font-size: 16px;
  font-family: var(--secondary-font);
  color: var(--text-color-2);
  font-weight: 500;
}

#blog .news-item .content .devider {
  margin-left: 5px;
}

#blog .news-item .content .meta img {
  margin: 0px 5px;
}

#blog .news-item .content h3 {
  font-size: 22px;
  margin: 0 0 20px;
  font-weight: 600;
  font-family: var(--primary-font);
}

#blog .news-item .content p {
  font-size: 16px;
  color: var(--text-color-2);
  margin: 0px 0px 52px 0px;
  font-weight: 500;
  font-family: var(--secondary-font);
}

#blog .services-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

#blog .services-btn span {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--secondary-font);
  color: var(--bg-2) !important;
  transition: 0.3s;
}

#blog .services-btn a:hover span {
  color: var(--secondary-color) !important;
}

#blog .services-btn a i {
  color: var(--bg-2);
  margin-left: 10px;
  transition: transform 0.3s ease;
}

#blog .services-btn a:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  #blog .service-heading {
    display: block;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 40px;
  }
  #blog .view-all {
    text-align: start;
  }
  #blog .view-all a {
    padding: 10px 30px !important;
  }
}
@media (max-width: 768px) {
  #blog .news-item {
    flex: 1 1 calc(50% - 20px);
  }

  #blog .news-item .content {
    margin-bottom: 20px;
  }

  #blog .header h2 {
    max-width: 90%;
    font-size: 24px;
    padding: 30px 0;
  }

  #blog .view-all a {
    padding: 10px 10px;
    border-radius: 20px;
    color: var(--text-color-1);
    font-size: 15px;
  }

  #blog .header .tag {
    font-size: 16px;
    font-weight: 500;
    font-family: var(--secondary-font);
    color: var(--text-color-1);
    background-color: var(--primary-color);
    padding: 6px 20px;
    border-radius: 30px;
  }
}

@media (max-width: 480px) {
  #blog .news-item {
    flex: 1 1 100%;
  }

  #blog .header h2 {
    font-size: 24px;
  }
}

/* Blog & News End */

/* Reviews Start */
#reviews {
  width: 100%;
  padding: 80px 0;
  background: var(--bg-1);
}

#reviews .reviews-heading span {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--secondary-font);
  color: var(--text-color-1);
  background-color: var(--primary-color);
  padding: 8px 30px;
  border-radius: 30px;
}

#reviews .reviews-heading h2 {
  font-size: 34px;
  font-weight: bold;
  padding: 40px 0px 40px 0px;
  font-family: var(--primary-font);
  color: var(--text-color-1);
}

#reviews .customer-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 250px;
}

#reviews .customer-content {
  position: relative;
  width: 100%;
  text-align: left;
  margin: 0px 10px;
}

#reviews .customer-content .content-icon {
  position: absolute;
  top: 0px;
  right: 0px;
}

#reviews .customer-content .content-icon img {
  width: 40px;
  height: 50px;
}

#reviews .customer-content h3 {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-color-1);
  font-family: var(--primary-font);
}

#reviews .customer-content p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-color-2);
  font-family: var(--secondary-font);
}

#reviews .customer-content p:nth-last-child(1) {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

#reviews .customer-content .content {
  display: none;
}

#reviews .customer-content .content.active {
  display: block;
}

#reviews .navigation {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#reviews .navigation button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background-color 0.4s ease;
}

#reviews .navigation button i {
  color: var(--bg-2) !important;
  font-size: 20px;
}

#reviews .navigation button:hover {
  background-color: var(--btn-hover);
}

#reviews .customer-profiles {
  display: flex;
  gap: 10px;
}

#reviews .customer-profiles .profile {
  display: block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--text-color-3);
  background: var(--secondary-color);
  cursor: pointer;
  transition: border 0.3s ease;
}

#reviews .customer-profiles .profile:nth-child(1),
#reviews .customer-profiles .profile:nth-child(3) {
  margin-top: -40px;
}

#reviews .customer-profiles .profile.active {
  border-top: 8px solid var(--secondary-color);
  border-left: 1px solid var(--secondary-color);
  border-right: 1px solid var(--secondary-color);
  border-bottom: 1px solid var(--secondary-color);
}

#reviews .customer-profiles .profile.active img {
  border-top: 3px solid var(--bg-1) !important;
  border-left: 2px solid var(--bg-1) !important;
  border-right: 2px solid var(--bg-1) !important;
}

#reviews .customer-profiles .profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  width: 100%;
}

#reviews .left-section {
  width: 100%;
  gap: 20px;
  display: flex;
  align-items: center;
}

#reviews .right-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 45px;
}

@media (max-width: 992px) {
  #reviews .left-section {
    margin-top: 30px;
  }

  #reviews .right-section {
    justify-content: center;
  }

  #reviews .customer-slider {
    height: auto;
  }

  #reviews .customer-profiles .profile {
    width: 55px;
    height: 55px;
  }

  #reviews .reviews-heading h2 {
    font-size: 24px;
    padding: 30px 0;
  }

  #reviews .customer-content h3 {
    font-size: 20px;
    margin-bottom: 0;
  }

  #reviews .navigation button {
    display: block;
    width: 33px;
    height: 33px;
  }

  #reviews .navigation button i {
    font-size: 16px;
  }

  #reviews .customer-content .content-icon img {
    width: 25px;
    height: 30px;
  }

  #reviews .customer-content p {
    margin-bottom: 10px;
  }
}

/* Reviews End */
