* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden !important;
  background-color: #080808;
}

@font-face {
  font-family: "PPMori";
  font-style: normal;
  font-weight: 700;
  src: url(/assets/fonts/PPMori/PPMori-SemiBold.woff2) format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Roboto/Roboto-Light.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 100;
  src: url(/assets/fonts/Roboto/Roboto-ExtraLight.ttf) format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 200;
  src: url(/assets/fonts/Roboto/Roboto-LightItalic.ttf) format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 100;
  src: url(/assets/fonts/Roboto/Roboto-ExtraLightItalic.ttf) format("truetype");
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #242421;
}
::-webkit-scrollbar-thumb {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.side-items {
  position: fixed;
  right: 0;
  top: 35%;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.discount-item {
  width: 170px;
  border-radius: 5px 0 0 5px;
  background-color: #1b1d1c;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 0.6rem;
  position: relative;
}

.discount-text {
  z-index: 1;
  position: relative;
}

.discount-text h2 {
  font-family: "PPMori", sans-serif;
  color: #dbd5c9;
  font-weight: 200;
  font-size: 1.8rem;
  margin-top: 0;
  z-index: 2;
}

.discount-text p {
  color: #dbd5c9;
  font-weight: 200;
  font-size: 1rem;
  margin-bottom: 0;
}

.discount-code {
  color: #4e71ff;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 3px;
  cursor: pointer;
  text-align: center;
}

.close-discount-item {
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  padding: 0;
  background: transparent;
  border: none;
}

.discount-item:hover .close-discount-item {
  opacity: 0.7;
}

.close-discount-item:hover {
  opacity: 1 !important;
}

.close-discount-item img {
  width: 26px;
  display: block;
}

.discount-bg {
  position: absolute;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.booking-reviews {
  position: relative;
}

.review-badge {
  width: 170px;
  height: auto;
  border-radius: 5px 0 0 5px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.close-review-item {
  background: transparent;
  border: none;
  position: absolute;
  top: 3px;
  right: 3px;
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  padding: 0;
}

.booking-reviews:hover .close-review-item {
  opacity: 0.7;
}

.close-review-item:hover {
  opacity: 1 !important;
}

.close-review-item img {
  width: 26px;
  display: block;
}

.desktop-header {
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 15px 50px;
  transition: all 0.3s ease-in-out;
}

header.scrolled {
  background-color: #080808;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 6px 10px rgba(0, 0, 0, 0.3);
}

header.no-shadow {
  box-shadow: none;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  width: 69px;
  height: auto;
}

.logo-mobile {
  width: 50px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.link-item {
  color: #dbd5c9;
  font-size: 1.1rem;
  font-weight: 200;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-button {
  background: transparent;
  border: 1px solid #dbd5c9;
  color: #dbd5c9;
  width: 140px;
  height: 50px;
  cursor: pointer;
  font-family: "Roboto", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 200 !important;
}

.header-dropdown-one {
  height: 0;
  background-color: #080808;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  width: 100%;
  position: fixed;
  z-index: 100;
  overflow: hidden;
}

.header-dropdown-two {
  height: 0;
  background-color: #080808;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  width: 100%;
  position: fixed;
  z-index: 100;
  overflow: hidden;
}

.link-item img {
  transition: transform 0.4s ease-in-out;
}

#dropdown-one:hover img {
  transform: rotate(180deg);
}

#dropdown-two:hover img {
  transform: rotate(180deg);
}

.dropdown-one-layout {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 150px 8rem 4rem 8rem;
  gap: 5%;
}

.dropdown-side {
  width: 47.5%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dropdown-item {
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  cursor: pointer;
}

.dropdown-item {
  color: #dbd5c9;
}

.dropdown-links a {
  color: #dbd5c9;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 200;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.dropdown-item h3 {
  font-family: "PPMori", sans-serif;
  font-size: 1.5rem;
  margin-top: 5px;
  margin-bottom: 1rem;
  color: #dbd5c9;
}

.dropdown-item p {
  font-size: 0.9rem;
  font-weight: 200;
  color: #dbd5c9;
}

sup {
  font-size: 0.6rem;
}

.dropdown-item-img {
  width: 160px;
  height: 120px;
  object-fit: cover;
}

.mobile-header {
  display: none;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.nav-menu {
  background: transparent;
  border: none;
}

.line {
  background-color: #fff;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #fff;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #080808;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  display: flex;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}

.menu-close {
  height: 20px;
  position: relative;
  width: 20px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 15%;
  left: 1.4rem;
}

.menu-links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.7rem;
  font-weight: 400;
  text-decoration: none;
  padding: 0.7rem 0;
  color: #dbd5c9;
}

.menu-bottom {
  position: absolute;
  bottom: 2rem;
  left: 4%;
}

.vertical-bar {
  color: #dbd5c9;
}

.menu-bottom a {
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
  color: #dbd5c9;
}

.menu-rooms {
  background-color: #080808;
  display: none;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10001;
}

.menu-rooms-closing {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.8rem 1.4rem;
  width: 100%;
  position: absolute;
  top: 0;
}

main {
  height: 100vh;
}

.hero-content {
  height: calc(100vh - 1.5rem);
  width: 100%;
  position: relative;
}

.hero-image {
  width: 100%;
  height: 100%;
  padding: 0 1.5rem;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
  border-radius: 0 0 10px 10px;
}

.hero-text {
  position: absolute;
  bottom: 20%;
  left: 6.5rem;
}

.subheader {
  display: flex;
  align-items: center;
  gap: 5px;
}

.subheader h2 {
  font-size: 1.3rem;
  font-weight: 100;
  font-family: "Roboto", sans-serif;
  color: #dbd5c9;
  margin: 0;
}

h1 {
  color: #dbd5c9;
  font-size: 3.4rem;
  line-height: 3.8rem;
  font-weight: 700;
  font-family: "PPMori", sans-serif;
  width: 60%;
  margin-top: 0;
}

.hero-text .h1-sup {
  font-size: 1.4rem;
}

.hero-text p {
  color: #dbd5c9;
  font-size: 1.3rem;
  font-weight: 100;
  width: 35%;
  margin-top: 6rem;
}

.intro-ctas {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-top: 3rem;
}

.intro-ctas button {
  background-color: #2a4759;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 14px 20px;
  cursor: pointer;
  color: #dbd5c9;
  border: none;
  font-family: "Roboto", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 200 !important;
  transition: all 0.2s ease-in-out;
}

.intro-ctas button:hover {
  background-color: #050203;
  color: #dbd5c9;
}

.intro-ctas a {
  color: #dbd5c9;
  font-size: 1.1rem;
  font-weight: 200;
}

.suite-section {
  margin: 8rem;
}

.intro-layout {
  display: flex;
  justify-content: space-between;
}

.into-text {
  width: 60%;
}

.suite-section h2 {
  color: #dbd5c9;
  font-family: "PPMori", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin-top: 0;
  width: 45%;
}

.suite-section p {
  color: #dbd5c9;
  font-weight: 100;
  font-size: 1.3rem;
}

.equipment-wrapper {
  margin-top: 4rem;
}

.equipment-wrapper h3 {
  color: #dbd5c9;
  font-family: "PPMori", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.icons-wrapper {
  display: flex;
  gap: 1rem;
}

.icons-wrapper img {
  cursor: pointer;
}

.img-cards-section {
  margin: 8rem;
}

.cards-layout {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}

.item-large {
  width: 50%;
  height: 720px;
  cursor: pointer;
  overflow: hidden !important;
  display: block;
}

.item-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.item-split {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
  height: 100%;
}

.item-small {
  height: 350px;
  width: 100%;
  cursor: pointer;
  overflow: hidden !important;
  display: block;
}

.item-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.item-text {
  background-color: #0d0d0d;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 1rem;
  position: relative;
  height: 350px;
  width: 100%;
  cursor: pointer;
}

.item-text-layout {
  display: flex;
  align-items: center;
  gap: 4.4px;
  position: absolute;
  bottom: 1rem;
}

.item-text h3 {
  font-size: 2rem;
  font-weight: 200;
  color: #dbd5c9;
  margin: 0;
}

.item-text-layout img {
  width: 15px;
  height: auto;
}

.suites-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  width: 100%;
}

.suites-section .img {
  position: relative;
  width: 100%;
  height: 100%;
}

.suites-section .img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.scroll-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}

.scroll-img-2 {
  filter: brightness(75%);
  object-position: bottom;
}

.scroll-img-4 {
  filter: brightness(75%);
  object-position: bottom;
}

.scroll-img-5 {
  filter: brightness(60%);
  object-position: bottom;
}

.text-content-header {
  position: absolute;
  top: 4rem;
  left: 8rem;
  right: 10%;
  z-index: 2;
  overflow: hidden !important;
  padding: 5% 0 5% 0;
}

.text-content-header h2 {
  font-family: "PPMori", sans-serif;
  color: #dbd5c9;
  font-weight: 700;
  font-size: 2.8rem;
  margin-top: 0;
  width: 50%;
}

.suites-text {
  position: absolute;
  bottom: 8rem;
  right: 8rem;
  width: 40%;
}

.suites-text p {
  color: #dbd5c9;
  font-weight: 200;
  font-size: 1.3rem;
}

.suites-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.suites-ctas button {
  background-color: #2a4759;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 14px 20px;
  cursor: pointer;
  color: #dbd5c9;
  border: none;
  font-family: "Roboto", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 200 !important;
  transition: all 0.2s ease-in-out;
}

.suites-ctas button:hover {
  background-color: #050203;
  color: #dbd5c9;
}

.suites-ctas a {
  font-size: 1.2rem;
  font-weight: 100;
  color: #dbd5c9;
  text-underline-offset: 3px;
  gap: 4px;
}

.blurred-gradient {
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0) 4.55%,
    rgba(8, 8, 8, 0.8) 46.66%,
    #080808 78.1%
  );
  height: 150px;
  width: 100%;
  position: absolute;
  bottom: 0;
  pointer-events: none;
}

.faq-section {
  margin: 8rem;
  color: #dbd5c9;
}

.faq-section h2 {
  color: #dbd5c9;
  font-family: "PPMori", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin-top: 0;
}

.faq-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2rem;
  width: 100%;
}

.faq-header {
  font-family: "PPMori", sans-serif;
  color: #dbd5c9;
  font-weight: 700;
  font-size: 2.8rem;
  margin-top: 0;
}

.sticky-faq p {
  font-size: 1.3rem;
  font-weight: 100;
  width: 80%;
  margin-top: 3rem;
}

.faq-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.faq-ctas button {
  background-color: #2a4759;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 14px 20px;
  cursor: pointer;
  color: #dbd5c9;
  border: none;
  font-family: "Roboto", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 200 !important;
  transition: all 0.2s ease-in-out;
}

.faq-ctas button:hover {
  background-color: #050203;
  color: #dbd5c9;
}

.faq-ctas a {
  font-size: 1.2rem;
  font-weight: 100;
  color: #dbd5c9;
  text-underline-offset: 3px;
  gap: 4px;
}

.cta-faq-pos {
  margin-top: 2.7rem;
}

.faqs-layout {
  margin-top: 3.2rem;
}

.faq-item {
  display: flex;
  align-items: center;
  height: 110px;
  width: 100%;
  cursor: pointer;
  margin-top: 1rem;
  border-bottom: 1px solid #fcf6ec;
}

.question-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 120px;
}

.question-box h4 {
  font-size: 1.5rem;
  font-weight: 100;
}

.cross-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
}

