@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

:root {
  --primary-color: #013b95;
  --secondary-color: #013b95;
  --black: #000;
  --gray: #6d6d6d;
  --white: #fff;
  --var-font-family: "Lato", serif;
  --heading-font-family: "Playfair Display", serif;
  --header-background: transparent;
  --header-text-color: #fff;
  --header-scroll-background: #fff;
  --header-scroll-text-color: #000;
  --header-tb-spacing: 30px;
  --header-link-spacing: 5px;
  --header-link-tb-spacing: 15px;
  --header-line-height: 30px;
  --header-logo-height: 40px;
  --other-page-header-background: #286bb6;
  --other-page-text-color: #fff;
}

/************************** 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(--black);
  background-color: var(--white);
  -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;
}
.content-wrap .heading {
  font-size: 1.625rem;
  line-height: 32px;
  font-weight: 600;
  color: #1c302f;
}

body:has(.menu-cb:checked ~ .nav-links) {
  overflow: hidden;
}

/***************************** Common CSS */
.presto-container {
  max-width: 1585px;
  width: 100%;
  min-height: 200px;
  padding-left: 50px;
  padding-right: 50px;
  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;
}

.component_wrapper {
  min-height: 100px;
  height: 100%;
}

.component_wrapper .ins_text {
  font-style: italic;
  color: inherit;
  font-size: 1rem;
  text-align: center;
  margin: 50px 0;
}

.text-center {
  text-align: center;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.text-upper {
  text-transform: uppercase;
}
.mx-auto {
  margin: 0 auto;
}

.heading {
  font-family: var(--heading-font-family);
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  text-align: center;
}

.text-black {
  color: var(--black);
}

.text-white {
  color: var(--white);
}

.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;
}

.underline {
  width: 72px;
  height: 1px;
  background-color: var(--primary-color);
}

/*************************************** Header CSS */

header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: all 0.3s linear;
  z-index: 19;
  background: var(--header-background);
  color: var(--header-text-color);
}

header nav {
  transition: all 0.3s linear;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: calc(
    (var(--header-tb-spacing) * 2) + (var(--header-link-tb-spacing) * 2) +
      var(--header-logo-height)
  );
}

nav .logo-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
nav .logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 246px;
}
header.scrolling {
  background-color: var(--header-scroll-background);
  color: var(--header-scroll-text-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolling .site_name {
  color: var(--primary-color);
}

header.scrolling .menu-items .dropdown-label,
header.scrolling .menu-items a {
  color: var(--header-scroll-text-color);
}

header.scrolling .burger-btn span {
  background: var(--header-scroll-text-color);
}

.header-container {
  max-width: 1920px;
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}

.site_name {
  color: var(--white);
  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;
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  text-transform: uppercase;
  gap: 15px;
}

.menu-items .dropdown-label,
.menu-items a {
  padding-left: 0px;
  padding-right: 0px;
  font-size: 14px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: 0.02em;
  color: #fff;
}

.menu-items .dropdown-content {
  position: absolute;
}

.menu-items .dropdown-content a {
  color: #000;
}

.menu-items .dropdown-label::after {
  font-size: 17px;
}

/* 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: var(--header-text-color);
  height: 2px;
  width: 60px;
  position: absolute;
  transition: all 0.3s ease;
}

.dd-cb,
.menu-cb {
  display: none;
}

.nav-links {
  max-width: 420px;
  width: 100%;
  position: fixed;
  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:not(.dropdown-content li):not(.menu-responsive) {
  display: block;
  color: var(--header-text-color);
  margin: 28px 0;
  white-space: nowrap;
  position: relative;
  z-index: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s linear 0s;
}
.nav-links li a,
.dd-menu2 {
  display: block;
  cursor: pointer;
  padding: 10px 35px;
}
.dd-menu2 li a{
  color: #000;
}
.dd-menu,
.menu-items li a {
  line-height: var(--header-line-height);
  padding: var(--header-link-tb-spacing) var(--header-link-spacing);
}
.nav-links li a {
  display: block;
  cursor: pointer;
}

.dd-menu {
  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 label,
.dd-menu > ul {
  color: var(--header-text-color);
}
.dd-menu2 .dropdown-label,
.dd-menu .dropdown-label {
  cursor: pointer;
  width: 100%;
  display: block;
  position: relative;
  text-wrap: auto;
  width: 100%;
  display: block;
  padding-right: 20px;
}
.dd-menu2 .dropdown-content,
.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;
  cursor: pointer;
}

.dropdown-content li a {
  padding: 5px 10px;
}

.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);
}

.header-container {
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  margin-left: auto;
  margin-right: auto;
}
.logo-color {
  display: none;
}
.header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  padding-bottom: 22px;
  position: relative;
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.right-group {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
.menu-responsive {
  display: none;
}
[data-header="left"] .right-group {
  padding-left: 275px;
}

[data-header="sided"] nav {
  flex-direction: row-reverse;
}

[data-header="sided"] nav .logo-wrap {
  right: 70%;
  left: 10%;
}
[data-header="left"] nav .logo-wrap {
  right: 80%;
  left: 7%;
}
[data-header="sided"] .right-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
[data-header="centered"] .right-group {
  padding-top: 90px;
}
[data-header="left-centered"] nav {
  justify-content: center;
  padding: 0 200px;
}
[data-header="left-centered"] .logo-wrap {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/* left-centered-reverse data header for navbar */
[data-header="left-centered-reverse"] .burger-btn {
  top: 50%;
  right: 50px;
}

[data-header="left-centered-reverse"] nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

[data-header="left-centered-reverse"] .logo-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

[data-header="left-centered-reverse"] .menu-items {
  display: flex;
  gap: 30px;
}
[data-header="left-centered-reverse"] .menu-items .dropdown-content a,
[data-header="left-centered"] .menu-items .dropdown-content a,
[data-header="centered"] .menu-items .dropdown-content a {
  color: #000;
  display: block;
  width: 100%;
  word-wrap: break-word;
  word-break: break-word;
  white-space: nowrap;
  overflow-wrap: break-word;
}
/* centered data header for navbar */
[data-header="centered"] .header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px 50px;
}

[data-header="centered"] nav {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  width: 100%;
}

[data-header="centered"] .logo-wrap {
  display: flex;
  justify-content: center;
}

[data-header="centered"] .menu-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Common styles for all burger buttons */
[data-header="sided"] .burger-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: 20px;
  cursor: pointer;
}

