@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #013b95;
  --secondary-color: #013b95;
  --font-color: #8e8e8e;
  --heading-color: #000000;
  --default-color: #fff;
  --var-font-family: "Montserrat", serif;
}

/************************** CSS Resets */

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: var(--var-font-family);
  font-size: 16px;
  line-height: 1.5;
  color: var(--font-color);
  background-color: var(--default-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  margin: 0;
  border: none;
  outline: none;
}

button {
  background: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

code,
pre {
  font-family: var(--var-font-family);
}

fieldset {
  border: none;
  padding: 0;
}

legend {
  display: block;
  margin-bottom: 0.5rem;
}

textarea {
  resize: vertical;
}

body:has(.menu-cb:checked ~ .nav-links) {
  overflow: hidden;
}

/***************************** Common CSS */
.presto-container {
  max-width: 1240px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  min-height: 200px;
  margin-left: auto;
  margin-right: auto;
}

.pc-container {
  max-width: 1920px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mx-auto {
  margin: 0 auto;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
  opacity: 1;
  transition: opacity 0.3s ease;
}

/*************************************** Header CSS */

#header {
  background-color: #f2f5fa;
  z-index: 9;
  position: sticky;
  top: 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 246px;
}

.site_name {
  color: var(--secondary-color);
  font-family: var(--var-font-family);
  font-size: 2rem;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.04em;
  text-align: left;
}

.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  position: relative;
}

header .search_component {
  max-width: 1023px;
  width: 100%;
}

nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Hamburger Menu */

.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 9px;
  cursor: pointer;
  position: relative;
  width: 60px;
  height: 24px;
  z-index: 11;
}

.burger-btn span {
  display: block;
  background-color: var(--secondary-color);
  height: 2px;
  width: 60px;
  position: absolute;
  transition: all 0.3s ease;
}

.dd-cb,
.menu-cb {
  display: none;
}

.nav-links {
  width: 420px;
  position: fixed;
  max-height: 100vh;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: left;
  transform: translateX(420px);
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1); /* Smooth easing */
  z-index: 9;
  padding-top: 124px;
  background-color: var(--secondary-color);
  overflow: auto;
}

.dd-menu,
.nav-links li {
  display: block;
  color: #fff;
  margin: 28px 0;
  display: block;
  white-space: nowrap;
  position: relative;
  z-index: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s linear 0s;
  padding: 0 35px;
}

.nav-links li a {
  display: block;
}

.dd-menu {
  padding: 0;
  position: relative;
}

.menu-cb:checked ~ .nav-links {
  transform: translateX(0);
}

/* Position the spans */
.burger-btn span:nth-child(1) {
  top: 0;
}

.burger-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.burger-btn span:nth-child(3) {
  bottom: 0;
}

/* Animation for the burger to cross transform */
.menu-cb:checked ~ .burger-btn span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}

.menu-cb:checked ~ .burger-btn span {
  background-color: #fff;
}

.menu-cb:checked ~ .burger-btn span:nth-child(2) {
  opacity: 0;
  display: none;
}

.menu-cb:checked ~ .burger-btn span:nth-child(3) {
  transform: rotate(-45deg);
  top: 50%;
}

/* Dropdown Menu*/

.dd-menu .dropdown-label {
  cursor: pointer;
  width: 100%;
  display: block;
  position: relative;
  text-wrap: auto;
  width: 100%;
  display: block;
}

.dd-menu .dropdown-content {
  display: none;
  opacity: 0;
  background-color: #fff;
  padding: 10px;
  margin-top: 15px;
  max-height: 300px;
  overflow: auto;
}

.dd-cb:checked ~ .dropdown-content {
  display: block;
  opacity: 1;
}