.cross-box img {
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.cross-box img.rotated {
  transform: rotate(225deg);
}

.answer-item {
  padding-left: 10px;
  padding-top: 2rem;
  padding-right: 120px;
  transition: height 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
  height: 0;
}

.answer-item p {
  font-size: 1.3rem;
  font-weight: 100;
}

.answer-item a {
  color: #4e71ff;
  font-size: 1.3rem;
  font-weight: 200;
  text-decoration: none;
}

.answer-item ul {
  padding: 0 0 0 20px;
}

.answer-bold {
  font-weight: 200;
}

.answer-item li {
  font-size: 1.4rem;
  font-weight: 100;
  line-height: 2.2rem;
}

.faq-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  margin-top: 4rem;
}

.faq-ctas button {
  background-color: #2a4759;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 14px 20px;
  cursor: pointer;
  color: #dbd5c9;
  border: none;
  font-family: "Roboto", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 200 !important;
  transition: all 0.2s ease-in-out;
}

.faq-ctas a {
  color: #dbd5c9;
  font-size: 1.1rem;
  font-weight: 200;
}

.slider-section {
  margin-top: 6rem;
  margin-bottom: 6rem;
  margin-left: calc(8rem - 10px);
  margin-right: calc(8rem - 10px);
  color: #dbd5c9;
}

