@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&display=swap");

:root {
  --theme-color: #d2a041;

  --text-primary-color: #0d4760;
  --text-secondary-color: #6d6d6d;

  --color-white: #ffffff;
  --color-black: #000000;

  --bg-gray: #eff1f6;
  --bg-blue: #87afbc;

  --font-mulish: "Mulish", sans-serif;
}

:root {
  --header-bg: transparent;
  --header-color: #fff;
  --header-sticky-bg: #fff;
  --header-sticky-color: #000;
  --header-tb-spacing: 10px;
  --header-link-spacing: 15px;
  --header-link-tb-spacing: 15px;
  --header-line-height: 30px;
  --header-logo-height: 40px;
}

/************************** CSS Resets */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-size: 100%;
  font-family: sans-serif;
}

img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body,
html {
  width: 100%;
  line-height: 1.5;
  scroll-behavior: smooth;
}

button,
input,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
}

img {
  object-fit: cover;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  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;
}
.container {
  max-width: 1920px;
  width: 100%;
  padding-left: 80px;
  padding-right: 80px;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin: 0 auto;
}

.link-btn {
  color: var(--color-white);
  background-color: var(--theme-color);
  padding: 8px 20px;
  text-align: center;
  text-decoration-line: none;
  text-decoration-thickness: initial;
  text-decoration-style: initial;
  text-decoration-color: initial;
  display: inline-block;
  border-radius: 25px;
  border: 1px solid #fff;
  transition: all 0.5s;
  cursor: pointer;
}

.text-link {
  color: var(--text-secondary-color);
  text-align: center;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.content-wrap {
  text-align: center;
}

.content-wrap .card-wrapper {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.content-wrap .card-wrapper .card {
  width: calc(25% - 11.5px);
  transition: all 0.3s;
  border-radius: 8px;
}

.content-wrap .card-wrapper .card:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.content-wrap .card-wrapper .card img {
  border-radius: 8px 8px 0 0;
  width: 100%;
}

.card .card-content {
  background-color: var(--color-white);
  padding: 26px 34px 38px;
  border-radius: 0 0 8px 8px;
}
.card-content .title {
  color: var(--text-primary-color);
  text-align: center;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-content p {
  color: var(--text-secondary-color);
  text-align: center;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.14px;
  margin-bottom: 20px;
}

.card .link-btn {
  background-color: var(--theme-color);
  color: #fff;
  display: block;
  border-radius: inherit;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0 0 10px 10px;
}

.content-wrap .heading {
  font-size: 1.625rem;
  line-height: 32px;
  font-weight: 600;
  color: #1c302f;
}

.content-wrap .sub-heading {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
  margin-top: 30px;
  font-weight: 500;
}

.content-wrap .list-group {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-bottom: 35px;
}

.content-wrap .list-group .list-item {
  display: flex;
  gap: 30px;
  align-items: center;
}

.content-wrap .list-group .list-item p {
  color: #000;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 456px;
  width: 100%;
  text-align: start;
}

[data-sticky] {
  position: sticky;
  top: 0;
}

.scrolling[data-sticky] {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.scrolling {
  background: var(--header-sticky-bg);
  color: var(--header-sticky-color);
}

/*************************************** Header CSS */
header {
  position: relative;
  z-index: 3;
  color: var(--header-color);
  transition: all 0.15s;
  background: var(--header-bg);
}

header .header-wrapper {
  max-width: 1240px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}

header a {
  color: inherit;
}

[data-header="left"] nav {
  justify-content: start;
}

[data-header="left-centered"] nav {
  justify-content: center;
  padding: 0 200px;
}

[data-header="left-centered"] .logo-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

[data-header="left-centered-reverse"] nav {
  padding: 0 400px;
  justify-content: center;
}

[data-header="left-centered-reverse"] ul {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 400px;
}

[data-header="centered"] nav {
  flex-direction: column;
  gap: 0;
  justify-content: center;
}

[data-header="centered"] ~ main .banner-img {
  top: calc(
    -1 * ((var(--header-tb-spacing) * 4) + (var(--header-link-tb-spacing) * 4) +
          var(--header-logo-height))
  );
}

.banner_w3lspvt {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0;
}

.w3layouts-banner-info {
  padding: 200px 0;
}

header nav {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  position: relative;
  min-height: calc(
    (var(--header-tb-spacing) * 2) + (var(--header-link-tb-spacing) * 2) +
      var(--header-logo-height)
  );
}

nav > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: end;
  column-gap: 10px;
}

.dd-menu,
nav li a {
  display: inline-block;
  line-height: var(--header-line-height);
  padding: var(--header-link-tb-spacing) var(--header-link-spacing);
}

nav li a:hover {
  cursor: pointer;
}

.dd-menu label {
  margin-bottom: 0;
  cursor: pointer;
}

.dd-menu .dd-cb {
  width: 100%;
  display: none;
}

nav .logo-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
}

nav .logo-wrap img {
  height: var(--header-logo-height);
  width: auto;
}

.burger-btn {
  position: relative;
  width: 24px;
  height: 18px;
  cursor: pointer;
  display: none;
}

.burger-btn span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: var(--header-color);
  transform-origin: center center;
  border-radius: 100px;
  transition: all 0.2s;
}

.scrolling .burger-btn span {
  background: var(--header-sticky-color);
}

.burger-btn span:nth-child(1) {
  top: 0;
}

.burger-btn span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}