[data-header="centered"] .burger-btn,
[data-header="left-centered"] .burger-btn,
[data-header="left"] .burger-btn,
[data-header="left-centered-reverse"] .burger-btn {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transform: translateY(-50%);
}

/* Layout-specific overrides */
[data-header="centered"] .burger-btn,
[data-header="left-centered"] .burger-btn {
  top: 50%;
  right: 50px;
}

[data-header="left-centered"] .burger-btn {
  right: 60px;
}

[data-header="left"] .burger-btn {
  top: 40%;
  right: 60px;
}

/****************************************** Hero Section */
.hero_section {
  height: calc(-82px + 100vh);
  position: relative;
  background-color: #5b5b5b;
}

.banner-img {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  z-index: -1;
  clip-path: inset(0);
  max-width: 1920px;
  margin: 0 auto;
  z-index: 0;
}

.home-banner {
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.slide-container {
  max-width: 100%;
  background-color: rgb(0, 0, 0);
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

.slide-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 280px;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  pointer-events: none;
  z-index: 1;
}

.slider-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 1;
}
.presto-slider {
  width: 100%;
  height: 100%;
}
.presto-slider-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.presto-slider .slider-items {
  display: flex;
  transition: transform 0.3s ease-in-out;
  height: 100%;
  width: 100%;
}
.presto-slider .slider-item {
  flex: 0 0 100%;
  width: 100% !important;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ececec;
  overflow: hidden;
}

.presto-slider .slider-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.presto-slider .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(177, 177, 177, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  transition: background 0.3s;
}
.presto-slider .nav-btn:hover {
  background: rgba(177, 177, 177, 0.8);
}

