* {
  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: 95vh;
  position: relative;
}

.main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}

.main-text {
  position: absolute;
  bottom: 17%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 60%;
}

h1 {
  color: #dbd5c9;
  font-size: 3.6rem;
  line-height: 3.8rem;
  font-weight: 700;
  font-family: "PPMori", sans-serif;
  margin: 0;
}

.main-text p {
  color: #dbd5c9;
  font-size: 1.3rem;
  font-weight: 100;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.3rem;
}

.button-wrapper 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;
}

.button-wrapper a {
  color: #dbd5c9;
  font-size: 1.1rem;
  font-weight: 200;
}

.button-wrapper button:hover {
  background-color: #050203;
  color: #dbd5c9;
}

.slider-section {
  margin: 8rem;
  overflow: hidden;
}

.slider-section h2 {
  font-family: "PPMori", sans-serif;
  color: #dbd5c9;
  font-weight: 700;
  font-size: 2.8rem;
  margin-top: 0;
  width: 40%;
}

.slider-layout {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  touch-action: pan-y;
  transition: transform 0.3s ease;
}

.slider-layout.dragging {
  cursor: grabbing;
}

.slider-layout .slider-item {
  flex-shrink: 0;
}

.slider-layout,
.slider-layout * {
  user-select: none;
}

.slider-item {
  position: relative;
  width: 550px;
  height: 420px;
  overflow: hidden !important;
  cursor: pointer;
}

.slider-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
  transition: all 0.2s ease-in-out;
}

.slider-text {
  position: absolute;
  bottom: -22%;
  background-color: #fff7f3;
  border-radius: 0 15px 0 0;
  width: 80%;
  padding: 10px;
  cursor: pointer;
}

.slider-text h3 {
  margin-top: 5px;
  margin-bottom: 12px;
  font-family: "PPMori", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2c2c;
}

.slider-text p {
  color: #2c2c2c;
  font-size: 1.2rem;
  font-weight: 200;
  margin-bottom: 8px;
  margin-top: 10px;
  opacity: 0;
}

.slider-text 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;
}

.slider-text button:hover {
  background-color: #050203;
  color: #dbd5c9;
}

.slider-text {
  transition: bottom 0.3s ease, opacity 0.3s ease;
}

.slider-text p {
  transition: opacity 0.3s ease;
}

.slider-item:hover .slider-img img {
  filter: brightness(50%);
}

.slider-item:hover .slider-text {
  bottom: 0;
}

.slider-item:hover .slider-text p {
  opacity: 1;
}

.control-buttons-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.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;
}

.images-section {
  margin: 8rem;
}

.images-large {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  overflow: hidden;
}

.images-large div {
  width: 100%;
  height: 100%;
}

.images-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.images-small {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
}

.images-small div {
  width: 100%;
  height: 100%;
}

.images-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-section {
  margin: 8rem 0 0 0;
}

.map-wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
}

.map-title {
  position: absolute;
  bottom: 3rem;
  left: 8rem;
}

.map-title h2 {
  font-family: "Roboto", sans-serif;
  color: #dbd5c9;
  font-weight: 100;
  font-size: 2.2rem;
  margin: 0;
}

.heidelberg-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(90%);
  object-position: 0% 100%;
  z-index: 1;
}

.marker-icon {
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.map-marker-hotel {
  position: absolute;
  z-index: 2;
  top: 7.5%;
  left: 49%;
}

.map-marker-suites {
  position: absolute;
  z-index: 2;
  top: 12%;
  right: 35%;
}

.map-marker-milla {
  position: absolute;
  z-index: 2;
  bottom: 2.2%;
  left: 43%;
}

.hotel-item {
  display: flex;
  justify-content: space-between;
  width: 620px;
  height: 200px;
  position: absolute;
  top: 15%;
  left: 20%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 10;
  display: none;
}

.suites-item {
  display: flex;
  justify-content: space-between;
  width: 620px;
  height: 200px;
  position: absolute;
  top: 22%;
  right: 20%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 10;
  display: none;
}

.milla-item {
  display: flex;
  justify-content: space-between;
  width: 620px;
  height: 200px;
  position: absolute;
  bottom: 12%;
  left: 30%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 10;
  display: none;
}

.map-img {
  width: 30%;
  height: 100%;
}

.map-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}

.map-text {
  background-color: #dbd5c9;
  color: #1e201e;
  padding: 1rem;
  width: 70%;
  position: relative;
}

.close-item {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  cursor: pointer;
}

.close-item img {
  width: 13px;
  height: auto;
}

.close-item-mobile {
  display: none;
}

.map-text h3 {
  font-family: "PPMori", sans-serif;
  font-size: 1.3rem;
  margin-top: 0;
}

.map-text p {
  font-weight: 200;
  font-size: 1.1rem;
}