.burger-btn span:nth-child(3) {
  bottom: 0;
}

header input[type="checkbox"] {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -10px;
  height: 20px;
  width: 30px;
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  display: none;
}

header input[type="checkbox"]:checked ~ .burger-btn span:nth-child(2) {
  display: none;
}

header input[type="checkbox"]:checked ~ .burger-btn span:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(42deg);
}

header input[type="checkbox"]:checked ~ .burger-btn span:nth-child(3) {
  top: 50%;
  margin-top: -1px;
  transform: rotate(-42deg);
}

.bg-overlay,
.banner-img {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  right: 0;
  z-index: -1;
  clip-path: inset(0);
}

.banner_w3lspvt .banner-img {
  top: calc(
    -1 * ((var(--header-tb-spacing) * 2) + (var(--header-link-tb-spacing) * 2) +
          var(--header-logo-height))
  );
}

.bg-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.banner-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -2;
}

.fixed-bg img {
  height: 100vh;
  position: fixed;
}

.pos-rel {
  position: relative;
}

.dd-menu {
  position: relative;
  cursor: pointer;
}

.dd-menu > ul {
  position: absolute;
  top: 100%;
  background: var(--header-sticky-bg);
  color: var(--header-sticky-color);
  left: 0;
  border-radius: 5px;
  min-width: 100px;
  padding: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.2s;
  cursor: auto;
  display: none;
  display: none;
}

.dd-menu:hover > ul {
  opacity: 1;
  display: block;
  max-height: 1000px;
}

.dd-menu li a {
  display: block;
  padding: 6px 15px;
  white-space: nowrap;
  position: relative;
  z-index: 0;
  background-color: var(--header-bg);
}

.dd-menu li a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dd-menu li a:hover:after {
  opacity: 1;
}

.menu-cb,
.dd-cb {
  display: none;
}