.dropdown-content li {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.dropdown-content li a {
  padding: 5px 25px;
}

.dropdown-content li a:hover {
  background-color: #ddd;
}

.dropdown-label::after {
  content: "+";
  font-size: 25px;
  position: absolute;
  right: 0;
  font-weight: 400;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease, content 0.3s ease;
}

.dd-cb:checked + .dropdown-label::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

/****************************************** Property Tiles Section */
.property_tiles {
  padding-top: 30px;
}

.property_tiles .search_component {
  display: none;
}

#tiles_bottom {
  border-top: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
  width: fit-content;
  padding: 24px 0;
  margin-top: 123px;
  margin: 123px auto 115px;
}

#main_heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--secondary-color);
  max-width: 585px;
  width: 100%;
  text-transform: uppercase;
}

/****************************************** Destinations Section */
#destinations {
  padding-bottom: 132px;
}

#destinations_top_content {
  margin: 0 auto;
  text-align: center;
  max-width: 770px;
  padding-bottom: 30px;
}

#destinations_heading {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  line-height: 24.38px;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.destinations_sub_heading {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: center;
}

.destinations_properties {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.destinations_property {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  width: calc(16.66% - 16.6px); /* 6 properties per row with 20px gap */
}

.destinations_property:hover .overly {
  opacity: 0;
}

.destinations_property_link {
  display: flex;
  justify-content: center;
  border-radius: inherit;
}

.destinations_property_title {
  position: absolute;
  bottom: 17px;
  font-size: 14px;
  font-weight: 600;
  line-height: 17.07px;
  text-align: center;
  color: #fff;
  z-index: 1;
  text-transform: uppercase;
}

.destinations_property_img {
  border-radius: inherit;
  aspect-ratio: 1;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.destinations_property_link:hover .destinations_property_img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

/****************************************** Explore Tiles Section */
#explore_tiles {
  background-color: #eff5f9;
  padding: 72px 0;
}

.explore_tiles_content {
  max-width: 455px;
  width: 100%;
}

#explore_tiles_content_title {
  color: #000000;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.03em;
  text-align: left;
  max-width: 260px;
  padding-bottom: 40px;
  padding-left: 40px;
}

.explore_tiles_content_wrapper {
  display: flex;
  gap: 70px;
  padding-left: 40px;
}

.property_types {
  display: flex;
  flex-wrap: wrap;
}

.property_types li {
  width: 50%;
}

.property_types li span {
  font-size: 12px;
  font-weight: 600;
  line-height: 30px;
  text-align: left;
  color: #5f5f5f;
  text-transform: uppercase;
  cursor: pointer;
}

.property_types li span:hover {
  color: var(--secondary-color);
}

.property_types li.active span {
  color: var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}

.explore_property_tiles {
  width: 100%;
  text-align: center;
}

/****************************************** Best Destination Section */
.best_destination {
  padding: 115px 0;
}

.best_destination_title {
  padding-bottom: 40px;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.03em;
  text-align: left;
  color: #000000;
  text-transform: uppercase;
  max-width: 292px;
  width: 100%;
}

.best_destination_wrapper {
  display: flex;
  flex-wrap: wrap;
  row-gap: 54px;
  justify-content: space-between;
}

.destination_row {
  width: calc(16.66% - 16.6px); /* 6 properties per row with 20px gap */
}
.destination_title {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.03em;
  text-align: left;
  padding-bottom: 10px;
  text-transform: uppercase;
  color: #000000;
}

.destination_row ul li a {
  font-size: 12px;
  font-weight: 500;
  line-height: 26px;
  text-align: left;
  color: #5f5f5f;
}

.destination_row ul li a:hover {
  color: var(--secondary-color);
}

/****************************************** Footer Section */

#footer {
  background-color: var(--secondary-color);
  padding: 75px 0;
}

.footer_wrapper {
  display: flex;
  justify-content: space-between;
}

.footer_logo_area {
  width: 246px;
}

.footer_site_name {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.04em;
  text-align: left;
}

.footer_partner_logos {
  position: relative;
  margin-bottom: 60px;
}

.partner_logos {
  display: flex;
  gap: 29px;
  align-items: center;
}

.footer_partner_logos::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(88, 129, 186, 0.5) 0.61%,
    rgba(88, 129, 186, 0) 99.34%
  );
}