.map-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.map-links a {
  color: #1e201e;
  font-weight: 200;
  font-size: 1.1rem;
  text-decoration: none;
}

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: block;
  }
  .main-text {
    width: calc(100% - 2rem);
    left: 1rem;
    right: 1rem;
    transform: translateX(0%);
    bottom: 4rem;
  }
  h1 {
    font-size: 2.2rem;
    line-height: 2.3rem;
    width: 100%;
  }
  .rm-mobile {
    display: none;
  }

  .slider-section {
    margin: 8rem 1rem;
  }
  .slider-section h2 {
    width: 65%;
    font-size: 2rem;
  }
  .slider-item {
    width: 100vw;
  }
  .images-section {
    margin: 8rem 1rem;
  }
  .images-large {
    flex-direction: column;
  }
  .images-small {
    flex-direction: column;
  }
  .map-section {
    margin: 0;
    overflow: hidden;
  }
  .heidelberg-map {
    object-position: 55% 50%;
  }
  .map-title {
    top: 1rem;
    left: 1rem;
  }
  .map-title h2 {
    font-size: 2rem;
  }
  .map-marker-hotel {
    top: 18%;
    left: 34%;
  }
  .map-marker-suites {
    top: 21%;
    right: 0.4rem;
  }
  .map-marker-milla {
    bottom: 2%;
    left: 7%;
  }
  .hotel-item {
    flex-direction: column;
    width: 230px;
  }
  .suites-item {
    flex-direction: column;
    width: 230px;
  }
  .milla-item {
    flex-direction: column;
    width: 230px;
    bottom: 25%;
    left: 20%;
  }
  .map-img {
    width: 90%;
  }
  .map-img {
    width: 100%;
    height: 180px;
    position: relative;
  }

  .map-text {
    width: 100%;
    padding: 0.6rem;
  }

  .map-text h3 {
    font-size: 1.1rem;
  }

  .map-text p,
  .map-links a {
    font-size: 1rem;
  }

  .close-item {
    display: none;
  }

  .close-item-mobile {
    position: absolute;
    display: block;
    top: 0.5rem;
    right: 0.5rem;
    mix-blend-mode: difference;
  }
  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: block;
  }
  .main-text {
    width: calc(100% - 2rem);
    left: 1rem;
    right: 1rem;
    transform: translateX(0%);
    bottom: 4rem;
  }
  h1 {
    font-size: 2.2rem;
    line-height: 2.3rem;
    width: 100%;
  }
  .rm-mobile {
    display: none;
  }

  .slider-section {
    margin: 8rem 1rem;
  }
  .slider-section h2 {
    width: 65%;
    font-size: 2rem;
  }

  .images-section {
    margin: 8rem 1rem;
  }
  .images-large {
    flex-direction: column;
  }
  .images-small {
    flex-direction: column;
  }
  .map-section {
    margin: 0;
    overflow: hidden;
  }
  .heidelberg-map {
    object-position: 55% 50%;
  }
  .map-title {
    top: 1rem;
    left: 1rem;
  }
  .map-title h2 {
    font-size: 2rem;
  }
  .map-marker-hotel {
    top: 18%;
    left: 42%;
  }
  .map-marker-suites {
    top: 21%;
    right: 20%;
  }
  .map-marker-milla {
    bottom: 2%;
    left: 25%;
  }
  .hotel-item {
    flex-direction: column;
    width: 230px;
  }
  .suites-item {
    flex-direction: column;
    width: 230px;
  }
  .milla-item {
    flex-direction: column;
    width: 230px;
    bottom: 25%;
    left: 20%;
  }
  .map-img {
    width: 90%;
  }
  .map-img {
    width: 100%;
    height: 180px;
    position: relative;
  }

  .map-text {
    width: 100%;
    padding: 0.6rem;
  }

  .map-text h3 {
    font-size: 1.1rem;
  }

  .map-text p,
  .map-links a {
    font-size: 1rem;
  }

  .close-item {
    display: none;
  }

  .close-item-mobile {
    position: absolute;
    display: block;
    top: 0.5rem;
    right: 0.5rem;
    mix-blend-mode: difference;
  }
  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) {
  .close-discount-item,
  .close-review-item {
    opacity: 1;
  }
  .desktop-header {
    display: none;
  }
  .mobile-header {
    display: block;
  }
  .logo-mobile {
    width: 70px;
    height: auto;
  }
  .main-text {
    width: calc(100% - 2rem);
    left: 1rem;
    right: 1rem;
    transform: translateX(0%);
    bottom: 1rem;
  }
  h1 {
    font-size: 2.2rem;
  }

  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: 1024px) and (max-width: 1520px) {
  .main-text {
    width: 80%;
  }
  .hero-text p {
    width: 70%;
    margin-top: 4rem;
  }

  .slider-section {
    margin: 8rem 5rem 8rem 4rem;
    padding-bottom: 0;
  }

  .images-section {
    margin: 8rem 5rem;
  }
  .map-marker-hotel {
    top: 18%;
    left: 55%;
  }
  .map-marker-suites {
    top: 20%;
    right: 26%;
  }
  .map-marker-milla {
    left: 47%;
  }
}
