@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&display=swap");
.d-hidden {
  display: none;
}

.v-hidden {
  visibility: hidden;
}

@keyframes star-wars-scroll {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-320rem);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.loading-dot-animation, .loading-dot-animation--form {
  display: none !important;
}

.loading-dot-animation--active {
  display: block !important;
}

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

html {
  font-size: 62.5%;
  scrollbar-color: #a37826 transparent;
  scrollbar-width: thin;
}
@media only screen and (min-width: 100em) {
  html {
    font-size: 75%;
  }
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56%;
  }
}
@media only screen and (max-width: 50em) {
  html {
    font-size: 50%;
  }
}

/* width */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0px rgb(0, 0, 0);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #a37826;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(236, 231, 223);
}

body {
  background: #080602;
  font-family: "Raleway", sans-serif;
}

@font-face {
  font-family: "headingFont";
  src: url(../assets/fonts/BrandonGrotesque-Bold.otf);
}
@font-face {
  font-family: "mainFont";
  src: url(../assets/fonts/Proxima\ Nova\ Regular.otf);
  font-weight: normal;
}
@font-face {
  font-family: "mainFont";
  src: url(../assets/fonts/Proxima\ Nova\ Semibold.otf);
  font-weight: bold;
}
@font-face {
  font-family: "introHeadingFont";
  src: url(../assets/fonts/Shoreline.otf);
}
.heading-primary {
  font-family: "introHeadingFont";
  padding: 4.8rem 2.4rem;
  background-image: linear-gradient(270deg, #a37826 0%, #ba9422 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.para {
  font-family: "Raleway", sans-serif;
  color: rgba(236, 231, 223, 0.75);
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 140%;
}
.para--primary-color {
  color: #a37826;
}
@media only screen and (min-width: 100em) {
  .para {
    font-size: 2.2rem;
  }
}
.para--small {
  font-size: 1.5rem;
}
.para--dark {
  color: #080602;
}

.para-star-wars {
  font-size: 4.8rem;
  line-height: 130%;
  color: #a37826;
  font-weight: bold;
  text-align: center;
  font-family: "Raleway", sans-serif;
}
@media only screen and (max-width: 37.5em) {
  .para-star-wars {
    font-size: 4rem;
  }
}

.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5,
.heading-6 {
  line-height: 130%;
}

.heading-1 {
  font-size: 9.6rem;
}
@media only screen and (max-width: 50em) {
  .heading-1 {
    font-size: 8.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading-1 {
    font-size: 8rem;
  }
}
@media only screen and (max-width: 30em) {
  .heading-1 {
    font-size: 6.4rem;
  }
}
@media only screen and (max-width: 20em) {
  .heading-1 {
    font-size: 5.6rem;
  }
}

.heading-2 {
  font-size: 6.4rem;
  letter-spacing: 2px;
  background-image: linear-gradient(270deg, #a37826 0%, #ba7322 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(360deg, #a37826 0%, #ba7322 100%);
  font-family: "headingFont";
}
.heading-2--light {
  color: rgb(236, 231, 223);
}

.heading-3 {
  font-size: 4.8rem;
}

.heading-4 {
  font-size: 3.6rem;
}

.heading-5 {
  font-size: 2.4rem;
}

.heading-6 {
  font-size: 1.6rem;
}

.back-home {
  display: flex;
  justify-content: center;
  align-items: center;
}
.back-home--alone {
  margin-top: 5.4rem;
}
.back-home svg {
  fill: #a37826;
  width: 3.2rem;
  height: 3.2rem;
}

.carousel-section {
  height: 66rem;
  margin-bottom: 25.6rem;
}
@media only screen and (max-width: 75em) {
  .carousel-section {
    height: 100%;
  }
}

.carousel {
  width: 100%;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 75em) {
  .carousel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 75em) {
  .carousel {
    position: static;
  }
}
.carousel__main {
  width: 100%;
  position: absolute;
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 75em) {
  .carousel__main {
    position: static;
    margin: 0 auto;
    transform: translateY(0%);
  }
}
@media only screen and (max-width: 50em) {
  .carousel__main {
    width: 80%;
    margin: 0 auto;
  }
}
.carousel__main .slide {
  height: 56rem;
  padding: 2rem;
  border: 1px solid #ba9422;
  border-radius: 1.2rem;
  transform: scale(0.8);
  transition: all 0.3s;
}
@media only screen and (min-width: 100em) {
  .carousel__main .slide {
    height: 66rem;
  }
}
@media only screen and (max-width: 30em) {
  .carousel__main .slide {
    height: 50rem;
  }
}
.carousel__main .slide__testimonial-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.carousel__main .slide__info {
  margin-bottom: 3.2rem;
  text-align: center;
}
.carousel__main .slide__heading {
  text-align: center;
  margin-bottom: 2rem;
  color: #a37826;
  text-transform: uppercase;
}
.carousel__main .slide__heading--white {
  text-align: center;
  color: rgb(236, 231, 223);
  text-transform: capitalize;
}
.carousel__main .slide__subheading {
  text-align: center;
  color: rgba(236, 231, 223, 0.5);
}
.carousel__main .slide__img-container {
  margin: 0 auto;
  margin-bottom: 2rem;
  height: 10rem;
}
@media only screen and (max-width: 50em) {
  .carousel__main .slide__img-container {
    height: 20rem;
    width: 60%;
  }
}
@media only screen and (max-width: 37.5em) {
  .carousel__main .slide__img-container {
    height: 10rem;
  }
}
.carousel__main .slide__img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.carousel__main .slick-center {
  transform: scale(1);
}
.carousel__main .slider__btns {
  text-align: center;
  margin-top: 6.4rem;
}
.carousel__main .slider__btns-prev, .carousel__main .slider__btns-next {
  background-color: transparent;
  border: none;
  margin: 0 2.4rem;
  cursor: pointer;
}
.carousel__main .slider__btns-prev svg, .carousel__main .slider__btns-next svg {
  width: 3.2rem;
  height: 3.2rem;
  fill: #ba9422;
}
@media only screen and (min-width: 100em) {
  .carousel__main .slider__btns-prev, .carousel__main .slider__btns-next {
    margin-bottom: 7.4rem;
  }
}
.carousel__heading {
  height: 100%;
  text-align: center;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: -12%;
}
@media only screen and (max-width: 75em) {
  .carousel__heading {
    position: static;
    writing-mode: horizontal-tb;
    height: -moz-fit-content;
    height: fit-content;
    transform: translateY(0%);
    margin-bottom: 6.4rem;
  }
}
@media only screen and (max-width: 30em) {
  .carousel__heading {
    font-size: 4.4rem;
  }
}

.contact-card {
  padding: 4.4rem 3.2rem;
  width: 100%;
  background: rgba(236, 231, 223, 0.1);
}
@media only screen and (max-width: 50em) {
  .contact-card {
    width: 80%;
  }
}
.contact-card__heading {
  text-transform: uppercase;
  text-align: center;
  background-image: linear-gradient(270deg, #a37826 0%, #ba7322 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 5.6rem;
}
@media only screen and (max-width: 30em) {
  .contact-card__heading {
    font-size: 2.2rem;
  }
}
.contact-card svg {
  display: block;
  fill: #ba9422;
  height: 9.6rem;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 5.6rem;
  transition: all 0.3s;
}
.contact-card svg:hover {
  transform: scale(1.1);
}
.contact-card__info {
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.2rem;
}
.contact-card__info span {
  color: #ba9422;
}
.contact-card__info a,
.contact-card__info a:visited,
.contact-card__info a:active {
  text-decoration: none;
  color: rgba(236, 231, 223, 0.75);
  transition: all 0.3s;
}
.contact-card__info a:hover {
  color: #ba9422;
}
.contact-card__text {
  color: rgba(236, 231, 223, 0.5);
  text-align: center;
}
.contact-card__text a,
.contact-card__text a:visited,
.contact-card__text a:active {
  text-decoration: none;
  color: rgba(236, 231, 223, 0.5);
  transition: all 0.3s;
}
.contact-card__text a:hover {
  color: rgb(236, 231, 223);
}

.search {
  width: 36rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  position: relative;
}
.search__input {
  padding: 1.2rem;
  font-family: "mainFont";
  background-color: #080602;
  border: 1px solid rgba(236, 231, 223, 0.75);
  color: rgba(236, 231, 223, 0.5);
}
.search__input::-moz-placeholder {
  color: rgba(236, 231, 223, 0.5);
  font-size: 1.3rem;
}
.search__input::placeholder {
  color: rgba(236, 231, 223, 0.5);
  font-size: 1.3rem;
}
.search__input:focus {
  outline: none;
}
.search__icon {
  cursor: pointer;
}
.search__icon svg {
  height: 2.4rem;
  width: 2.4rem;
  fill: #a37826;
}
.search__results {
  position: absolute;
  left: 0;
  top: 5.2rem;
  max-height: 20rem;
  width: 100%;
  background-color: #080602;
  z-index: 2;
  overflow-y: scroll;
}
.search__results-anchor {
  text-decoration: none;
}
.search__results-hotel {
  width: 100%;
  padding: 10px 10px;
  height: 80px;
  border-bottom: 1px solid #3d3d3d;
  display: flex;
  align-items: center;
}
.search__results-hotel p {
  font-size: 14px;
}
.search__results-hotel_name {
  font-family: "Raleway", sans-serif;
  color: rgba(236, 231, 223, 0.5);
}
.search__results-hotel_destination {
  color: #ba7322;
}
.search__results-hotel:hover {
  background-color: rgb(15, 15, 10);
}

.overlay {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(8, 6, 2, 0.8);
  z-index: 10;
  top: 0;
}

.sidebar {
  height: 90vh;
  left: 4rem;
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 100em) {
  .sidebar {
    height: 44rem;
    top: 40rem;
  }
}
@media only screen and (max-width: 75em) {
  .sidebar {
    width: 100%;
    left: 0;
    padding-right: 4rem;
    align-items: flex-end;
    justify-content: center;
    height: 5.2rem;
    transform: none;
    top: 0;
    height: 14rem;
    background-image: linear-gradient(to bottom, #080602 90%, rgba(8, 6, 2, 0.2));
    z-index: 1;
  }
}
@media only screen and (max-width: 75em) {
  .sidebar__navigation {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.sidebar__navigation-icon--home {
  display: none;
}
@media only screen and (max-width: 75em) {
  .sidebar__navigation-icon--home {
    display: block;
  }
}
.sidebar__navigation-main, .sidebar__navigation-social {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  list-style: none;
}
@media only screen and (max-width: 75em) {
  .sidebar__navigation-main, .sidebar__navigation-social {
    flex-direction: row;
  }
}
.sidebar__navigation-main-icon, .sidebar__navigation-social-icon {
  width: 5.8rem;
  fill: #a37826;
  cursor: pointer;
}
.sidebar__navigation-main {
  margin-bottom: 5.8rem;
}
@media only screen and (max-width: 75em) {
  .sidebar__navigation-main {
    margin-bottom: 0;
  }
}
.sidebar__navigation-main-icon {
  height: 2.8rem;
  display: inline-block;
}
@media only screen and (max-width: 75em) {
  .sidebar__navigation-social {
    display: none;
  }
}
.sidebar__navigation-social-icon {
  height: 2.8rem;
  fill: rgba(236, 231, 223, 0.75);
}
.sidebar__menu-label {
  height: 5.2rem;
  width: 5.2rem;
  border-radius: 50%;
  left: 4.4rem;
  position: fixed;
  top: 4.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  background-image: linear-gradient(270deg, #a37826 0%, #ba9422 100%);
  cursor: pointer;
  background: transparent;
}
.sidebar__menu-icon {
  width: 2.6rem;
  height: 2.6rem;
  fill: #080602;
  z-index: 2;
}
.sidebar__menu-icon--close {
  position: absolute;
  width: 2.6rem;
  height: 2.6rem;
  visibility: hidden;
}
.sidebar__menu-input {
  display: none;
}
.sidebar__menu-background {
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  position: fixed;
  top: 4.4rem;
  left: 4.4rem;
  background: linear-gradient(270deg, #a37826 0%, #ba9422 100%);
  z-index: 1;
  transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
}
.sidebar__menu-main {
  position: fixed;
  width: 70%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0;
  transform: translateY(-50%) translateX(200rem) !important;
  visibility: hidden;
  z-index: 2;
}
.sidebar__menu-links {
  list-style: none;
}
.sidebar__menu-link {
  text-align: center;
  text-transform: uppercase;
  color: rgb(236, 231, 223);
  font-family: "mainFont";
  font-weight: normal;
  backface-visibility: hidden;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
@media only screen and (max-width: 37.5em) {
  .sidebar__menu-link {
    font-size: 2.4rem;
  }
}
.sidebar__menu-link a {
  text-decoration: none;
  color: #080602;
  display: block;
  transition: 0.3s;
}
.sidebar__menu-link a:hover {
  color: rgb(236, 231, 223);
}
.sidebar__menu-link:not(:last-child) {
  margin-bottom: 2.4rem;
}
.sidebar__menu-input:checked ~ .sidebar__menu-background {
  transform: scale(70);
}
@media only screen and (min-width: 100em) {
  .sidebar__menu-input:checked ~ .sidebar__menu-background {
    transform: scale(80);
  }
}
.sidebar__menu-input:checked ~ .sidebar__menu-main {
  visibility: visible;
  opacity: 1;
  transform: translateY(-50%) translateX(-50%) !important;
}
.sidebar__menu-input:checked ~ .sidebar__menu-label .sidebar__menu-icon {
  visibility: hidden;
}
.sidebar__menu-input:checked ~ .sidebar__menu-label .sidebar__menu-icon--close {
  visibility: visible;
}

.mobile-nav-social-icons {
  display: none;
  margin-top: 6.4rem;
}
@media only screen and (max-width: 75em) {
  .mobile-nav-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.mobile-nav-social-icons li {
  list-style: none;
}

.about-us {
  margin-top: 5.4rem !important;
}

.about-us-section {
  display: flex;
  gap: 1.6rem;
  margin: 12.8rem 0;
}
@media only screen and (max-width: 75em) {
  .about-us-section {
    margin-top: 156px;
  }
}
@media only screen and (min-width: 100em) {
  .about-us-section {
    gap: 12.8rem;
  }
}
@media only screen and (max-width: 50em) {
  .about-us-section {
    width: 80%;
    margin: 0 auto;
    margin-top: 156px;
    margin-bottom: 12.8rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    row-gap: 6rem;
  }
}

.profile-card {
  background-color: rgb(236, 231, 223);
  width: 100%;
  border-radius: 20rem;
  padding: 2.4rem;
  padding-bottom: 0;
  opacity: 0.4;
  overflow: hidden;
  height: 100%;
}
@media only screen and (max-width: 50em) {
  .profile-card {
    max-width: 32rem;
  }
}
.profile-card--active {
  opacity: 1;
  border-radius: 1.2rem;
  transition: all 1s;
}
.profile-card--active .profile-card__info {
  display: inline-block;
}
.profile-card--active .profile-card__img-container {
  border-radius: 1.2rem;
}
@media only screen and (min-width: 100em) {
  .profile-card {
    padding: 3.2rem;
    padding-bottom: 0;
  }
}
.profile-card__img-container {
  height: 28rem;
  background-color: #080602;
  border-radius: 16rem 16rem 8rem 8rem;
  position: relative;
  overflow: hidden;
  transition: all 1s;
}
.profile-card__img-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.profile-card__title {
  position: absolute;
  bottom: 1.6rem;
  text-align: center;
  width: 100%;
  color: rgb(255, 255, 255);
}
.profile-card__info {
  margin-top: 2.4rem;
  margin-bottom: 4.8rem;
  text-align: justify;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.profile-card__button {
  display: block;
  margin: 0 auto;
  padding: 1.6rem 2.4rem;
  background-color: rgba(8, 6, 2, 0.6);
  border: none;
  cursor: pointer;
  border-radius: 3rem;
  color: rgb(236, 231, 223);
}
.profile-card__button:hover {
  background-color: #a37826;
}

.about-us-carousel {
  margin-bottom: 12.8rem;
}
@media only screen and (max-width: 50em) {
  .about-us-carousel {
    width: 80%;
    margin: 12.8rem auto;
  }
}
.about-us-carousel .slide {
  height: 40rem;
}
.about-us-carousel .slide p {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "introHeadingFont";
}
@media only screen and (max-width: 37.5em) {
  .about-us-carousel .slide p {
    font-size: 2.8rem;
  }
}

.collab-heading {
  margin: 8.8rem 0;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  background-image: linear-gradient(270deg, #a37826 0%, #ba7322 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 75em) {
  .collab-heading {
    margin-bottom: 2.4rem;
    margin-top: 16rem;
  }
}

.collab-detail {
  margin-top: 5.4rem !important;
  width: 98rem !important;
}
@media only screen and (max-width: 56.25rem) {
  .collab-detail {
    width: 90% !important;
  }
}

.contact-us {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 50em) {
  .contact-us {
    height: 100%;
  }
}
@media only screen and (max-width: 75em) {
  .contact-us {
    margin-top: -12.8rem !important;
  }
}
.contact-us__section {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 50em) {
  .contact-us__section {
    margin-top: 28rem;
    padding-bottom: 8rem;
  }
}

.enquiry {
  width: 100%;
  max-width: 170rem;
  height: 100%;
  max-height: 70rem;
  background-image: url(../assets/images/enquiryForm.png);
  background-size: cover;
  background-position: center;
  padding: 2.4rem;
  -moz-column-gap: 4.4rem;
       column-gap: 4.4rem;
  display: flex;
}
@media only screen and (max-width: 56.25rem) {
  .enquiry {
    flex-direction: column;
    max-height: -moz-fit-content;
    max-height: fit-content;
    row-gap: 7.2rem;
  }
}
.enquiry__main {
  height: 100vh;
  padding: 2.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 56.25rem) {
  .enquiry__main {
    height: 100%;
  }
}
.enquiry-left, .enquiry-right {
  height: 100%;
}
@media only screen and (max-width: 56.25rem) {
  .enquiry-left, .enquiry-right {
    width: 100% !important;
  }
}
.enquiry-left {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 56.25rem) {
  .enquiry-contact {
    display: none;
  }
}
.enquiry-contact p {
  color: rgba(236, 231, 223, 0.75);
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.enquiry-contact p a {
  text-decoration: none;
  color: rgba(236, 231, 223, 0.75);
}
.enquiry-contact p a:hover {
  color: #a37826;
}
.enquiry-logo {
  font-family: "introHeadingFont";
  font-size: 2.4rem;
  color: rgba(236, 231, 223, 0.75);
  margin-bottom: 7.2rem;
}
@media only screen and (max-width: 56.25rem) {
  .enquiry-logo {
    display: none;
  }
}
.enquiry-title {
  font-size: 5.6rem;
  font-weight: 700;
  color: rgba(236, 231, 223, 0.75);
}
@media only screen and (max-width: 56.25rem) {
  .enquiry-title {
    text-align: center;
    font-size: 4.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .enquiry-title {
    text-align: center;
    font-size: 4rem;
  }
}
@media only screen and (max-width: 30em) {
  .enquiry-title {
    font-size: 3rem;
  }
}
.enquiry-right {
  width: 60%;
}
.enquiry-form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 56.25rem) {
  .enquiry-form {
    height: 66rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .enquiry-form {
    height: 100%;
  }
}
.enquiry-form__hotel-name {
  color: rgb(236, 231, 223);
  font-size: 1.6rem;
  text-align: center;
}
@media only screen and (max-width: 56.25rem) {
  .enquiry-form__hotel-name {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .enquiry-form__hotel-name {
    margin-bottom: 7.2rem;
  }
}
.enquiry-form__message-container {
  display: flex;
  height: 14rem;
}
@media only screen and (max-width: 37.5em) {
  .enquiry-form__message-container {
    height: -moz-fit-content;
    height: fit-content;
    row-gap: 4.4rem;
    margin-top: 4.4rem;
  }
}
.enquiry-form__message-container--active {
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
}
@media only screen and (max-width: 37.5em) {
  .enquiry-form__message-container--active {
    flex-direction: column-reverse;
  }
}
.enquiry-form__message-container--active .enquiry-form__message {
  width: 50%;
}
@media only screen and (max-width: 37.5em) {
  .enquiry-form__message-container--active .enquiry-form__message {
    width: 100%;
  }
}
.enquiry-form__message-container--active .enquiry-form__childrens-age {
  display: grid;
  width: 50%;
}
@media only screen and (max-width: 37.5em) {
  .enquiry-form__message-container--active .enquiry-form__childrens-age {
    width: 100%;
  }
}
.enquiry-form__childrens-age {
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  overflow-y: scroll;
  display: none;
}
.enquiry-form__childrens-age .enquiry-form__section-input {
  height: 2.4rem;
}
.enquiry-form__childrens-age .enquiry-form__section-input--age {
  height: 4.4rem;
}
.enquiry-form__childrens-age .enquiry-form__section-input label {
  display: flex;
  align-items: center;
}
.enquiry-form__message {
  height: 14rem;
  background: transparent;
  resize: none;
  outline: none;
  padding: 1.4rem;
  color: rgba(236, 231, 223, 0.75);
  font-family: inherit;
  font-size: 1.4rem;
  width: 100%;
}
.enquiry-form__button {
  align-self: flex-end;
  font-family: "mainFont";
  font-size: 1.8rem;
  padding: 0.8rem 1.6rem;
  border-radius: 6px;
  cursor: pointer;
  background-color: #a37826;
  border: none;
  color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
}
.enquiry-form__button:hover {
  background-color: #ba7322;
}
.enquiry-form__button--icon {
  width: 1.8rem;
  height: 1.8rem;
  animation: rotation 2s linear infinite;
  fill: white;
}
@media only screen and (max-width: 37.5em) {
  .enquiry-form__button {
    margin-top: 3.2rem;
  }
}
.enquiry-form__section--query {
  margin-top: 4.4rem;
}
.enquiry-form__section-title {
  font-size: 1.8rem;
  color: rgb(236, 231, 223);
  font-weight: 400;
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 56.25rem) {
  .enquiry-form__section-title {
    font-size: 2.4rem;
  }
}
.enquiry-form__section-input-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}
@media only screen and (max-width: 37.5em) {
  .enquiry-form__section-input-container {
    grid-template-columns: 1fr;
  }
}
.enquiry-form__section-input {
  display: flex;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
}
.enquiry-form__section-input--ages {
  position: relative;
}
.enquiry-form__section-input--decrement, .enquiry-form__section-input--increment {
  background-color: rgba(163, 120, 38, 0.8);
  font-size: 1.8rem;
  color: rgb(255, 255, 255);
  position: absolute;
  padding: 0 0.4rem;
  top: 0;
  height: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.enquiry-form__section-input--decrement {
  padding: 0 0.6rem;
  right: 0;
}
.enquiry-form__section-input--increment {
  right: 2.2rem;
}
.enquiry-form__section-input label {
  color: rgba(236, 231, 223, 0.75);
  font-size: 1.6rem;
  font-weight: 400;
  white-space: nowrap;
}
@media only screen and (max-width: 56.25rem) {
  .enquiry-form__section-input label {
    font-size: 1.8rem;
  }
}
.enquiry-form__section-input input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(236, 231, 223, 0.75);
  outline: none;
  color: rgba(236, 231, 223, 0.75);
  font-family: inherit;
  color-scheme: dark;
}

.feedback-form-container {
  margin: 0 150px;
  margin-top: 20px;
}
.feedback-form-container .feedback-form-tag {
  margin-bottom: 60px;
}
.feedback-form-container .feedback-form-tag .feedback-form-title {
  text-transform: uppercase;
  margin-top: 60px;
  font-size: 3rem;
  text-align: center;
  color: #a37826;
}
.feedback-form-container .feedback-form-tag .feedback-form {
  height: 500px;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.1fr;
  gap: 40px;
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-message .feedback-form-message-container {
  background-color: white;
  border-radius: 12px;
  height: 100%;
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-message .feedback-form-message-container .feedback-form-message-title {
  color: black;
  font-size: 2rem;
  cursor: pointer;
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-message .feedback-form-message-container .feedback-form-message-text {
  width: 100%;
  height: 90%;
  padding: 20px;
  border-radius: 12px;
  font-size: 1.6rem;
  resize: none;
  font-family: inherit;
  border: 2px solid black;
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-message .feedback-form-message-container .feedback-form-message-text:focus {
  outline: none;
  border-color: #a37826;
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-input {
  border: 2px solid white;
  border-radius: 12px;
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-input .feedback-form-input-container {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-input .feedback-form-input-container input {
  width: 100%;
  padding: 20px;
  font-size: 2rem;
  background: black;
  border: 2px solid white;
  border-radius: 12px;
  color: white;
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-input .feedback-form-input-container input::-moz-placeholder {
  color: rgb(194, 194, 194);
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-input .feedback-form-input-container input::placeholder {
  color: rgb(194, 194, 194);
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-input .feedback-form-input-container input:focus {
  outline: none;
  border-color: #a37826;
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-input .feedback-form-input-container .feedback-form-input-message::-webkit-outer-spin-button,
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-input .feedback-form-input-container .feedback-form-input-message::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-submit-btn {
  height: 60px;
  align-self: flex-end;
  border-radius: 12px;
  cursor: pointer;
  width: 60px;
  background-color: transparent;
  border: 2px solid white;
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-submit-btn:hover {
  background-color: rgb(24, 24, 24);
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-submit-btn:hover .feedback-form-submit-icon {
  animation: iconRotate 2s infinite;
}
.feedback-form-container .feedback-form-tag .feedback-form .feedback-form-submit-btn .feedback-form-submit-icon {
  width: 24px;
  height: 24px;
  fill: white;
}

@keyframes iconRotate {
  50% {
    transform: rotate(30deg);
  }
}
@media (max-width: 1435px) {
  .feedback-form-container .feedback-form-tag .feedback-form .feedback-form-message .feedback-form-message-container .feedback-form-message-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  .feedback-form-container {
    margin: 0 80px;
  }
  .feedback-form-container .feedback-form-tag .feedback-form-title {
    margin-top: 120px;
  }
}
@media (max-width: 960px) {
  .feedback-form-container .feedback-form-tag .feedback-form {
    grid-template-columns: 1fr;
    margin-bottom: 60px;
    height: -moz-fit-content;
    height: fit-content;
  }
  .feedback-form-container .feedback-form-tag .feedback-form .feedback-form-input {
    height: 480px;
  }
  .feedback-form-container .feedback-form-tag .feedback-form .feedback-form-message {
    height: 300px;
  }
  .feedback-form-container .feedback-form-tag .feedback-form .feedback-form-submit-btn {
    justify-self: self-end;
  }
}
@media (max-width: 450px) {
  .feedback-form-container {
    margin: 0 40px;
  }
  .feedback-form-container .feedback-form-tag .feedback-form .feedback-form-message .feedback-form-message-container {
    padding: 20px;
  }
  .feedback-form-container .feedback-form-tag .feedback-form .feedback-form-input {
    height: 360px;
  }
  .feedback-form-container .feedback-form-tag .feedback-form .feedback-form-input .feedback-form-input-container {
    padding: 20px;
  }
}
.hotels-list {
  overflow-y: scroll;
  max-width: 112rem;
  width: 80%;
  height: 90%;
  max-height: 60rem;
  background-color: #1f1d19;
  padding: 3.2rem;
  padding-top: 0;
}
.hotels-list__main {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #080602;
  display: none;
}
.hotels-list__main--active {
  display: flex;
}
.hotels-list__leftright {
  display: flex;
  gap: 3.2rem;
}
@media only screen and (max-width: 37.5em) {
  .hotels-list__leftright {
    flex-direction: column;
  }
}
.hotels-list-icon--close-container {
  position: sticky;
  width: 100%;
  height: 6.4rem;
  right: 0;
  top: 0;
  background-color: #1f1d19;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hotels-list-icon-close {
  width: 2.4rem;
  height: 2.4rem;
  fill: #ba7322;
  cursor: pointer;
}
.hotels-list__left, .hotels-list__right {
  width: 50%;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 37.5em) {
  .hotels-list__left, .hotels-list__right {
    width: 100%;
  }
}
.hotels-list__continent-container {
  margin-bottom: 2.4rem;
}
.hotels-list__continent {
  font-size: 3.4rem;
  background-image: linear-gradient(270deg, #a37826 0%, #ba7322 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 4.4rem;
  border-bottom: 3px solid #ba7322;
  margin-bottom: 1.8rem;
}
.hotels-list__country:not(:last-child) {
  margin-bottom: 0.6rem;
}
.hotels-list__country-name {
  font-size: 2.4rem;
  color: rgb(236, 231, 223);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hotels-list__country-name:hover {
  color: rgba(236, 231, 223, 0.75);
}
.hotels-list__country-hotels {
  margin-left: 1.2rem;
  font-size: 2rem;
  margin-top: 0.6rem;
  margin-bottom: 2rem;
  display: none;
}
.hotels-list__hotel {
  color: rgba(236, 231, 223, 0.75);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.hotels-list__hotel:hover {
  color: rgba(236, 231, 223, 0.5);
}
.hotels-list__hotel span {
  color: #ba9422;
}
.hotels-list__hotel:not(:last-child) {
  margin-bottom: 0.4rem;
}

.country-active .hotels-list__country-hotels {
  display: block;
}
.country-active .hotels-list__country-name {
  color: #ba7322;
}

.hotel-detail {
  padding: 0;
}
.hotel-detail__carousel {
  position: relative;
}
.hotel-detail__section--collab {
  flex-direction: column;
}
.hotel-detail--110 {
  width: 110rem !important;
}
@media only screen and (max-width: 56.25rem) {
  .hotel-detail--110 {
    width: 90% !important;
  }
}
.hotel-detail__section {
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .hotel-detail__section {
    flex-direction: column;
    align-items: center;
  }
}
.hotel-detail__section hr {
  width: 70%;
  margin: 0 auto;
}
.hotel-detail__info-primary {
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom, transparent, #080602);
  padding: 1.8rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: rgba(236, 231, 223, 0.75);
}
.hotel-detail__info-primary--responsive {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hotel-detail__info-primary-name {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 2.4rem;
  font-weight: 400;
}
.hotel-detail__info-primary-name-start {
  font-size: 5rem;
}
.hotel-detail__info-primary-location {
  margin-top: 0.8rem;
  letter-spacing: 2px;
  font-size: 1.8rem !important;
  text-transform: capitalize;
}
.hotel-detail__container {
  margin: 6.4rem 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 1.6rem;
}
@media only screen and (max-width: 56.25rem) {
  .hotel-detail__container {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 37.5em) {
  .hotel-detail__container {
    display: none;
  }
}
.hotel-detail__container--responsive {
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .hotel-detail__container--responsive {
    display: flex;
    flex-direction: column;
    z-index: 0;
  }
}
.hotel-detail__item {
  height: 32rem;
  width: 100%;
  background-color: rgb(255, 255, 255);
}
.hotel-detail__item-fact-heading {
  font-size: 2.4rem;
  margin-bottom: 1.8rem;
}
.hotel-detail__item h2 {
  background-image: linear-gradient(270deg, #a37826 0%, #ba7322 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hotel-detail__item p {
  font-size: 1.5rem;
  margin-top: 0.4rem;
  line-height: 1.8rem;
}
@media only screen and (max-width: 37.5em) {
  .hotel-detail__item p {
    font-size: 1.8rem;
  }
}
.hotel-detail__item-fact-info {
  text-align: justify;
  line-height: 2.2rem !important;
}
.hotel-detail__item--primary {
  position: relative;
}
.hotel-detail__item-container:not(:last-child) {
  margin-bottom: 0.6rem;
}
.hotel-detail__item--info {
  padding: 3.2rem;
}
.hotel-detail__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hotel-detail__img--responsive {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hotel-detail__logo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 4.4rem;
}
.hotel-detail__navigation {
  width: 8rem;
  margin: 6.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  justify-content: flex-end;
  align-items: flex-end;
}
@media only screen and (max-width: 37.5em) {
  .hotel-detail__navigation {
    flex-direction: row;
    width: -moz-fit-content;
    width: fit-content;
    gap: 4.8rem;
    margin-top: 0;
  }
}
.hotel-detail__icon {
  cursor: pointer;
  fill: rgb(236, 231, 223);
  width: 60%;
  border: 2px solid rgb(236, 231, 223);
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hotel-detail__icon svg {
  width: 100%;
  height: 2rem;
}

.main {
  width: 88rem;
  margin: 0 auto;
}
@media only screen and (min-width: 100em) {
  .main {
    width: 108rem;
  }
}
@media only screen and (max-width: 50em) {
  .main {
    width: 100%;
  }
}

.intro {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 7.2rem;
}
@media only screen and (max-width: 37.5em) {
  .intro .heading-1 {
    font-size: 4.2rem !important;
  }
}
.intro__para {
  text-align: center;
  line-height: 3rem;
  width: 80%;
}
@media only screen and (max-width: 37.5em) {
  .intro__para {
    width: 80%;
  }
}
@media only screen and (max-width: 75em) {
  .intro {
    height: 86rem;
    margin-top: 12vh;
  }
}
.intro__search {
  width: 25.6rem;
  transition: width 0.3s;
}
.intro__search:focus {
  width: 28.8rem;
}
@media only screen and (max-width: 37.5em) {
  .intro__search {
    width: 30rem;
  }
  .intro__search:focus {
    width: 35rem;
  }
}

.star-wars-section {
  margin-bottom: 25.6rem;
}

.star-wars-intro {
  overflow: hidden;
  margin-top: -6rem;
  transform: perspective(400px) rotateX(20deg) translateZ(-12rem);
}
.star-wars-intro::before {
  content: "";
  width: 100%;
  height: 6.4rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(to bottom, #080602 60%, rgba(8, 6, 2, 0.2));
}
.star-wars-intro__number {
  border: 4px solid #a37826;
  width: 7.6rem;
  height: 7.6rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  display: inline-block;
}
.star-wars-intro__caption {
  margin-top: 4.4rem;
}
.star-wars-intro__caption-hr {
  border: none;
  background-color: rgba(236, 231, 223, 0.25);
  height: 1px;
}
@media only screen and (max-width: 50em) {
  .star-wars-intro__caption-hr {
    width: 80%;
    margin: 0 auto;
  }
}
.star-wars-intro__caption-text {
  text-align: center;
  color: rgba(236, 231, 223, 0.75);
  margin: 0 auto;
  margin-top: 2.4rem;
}
@media only screen and (max-width: 50em) {
  .star-wars-intro__caption-text {
    width: 80%;
  }
}
.star-wars-intro__caption-text-logo {
  font-family: "introHeadingFont";
}

.para-star-wars--first {
  padding-top: 50%;
}

.scrolling-text {
  animation: star-wars-scroll 60s linear forwards 2s infinite;
  height: 64rem;
  position: relative;
}

.promotion-video__container {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 50em) {
  .promotion-video__container {
    width: 98%;
    margin: 0 auto;
  }
}
.promotion-video__main {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.promotion-video p {
  margin-top: 1.6rem;
}
@media only screen and (max-width: 50em) {
  .promotion-video p {
    margin-left: 1%;
  }
}
.promotion-video p a,
.promotion-video p a:active,
.promotion-video p a:visited {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.promotion-video p a:hover,
.promotion-video p a:active:hover,
.promotion-video p a:visited:hover {
  opacity: 0.6;
}

.testimonials-section {
  margin-bottom: 32.8rem;
}

.testimonials__caption {
  position: absolute;
  height: 8rem;
  bottom: -7.2rem;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 75em) {
  .testimonials__caption {
    position: static;
    transform: translateX(0%);
  }
}
.testimonials__caption-hr {
  border: none;
  background-color: rgba(236, 231, 223, 0.25);
  height: 1px;
  margin-top: 6rem;
}
@media only screen and (max-width: 75em) {
  .testimonials__caption-hr {
    width: 100%;
  }
}
@media only screen and (max-width: 50em) {
  .testimonials__caption-hr {
    width: 80%;
    margin: 0 auto;
    margin-top: 6rem;
  }
}
.testimonials__caption-text {
  text-align: center;
  color: rgba(236, 231, 223, 0.75);
  padding-top: 2.4rem;
}
.testimonials__caption-text a,
.testimonials__caption-text a:visited,
.testimonials__caption-text a:active {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
.testimonials__caption-text a:hover,
.testimonials__caption-text a:visited:hover,
.testimonials__caption-text a:active:hover {
  opacity: 0.6;
}
@media only screen and (max-width: 50em) {
  .testimonials__caption-text {
    width: 80%;
    margin: 0 auto;
  }
}

.contact-section {
  margin-bottom: 21.3333333333rem;
  display: flex;
  gap: 3.2rem;
}
@media only screen and (max-width: 50em) {
  .contact-section {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.offers {
  width: 98rem;
}
@media only screen and (max-width: 75em) {
  .offers {
    margin-top: 14rem;
  }
}
@media only screen and (max-width: 56.25rem) {
  .offers {
    width: 90%;
    margin-bottom: 2.4rem;
  }
}

.offers-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.4rem;
}
@media only screen and (max-width: 56.25rem) {
  .offers-section {
    grid-template-columns: 1fr;
  }
}

.offers-search {
  width: 100%;
  margin-top: 9.8rem;
  justify-content: flex-end;
}
.offers-search__input {
  border-radius: 1.2rem;
  padding: 1.5rem 1.6rem;
  width: 100% !important;
  font-size: 1.8rem;
}
.offers-search__input::-moz-placeholder {
  font-size: 1.8rem;
}
.offers-search__input::placeholder {
  font-size: 1.8rem;
}
.offers-search__input + .search__icon .search__icon-close {
  display: none;
}
.offers-search__input:not(:-moz-placeholder-shown) + .search__icon .search__icon-search {
  display: none;
}
.offers-search__input:not(:placeholder-shown) + .search__icon .search__icon-search {
  display: none;
}
.offers-search__input:not(:-moz-placeholder-shown) + .search__icon .search__icon-close {
  display: inline-block;
}
.offers-search__input:not(:placeholder-shown) + .search__icon .search__icon-close {
  display: inline-block;
}

.search-tags {
  margin-top: 3.2rem;
  margin-bottom: 6.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.search-tags span {
  font-weight: 400;
  font-size: 1.8rem;
  color: rgb(255, 255, 255);
  cursor: pointer;
}
.search-tags span:hover {
  color: rgba(236, 231, 223, 0.75);
}

.offer-card {
  width: 100%;
  border: 1px solid rgb(163, 163, 163);
  height: 40rem;
  overflow: hidden;
  position: relative;
}
.offer-card__active {
  height: -moz-fit-content !important;
  height: fit-content !important;
  padding-bottom: 6rem !important;
}
.offer-card__name {
  height: 100px;
  border-bottom: 1px solid rgb(92, 92, 92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "headingFont";
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  color: rgb(236, 231, 223);
}
.offer-card__name .color-primary {
  background-image: linear-gradient(270deg, #a37826 0%, #ba7322 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.offer-card__img {
  height: 100px;
  border-bottom: 1px solid rgb(92, 92, 92);
  background-size: "cover";
  display: flex;
  align-items: center;
}
.offer-card__img p {
  font-size: 2.6rem;
  width: 100%;
  padding: 0 1rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 700;
  color: rgba(236, 231, 223, 0.75);
  line-height: 3rem;
}
.offer-card__desc {
  overflow: hidden;
  font-size: 1.8rem;
  line-height: 2.2rem;
  padding: 20px;
  color: rgba(236, 231, 223, 0.75);
}
.offer-card__desc b {
  color: #a37826;
}
.offer-card__desc ul {
  padding-left: 15px;
}
.offer-card__desc .offer-card-date-tr {
  margin-top: 20px;
}
.offer-card__btn-container {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 6rem;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(8, 6, 2, 0.96), #080602);
}
.offer-card__btn {
  margin-left: 20px;
  background-color: transparent;
  border: none;
  color: rgba(236, 231, 223, 0.75);
  cursor: pointer;
}
.offer-card__btn:hover {
  color: #a37826;
}

.hotel-list-modal {
  position: fixed;
  width: 88rem;
  height: 51.2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgb(255, 255, 255);
  z-index: 20;
  border-radius: 1.2rem;
  padding: 2.4rem;
}
@media only screen and (max-width: 50em) {
  .hotel-list-modal {
    width: 60rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .hotel-list-modal {
    width: 56rem;
  }
}
@media only screen and (max-width: 30em) {
  .hotel-list-modal {
    width: 38rem;
    padding: 1.6rem;
  }
}
.hotel-list-modal__close {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  padding: 1.2rem;
  background-image: linear-gradient(270deg, #a37826 0%, #ba7322 100%);
  cursor: pointer;
  position: absolute;
  right: 2.4rem;
  top: 1.6rem;
  display: none;
}
.hotel-list-modal__close svg {
  height: 100%;
  width: 100%;
  fill: #080602;
}
.hotel-list-modal__title {
  text-align: center;
  margin-bottom: 2rem;
  font-family: "headingFont";
}
.hotel-list-modal__seperator {
  border: none;
  height: 1px;
  background-color: #ba7322;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 2.4rem;
}
.hotel-list-modal__main-container {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.hotel-list-modal__main {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}
.hotel-list-modal__main-item a {
  text-decoration: none;
  display: flex;
  padding: 1.4rem;
  min-height: 12rem;
  color: #080602;
}
.hotel-list-modal__main-item:hover {
  background-color: rgba(236, 231, 223, 0.75);
}
.hotel-list-modal__main-item-img {
  width: 20%;
}
.hotel-list-modal__main-item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 30em) {
  .hotel-list-modal__main-item-img {
    display: none;
  }
}
.hotel-list-modal__main-item-info {
  width: 80%;
  padding: 0 2.4rem;
}
@media only screen and (max-width: 30em) {
  .hotel-list-modal__main-item-info {
    padding: 0;
    width: 100%;
  }
}
.hotel-list-modal__main-item-info h4 {
  margin-bottom: 0.4rem;
}
.hotel-list-modal__main-item-info span {
  background-image: linear-gradient(270deg, #a37826 0%, #ba7322 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.portfolio__search {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12.8rem;
}
@media only screen and (max-width: 50em) {
  .portfolio__search {
    flex-direction: column;
    align-items: center;
    gap: 4.6rem;
  }
}
.portfolio__search-tab-container {
  width: 50%;
  display: flex;
  gap: 6.4rem;
}
@media only screen and (max-width: 37.5em) {
  .portfolio__search-tab-container {
    width: 80%;
  }
}
.portfolio__search-label {
  width: 100%;
  padding: 1.4rem 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #ba7322;
  color: #ba7322;
  border-radius: 1.2rem;
  cursor: pointer;
}
.portfolio__search .search {
  width: 50%;
  justify-content: flex-end;
}
@media only screen and (max-width: 37.5em) {
  .portfolio__search .search {
    width: 80%;
  }
}
.portfolio__search .search__input {
  border-radius: 1.2rem;
  padding: 1.5rem 1.6rem;
}
@media only screen and (max-width: 50em) {
  .portfolio__search .search__input {
    width: 100%;
  }
}
.portfolio__search .search__input + .search__icon .search__icon-close {
  display: none;
}
.portfolio__search .search__input:not(:-moz-placeholder-shown) + .search__icon .search__icon-search {
  display: none;
}
.portfolio__search .search__input:not(:placeholder-shown) + .search__icon .search__icon-search {
  display: none;
}
.portfolio__search .search__input:not(:-moz-placeholder-shown) + .search__icon .search__icon-close {
  display: inline-block;
}
.portfolio__search .search__input:not(:placeholder-shown) + .search__icon .search__icon-close {
  display: inline-block;
}
.portfolio__search-input {
  display: none;
}
.portfolio__search-input-brands:checked ~ .portfolio__search-tab-container label[for=brands] {
  background-image: linear-gradient(270deg, #a37826 0%, #ba7322 100%);
  color: #080602;
  border: none;
}
.portfolio__search-input-destination:checked ~ .portfolio__search-tab-container label[for=destination] {
  background-image: linear-gradient(270deg, #a37826 0%, #ba7322 100%);
  color: #080602;
  border: none;
}

.portfolio-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 12.8rem;
}
@media only screen and (max-width: 75em) {
  .portfolio-main {
    overflow: hidden;
  }
}
.portfolio-main__tile {
  width: 28rem;
  height: 22rem;
  border-radius: 1.2rem;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  padding: 2.4rem;
  padding-top: 4.8rem;
  transition-property: opacity, transform, height !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.portfolio-main__tile:hover {
  height: 28rem;
}
.portfolio-main__tile:hover .portfolio-main__tile-button {
  opacity: 1;
}
.portfolio-main__tile-logo-container {
  height: 12rem;
  width: 100%;
}
.portfolio-main__tile-logo {
  -o-object-fit: contain;
     object-fit: contain;
  padding: 1.2rem;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.2);
  width: 100%;
  height: 100%;
}
.portfolio-main__tile-name {
  height: 4.4rem;
  display: flex;
  color: #ba7322;
  justify-content: center;
  text-align: center;
}
.portfolio-main__tile-button {
  width: 100%;
  margin-bottom: -1rem;
  background: rgb(255, 255, 255);
  border: 1px solid #ba9422;
  color: #ba9422;
  padding: 0.6rem 0;
  opacity: 0;
  transition: all 0.9s;
  font-family: inherit;
  cursor: pointer;
  border-radius: 0.8rem;
}/*# sourceMappingURL=main.css.map */