.footer_bottom_area {
  padding-bottom: 20px;
}

.footer_copyright_area {
  max-width: fit-content;
}

.footer_copyright_area p {
  font-size: 14px;
  font-weight: 600;
  line-height: 20.08px;
  color: #fff;
}

.footer_page_links {
  max-width: fit-content;
  margin-bottom: 15px;
}

.footer_page_links ul {
  display: flex;
  gap: 20px;
  color: #fff;
  line-height: normal;
}

.footer_page_links a {
  font-size: 14px;
  font-weight: 500;
}

.footer_bottom_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_dropdowns {
  display: flex;
  gap: 20px;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  min-width: 200px; /* Ensure select wrapper has a max-width */
}

.footer_dropdowns select {
  padding: 10px 15px;
  border-radius: 5px;
  border: 2px solid #fff;
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  font-family: var(--var-font-family);
  font-size: 14px;
  font-weight: 600;
  line-height: 19.2px;
  text-align: left;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  padding-right: 30px; /* Space for the arrow */
  cursor: pointer;
}

.custom-arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  content: "";
  font-size: 16px; /* Adjust size */
  color: white;
}

.footer_dropdowns select option {
  background-color: #fff;
  color: #000;
  text-transform: uppercase;
}

.footer_social_icons {
  display: flex;
  gap: 54px;
  align-items: center;
}

.footer_powered_by {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer_powered_by hr {
  height: 46px;
  width: 1px;
}
.footer_powered_by p {
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  text-align: left;
  color: #fff;
  width: 174px;
}

/* Responsive CSS */

@media (max-width: 1700px) {
  .footer_wrapper {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
}

@media (max-width: 1499px) {
  header .search_component {
    display: none;
  }
  .property_tiles .search_component {
    display: block;
  }
  .destinations_property {
    width: calc(25% - 15px); /* 4 properties per row with 20px gap */
  }
  #explore_tiles_content_title {
    padding-left: 0;
    max-width: 100%;
    text-align: center;
  }
  .explore_tiles_content_wrapper {
    padding-left: 0;
  }
  .explore_tiles_content {
    max-width: 1097px;
  }
  .property_types {
    column-gap: 20px;
    justify-content: center;
  }
  .property_types li {
    width: unset;
  }
}

@media (max-width: 1199px) {
  .destinations_property {
    width: calc(33.33% - 13.33px); /* 3 properties per row with 20px gap */
  }
  .best_destination_wrapper {
    gap: 20px;
    justify-content: flex-start;
  }
  .destination_row {
    width: calc(25% - 15px); /* 4 properties per row with 20px gap */
  }
  .partner_logos {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_bottom_content {
    flex-direction: column;
    gap: 40px;
  }
  .footer_copyright_area {
    text-align: center;
  }
  .footer_page_links {
    margin-right: auto;
    margin-left: auto;
  }

  .footer_copyright_area {
    margin: auto;
  }
}

@media (max-width: 992px) {
  .explore_tiles_content_wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .dd-menu,
  .nav-links li {
    margin: 20px 0;
  }
  .nav-links {
    padding-top: 65px;
  }
  .pc-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header_wrapper {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  header .logo-wrap img {
    width: 45px;
  }
  header .logo-wrap .site_name {
    font-size: 23.52px;
    line-height: 20px;
    letter-spacing: -0.04em;
  }
  .destinations_property {
    width: calc(50% - 10px); /* 2 properties per row with 20px gap */
  }
  .destination_row {
    width: calc(50% - 10px); /* 2 properties per row with 20px gap */
  }
  #tiles_bottom {
    margin: 30px auto 50px auto;
  }
}

@media (max-width: 575px) {
  #main_heading {
    font-size: 23px;
  }
  .footer_powered_by {
    gap: 20px;
  }
  .footer_powered_by img {
    width: 185px;
    height: auto;
  }
  .footer_powered_by p {
    font-size: 12px;
  }
  .select-wrapper {
    min-width: 150px;
  }
}

@media (max-width: 480px) {
  .destinations_property_title {
    font-size: 12px;
  }
  .footer_dropdowns {
    flex-direction: column;
  }
  .footer_page_links a {
    font-size: 12px;
  }
  .footer_powered_by hr {
    height: 35px;
  }
  .nav-links {
    width: 100%;
  }
}

/******************************************* Privacy & Terms Page */

body:has(.terms__page) header,
body:has(.privacy__page) header {
  color: black;
}

.post-wrap ul,
.post-wrap ol,
.presto-ul,
.presto-ol {
  text-align: left;
  padding-left: 40px;
}

.post-wrap ul li,
.presto-ul li {
  list-style: disc;
  margin: 5px 0;
}

.post-wrap ol li,
.presto-ol li {
  list-style: auto;
  margin: 5px 0;
}

.post-wrap {
  padding-bottom: 40px;
}

.post-wrap section {
  padding-top: 0;
  padding-bottom: 0;
}

.post-wrap section,
.post-wrap h1,
.post-wrap h2,
.post-wrap h3,
.post-wrap h4,
.post-wrap h5,
.post-wrap h6,
.post-wrap figure {
  margin-top: 30px;
  margin-bottom: 30px;
}

.post-wrap p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.125rem;
  line-height: 34px;
  font-weight: 400;
}

