:root {
  --pl-blue: #202944;
  --pl-grey: #7c7c7c; /* Original grey */

  /* Adjusting other grey shades for a real grey progression */
  --pl-light-grey: #b3b3b3; /* Lighter grey, adjusted */
  --pl-medium-grey: #999999; /* Medium grey, adjusted */
  --pl-white: #ffffff; /* Keeping white as is */
  --pl-superlight-grey: #d7d7d7; /* Very light grey, adjusted */
  --pl-almostsuperlight-grey: #e6e6e6; /* Almost super light grey, adjusted */
}

html,
body {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Asap Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 17px;
  margin: 0;
  padding: 0;
  background-color: var(--pl-superlight-grey);
  color: var(--pl-grey);
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* body.home_page {
  background-color: var(--pl-superlight-grey);
}

body.property_page {
  background-color: var(--pl-white);
} */

body.property_page::after {
  content: " ";
  background-color: var(--pl-white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2500;
  pointer-events: none;
  animation-name: fadeOut;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

body.utility_page {
  background-color: var(--pl-blue);
  color: var(--pl-white);
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

main {
  width: 100%;
  overflow-x: hidden;
}

section {
  margin-top: 4rem !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Asap Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: var(--pl-blue);
}

body.utility_page h1,
body.utility_page h2,
body.utility_page h3,
body.utility_page h4,
body.utility_page h5,
body.utility_page h6 {
  color: var(--pl-light-grey);
}

h2 {
  font-size: 1.2rem;
}

a {
  font-weight: 600;
  color: var(--pl-blue);
  text-decoration: none;
}

body.utility_page a {
  color: var(--pl-medium-grey);
}

.half_white {
  position: absolute;
  background-color: white;
  z-index: -1;
  width: 100%;
  height: 70%;
  bottom: 0px;
  left: 0px;
}

.swiper {
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  display: grid;
}

.icono_wm {
  max-height: 100px;
  width: auto;
  align-self: end;
  justify-self: right;
  margin-bottom: 1rem;
}

.gimme_hard_shadow {
  box-shadow: 0px 0.5rem 0px rgba(0, 0, 0, 0.2);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0px auto;
  padding-bottom: 2rem;
}

.container.long_container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.map_container {
  width: 100%;
  aspect-ratio: 3/1;
}

nav .container {
  padding-bottom: 0 !important;
  width: Calc((100vw * 0.9) * 0.9);
  max-width: Calc(1200px - 120px);
}

.inner_container {
  width: 90%;
  margin: 0px auto;
  text-align: left;
}

.inner_container p {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  margin-top: 0px;
}

.columns {
  display: grid;
  gap: 2rem;
}

.columns ul,
.columns ol {
  padding: 0;
  margin: 0;
}

.two_columns {
  grid-template-columns: 1fr 1fr;
}

.three_columns {
  grid-template-columns: 1fr 1fr 1fr;
}

.action_items {
  align-items: end;
}

.action_items .block {
  text-align: center;
}

.block {
  text-align: left;
  color: var(--pl-blue);
  font-size: 1.2rem;
  position: relative;
  display: flex;
  flex-flow: column;
}

.block.twocol {
  grid-column: span 2;
}

.block img {
  width: 100%;
  height: auto;
}

.block .inner_pic {
  aspect-ratio: 10/8;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  border: 0px;
  position: relative;
  margin: 0px;
  padding: 0px;
}

.block.form_pic {
  display: grid;
  width: 100%;
  height: 100%;
}

.block.form_pic .inner_pic {
  margin-top: 1.4rem;
  align-self: start !important;
}

.block .pic_location {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: calc(100% - 2rem);
  z-index: 100;
}

.block.gradient_please {
  position: relative;
}
.block.gradient_please .inner_pic::after,
body.home_page .gallery_pic:not(.double):hover::after {
  background: rgb(32, 41, 68);
  background: linear-gradient(
    0deg,
    rgba(32, 41, 68, 1) 0%,
    rgba(32, 41, 68, 0) 44%
  );
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  content: " ";
  height: 100%;
  mix-blend-mode: multiply;
}

.block.reason .block_title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: end;
}

.block h1 {
  padding: 0;
  margin: 0;
  align-self: start;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.block.reason .block_title i {
  align-self: end;
  justify-self: end;
  font-size: 2.4rem;
}

.language_sel {
  text-align: right;
  font-size: 0.7rem;
}

.no-margin {
  margin-top: 0px !important;
}

.no-padding {
  padding-bottom: 0px !important;
}

.location_address {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-style: italic;
}

.location_address li {
  display: flex;
  align-items: center;
  padding: 0.2rem 0;
}

.location_address a {
  text-decoration: none;
  font-weight: 300;
  cursor: pointer !important;
}

.location_address a:hover {
  text-decoration: underline;
}

.location_address i {
  font-size: 0.8rem;
  margin-right: 0.5rem;
  color: var(--pl-blue);
}

nav {
  padding-bottom: 1rem;
  padding-top: 1rem;
  position: relative;
}

nav ul.nav_ul {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  list-style-type: none;
  padding: 0px !important;
  font-size: 1rem;
  align-self: end;
  padding: 0px;
  margin: 0px;
}

nav ul.nav_ul li.nav_ul_li {
  position: relative;
  width: auto;
  font-size: 1rem;
}

ul.nav_inner_ul {
  position: absolute;
  padding: 1rem;
  background-color: var(--pl-white);
  display: flex;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  justify-content: center;
  flex-flow: row;
  gap: 1rem;
}

ul.nav_inner_ul::after {
  content: " ";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--pl-superlight-grey);
}

ul.nav_inner_ul > li {
  flex: 1; /* Ensure each list item takes an equal width */
  box-sizing: border-box; /* Include padding and border in the element's total width and height */
  list-style-type: none;
  text-align: left;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

ul.nav_inner_ul li ul {
  list-style: none; /* Remove default list styles from inner ul */
  padding: 0;
  margin: 0;
  width: 100%;
}

ul.nav_inner_ul li ul li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.nav_link {
  color: var(--pl-grey);
  transition: all 0.3s;
  font-weight: 300;
}

.property_page .nav_link.locations_link,
.nav_link:hover,
.nav_ul_li.active .nav_link,
.nav_link:active {
  color: var(--pl-blue);
  font-weight: 600;
}

ul.nav_inner_ul li a {
  font-weight: 300;
  font-size: 0.9rem;
}

ul.nav_inner_ul li a:hover {
  font-weight: 600;
}

ul.props_city {
  padding: 0px;
  text-transform: uppercase;
}

ul.props_city * {
  font-size: 0.9rem !important;
  white-space: nowrap;
}

ul.props_city h2 {
  color: var(--pl-blue) !important;
}

.haspopupmenu .ispopup {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

.haspopupmenu.active .ispopup {
  opacity: 1;
  pointer-events: all;
}

li.props_city_container {
  flex: 1;
  margin-right: 20px;
}

.nav_bar {
  display: grid;
  grid-template-columns: auto auto;
}

.nav_logo_a {
  border: 0;
  text-align: left;
  margin-bottom: -2%;
  cursor: pointer !important;
  display: block;
  position: relative;
}

body.utility_page .nav_link {
  color: var(--pl-white) !important;
}

.logo_home {
  width: auto;
  height: 80px;
  align-self: end;
  cursor: pointer !important;
}

body.utility_page .logo_home {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(14deg)
    brightness(104%) contrast(101%);
}

/* .swiper_hero {
  border: solid 1rem var(--pl-white);
} */
.swiper_hero .swiper-slide {
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

.swiper_hero .swiper-slide::after {
  background: rgb(32, 41, 68);
  background: linear-gradient(
    90deg,
    rgba(32, 41, 68, 1) 15%,
    rgba(32, 41, 68, 0) 80%
  );
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  content: " ";
  height: 100%;
}

.hero_content {
  width: 100%;
  aspect-ratio: 2 / 1;
  position: relative;
  height: 100%;
}

body.home_page .hero_content {
  aspect-ratio: 4 / 2;
}

body.property_page .hero_content {
  aspect-ratio: 3 / 1;
}

body.property_page .hero_content.campaign {
  aspect-ratio: 3 / 2;
}

.hero_content .hero_data {
  display: grid;
  grid-template-rows: 1fr 3rem 3rem;
  align-items: end;
  text-align: left;
  height: 100%;
  z-index: 100;
  margin: 0px auto;
  width: Calc((100vw * 0.9) * 0.9);
  position: relative;
  max-width: Calc(1200px - 120px);
}

.hero_info {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  z-index: 100;
  color: var(--pl-white) !important;
}

.hero_info .pic_location {
  display: block;
}

.hero_info .wm {
  text-align: right;
}

h1.hero_title {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--pl-white);
  text-transform: uppercase;
  align-self: end;
  margin: 0px;
  width: 40ch; /* Limit to approximately 20 characters */
  overflow-wrap: break-word; /* Ensure long words are wrapped */
  white-space: normal; /* Ensure text wraps normally */
}

section.emphasis_container {
  margin-top: 0px !important;
  text-align: center !important;
  padding-bottom: 0px !important;
}

section.emphasis_container h1.emphasis {
  color: var(--pl-blue);
  font-size: 3rem;
  margin: 0px !important;
}

.campaign h1.hero_title {
  font-size: 3.5rem;
}

.campaign_title_block {
  align-self: end;
}

h2.hero_campaign_subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--pl-white);
  /* text-transform: uppercase; */
  align-self: end;
  margin: 0px;
}

.pic_location h3 {
  font-size: 1rem;
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
  color: var(--pl-white) !important;
  font-weight: 300;
}

.pic_location i {
  margin-right: 1rem;
  color: var(--pl-white) !important;
}

.hero_menu {
  position: absolute;
  bottom: 0px;
  background-color: var(--pl-superlight-grey);
}

/* .property_page .hero_menu {
  background-color: var(--pl-white);
} */

.hero_menu ul {
  list-style-type: none;
  padding: 0px;
}

.hero_menu_container {
  position: relative;
  transform: translateY(-3rem);
  width: 90% !important;
  z-index: 200;
  padding-bottom: 0px !important;
}

.hero_menu_container.formc {
  transform: translateY(-3rem);
}

.hero_menu_container.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.hero_menu_container.fixed .inner_form {
  box-shadow: 0px 0.5rem 0px rgba(0, 0, 0, 0.2);
  /* Add drop shadow */
}

.video {
  position: relative;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: transparent;
}

.video-overlay img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: auto;
  opacity: 0.5;
  transition: all 0.3s;
}

.video-overlay:hover img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: auto;
  opacity: 1;
}

.video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  position: relative;
  /* border: solid 1rem var(--pl-white); */
}

