* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background-color: #080808;
  font-family: "Inter", sans-serif;
  overflow-x: hidden !important;
}

@font-face {
  font-family: "PP_Pangaia";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/PPPangaia/PPPangaia-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/Inter/static/Inter_18pt-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Inter/static/Inter_18pt-Light.ttf) format("truetype");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  src: url(/assets/fonts/Inter/static/Inter_18pt-Thin.ttf) format("truetype");
}

.header-desktop {
  position: fixed;
  z-index: 100;
  left: 0;
  padding: 20px 35px;
  width: 100%;
  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-desktop nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.links {
  display: flex;
  gap: 25px;
}

.links a {
  color: #fff6ec;
  font-weight: 100;
  font-size: 1.1rem;
  text-decoration: none;
}

.info-links-nav a {
  color: #fff6ec;
  font-weight: 100;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 3px;
}

.text {
  height: 1.3rem;
  line-height: 1.3rem;
  overflow: hidden !important;
  position: relative;
  display: inline-block;
}

.text.play .letter {
  transform: translateY(-100%);
}

.text .letter {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.024, 1);
  position: relative;
}

.letter:nth-child(1) {
  transition-delay: 0s;
}

.letter:nth-child(2) {
  transition-delay: 0.02s;
}

.letter:nth-child(3) {
  transition-delay: 0.05s;
}

.letter:nth-child(4) {
  transition-delay: 0.08s;
}

.letter:nth-child(5) {
  transition-delay: 0.11s;
}

.letter:nth-child(6) {
  transition-delay: 0.14s;
}

.letter:nth-child(7) {
  transition-delay: 0.17s;
}

.letter:nth-child(8) {
  transition-delay: 0.16s;
}

.letter:nth-child(9) {
  transition-delay: 0.24s;
}

.letter:nth-child(10) {
  transition-delay: 0.27s;
}

.letter:nth-child(11) {
  transition-delay: 0.3s;
}

.letter:nth-child(12) {
  transition-delay: 0.33s;
}

.letter:nth-child(13) {
  transition-delay: 0.36s;
}

.letter:nth-child(14) {
  transition-delay: 0.39s;
}

.letter:nth-child(15) {
  transition-delay: 0.42s;
}

.info-links-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 15px;
  transition: all 0.3s ease-in-out;
  /* backdrop-filter: blur(5px);
  border-bottom: 1px solid #dbd5c9; */
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.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: #fff6ec;
  font-weight: 100;
}

.menu-bottom {
  position: absolute;
  bottom: 2rem;
  left: 4%;
}

.vertical-bar {
  color: #dbd5c9;
}

.menu-bottom a {
  color: #fff6ec;
  font-weight: 100;
  font-size: 1rem;
  text-decoration: none;
}

.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;
}

.info-links-nav button {
  background-color: #fff6ec;
  color: #080808;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  padding: 13px 33px;
  font-size: 1rem;
  font-weight: 200;
}

.images-slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

.images-slider-wrapper img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*   filter: brightness(50%);
  will-change: clip-path, z-index; */
  clip-path: inset(0 0 0 0);
}

.index-5 {
  z-index: 5;
}

.index-4 {
  z-index: 4;
}

.index-3 {
  z-index: 3;
}

.index-2 {
  z-index: 2;
}

.index-1 {
  z-index: 1;
}

.starter-content {
  z-index: 10;
  position: absolute;
  bottom: 3.5rem;
  left: 5rem;
  overflow: hidden;
}

h1 {
  font-family: "PP_Pangaia", sans-serif;
  color: #fff6ec;
  font-size: 6.2rem;
  letter-spacing: 4px;
  line-height: 6.2rem;
  width: 90%;
  margin: 0;
  font-weight: 400;
  opacity: 0;
  transform: translateY(200px);
  visibility: hidden;
}

.info-box-main-wrapper {
  position: absolute;
  z-index: 10;
  bottom: 3.5rem;
  right: 5rem;
  visibility: hidden;
}

.info-box-layout {
  display: flex;
  align-items: stretch;
  gap: 1rem;
}