@media (max-width: 992px) {
  header {
    background-color: var(--header-sticky-bg);
    min-height: calc(
      (var(--header-tb-spacing) * 2) + (var(--header-link-tb-spacing) * 2) +
        var(--header-logo-height)
    );
    display: flex;
  }

  header .burger-btn span {
    background: var(--header-sticky-color);
  }

  header a {
    color: var(--header-sticky-color);
  }

  header nav {
    min-height: inherit;
    height: 100%;
  }

  header nav label.burger-btn {
    margin-bottom: 0;
  }

  [data-header="centered"] nav {
    flex-direction: row;
    justify-content: space-between;
  }

  [data-header="left"] nav {
    justify-content: space-between;
  }

  [data-header="left-centered"] .logo-wrap {
    position: relative;
    transform: none;
    top: 0;
  }

  [data-header="left-centered"] nav {
    padding: 0;
    justify-content: space-between;
  }

  [data-header="left-centered-reverse"] nav {
    padding: 0;
  }

  [data-header="left-centered-reverse"] .burger-btn {
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -9px;
  }

  [data-header="left-centered-reverse"] ul {
    right: auto;
    top: 100%;
    bottom: auto;
  }

  [data-header="left-centered-reverse"] input[type="checkbox"] {
    left: 0;
  }

  .burger-btn {
    display: block;
  }

  header input[type="checkbox"]:checked ~ ul {
    display: block;
    width: auto;
    max-width: 100%;
    opacity: 1;
    top: 100%;
    overflow: auto;
  }

  header nav li a {
    display: block;
    padding: 4px 15px;
  }

  nav > ul {
    background: var(--header-sticky-bg);
    transition: right 0.5s ease-in-out;
    position: fixed;
    max-width: 250px;
    width: 100%;
    top: calc(
      (var(--header-tb-spacing) * 2) + (var(--header-link-tb-spacing) * 2) +
        var(--header-logo-height)
    );
    left: auto;
    bottom: 0;
    right: -200%;
    padding: 15px 0 2rem;
    z-index: 100;
    display: block;
  }

  .menu-cb:checked ~ .nav-links {
    display: block;
    right: 0;
    top: calc(
      (var(--header-tb-spacing) * 2) + (var(--header-link-tb-spacing) * 2) +
        var(--header-logo-height)
    );
    max-width: 250px;
    width: 100%;
    padding: 15px 0 2rem;
    transition: all 0.5s;
  }

  .dd-menu {
    width: 100%;
    padding: 0;
  }

  .dd-menu > ul {
    display: none;
    position: static;
    opacity: 1;
    max-height: 1000px;
    padding-bottom: 0;
  }

  .dd-menu:hover > ul {
    display: none;
  }

  .dd-menu label {
    display: block;
    cursor: pointer;
    color: var(--header-sticky-color);
    padding: 4px 15px;
  }

  .dd-menu .dropdown-content {
    padding: 0 10px;
  }

  .dropdown-label {
    width: 100%;
    padding: 0 15px;
  }

  .dropdown-label::after {
    content: "+";
    font-size: 1.375rem;
    transition: transform 0.3s ease;
    position: absolute;
    right: 15px;
  }

  .dd-cb:checked + .dropdown-label::after {
    content: "-";
    transform: rotate(180deg);
  }

  .dd-cb:checked ~ .dd-menu ul {
    display: block;
  }
}

/****************************************** Hero Section */
.hero-section .title {
  color: var(--color-white);
  text-align: center;
  text-shadow: 0px 4px 30px rgba(0, 0, 0, 0.8);
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 55px;
  max-width: 694px;
  width: 100%;
  margin: 0 auto;
}

/****************************************** About Section */
.about-section {
  padding: 150px 0 120px;
}

.about-section .content-wrap .top-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-section .content-wrap .heading {
  color: var(--text-primary-color);
  text-align: center;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  max-width: 943px;
  width: 100%;
  margin: 0 auto;
}

.about-section .content-wrap .sub-heading {
  color: var(--text-secondary-color);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0.18px;
  max-width: 1025px;
  width: 100%;
  margin-bottom: 25px;
}

/****************************************** Property Section */

.country-section {
  padding: 100px 0;
  background-color: var(--bg-gray);
}

.country-section .content-wrap .heading {
  color: var(--text-primary-color);
  text-align: center;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  text-transform: uppercase;
}

/****************************************** How it works Section */

.how-works-section {
  background-color: var(--color-white);
  padding: 120px 0;
}

.how-works-section .content-wrap .heading {
  color: var(--text-primary-color);
  text-align: center;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.how-works-section .content-wrap .steps-wrapper {
  display: flex;
  gap: 38px;
  padding-bottom: 25px;
}

.how-works-section .content-wrap .how-works-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: 452px;
  width: 100%;
}

.how-works-section .content-wrap .how-works-steps:not(:last-child) {
  border-right: 1px solid #e8e8e8;
  padding-right: 38px;
}

.how-works-section .how-works-steps img {
  margin-bottom: 24px;
}