.presto-slider .nav-left {
  left: 0;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
}
.presto-slider .nav-right {
  right: 0;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
}
.hero_section .presto-slider .pagination-wrap,
.hero_section .presto-slider .pagination {
  bottom: 35px;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_content {
  position: absolute;
  bottom: 39px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  max-width: 1073px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}

.hero_heading {
  font-family: var(--heading-font-family);
  font-size: 50px;
  line-height: 50px;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 0 30px;
  color: var(--white);
  display: block;
  margin: 0 auto;
}

#hero_sub_heading {
  line-height: 1.8;
  color: var(--white);
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Animation settings with equal timing */
.slide-element-1 {
  animation: fade 56s linear infinite;
}
.slide-element-2 {
  animation: fade 56s linear infinite 7s;
}
.slide-element-3 {
  animation: fade 56s linear infinite 14s;
}
.slide-element-4 {
  animation: fade 56s linear infinite 21s;
}
.slide-element-5 {
  animation: fade 56s linear infinite 28s;
}
.slide-element-6 {
  animation: fade 56s linear infinite 35s;
}
.slide-element-7 {
  animation: fade 56s linear infinite 42s;
}
.slide-element-8 {
  animation: fade 56s linear infinite 49s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  4% {
    opacity: 1;
  }

  12% {
    opacity: 1;
  }

  16% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/****************************************** Partner Logos Section */

.partner_logos_wrapper {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgb(222, 222, 222);
}

.partner_logos {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 22px 0;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.partner_logos li:first-child {
  padding-left: 0px;
}

/****************************************** Recently Booked Properties Section */
.recently_booked_properties {
  padding: 40px 0 50px;
}

.recently_booked .pres__property-tiles .pres__price a,
.recently_booked .availability-button {
  font-size: 12px;
  font-weight: 600;
  line-height: 22.44px;
  text-align: center;
  text-transform: uppercase;
  max-width: unset;
  padding-top: 5px;
  padding-right: 20px;
  padding-bottom: 5px;
  padding-left: 20px;
  height: unset;
  width: unset;
}

.recently_booked_properties .pres__slide-arrow,
.recently_booked_properties .listing-price,
.recently_booked_properties .slide-arrow,
.recently_booked_properties .indicators.desktop-only,
.recently_booked_properties .tiles-icons,
.recently_booked_properties .new-listing-area,
.recently_booked_properties .property-price,
.recently_booked_properties .property-location,
.recently_booked_properties .property-review,
.recently_booked_properties .property-info,
.recently_booked_properties .pres__info,
.recently_booked_properties .pres__info ul,
.recently_booked_properties .pres__amenities ul {
  display: none !important;
}

.rbp_title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
}

/**************************************** About Section*/
.about_section {
  padding: 40px 0 100px 0;
}

.about_sub_heading {
  font-size: 1rem;
  font-weight: 300;
  line-height: 19.2px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: block;
  text-align: center;
}

.about_section .underline {
  height: 4px;
}

.about_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about_heading {
  font-family: var(--heading-font-family);
  color: rgb(0, 0, 0);
  font-size: 50px;
  line-height: 50px;
  height: auto;
  font-weight: 400;
  width: 100%;
  max-width: 100%;
  text-align: center;
  font-style: normal;
  margin: 0 auto;
}

.about_desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--gray);
}

/**************************************** Features Section*/
.features_section {
  background-color: rgb(241, 247, 249);
  padding: 120px 0;
}

.features_content {
  display: flex;
  column-gap: 60px;
  align-items: center;
  row-gap: 95px;
  text-align: left;
}

.features_images {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  width: 100%;
}

.features_image {
  flex: 1 1 calc(50% - 10px);
  min-width: calc(50% - 10px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.features_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car_dots {
  display: none;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}

.car_dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  padding: 0;
}

.car_dot.active {
  background: #666;
  transform: scale(1.2);
}

.features_desc {
  max-width: 730px;
  width: 100%;
}

.features_heading {
  font-family: var(--heading-font-family);
  font-size: 44px;
  font-weight: 400;
  line-height: 50px;
  text-align: left;
  color: var(--black);
  padding-bottom: 25px;
}

.features_info {
  font-size: 1rem;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.02em;
  text-align: left;
  color: var(--gray);
}

.features_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 0 0;
  gap: 35px;
  margin-bottom: 35px;
}