.slider-section h2 {
  color: #dbd5c9;
  font-family: "PPMori", sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin-top: 0;
  margin-left: 10px;
}

.images-container {
  align-items: center;
  display: flex;
  justify-content: center;
}
.wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.carousel,
.wrapper {
  align-items: center;
  display: flex;
  width: 100%;
}

.box,
.carousel {
  justify-content: center;
}
.box {
  cursor: grab;
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
}

.box-content {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
}

.box-content h3 {
  margin-top: 0;
  font-family: "Roboto", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 300;
}

.box-content p {
  margin-top: 0;
  font-weight: 100;
  font-size: 1.1rem;
  margin-bottom: 0;
}

.box-linked {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 10px 10px 10px;
  margin-top: 0.5rem;
}

.box-linked button {
  background-color: #2a4759;
  box-shadow: -6px 15px 5px 0px rgba(219, 213, 201, 0),
    -4px 10px 4px 0px rgba(219, 213, 201, 0.01),
    -2px 5px 4px 0px rgba(219, 213, 201, 0.05),
    -1px 2px 3px 0px rgba(219, 213, 201, 0.09),
    0px 1px 1px 0px rgba(219, 213, 201, 0.1);
  padding: 12px 26px;
  cursor: pointer;
  color: #dbd5c9;
  border: none;
  font-family: "Roboto", sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 200 !important;
  transition: all 0.2s ease-in-out;
}