.terms-privacy-container {
  max-width: 1589px;
  padding: 0px 50px;
  margin: auto;
}
.rowFlex {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  min-height: auto;
  padding: 10px 0px;
}
.privacy__page ol li,
.privacy__page ul li {
  font-weight: 400;
}
#term-condition-s2 .content-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 10px 0px;
}
.privacy__page .content-title {
  font-size: 1.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0px;
}
.terms__page .content-title {
  margin: 10px 0px;
}
.privacy__page a,
#term-condition-s2 a {
  color: var(--secondary-color);
  text-decoration: underline;
}
.privacy__page .content-title .title-count {
  font-size: 1rem;
  display: flex;
  min-width: 35px;
  height: 35px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--default-color);
}
#terms-conndition-section-1 {
  height: 475px;
  background-color: var(--secondary-color);
}
#privacy-section-1 {
  height: 475px;
  background-color: var(--secondary-color);
}
#term-condition-s2 .container {
  padding: 0px;
}
#terms-conndition-container-1 {
  height: 100%;
  align-items: center;
  display: flex;
}
#privacy-container-1 {
  height: 100%;
  align-items: center;
  display: flex;
}
#terms-banner-img {
  margin-top: 30px;
  width: 100%;
}
#c1-flex-row {
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: space-between;
}
#p1-flex-row {
  width: 100%;
  align-items: center;
  flex-direction: row;
  display: flex;
  justify-content: space-between;
}
#c1-div-box {
  max-width: 644px;
}
#c1-div-box-div {
  column-gap: 8px;
  font-size: 14px;
  display: flex;
}
#breadcumb-link1 {
  color: var(--default-color);
  text-decoration-line: underline;
}
#bread-arrow {
  color: var(--default-color);
}
#breadcumb-link2 {
  color: var(--default-color);
  height: 24px;
}
#title-heading {
  color: var(--default-color);
  font-weight: 700;
  font-size: 3rem;
}
#title-sub {
  color: var(--default-color);
  font-family: Lato, sans-serif;
  font-size: 14px;
  display: inline;
}
#term-condition-s2 {
  min-height: 100px;
  padding: 50px 0px;
}
#footer-list {
  padding-left: 20px;
}
@media (max-width: 480px) {
  #terms-conndition-section-1 {
    padding-top: 80px;
    padding-right: 10px;
    padding-bottom: 80px;
  }
  #terms-conndition-container-1 {
    align-items: end;
  }
  #title-heading {
    line-height: 30px;
    padding-bottom: 20px;
    font-size: 30px;
  }
  #c1-flex-row {
    flex-direction: column;
  }
  #p1-flex-row {
    flex-direction: column;
  }
}