.features_list .list_item {
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.features_list .list_item p {
  max-width: 271px;
  color: rgb(94, 94, 94);
  font-weight: 700;
  font-size: 1rem;
  line-height: 20px;
  font-style: normal;
  width: 100%;
  text-align: start;
  margin: 0;
}

/**************************************** Tab Tiles Section*/

.tab_tiles_section {
  padding-top: 100px;
  padding-right: 0rem;
  padding-bottom: 100px;
  padding-left: 0rem;
}

.tab_heading {
  text-align: center;
  padding-top: 13px;
  padding-right: 0rem;
  padding-bottom: 30px;
  padding-left: 0rem;
  font-family: var(--heading-font-family);
  font-size: 44px;
  line-height: 45px;
  font-weight: 400;
}

.tab_sub_heading {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 400;
  line-height: 26px;
  width: 100%;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  text-align: center;
  max-width: 680px;
}

.link_btn {
  border-bottom-style: solid;
  border-bottom-color: var(--black);
  font-size: 12px;
  font-weight: 700;
  line-height: 22.44px;
  color: var(--black);
  float: right;
  text-transform: uppercase;
  margin: 20px 0;
}

/**************************************** Featured Stays Section*/

.featured_stays_section {
  background-color: rgb(241, 247, 249);
  padding-top: 115px;
  padding-right: 0rem;
  padding-bottom: 120px;
  padding-left: 0rem;
}
.featured_content {
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto 40px;
}
.featured_content .underline {
  height: 4px;
  margin: 0 auto;
}

.featured_stays_title {
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4em;
  text-align: center;
  text-transform: uppercase;
}
.featured_stays_heading {
  font-family: var(--heading-font-family);
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  text-align: center;
}

.featured_stays_sub_heading {
  padding: 0;
  color: rgb(109, 109, 109);
  font-size: 1rem;
  font-weight: 400;
  line-height: 26px;
  margin: 0 auto;
  width: 100%;
  max-width: 650px;
  text-align: center;
}

.featured_properties {
  display: flex;
  gap: 20px;
}
.fpi-1{
  background-image: url("https://cdn.123presto.com/prod/sites/templates/images/8/featured-0.webp")
}
.fpi-2 {
  background-image: url("https://cdn.123presto.com/prod/sites/templates/images/8/featured-3.webp");
}

.featured_property_image {
  height: 739px;
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; 
}

.featured_property_image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 0, 0, 0) 61.16%,
    rgba(1, 59, 149, 0.7) 100%
  );
  z-index: 1;
}

.featured_property_image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.featured_property_info {
  text-align: center;
  position: absolute;
  bottom: 40px;
  z-index: 1;
  width: 100%;
  flex-direction: column;
  row-gap: 10px;
  display: flex;
}

.featured_property_name {
  color: rgb(255, 255, 255);
  font-family: var(--heading-font-family);
  line-height: 40px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 36px;
  text-shadow: rgba(0, 0, 0, 0.3) 0px 8px 8px;
  padding: 0 20px;
}

.featured_property_price {
  color: rgb(255, 255, 255);
  line-height: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  text-shadow: rgba(0, 0, 0, 0.3) 0px 8px 8px;
}

.featured_property_link {
  color: #fff;
  padding: 13px 42px;
  margin: 0 auto;
  border-radius: 25px;
  text-transform: uppercase;
  background-color: var(--primary-color);
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
}

.featured_property_link:hover {
  background: linear-gradient(to right, #ff7518, #ffd700);
}

/**************************************** Quote Section*/
.quote_section {
  padding-top: 115px;
  padding-bottom: 115px;
}
.quote_content {
  max-width: 1070px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  text-align: center;
}
.quote_desc {
  font-family: var(--heading-font-family);
  font-size: 38px;
  font-style: italic;
  font-weight: 400;
  line-height: 60px;
  text-align: center;
  color: var(--black);
  margin-bottom: 40px;
}
.quote_name {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--gray);
}

/****************************************** Trending Stays Section */

.trending_stays_section {
  background-color: rgb(241, 247, 249);
  padding-top: 115px;
  padding-right: 0rem;
  padding-bottom: 120px;
  padding-left: 0rem;
}

.trending_stays_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto 40px;
  max-width: 1170px;
}

.trending_stays_content .underline {
  height: 4px;
  margin: 0 auto;
}

.trending_stays_title {
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4em;
  text-align: center;
  text-transform: uppercase;
}

.trending_stays_heading {
  font-family: var(--heading-font-family);
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  text-align: center;
  color: var(--black);
}

.trending_stays_sub_heading {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--gray);
}

.trending_stays_asset {
  display: flex;
  gap: 30px;
}

.trending_stays_map {
  overflow: hidden;
  border-radius: 10px;
  width: 50%;
  height: 840px;
}

.trending_stays_map > div {
  height: 100%;
}

.trending_stays_map iframe {
  height: 100%;
  width: 100%;
  max-width: 100%;
  display: block;
}

.trending_stays_tiles {
  width: 50%;
}

/****************************************** Accordion Section */

.accordion_section {
  padding-top: 114px;
  padding-bottom: 100px;
}

.accordion_top_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1011px;
  margin-bottom: 50px;
}

.accordion_top_content .underline {
  height: 4px;
}