.swiper_locations .swiper-slide {
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: left;
  align-items: end;
  text-transform: uppercase;
}

.swiper_locations .prop_name {
  margin-left: 1rem;
}

.location_slide_pic_container {
  position: relative;
  width: 100%;
  aspect-ratio: 48/30;
  overflow: hidden;
}

.location_slide_pic {
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) scale(1);
  transition: all 0.5s ease-in;
  width: 100%;
  height: 100%;
}

.location_slide_pic_container:hover .location_slide_pic {
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}

.gallery_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery_pic {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.gallery_pic.double.horizontal {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery_pic.double.vertical {
  grid-row: span 2;
  aspect-ratio: 1/2;
}

.gallery_actual_pic {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) scale(1);
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all 0.5s ease-in;
  background-size: cover;
  background-repeat: no-repeat;
  background-origin: content-box;
}

.gallery_pic:not(.gallery_pic.double):hover .gallery_actual_pic {
  transform: translateX(-50%) translateY(-50%) scale(1.1);
}

.gallery_pic .pic_location {
  position: absolute;
  z-index: 100;
  width: Calc(100% - 2rem);
  height: Calc(100% - 2rem);
  padding: 1rem;
  display: flex;
  align-items: end;
  opacity: 0;
  transition: all 0.3s;
}

/* .swiper_hero .swiper-slide::after {
  background: linear-gradient(
    0deg,
    rgba(32, 41, 68, 1) 30%,
    rgba(32, 41, 68, 0) 80%
  );
} */

.gallery_pic:hover .pic_location {
  opacity: 1 !important;
}

.property_page .gallery_pic .pic_location {
  display: none;
}

section.clients {
  background-color: var(--pl-medium-grey);
  padding-top: 1rem;
  color: var(--pl-white) !important;
}

section.clients h1 {
  color: var(--pl-white) !important;
}

.opinion {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem;
  align-items: center;
}

.opinion_campaign {
  font-size: 1rem;
}

.opinion_pic {
  width: 100%;
  max-width: 120px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
  border-radius: 100%;
  overflow: hidden;
}

.opinion_pic img {
  width: 100%;
  height: auto;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.amenity {
  display: grid;
  grid-template-rows: auto 2rem;
  align-content: center;
  color: var(--pl-blue);
  background-color: var(--pl-almostsuperlight-grey);
  text-align: center;
  align-items: center;
  justify-items: center;
  aspect-ratio: 1/1;
  padding: 1rem;
  width: Calc(100% -2rem);
}

.amenity i {
  font-size: 3rem;
}

.amenity h4 {
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
  padding: 0;
  align-items: end;
}

.configurations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.configuration {
  display: grid;
  grid-template-rows: auto auto;
  padding: 1rem;
  align-items: center;
  color: var(--pl-blue);
  text-align: center;
  align-items: center;
  justify-items: center;
  aspect-ratio: 1/1;
}

.configuration_data {
  text-align: left;
  justify-self: left;
}

.configuration img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.configuration h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  padding: 0;
  align-items: end;
  color: var(--pl-blue);
  text-align: left;
  text-transform: uppercase;
  justify-self: left;
}

.configuration .configuration_info {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 1rem;
  justify-self: left;
}

.configuration .configuration_info i {
  font-size: 0.8rem;
  margin-right: 0.3rem;
}

.faq h3::before {
  position: absolute;
  left: -25px;
  content: " + ";
  color: white;
}

.faq {
  opacity: 0.2;
  position: relative;
  padding: 0;
  transition: all 0.3s;
}

.faq h3 {
  padding: 0;
  margin: 0;
  margin-bottom: 1rem;
  position: relative;
}

.faq.open,
.faq:hover {
  cursor: pointer;
  opacity: 1;
}

.faq p {
  display: none;
}

.faq.open p {
  display: block;
}

.clients-logos-wrapper {
  display: flex;
  justify-content: center;
  /* Center horizontally */
  align-items: center;
  /* Center vertically */
  padding: 2rem;
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  list-style-type: none;
  padding: 0;
  width: 100%;
  /* Ensure the grid takes the full width of the container */
  max-width: 100%;
  /* Ensure the grid doesn't exceed the container width */
}

section.faqs {
  background-color: var(--pl-blue);
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: var(--pl-white) !important;
}

section.faqs h1 {
  color: var(--pl-white) !important;
}

.faq_list {
  list-style: none;
  padding: 0;
}

.faq_list h3 {
  color: white;
  padding-top: 1rem;
}

footer {
  background-color: var(--pl-blue);
  color: var(--pl-white) !important;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

img.logo_footer {
  width: auto;
  height: 80px !important;
  align-self: start;
  margin-bottom: 2rem;
}

footer p,
footer ul,
footer li,
footer a {
  color: var(--pl-white) !important;
  font-size: 1rem;
}

footer ul,
footer li {
  list-style: none;
  padding: 0;
}

footer a {
  text-decoration: none;
  font-weight: 300;
  line-height: 1.5;
}

footer .column {
  display: grid;
  height: 100%;
}

footer ul.social {
  display: block;
  text-align: left;
}

footer ul.social li {
  display: inline-block;
  margin-right: 1rem;
}

footer .byklok {
  text-align: left;
  font-size: 0.7rem;
  color: var(--pl-light-grey);
  justify-self: left;
  align-self: start;
  margin-top: 3rem;
}

footer .byklok a {
  font-size: 0.7rem;
}

.keepemseparated {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.just_mobile {
  display: none;
}

.swiper-pagination-bullet-active {
  background: var(--pl-blue) !important;
}

.logo_home {
  height: 50px;
}

li.spacer {
  height: 1rem;
}

.tripadvisor_bagde {
  width: 148px;
  height: 148px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  justify-self: right;
  align-self: end;
  margin-bottom: 1rem;
}

.tripadvisor {
  width: Calc(100% + 2px) !important;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 980px) {
  .container {
    max-width: 90%;
  }
}

@media (max-width: 760px) {
  section.starter {
    margin-top: 0px !important;
  }

  .swiper_hero .swiper-slide::after {
    background: rgb(32, 41, 68);
    background: linear-gradient(
      90deg,
      rgba(32, 41, 68, 1) 15%,
      rgba(32, 41, 68, 0) 80%
    );
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    content: " ";
    height: 100%;
  }

  .container {
    max-width: 90%;
  }

  .gallery_container {
    grid-template-columns: repeat(2, 1fr);
  }

  .two_columns,
  .three_columns,
  .configurations,
  .opinion {
    grid-template-columns: 1fr !important;
  }

  .map_container {
    aspect-ratio: 2 / 1;
  }

  .hero_section {
    width: 100%;
    max-width: 100%;
  }

  .hero_content {
    aspect-ratio: 5 / 3 !important;
  }

  body.property_page .hero_content.campaign {
    aspect-ratio: 3 / 3 !important;
  }

  .hero_content .inner_container {
    grid-template-rows: 1fr 1rem 3rem;
  }

  h1.hero_title {
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    width: 20ch;
  }

  section.emphasis_container h1.emphasis {
    font-size: 2rem;
    margin-bottom: 1rem !important;
  }

  .hero_content.campaign_hero {
    aspect-ratio: 5 / 5 !important;
  }

  .campaign h1.hero_title {
    font-size: 2rem;
  }

  .campaign h2.hero_campaign_subtitle {
    font-size: 1rem;
  }

  .icono_wm {
    display: none;
  }

  .clients-logos {
    grid-template-columns: repeat(3, 1fr);
  }

  nav ul.nav_ul {
    position: fixed;
    left: -100%;
    top: 0px;
    width: Calc(100% - 2rem);
    height: Calc(100% - 2rem);
    background-color: var(--pl-white);
    z-index: 1000;
    flex-direction: column;
    padding: 1rem !important;
    justify-content: flex-start;
    transition: all 0.3s;
  }

  nav ul.nav_ul.active {
    left: 0px;
  }

  nav ul.nav_ul li.nav_ul_li {
    padding-bottom: 1rem;
  }

  .just_mobile {
    display: block;
  }

  .hamburger {
    width: 100%;
    text-align: right;
    font-size: 1.5rem;
    color: var(--pl-blue);
    align-self: end;
    position: relative;
  }

  .xicon {
    position: absolute;
    right: 5%;
    top: 1rem;
    font-size: 2rem;
    color: var(--pl-blue);
  }

  .logo_mobile_menu {
    width: 150px;
    height: auto;
    margin-top: 5rem;
  }

  .video-overlay img {
    width: 40px;
  }
  .hero_menu_container {
    transform: translateY(0%) !important;
  }

  .hero_menu_container .inner_form {
    gap: 0px;
    display: flex;
    flex-direction: column;
    margin-top: -1rem;
  }

  ul.nav_inner_ul {
    transform: translateX(0%);
    left: 0;
    flex-flow: column;
    top: 100%;
  }

  ul.nav_inner_ul::after {
    display: none;
  }

  .swiper-pagination {
    position: relative;
    margin-top: 1rem;
  }

  .block h1 {
    align-self: start;
  }

  .swiper_locations .prop_name {
    font-size: 1rem;
  }

  .hero_content .hero_data {
    grid-template-rows: 1fr 3rem 1rem;
  }

  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity {
    aspect-ratio: unset !important;
  }

  .amenity h4 {
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }

  .amenity i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .tripadvisor_bagde {
    width: 100px;
    height: 100px;
    align-self: start;
  }
}

.gallery_campaign_popup {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #20294486;
  z-index: 1000;
  display: none;
}

.gallery_campaign_popup.active {
  display: block;
}

.gallery_campaign_pic_container {
  width: 800px;
  max-width: 80%;
  aspect-ratio: 10/8;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #ccc;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateX(-50%) translateY(-50%);
  left: 50%;
  top: 50%;
  position: absolute;
}

.gallery_campaign_closer_cxontainer {
  position: absolute;
  right: -15px;
  top: -15px;

  cursor: pointer;
  background-color: #202944;
  border-radius: 100%;
  width: 30px;
  height: 30px;
}

.gallery_campaign_closer {
  color: white;
  transform: translateX(-50%) translateY(-50%);
  left: 50%;
  top: 50%;
  position: absolute;
  font-size: 20px;
}

.whatsapp-button {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  font-size: 24px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  border: none;
  text-decoration: none;
  z-index: 1000;
}

.campaign_history {
  background-color: white;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  position: relative;
}

.campaign_history::after {
  content: "";
  position: absolute;
  bottom: -10px; /* Adjust the triangle position */
  left: 30px; /* Adjust to align under the bubble */
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}







/* ===================================== 
   🍯 HONEYPOT PROTECTION - PARK LIFE
   ===================================== */
.honeypot-field, .hp-field, .hidden-required,
input[name="website"], input[name="confirm_email"], 
input[name="phone_confirm"], input[name="company_url"], 
input[name="full_address"], input[name="backup_contact"] {
    position: absolute !important;
    left: -10000px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    tab-index: -1 !important;
    z-index: -999 !important;
    height: 0 !important;
    width: 0 !important;
}