.box-linked a {
  color: #dbd5c9;
  font-size: 1.1rem;
  font-weight: 200;
  text-decoration: none;
}

.box-linked button:hover {
  background-color: #050203;
  color: #dbd5c9;
}

.row-img {
  width: 460px;
  height: 500px;
  object-fit: cover;
  padding: 10px;
}

.millaestate {
  object-position: 70% 50%;
}

.control-buttons-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  margin-left: 10px;
}

.slider-buttons-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.next,
.prev {
  background: transparent;
  border: 1px solid #dbd5c9;
  border-radius: 2px;
  cursor: pointer;
  height: 48px;
  width: 80px;
}
.next img,
.prev img {
  width: 20px;
}

.line-slider {
  width: 100%;
  height: 1px;
  background-color: #dbd5c9;
}

footer {
  background-color: #0d0d0d;
  width: 100%;
  padding: 2rem 8rem 1rem 8rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  color: #dbd5c9;
  align-items: flex-start;
}

.footer-logo p {
  font-size: 1.2rem;
  width: 80%;
}

.social-links-layout {
  display: flex;
  gap: -2px;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid #3c3d37;
  padding-top: 0.9rem;
  margin-top: 2rem;
}

.footer-layout div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-layout h3 {
  font-size: 1.4rem;
  font-weight: 200;
  color: #dbd5c9;
  margin-bottom: 14px;
}

.footer-layout a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 100;
  color: #dbd5c9;
}

.footer-layout p {
  font-size: 1rem;
  font-weight: 100;
  color: #dbd5c9;
  margin: 0;
}

.footer-partners h3 {
  font-size: 1.4rem;
  font-weight: 200;
  color: #dbd5c9;
  margin-bottom: 14px;
}

.partners-layout {
  display: flex;
  gap: 1.4rem;
}

.borsalino-logo {
  width: 100px;
  height: auto;
  cursor: pointer;
}

.hotel-logo {
  width: 70px;
  height: auto;
  cursor: pointer;
}

.milla-logo {
  width: 60px;
  height: auto;
  cursor: pointer;
}

.apartments-logo {
  width: 90px;
  height: auto;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid #3c3d37;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer-bottom p {
  color: #dbd5c9;
  font-weight: 100;
  font-size: 1rem;
  margin: 0;
}

.footer-bottom a {
  color: #dbd5c9;
  font-weight: 100;
  font-size: 1rem;
  text-decoration: none;
  margin: 0;
}