.accordion_section_title {
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.4em;
  text-align: left;
  text-transform: uppercase;
}

.accordion_heading {
  font-family: var(--heading-font-family);
  font-size: 50px;
  font-weight: 400;
  line-height: 50px;
  text-align: left;
  margin-bottom: 20px;
}

.accordion_sub_heading {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.02em;
  text-align: left;
  color: var(--gray);
}

.accordion_wrap {
  display: flex;
  gap: 6px;
  text-align: left;
}

.accordion {
  display: flex;
  column-gap: 45px;
  justify-content: space-between;
}

.faq-container{
  width: 50%;
}

.faq-item{
  padding: 22px 0;
}

.faq-item:not(:last-child) {
  border-bottom: 1px solid #dcdcdc;
}

.faq-item .question {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  cursor: pointer;
}

.faq-item .answer{
  display: block;
  color: var(--text-secondary-color);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.14px;
  max-height: fit-content;
  transition: max-height 0.3s ease;
  padding: 15px 0;
}

.faq-item:not(.active) .answer {
  display: none; 
}


.qn-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-icon {
  margin-right: 5px;
  font-weight: 400;
  cursor: pointer;
}

.toggle-icon:before {
  content: "+";
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.active .toggle-icon:before {
  content: "-";
  font-size: 1.25rem;
}

/****************************************** Footer Section */
.footer {
  position: relative;
  padding: 90px 0;
  height: 100%;
  background-color: rgb(14, 34, 45);
}

.footer_top_links {
  border-bottom: 1px solid rgb(42, 52, 74);
  padding: 0 0 40px 0;
  margin: 0 0 40px 0;
  display: flex;
  column-gap: 25px;
  text-transform: uppercase;
  flex-wrap: wrap;
  row-gap: 5px;
}

.footer_top_links a {
  color: rgb(161, 191, 204);
  font-size: 1rem;
  line-height: 26px;
  transition: all 0.3s ease 0s;
}

.footer_top_links a:hover {
  color: var(--white);
}

.footer_content_wrapper {
  text-align: left;
  display: block;
  position: relative;
  z-index: 2;
}

.logo_part {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 246px;
}

.logo_part .site_name {
  font-family: var(--var-font-family);
  font-size: 2rem;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.04em;
  text-align: left;
}

.footer_middle_links {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #2a344abf;
}

.footer_middle_links .item {
  display: flex;
  flex-direction: column;
}

.footer_middle_links .item label {
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  color: #a1bdcc;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer_middle_links .item a {
  font-size: 14px;
  font-weight: 400;
  line-height: 34px;
  text-align: left;
  color: #a1bdcc;
  transition: all 0.3s ease 0s;
}

.footer_middle_links .item a:hover {
  color: var(--white);
}

.footer_bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer_bottom .footer_info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer_bottom .social_icons {
  padding-bottom: 10px;
  display: flex;
  gap: 30px;
  align-items: center;
}

.footer_bottom .powered_by {
  display: flex;
  align-items: center;
  gap: 20px;
}

.powered_by p {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 20.078px;
  color: #a1bdcc;
}

.powered_by hr {
  border-color: rgb(161, 191, 204);
  border-left-width: 1px;
  height: 45px;
}

.footer_bottom .copyright p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20.08px;
  text-align: left;
  color: #a1bdcc;
}

.footer_bottom_links {
  display: flex;
  gap: 30px;
}

.footer_bottom_links a {
  color: rgb(161, 191, 204);
  font-size: 1rem;
  line-height: 16px;
}

.footer_bottom_links hr {
  border-color: rgb(161, 191, 204);
}

/* Responsive CSS */

@media (max-width: 1700px) {
  .partner_logos li img {
    width: 100px;
    object-fit: contain;
  }
}

@media (max-width: 1499px) {
  .partner_logos li img {
    width: 85px;
  }
  .presto-container,
  .header-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 1199px) {
  .menu-items,
  [data-header="left-centered-reverse"] .menu-items,
  [data-header="centered"] .menu-items {
    display: none;
  }
  [data-header="sided"] nav {
    flex-direction: row;
  }
  [data-header="centered"] .burger-btn {
    top: 30%;
  }
  .menu-responsive {
    display: block;
    color: #fff;
    margin: 28px 0;
    white-space: nowrap;
    position: relative;
    z-index: 0;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s linear 0s;
  }
  .partner_logos {
    gap: 0;
  }
  .partner_logos li {
    width: 20%;
    display: flex;
    justify-content: center;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
  }
  .features_content {
    flex-direction: column;
    gap: 30px;
  }
  .features_desc {
    max-width: 100%;
  }
  .footer_middle_links .item a {
    font-size: 12px;
    font-weight: 600;
  }
}