.how-works-section .how-works-steps h4 {
  color: var(--text-primary-color);
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.how-works-section .how-works-steps p {
  color: var(--text-secondary-color);
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
}

/****************************************** Destination Section */

.destination-section {
  background-color: var(--bg-blue);
  padding: 120px 0;
}

.destination-section .content-wrap .sub-heading {
  color: var(--color-white);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 9.6px;
  text-transform: uppercase;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  max-width: fit-content;
  align-items: center;
  width: 100%;
  margin-bottom: 30px;
}

.destination-section .content-wrap .heading {
  color: var(--color-white);
  text-align: center;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  max-width: 943px;
  width: 100%;
  margin: 0 auto;
}

.destination-section .text-link:not(.card-content .text-link) {
  color: var(--color-white);
}

/****************************************** Features Section */

.features-section .content-wrap {
  display: flex;
  padding: 100px 0;
  gap: 50px;
  align-items: center;
  text-align: left;
}

.features-section .content-wrap .heading {
  margin-bottom: 30px;
  text-align: left;
  color: var(--text-primary-color);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  text-transform: uppercase;
}

.features-section .img-wrap {
  display: flex;
  flex: auto;
}

/****************************************** Blog section */

.blog-section {
  background: linear-gradient(180deg, var(--bg-blue) 50%, #ffffff 50%);
  padding: 110px 0;
}

.blog-section .heading {
  color: var(--color-white);
  text-align: center;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.blog-section .card-wrapper .card {
  border-radius: 8px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.blog-section .card-wrapper .sp-card {
  background-color: #4e7e8d;
  color: var(--color-white);
  padding: 60px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.sp-card .title {
  color: var(--color-white);
  font-size: 5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100px;
  letter-spacing: -4.8px;
  text-align: left;
}

.sp-card p {
  color: var(--color-white);
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  font-size: 1.375rem;
  font-style: normal;
  font-weight: 600;
  line-height: 37px;
  text-align: left;
  margin-bottom: 20px;
}

.sp-card .text-link {
  color: var(--color-white);
}

/****************************************** Accordion section */
.accordion-section {
  padding-bottom: 120px;
}
.accordion-section .content-wrap {
  text-align: left;
}

.accordion-section .accordion-wrap {
  display: flex;
  gap: 6px;
}

.accordion-section .content-wrap .sub-heading {
  color: var(--text-primary-color);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  letter-spacing: 9.6px;
  text-transform: uppercase;
  border-top: 1px solid var(--text-primary-color);
  border-bottom: 1px solid var(--text-primary-color);
  max-width: 515px;
  width: 100%;
  margin-bottom: 30px;
}

.accordion-section .content-wrap .heading {
  color: var(--text-primary-color);
  text-align: center;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 41px;
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.accordion {
  flex: 1;
  background-color: #dfeaee;
  padding: 76px 80px;
}

.accordion-item:not(:last-child) {
  border-bottom: 1px solid #dcdcdc;
}

.accordion-item {
  padding: 22px 0;
}

.accordion-item:has(input[type="checkbox"]:checked) {
  padding-bottom: 0;
}

.accordion-section input[type="checkbox"] {
  display: none;
}

.accordion-title {
  color: var(--text-primary-color);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.36px;
  cursor: pointer;
}

.accordion-title:after {
  content: "\002B";
  float: right;
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.accordion-section input[type="checkbox"]:checked + label:after {
  content: "\2212";
}

.accordion-content {
  border-radius: 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-secondary-color);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.14px;
}

.accordion-section input[type="checkbox"]:checked ~ .accordion-content {
  max-height: fit-content;
  padding: 15px 0;
}

.accordion-content p {
  color: var(--text-secondary-color);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.14px;
}

.accordion-image {
  flex: 1;
}

.accordion-image img {
  width: 100%;
}

/****************************************** Footer */

.footer {
  position: relative;
  padding: 90px 0;
  height: 1105px;
  background-color: var(--text-primary-color);
}

.footer .footer-bg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.footer .content-wrap {
  text-align: left;
  display: flex;
  gap: 90px;
  position: relative;
  flex-wrap: wrap;
  z-index: 2;
}

.footer .content-wrap .heading {
  color: var(--color-white);
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.18px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 25px;
  margin-bottom: 20px;
}

.footer .content-wrap .list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.footer .content-wrap .list .item {
  display: flex;
  flex-direction: column;
}

.footer .content-wrap .list .item a {
  color: var(--color-white);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
}

.footer .footer-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer .footer-info p a{
  text-decoration: underline;
}

.footer .content-wrap .social-icons {
  display: flex;
  gap: 30px;
}

.footer .content-wrap .powered-by {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer .content-wrap .powered-by hr {
  border-left: 1px;
  height: 45px;
}

.footer .content-wrap .powered-by p {
  color: var(--color-white);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 20.078px;
}

.footer .other-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer .other-links hr {
  border-left: 1px;
  height: 16px;
}

.footer .other-links a {
  color: var(--color-white);
  text-shadow: 0px 4px 25px rgba(0, 0, 0, 0.35);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 34px;
}

.footer .copyright p {
  color: var(--color-white);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 20.078px;
}

@media (max-width: 1200px) {
  .content-wrap .card-wrapper .card {
    width: calc(50% - 8px);
  }

  .features-section .right-image,
  .accordion-section .accordion-wrap .accordion-image {
    display: none;
  }
}

@media (max-width: 992px) {
  .presto-container,
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .how-works-section .content-wrap .steps-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .how-works-section .content-wrap .how-works-steps:not(:last-child) {
    border-right: none;
    padding-right: 0;
  }

  .accordion {
    padding: 50px;
  }

  .footer {
    height: auto;
  }
}

@media (max-width: 768px) {
  .destination-section .content-wrap .heading,
  .hero-section .title {
    font-size: 26px;
    line-height: normal;
  }
  .country-section .content-wrap .heading,
  .about-section .content-wrap .heading {
    font-size: 1.625rem;
    line-height: normal;
  }
  .accordion-section,
  .blog-section,
  .features-section .content-wrap,
  .about-section,
  .destination-section,
  .country-section,
  .how-works-section {
    padding: 80px 0;
  }
  .destination-section .content-wrap .sub-heading {
    max-width: min-content;
    margin-top: 0;
  }
  .accordion-section .content-wrap .sub-heading {
    text-align: center;
    font-size: 0.875rem;
    letter-spacing: 6px;
  }
  .content-wrap .card-wrapper .card {
    width: 100%;
  }
  .features-section .content-wrap {
    flex-direction: column;
  }
  .accordion {
    padding: 10px 30px;
  }

  .accordion-section .content-wrap .sub-heading {
    margin-top: 0;
  }
  .footer .content-wrap .list.location-list {
    gap: 0;
  }

  .footer .powered-by img {
    width: 150px;
  }
}

/******************************************* 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: #000;
  font-weight: 600;
  padding-bottom: 20px;
}

.about_layout_two .about__main__title {
  text-align: center;
  color: #000;
}

.about_layout_two {
  background: #fff;
}

.about_layout_two .about__paragraph {
  max-width: 390px;
  width: 100%;
  color: #000;
  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: #fff;
  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: #fff;
}

.about__image__banner p {
  color: #fff;
  font-size: 0.875rem;
  font-weight: normal;
}

.about__wrapper {
  display: flex;
  gap: 10px;
}

.about__title {
  font-size: 1.25rem;
  color: #000;
  font-weight: 600;
  padding-bottom: 20px;
}

.about_layout_two .about__title {
  color: #000;
  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: #000;
  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: #000;
  border-bottom: 1px solid #ddd;
}

.error-template-wrapper .wrapper {
  display: flex;
  gap: 40px;
}

.error__page .btn-primary {
  color: #fff;
  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: #000;
  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: #fff;
}

.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;
  border-bottom: 1px solid #ddd;
}

.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:rgb(42, 216, 167);
  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:rgb(42, 216, 167);
  color:rgb(255, 255, 255);
}
#terms-conndition-section-1{
  height:475px;
  background-color:rgb(15, 22, 39);
}
#privacy-section-1{
  height:475px;
  background-color:rgb(15, 22, 39);
}
#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:rgb(255, 255, 255);
  text-decoration-line:underline;
}
#bread-arrow{
  color:rgb(255, 255, 255);
}
#breadcumb-link2{
  color:rgb(255, 255, 255);
  height:24px;
}
#title-heading{
  color:rgb(255, 255, 255);
  font-weight:700;
  font-size:3rem ;
}
#title-sub{
  color:rgb(255, 255, 255);
  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;
  }
}

/******************************************* Blog Post Page */
.content-wrapper img {
  width: 100%;
}

.page-title {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #000;
  margin: 40px 0 0;
  padding: 0;
  font-weight: 700;
}

.tag-wrapper {
  flex-wrap: wrap;
  margin-top: 40px;
  display: flex;
  gap: 10px;
}

.block-heading {
  font-size: 1.875rem;
  color: #363636;
  margin: 40px 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.2;
  font-style: italic;
}

.title-tag .tag-wrapper {
  margin-top: 25px;
}

.tag-wrapper > a {
  line-height: 30px;
  padding: 0 15px;
  border: 1px solid #969696;
  border-radius: 100px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
}

.title-tag .tag-wrapper > a {
  background: #6881aa;
  border-color: #6881aa;
  color: #fff;
}

.tag-wrapper > a:hover {
  border-color: #00cd92;
  color: #fff;
  background: #00cd92;
}

.banner-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: absolute;
  top: 0;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-info {
  padding: 20px 0;
  margin: 30px 0;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.blog-info .info-area {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
}

.info-area .post-author {
  border: 1px solid #00cd92;
  border-radius: 50px;
  padding: 5px 35px 5px 5px;
  background-color: #f4f9f8;
  display: flex;
  align-items: center;
}

.author-info .author-name a,
.info-area .post-author a {
  color: #000;
}

.info-area .post-author img {
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.info-area .post-time {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.info-area .post-time div {
  gap: 10px;
  align-items: center;
  display: flex;
}

.post-time div img,
.post-time div svg {
  height: 15px;
  width: 15px;
}

.share-area {
  display: flex;
  gap: 7px;
}

.share-area a {
  height: 38px;
  width: 38px;
  border: 1px solid #c5c5c5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transition: all 0.1s;
}
.share-wrapper .share-area svg {
  fill: #c5c5c5;
}
.share-wrapper .share-area a:hover {
  border: 2px solid #00cd92;
  background-color: #00cd92;
}

.share-wrapper .share-area a:hover svg {
  fill: #fff;
}

.ai-image-fig {
  font-size: 0.9rem;
  padding: 10px 0;
  line-height: 1.6;
  color: #a1a1a1;
  font-style: italic;
  font-weight: 600;
}

.blog-footer {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid #e9e9e9;
  padding-top: 40px;
  padding-bottom: 100px;
}

.blog-footer .author-info {
  padding: 40px;
  border: 2px solid #00cd92;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 40px;
  width: calc(100% - 330px);
}
.blog-footer .author-info img {
  height: 100px;
  width: 100px;
  min-width: 100px;
  object-fit: cover;
  border-radius: 100px;
  overflow: hidden;
}

.blog-footer .author-name {
  font-weight: 700;
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-footer .author-details {
  font-weight: 400;
  font-size: 1rem;
  line-height: 26px;
  color: #888;
  margin-bottom: 10px;
}

.author-info .author-name a,
.info-area .post-author a {
  color: #000;
}

.blog-footer .share-wrapper {
  width: 100%;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  align-items: end;
}

.share-wrapper .share-count {
  font-weight: 700;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #e9e9e9;
  color: #c8c8c8;
  width: 100%;
  text-align: right;
}

.share-area {
  display: flex;
  gap: 7px;
}

.share-area a {
  height: 38px;
  width: 38px;
  border: 2px solid #00cd92;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  transition: all 0.1s;
}

.share-area svg {
  fill: #00cd92;
}

@media screen and (max-width: 991px) {
  .blog-footer {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .blog-footer .author-info {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .blog-footer .share-wrapper {
    max-width: 272px;
    align-items: center;
    margin: 0 auto;
  }

  .share-wrapper .share-count {
    text-align: center;
  }
}