@media (max-width: 768px) {
  .close-discount-item,
  .close-review-item {
    opacity: 1;
  }
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .mobile-header nav {
    width: 100%;
  }
  .hero-image {
    padding: 0 0.7rem;
  }

  .hero-text {
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
    bottom: 10%;
  }

  h1 {
    font-size: 2.2rem;
    line-height: 2.3rem;
    width: 100%;
  }
  .hero-content p {
    width: 100%;
    margin-top: 2rem;
  }
  .hero-ctas {
    gap: 0.8rem;
  }

  .suite-section {
    margin: 6rem 1rem;
  }
  .suite-section h2 {
    width: 100%;
    font-size: 2rem;
  }

  .intro-layout {
    flex-direction: column;
    gap: 4rem;
  }

  .into-text {
    width: 100%;
  }

  .icons-wrapper {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .cards-layout {
    flex-direction: column;
  }

  .img-cards-section {
    margin: 8rem 1rem;
  }

  .item-large {
    width: 100%;
    height: 350px;
  }

  .item-split {
    width: 100%;
  }

  .item-text h3 {
    font-size: 1.6rem;
  }
  .item-text {
    padding: 0.7rem;
  }
  .item-text-layout img {
    width: 12px;
    height: auto;
  }
  .text-content-header {
    left: 1rem;
  }
  .text-content-header h2 {
    font-size: 2rem;
    width: 100%;
  }
  .suites-text {
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
  }
  .suites-ctas a {
    display: none;
  }
  .suites-ctas img {
    display: none;
  }
  .faq-section h2 {
    font-size: 2rem;
  }
  .slider-section {
    margin: 6rem 1rem;
  }
  .slider-section h2 {
    font-size: 2rem;
  }
  .row-img {
    width: calc(100vw - 2rem);
    height: 400px;
  }

  .faq-section {
    margin: 0 1rem;
  }
  .faqs-layout {
    width: 100%;
    margin-top: 2rem;
  }
  .question-box h4 {
    font-size: 1.3rem;
  }
  .cross-box {
    width: auto;
  }
  .answer-item {
    padding-right: 0;
  }

  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-layout {
    flex-direction: column;
  }
  .partners-layout {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hotel-logo {
    width: 60px;
  }
  .milla-logo {
    width: 50px;
  }
  .apartments-logo {
    width: 75px;
  }
  .borsalino-logo {
    width: 90px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .close-discount-item,
  .close-review-item {
    opacity: 1;
  }
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .mobile-header nav {
    width: 100%;
  }
  .hero-image {
    padding: 0 0.7rem;
  }

  .hero-text {
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
  }

  h1 {
    font-size: 2.6rem;
    line-height: 2.6rem;
    width: 100%;
  }
  .hero-content p {
    width: 100%;
  }
  .hero-ctas {
    gap: 0.8rem;
  }

  .suite-section {
    margin: 6rem 1rem;
  }
  .suite-section h2 {
    width: 100%;
    font-size: 2rem;
  }

  .intro-layout {
    flex-direction: column;
    gap: 4rem;
  }

  .into-text {
    width: 100%;
  }

  .icons-wrapper {
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .cards-layout {
    flex-direction: column;
  }

  .img-cards-section {
    margin: 8rem 1rem;
  }

  .item-large {
    width: 100%;
    height: 350px;
  }

  .item-split {
    width: 100%;
  }

  .item-text h3 {
    font-size: 1.6rem;
  }
  .item-text {
    padding: 0.7rem;
  }
  .item-text-layout img {
    width: 12px;
    height: auto;
  }
  .text-content-header {
    left: 1rem;
  }
  .text-content-header h2 {
    font-size: 2rem;
    width: 100%;
  }
  .suites-text {
    left: 1rem;
    right: 1rem;
    width: calc(100% - 2rem);
  }
  .suites-ctas a {
    display: none;
  }
  .suites-ctas img {
    display: none;
  }
  .faq-section h2 {
    font-size: 2rem;
  }
  .slider-section {
    margin: 6rem 1rem;
  }
  .slider-section h2 {
    font-size: 2rem;
  }
  .row-img {
    width: calc(50vw - 1rem);
    height: 400px;
  }

  .faq-section {
    margin: 0 1rem;
  }
  .faqs-layout {
    width: 100%;
    margin-top: 2rem;
  }
  .question-box h4 {
    font-size: 1.3rem;
  }
  .cross-box {
    width: auto;
  }
  .answer-item {
    padding-right: 0;
  }

  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-top {
    flex-direction: column;
  }
  .footer-layout {
    flex-direction: column;
  }
  .partners-layout {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hotel-logo {
    width: 60px;
  }
  .milla-logo {
    width: 50px;
  }
  .apartments-logo {
    width: 75px;
  }
  .borsalino-logo {
    width: 90px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .mobile-header nav {
    width: 100%;
  }
  .hero-text {
    bottom: 5%;
  }
  .hero-text p {
    margin-top: 2rem;
    width: 70%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  h1 {
    font-size: 3.2rem;
    line-height: 3.2rem;
    width: 75%;
  }
  .hero-text {
    bottom: 15%;
    left: 5rem;
  }
  .hero-text p {
    width: 70%;
    margin-top: 4rem;
  }
  .suite-section {
    margin: 8rem 5rem;
  }
  .suite-section h2 {
    width: 65%;
  }
  .text-content-header {
    left: 5rem;
  }

  .text-content-header h2 {
    width: 65%;
  }

  .text-content-header-milla h2 {
    width: 65%;
  }
  .img-cards-section {
    margin: 8rem 5rem 6rem 5rem;
  }
  .activities-section h2 {
    width: 65%;
  }

  .faq-section {
    margin: 6rem 5rem;
  }

  .slider-section {
    margin-top: 6rem;
    margin-bottom: 6rem;
    margin-left: calc(5rem - 10px);
    margin-right: calc(5rem - 10px);
    color: #dbd5c9;
  }

  footer {
    padding: 2rem 5rem 1rem 5rem;
  }
}