@media (max-width: 992px) {
  header {
    color: var(--header-scroll-background);
    min-height: calc(
      (var(--header-tb-spacing) * 2) + (var(--header-link-tb-spacing) * 2) +
        var(--header-logo-height)
    );
    display: flex;
  }
  [data-header="sided"] nav .logo-wrap {
    left: 15%;
  }
  
  .hero_heading {
    font-size: 45px;
  }
  .trending_stays_asset,
  .featured_properties {
    flex-direction: column;
  }
  .featured_property_image {
    height: 560px;
  }
  .featured_property_image img {
    height: inherit;
  }
}

@media (max-width: 768px) {
  [data-header="sided"] nav .logo-wrap {
    left: 5%;
  }
  [data-header="centered"] .burger-btn,
  [data-header="left-centered"] .burger-btn {
    right: 15px;
  }
  .nav-links {
    padding-top: 65px;
  }
  .pc-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .presto-container,
  .header-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header_wrapper {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  nav .logo-wrap {
    left: unset;
    transform: unset;
  }
  .partner_logos li {
    width: 33%;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
  }
  .partner_logos {
    justify-content: unset;
  }
  .features_images {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    scroll-snap-type: x mandatory;
    gap: 0;
    touch-action: pan-x pinch-zoom;
    -webkit-overflow-scrolling: touch;
  }
  .features_image {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: center;
    transform: translateX(0);
    transition: transform 0.3s ease;
  }
  .car_dots {
    display: flex;
  }
  .accordion {
    flex-direction: column;
  }
  .footer_bottom {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .footer_bottom .footer_info {
    align-items: center;
  }
}

@media (max-width: 575px) {
  header nav {
    min-height: 110px;
  }
  .logo-wrap img {
    width: 50px;
    height: auto;
  }
  .site_name {
    font-size: 30px;
    line-height: 26px;
    width: min-content;
  }
  .pc-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .presto-container,
  .header-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .accordion_section,
  .quote_section,
  .features_section {
    padding: 60px 0;
  }

  .trending_stays_section,
  .featured_stays_section,
  .tab_tiles_section {
    padding-top: 60px;
  }

  .about_section {
    padding-bottom: 60px;
  }

  .hero_heading,
  .accordion_heading,
  .trending_stays_heading,
  .featured_stays_heading,
  .tab_heading,
  .features_heading,
  .about_heading {
    font-size: 34px;
    line-height: 40px;
  }
  .tab_heading {
    padding-top: 0;
  }

  .features_content {
    gap: 20px;
  }
  .quote_desc {
    font-size: 26px;
    line-height: 42px;
  }
  .footer_top_links {
    justify-content: center;
  }
  .footer_middle_links {
    flex-direction: column;
    gap: 20px;
  }
  .footer_middle_links .item {
    align-items: center;
  }
  .powered_by img {
    width: 160px;
  }
}

@media (max-width: 480px) {
  [data-header="left-centered-reverse"] .burger-btn {
    right: 25px;
  }
  [data-header="left-centered-reverse"] .logo-wrap {
    position: absolute;
    left: 20%;
    transform: translateX(-50%);
  }
  [data-header="sided"] nav .logo-wrap {
    left: 5%;
  }
  [data-header="centered"] .logo-wrap {
    left: -5%;
  }
  [data-header="centered"] .burger-btn
  {
    right: -5px;
  }
  [data-header="left-centered"] .burger-btn {
    right: 60px;
  } 
  nav .logo-wrap {
    gap: 10px;
  }
  .features_list {
    margin-bottom: 20px;
  }
  .footer {
    padding: 60px 0;
  }
  .footer_bottom .powered_by {
    gap: 15px;
  }
  .footer_top_links {
    flex-direction: column;
    align-items: center;
  }
  .footer_bottom_links {
    gap: 10px;
  }
}

@media (max-width: 375px) {
  [data-header="left-centered"] .burger-btn {
    right: 100px;
  } 
  [data-header="left-centered-reverse"] .logo-wrap {
    left: 25%;
  }
}

/****************************************** Other Pages Styles */

body:not(.home) header {
  background-color: var(--other-page-header-background);
  color: var(--other-page-text-color);
  position: sticky;
}

body:not(.home) header nav {
  min-height: 90px;
}

body:not(.home) header.scrolling .site_name {
  color: #fff;
}

body:not(.home) header.scrolling .menu-items .dropdown-label,
body:not(.home) header.scrolling .menu-items a {
  color: #fff;
}

body:not(.home) header.scrolling .menu-items .dropdown-content a {
  color: #000;
}

body:not(.home) header.scrolling .burger-btn span {
  background-color: #fff;
}

body:not(.home) .burger-btn span {
  background: var(--other-page-text-color);
}

/******************************************* Blog Page */

.blog_banner {
  background-image: url("https://cdn.123presto.com/prod/sites/lesterresbasses/images/banner-1.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: 100%;
  background-position-y: 100%;
  height: 475px;
  background-color: rgb(14, 34, 45);
}

.blog_banner .presto-container {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 40px;
}

.blog_banner .banner_content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 755px;
  width: 100%;
}

.blog_banner .banner_content .banner_title,
.blog_banner .banner_content .banner_desc {
  color: #fff;
}

.blog_banner .banner_content .blog_breadcrumbs {
  display: flex;
  gap: 8px;
}

.blog_banner .banner_content .blog_breadcrumbs > * {
  color: #fff;
}

.blog_about .top_part {
  max-width: 1230px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 45px 0;
}

.blog_about .top_part span {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 4px;
  text-transform: uppercase;
  max-width: 570px;
  margin: 0 auto;
}

.blog_about .top_part h2 {
  color: #000;
  font-size: 60px;
  font-weight: 500;
  line-height: 75px;
  letter-spacing: 28px;
  text-transform: uppercase;
  text-align: center;
}

.blog_about .top_part p {
  color: #8e8e8e;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.18px;
  font-style: normal;
}

.blog_posts_wrapper {
  padding-bottom: 45px;
}

.blog_posts_wrapper .post_wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.post_wrapper .blog_post_card {
  width: calc(25% - 12px);
  position: relative;
  height: 400px;
}

.post_wrapper .blog_post_card:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
  height: 50%;
}

.post_wrapper .blog_post_card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

.blog_post_card .blog_post_content {
  z-index: 2;
  position: absolute;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 15px;
}

.blog_post_card .blog_post_content .post_category {
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.12px;
  text-transform: uppercase;
  background-color: #fff;
  padding: 0 10px;
  border-radius: 25px;
  margin-bottom: 6px;
}

.blog_post_card .blog_post_content .post_title {
  color: #fff;
  font-weight: 600;
  line-height: 24px;
  font-size: 20px;
  margin-bottom: 6px;
}

.blog_post_card .blog_post_content .post_date {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.12px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.blog_post_card .blog_post_content .read_more {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.12px;
  transition: all 0.3s ease-in-out;
}

.post_wrapper .blog_post_card:hover .read_more {
  text-decoration: underline;
}

@media only screen and (max-width: 1440px) {
  .post_wrapper .blog_post_card {
    width: calc(33.333% - 11.35px);
  }
}

@media only screen and (max-width: 992px) {
  .blog_posts_wrapper .post_wrapper {
    gap: 15px;
  }

  .post_wrapper .blog_post_card {
    width: calc(50% - 7.5px);
  }

  .blog_post_card .blog_post_content .post_title {
    font-size: 14px;
    line-height: 18.2px;
  }
}

/******************************************* About Page CSS */

.about__hero .banner-img {
  padding: 130px 0;
}

.about__content__wrapper {
  padding-top: 120px;
  padding-bottom: 45px;
}

.about-template-wrapper .wrapper {
  display: flex;
  gap: 40px;
}

.about__page .content-container {
  width: calc(100% - 20px);
  margin: 0 auto;
}

.about__page .about_image_wrapper {
  display: flex;
  gap: 8px;
}

.about__page img {
  width: 100%;
  object-fit: cover;
}

.about__main__title {
  font-size: 1.75rem;
  color: black;
  font-weight: 600;
  padding-bottom: 20px;
}

.about_layout_two .about__main__title {
  text-align: center;
  color: black;
}

.about_layout_two {
  background: white;
}

.about_layout_two .about__paragraph {
  max-width: 390px;
  width: 100%;
  color: black;
  font-weight: normal;
}

.about__subtitle {
  font-size: 1.125rem;
  color: #4d4d4d;
  font-weight: 500;
  line-height: 1.3;
}

.about__page .about__image {
  padding: 25px 0;
}

.about__page .about__image__banner {
  background-image: url("https://cdn.123presto.com/prod/sites/pages/images/31/a8a3b85f27d743009e7fcd8ab86e2993.webp");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0;
  color: white;
  margin: 30px 0;
  position: relative;
  height: 35vh;
}

.about__page .about__image__banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  z-index: 0;
}

.about__image__banner .banner__content {
  position: relative;
  z-index: 1;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.about__image__banner h3 {
  color: white;
}

.about__image__banner p {
  color: white;
  font-size: 0.875rem;
  font-weight: normal;
}

.about__wrapper {
  display: flex;
  gap: 10px;
}

.about__title {
  font-size: 1.25rem;
  color: black;
  font-weight: 600;
  padding-bottom: 20px;
}

.about_layout_two .about__title {
  color: black;
  font-size: 1.5rem;
}

.about__paragraph {
  font-size: 1rem;
  color: #4d4d4d;
  font-weight: 500;
  line-height: 1.3;
  flex-grow: 1;
}

/******************************************* Contact Page */

.contact__content__wrapper {
  padding-top: 120px;
  padding-bottom: 45px;
}

.contact-template-wrapper .wrapper {
  display: flex;
  gap: 40px;
}

.contact__hero .banner-img {
  padding: 130px 0;
}

.contact__page .content-container {
  width: calc(100% - 20px);
  margin: 0 auto;
}

.contact__page img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}

.contact__page .contact__main__title {
  font-size: 1.75rem;
  color: black;
  font-weight: 600;
  padding: 20px 0;
  text-align: center;
}

.contact__page .contact__subtitle {
  font-size: 1.125rem;
  color: #4d4d4d;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  padding-bottom: 30px;
}

.contact__page .contact__details label {
  font-weight: 600;
  font-size: 1.25rem;
}

.contact__page .contact__details .box {
  padding: 10px 0;
  text-align: center;
}

.contact__layout__two .contact__wrapper {
  display: flex;
  gap: 25px;
  align-items: center;
}

.contact__layout__two .contact__image {
  width: 50%;
}

.map__wrapper {
  padding-top: 35px;
}

.map__wrapper iframe {
  width: 100%;
}

/******************************************* Error Page */
body:has(.privacy__page) header,
body:has(.error__page) header {
  color: black;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.error-template-wrapper .wrapper {
  display: flex;
  gap: 40px;
}

.error__page .btn-primary {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 18px;
  padding: 8px 14px;
  background-color: #2ad8a7;
  border-radius: 8px;
  height: 34px;
}

.error__page .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  font-family: inherit;
}

.error__page .error__wrapper h1 {
  font-size: 3.375rem;
  font-weight: 900;
  line-height: 60px;
  text-align: center;
  color: black;
  padding-top: 40px;
  padding-bottom: 20px;
}

.error__page .error__wrapper h1 span {
  color: #24c295;
}

.error__page .server-error .error__wrapper h1 span {
  color: #f79009;
}

.error__page .error__wrapper h3 {
  color: #344054;
  font-size: 1rem;
  line-height: 24px;
  font-family: inherit;
  padding-bottom: 30px;
}

.error__page .error__wrapper .btn-primary {
  color: white;
}

.error__page .server-error .error__wrapper .btn-primary {
  background-color: #f79009;
}

@media screen and (max-width: 767px) {
  .error__page .error__wrapper img {
    width: 100%;
  }

  .error__page .error__wrapper h1 {
    font-size: 2.625rem;
    line-height: 50px;
  }
}

/******************************************* 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(--white);
}
#terms-conndition-section-1 {
  height: 475px;
  background-color: rgb(14, 34, 45);
}
#privacy-section-1 {
  height: 475px;
  background-color: rgb(14, 34, 45);
}
#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(--white);
  text-decoration-line: underline;
}
#bread-arrow {
  color: var(--white);
}
#breadcumb-link2 {
  color: var(--white);
  height: 24px;
}
#title-heading {
  color: var(--white);
  font-weight: 700;
  font-size: 3rem;
}
#title-sub {
  color: var(--white);
  font-family: Lato, sans-serif;
  font-size: 14px;
  display: inline;
}
#term-condition-s2 {
  min-height: 100px;
  padding: 50px 0px;
}
#footer-list {
  padding-left: 20px;
}
#powered_site{
  display: block;
}

@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;
  }
}