.info-box-inner-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-box-btn {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2.5px);
  cursor: pointer;
  border: none;
  width: 105px;
  height: 38px;
  font-size: 0.9rem !important;
  font-family: "Inter", sans-serif !important;
  color: #fff6ec !important;
  font-weight: 200 !important;
}

.overflow-wrapper {
  position: relative;
  overflow: hidden;
}

.mini-map {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  width: 215px;
  height: 155px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-pic {
  width: 94%;
  height: 92%;
  border-radius: 5px;
  object-fit: cover;
  cursor: pointer;
  filter: brightness(60%);
}

.info-slider-wrapper {
  overflow: hidden;
  width: 190px;
  height: auto;
}

.info-slider {
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.info-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  cursor: pointer;
}

.info-slider-img {
  width: 93%;
  height: 93%;
  object-fit: cover;
  border-radius: 5px;
  filter: brightness(60%);
}

.info-text {
  position: absolute;
  bottom: 0px;
  left: 5px;
  padding: 0px 10px;
}

.info-text h3 {
  color: #fff6ec;
  font-family: "PP_Pangaia", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.info-text a {
  color: #fff6ec;
  font-family: "PP_Pangaia", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.zindex-4 {
  z-index: 4;
}

.zindex-3 {
  z-index: 3;
}

.zindex-2 {
  z-index: 2;
}

.zindex-1 {
  z-index: 1;
}

.zindex-0 {
  z-index: 0;
}

.section-intro {
  padding: 7% 5rem;
}

.layout-intro {
  width: 40%;
}

.layout-intro p {
  font-size: 1.2rem;
  color: #fff6ec;
  font-weight: 100;
}

.intro-btn-wrapper {
  margin-top: 2rem;
}

.intro-btn-wrapper button {
  border-radius: 2px;
  background: #fff6ec;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  border: none;
  padding: 12px 32px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #080808;
  font-weight: 200;
}

.images-section {
  padding: 0% 5rem;
}

.header-carousel {
  font-family: "PP_Pangaia", sans-serif;
  font-size: 2.6rem;
  color: #fff6ec;
  font-weight: 400;
}

.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;
}

.badge-box {
  position: absolute;
  top: 0.5rem;
  right: 0.2rem;
  z-index: 10;
}

.box-content {
  padding: 0 10px;
  cursor: pointer !important;
}

.box-content h3 {
  font-family: "PP_Pangaia", sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  margin: 0 0 1rem 0;
  color: #fff6ec;
}

.box-content a {
  margin-top: 0;
  color: #fff6ec;
  font-size: 1.1rem;
  font-weight: 100;
  text-decoration: none;
}

.row-img {
  width: 550px;
  height: 400px;
  object-fit: cover;
  padding: 0.5rem;
}

.control-buttons-wrapper {
  display: flex;
  gap: 1rem;
  margin: 3rem 10px;
}

.next,
.prev {
  background: transparent;
  border: 1px solid #6e797a;
  border-radius: 2px;
  cursor: pointer;
  height: 48px;
  width: 80px;
}

.next img,
.prev img {
  width: 20px;
}

.prev img {
  transform: rotate(180deg);
}

.image-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160vh;
  overflow: hidden;
  margin-top: 10%;
}

.image-section .img {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-section .img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.scroll-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  filter: brightness(40%);
}

.text-content-header {
  position: absolute;
  top: 7%;
  left: 5rem;
  right: 10%;
  z-index: 2;
  overflow: hidden !important;
  padding: 5% 0 5% 0;
}

.text-content-header h2 {
  font-family: "PP_Pangaia", sans-serif;
  font-size: 2.6rem;
  color: #fff6ec;
  font-weight: 400;
  width: 40%;
}

.text-content-wrapper {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 30%;
  right: 10%;
  z-index: 2;
  width: 40%;
  gap: 2rem;
}

.text-header-layout {
  display: flex;
  align-items: center;
  gap: 20px;
}

.text-content h3 {
  font-family: "PP_Pangaia", sans-serif;
  font-size: 2.1rem;
  color: #fff6ec;
  font-weight: 400;
  width: 100%;
}

.header-icon {
  padding: 20px;
  border-radius: 100%;
  border: 1px solid #fff6ec;
}

.text-content p {
  width: 100%;
  color: #fff6ec;
  font-size: 1.2rem;
  font-weight: 100;
  margin-left: 86px;
}

.cta-btns {
  margin: 1rem 0 0 86px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-btns button {
  border-radius: 2px;
  background: #fff6ec;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  border: none;
  padding: 12px 32px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #080808;
  font-weight: 200;
}

.cta-btns a {
  color: #fff6ec;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 200;
  display: flex;
  align-items: center;
  gap: 5px;
  text-underline-offset: 3px;
}

.services-section {
  padding: 10% 5rem;
}

.services-section h2 {
  font-family: "PP_Pangaia", sans-serif;
  font-size: 2.6rem;
  color: #fff6ec;
  font-weight: 400;
}

.services-layout {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 10rem;
}

.services-item {
  width: 300px;
  height: 200px;
  border-radius: 5px;
  background-color: #0c0c0c;
  padding: 1rem;
}

.icon-wrapper {
  border-radius: 100%;
  border: 1px solid #fff6ec;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-wrapper {
  margin-top: 2rem;
}

.text-wrapper h4 {
  font-family: "PP_Pangaia", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  color: #fff6ec;
}

.services-btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.5rem;
}

.services-btn-layout {
  width: calc(897px + 2rem);
}

.services-btn a {
  color: #fff6ec;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
  font-weight: 200;
  display: flex;
  align-items: center;
  gap: 5px;
}

.image-section-bessis {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 125vh;
  overflow: hidden;
  margin-top: 4%;
}

.image-section-bessis .img {
  position: relative;
  width: 100%;
  height: 100%;
}

.image-section-bessis .img-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.text-content-header {
  position: absolute;
  top: 7%;
  left: 5rem;
  right: 10%;
  z-index: 2;
  overflow: hidden !important;
  padding: 5% 0 5% 0;
}

.text-content-header h2 {
  font-family: "PP_Pangaia", sans-serif;
  font-size: 2.6rem;
  color: #fff6ec;
  font-weight: 400;
  width: 40%;
}

.text-bs-group {
  width: 40%;
}

.font-PP {
  font-family: "PP_Pangaia", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
}

.text-bs-group {
  color: #fff6ec;
  font-size: 1.2rem;
  font-weight: 100;
}

.bs-group-items-wrapper {
  margin-top: 5rem;
}

.bs-group-item {
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  height: 120px;
  width: 360px;
  padding: 0.8rem;
  margin-bottom: 1rem;
  position: relative;
}

.bs-group-item h3 {
  margin-top: 0;
  font-family: "PP_Pangaia", sans-serif;
  color: #fff6ec;
  font-size: 1.4rem;
  font-weight: 400;
}

.bs-group-item h3 a {
  margin-top: 0;
  font-family: "PP_Pangaia", sans-serif;
  color: #fff6ec;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
}

.bs-group-item p {
  display: flex;
  align-items: center;
  color: #fff6ec;
  font-size: 1.2rem;
  font-weight: 100;
  position: absolute;
  bottom: 0;
}

.bs-group-item p img {
  width: 20px;
  height: auto;
}

footer {
  background-color: #0e0e0e;
  padding: 4rem 5rem 2rem 5rem;
}

.pos-book-rquest {
  display: flex;
  justify-content: center;
  margin: 9rem 0;
}

.icon-h4-layout {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-footer {
  font-family: "PP_Pangaia", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  margin: 0;
  color: #fff6ec;
}

.booking-middle {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}

.booking-circle {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #d9c195;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.booking-circle img {
  filter: invert(100);
  width: 20px;
}

.booking-link-footer a {
  color: #d9c195 !important;
  font-family: "PP_Pangaia", sans-serif;
  font-weight: 400;
  font-size: 3rem;
  margin: 0;
  text-underline-offset: 5px;
  text-decoration-thickness: 2px;
}

.booking-link-footer h4 {
  margin: 0;
  font-weight: 400;
  font-size: 3rem;
}

.booking-footer {
  margin-left: calc(72px + 1rem);
}

.footer-links-layout {
  display: flex;
  justify-content: space-evenly;
}

.footer-links-layout h4 {
  font-family: "PP_Pangaia", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  color: #fff6ec;
}

.footer-links-layout ul {
  padding: 0;
}

.footer-links-layout ul li {
  list-style: none;
  line-height: 1.5rem;
}

.footer-links-layout ul li a {
  color: #fff6ec;
  font-size: 1.1rem;
  font-weight: 100;
  text-decoration: none;
}

.linked-hv-f {
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.linked-hv-f:before {
  background-color: #f49b1f;
  bottom: 0;
  content: "";
  height: 0.5px;
  left: 0;
  position: absolute;
  transition: width 0.3s ease;
  width: 0;
}

.linked-hv-f:hover:before {
  width: 100%;
}

.linked-hv-f:hover {
  color: #f49b1f !important;
}

.social-icons-layout {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sc-icon-m {
  width: 20px;
  height: auto;
}

.sc-icon-l {
  width: 22px;
  height: auto;
}

.partners-layout {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.hotel-logo {
  width: 80px;
  height: auto;
}

.bs-logo {
  width: 60px;
  height: auto;
}

.bs-logo-l {
  width: 68px;
  height: auto;
}

.philosoph-logo {
  width: 110px;
  height: auto;
  margin: 0 -15px 0 -20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}

.footer-bottom p {
  color: #fff6ec;
  font-weight: 100;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-bottom a {
  color: #fff6ec;
  font-weight: 100;
  font-size: 0.9rem;
  text-decoration: none;
  text-underline-offset: 2px;
}

.credits:hover {
  color: #7f1d1d;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: block;
  }

  h1 {
    font-size: 3.2rem;
    line-height: 3.2rem;
    width: 100%;
    letter-spacing: 0px;
  }

  .starter-content {
    bottom: 40%;
    left: 1rem;
    right: 1rem;
  }

  .info-box-layout {
    width: 100%;
  }

  .info-box-main-wrapper {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
  }

  .mini-map {
    width: 100%;
  }

  #map-overlay p {
    font-size: 0.7rem;
  }

  #map-overlay a {
    font-size: 0.7rem;
  }

  .info-box-btn {
    width: 82px;
    display: none;
  }

  .info-box-inner-layout,
  .info-slider-wrapper {
    width: 50%;
  }

  .section-intro {
    padding: 10% 1rem;
  }

  .layout-intro {
    width: 100%;
  }

  .images-section {
    padding: 0 1rem;
  }

  .header-carousel {
    font-size: 2rem;
  }

  .box-content h3 {
    font-size: 1.5rem;
  }
  .row-img {
    height: 240px;
    object-fit: cover;
    width: 360px;
  }
  .wrapper {
    height: 100%;
    overflow: hidden;
    position: relative;
    margin-left: calc(4% - 20px);
    margin-right: calc(4% - 20px);
  }

  .box-content {
    padding: 0 8px;
  }
  .badge-box {
    position: absolute;
    top: 0.4rem;
    right: 0.1rem;
    z-index: 10;
  }
  .control-buttons-wrapper {
    margin-left: 4%;
    margin: 3rem 8px;
  }
  .next,
  .prev {
    height: 38px;
    width: 60px;
  }
  .next img,
  .prev img {
    width: 14px;
    height: auto;
  }

  .text-content-header {
    top: 3%;
    left: 1rem;
    right: 1rem;
  }

  .text-header-layout {
    gap: 10px;
  }

  .image-section {
    height: 170vh;
  }

  .text-content-header h2 {
    font-size: 2rem;
    line-height: 2rem;
    width: 100%;
  }

  .text-content-wrapper {
    left: 1rem;
    right: 1rem;
    top: 20%;
    width: 80%;
    gap: 1rem;
  }

  .text-content p {
    margin-left: 66px;
    width: 90%;
  }

  .header-icon {
    padding: 15px;
  }

  .text-content h3 {
    font-size: 1.6rem;
  }

  .cta-btns {
    margin: 0 0 0 66px;
  }

  .rmv-mobile {
    display: none;
  }

  .services-section {
    padding: 20% 1rem 10% 1rem;
  }
  .services-section h2 {
    font-size: 2rem;
  }
  .services-layout {
    flex-direction: column;
    margin-top: 5rem;
  }
  .services-item {
    width: 100%;
  }

  .services-btn a {
    display: none;
  }

  .text-bs-group {
    width: 100%;
  }

  .bs-group-items-wrapper {
    margin-top: 3rem;
  }
  .booking-middle {
    gap: 2rem;
  }

  footer {
    background-color: #0e0e0e;
    padding: 4rem 1rem 2rem 1rem;
  }
  .pos-book-rquest {
    margin: 4rem 0;
  }
  .header-footer {
    font-size: 2rem;
  }
  .booking-link-footer h4 {
    font-size: 2rem !important;
  }
  .booking-circle {
    width: 80px;
    height: 80px;
  }
  .partners-layout {
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer-links-layout {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: block;
  }

  h1 {
    font-size: 5.2rem;
    line-height: 5.2rem;
    width: 100%;
    letter-spacing: 0px;
  }

  .starter-content {
    top: 40%;
    left: 3rem;
    right: 3rem;
  }

  .info-box-layout {
    width: 100%;
  }

  .info-box-main-wrapper {
    right: 3rem;
    left: 3rem;
    bottom: 3rem;
    width: calc(100% - 6rem);
  }

  .mini-map {
    width: 100%;
  }

  #map-overlay {
    padding: 20px;
  }

  #map-overlay p {
    font-size: 0.9rem;
  }

  #map-overlay a {
    font-size: 0.9rem;
  }

  .info-slider-img {
    width: 97%;
  }

  .info-box-btn {
    width: 100px;
  }

  .info-box-inner-layout,
  .info-slider-wrapper {
    width: 50%;
  }

  .section-intro {
    padding: 10% 3rem;
  }

  .layout-intro {
    width: 100%;
  }

  .images-section {
    padding: 0 3rem;
  }

  .header-carousel {
    font-size: 2.8rem;
  }

  .box-content h3 {
    font-size: 1.6rem;
  }
  .row-img {
    height: 240px;
    object-fit: cover;
    width: 360px;
  }
  .wrapper {
    height: 100%;
    overflow: hidden;
    position: relative;
    margin-left: calc(4% - 20px);
    margin-right: calc(4% - 20px);
  }

  .box-content {
    padding: 0 8px;
  }
  .next,
  .prev {
    height: 38px;
    width: 60px;
  }
  .next img,
  .prev img {
    width: 14px;
    height: auto;
  }

  .image-section {
    height: 125vh;
  }

  .text-content-header {
    top: 3%;
    left: 3rem;
    right: 3rem;
  }

  .text-header-layout {
    gap: 20px;
  }

  .text-content-header h2 {
    font-size: 3rem;
    width: 100%;
  }

  .text-content-wrapper {
    left: 3rem;
    right: 3rem;
    top: 20%;
    width: 80%;
  }

  .text-content p {
    margin-left: 80px;
    font-size: 1.3rem;
    width: 90%;
  }

  .header-icon {
    padding: 15px;
  }

  .text-content h3 {
    font-size: 1.8rem;
  }

  .cta-btns {
    display: flex;
    justify-content: center;
    margin: 0;
  }

  .services-section {
    padding: 15% 3rem 10% 3rem;
  }
  .services-section h2 {
    font-size: 2rem;
  }
  .services-layout {
    margin-top: 5rem;
  }
  .services-item {
    width: 100%;
  }

  .services-btn a {
    display: none;
  }

  .image-section-bessis {
    height: 110vh;
  }

  .text-bs-group {
    width: 100%;
  }

  .bs-group-items-wrapper {
    margin-top: 5rem;
  }

  .bs-group-item {
    margin-bottom: 2rem;
  }
  .booking-middle {
    gap: 2rem;
  }

  footer {
    background-color: #0e0e0e;
    padding: 4rem 1rem 2rem 1rem;
  }
  .pos-book-rquest {
    margin: 4rem 0;
  }
  .header-footer {
    font-size: 2rem;
  }
  .booking-link-footer h4 {
    font-size: 2rem !important;
  }
  .booking-circle {
    width: 80px;
    height: 80px;
  }
  .partners-layout {
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .footer-links-layout {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .starter-content {
    bottom: 5%;
  }
  .info-box-layout {
    display: none;
  }
  .layout-intro {
    width: 60%;
  }
  .text-content-header {
    top: 0%;
  }
  .text-content-header h2 {
    font-size: 2rem;
    width: 60%;
  }
  .text-header-layout {
    gap: 10px;
  }
  .text-content-wrapper {
    top: 35%;
    width: 55%;
    right: 0rem;
    left: auto;
    gap: 1rem;
  }
  .text-content h3 {
    font-size: 1.7rem;
  }
  .header-icon {
    padding: 12px;
  }
  .rmv-mobile {
    display: none;
  }

  .text-content p {
    display: none;
  }
  .partners-layout {
    gap: 1rem;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 2560px) {
  .header-desktop {
    padding: 25px 45px;
  }
  .links a {
    font-size: 1.3rem;
  }
  .info-links-nav a {
    font-size: 1.3rem;
  }
  .info-links-nav button {
    padding: 16px 36px;
    font-size: 1.1rem;
  }
  h1 {
    font-size: 6.9rem;
    line-height: 6.9rem;
  }
  .mini-map {
    width: 350px;
    height: 220px;
  }

  .info-slider-wrapper {
    width: 280px;
    height: auto;
  }

  #map-overlay p {
    font-size: 1rem;
    padding: 20px;
  }
  #accept-map {
    height: 40px;
    width: 120px;
    font-size: 1rem;
  }
  .info-box-btn-wrapper {
    display: flex;
    gap: 1rem;
  }
  .info-box-btn {
    width: calc(175px - 0.5rem);
    height: 45px;
    font-size: 1rem;
  }
  .layout-intro p {
    font-size: 1.4rem;
  }
  .intro-btn-wrapper button {
    font-size: 1.1rem;
  }
  .header-carousel {
    font-size: 3rem;
  }
  .box-content {
    padding: 0 10px;
  }
  .row-img {
    width: 700px;
    height: 500px;
  }
  .box-content h3 {
    font-size: 1.9rem;
  }
  .box-content a {
    font-size: 1.4rem;
  }
  .image-section {
    height: 140vh;
  }
  .text-content-wrapper {
    gap: 4rem;
  }
  .text-content-header h2 {
    font-size: 3rem;
    width: 30%;
  }
  .text-content h3 {
    font-size: 2.4rem;
  }
  .text-content p {
    font-size: 1.4rem;
  }
  .cta-btns button {
    font-size: 1.1rem;
  }
  .cta-btns a {
    font-size: 1.3rem;
  }
  .services-section h2 {
    font-size: 3rem;
  }
  .services-layout {
    gap: 2rem;
  }
  .services-item {
    width: 400px;
    height: 280px;
  }
  .services-btn a {
    display: none;
  }
  .text-wrapper h4 {
    font-size: 2rem;
  }
  .image-section-bessis {
    height: 120vh;
  }
  .font-PP {
    font-size: 1.6rem;
  }
  .text-bs-group {
    font-size: 1.4rem;
  }
  .bs-group-items-wrapper {
    margin-top: 8rem;
  }
  .bs-group-item {
    height: 160px;
    width: 400px;
    padding: 1.2rem;
  }
  .bs-group-item h3 a {
    font-size: 1.7rem;
  }
  .bs-group-item p {
    font-size: 1.4rem;
  }
  .booking-link-footer h4 {
    font-size: 3.3rem;
  }
  .header-footer {
    font-size: 3.3rem;
  }
  .footer-links-layout ul li a {
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .layout-intro {
    width: 50%;
  }
  .text-content-header {
    top: 5%;
  }
  .text-content-header h2 {
    width: 60%;
  }
  .text-content-wrapper {
    top: 25%;
    width: 50%;
  }
  .bs-group-items-wrapper {
    margin-top: 4rem;
  }
}
