/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/

/* Fonts */
:root {
  --default-font: "DM Sans", sans-serif, system-ui, -apple-system, "Segoe UI";
  --heading-font: "DM Mono", monospace;
  --nav-font: "DM Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #333333;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000000;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #212A5E;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000;
  /* The default color of the main navmenu links */
  --nav-hover-color: #212A5E;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #000000;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #212A5E;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --header-bg-color: #EDFAE6;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #ffffff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

h2 {
  font-size: 38px;
}

.btn {
  border-radius: 0;
}

.btn.btn-primary {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn.btn-secondary {
  color: #fff;
  background-color: #FF9623;
  border: none;
}

.btn.btn-white {
  background-color: var(--contrast-color);
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background: var(--header-bg-color);
}

.header .branding {
  background: var(--header-bg-color);
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 46px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 22px;
  margin: 0;
  font-weight: 500;
  color: var(--nav-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1025px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu li.whatsapp i {
    font-size: 26px;
  }

  .navmenu li.whatsapp:hover i {
    color: #25D366;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    /* underline thickness */
    text-underline-offset: 4px;
    /* distance between text and underline */
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1024px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }

  ul.extra-icons {
    height: fit-content;
    top: 45%;
    background-color: #ffffff;
    box-shadow: none;
  }
}

@media (max-width: 1024px) {
  ul.extra-icons {
    top: 295px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
}

/* Navmenu - Mobile */
@media (max-width: 600px) {

  .navmenu a,
  .navmenu a:focus {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #000;
  background: #EDFAE6;
  padding: 40px 0;
  position: relative;
}

.footer .footer-about {
  @media screen and (max-width:600px) {
    text-align: center;
  }
}

.footer .footer-about a {
  color: #000;
  font-size: 24px;
  line-height: 110%;

  @media screen and (max-width:600px) {
    display: flex;
    justify-content: center;
    text-align: left;
  }
}

.footer .footer-about img {
  margin-right: 12px;
  height: 52px;
  width: 52px;
}

.footer .social-links {
  @media screen and (max-width:600px) {
    justify-content: center;
  }
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 16px;
  margin-right: 10px;
  transition: 0.3s;
  background: #21874F;
  color: var(--contrast-color);
  border-radius: 30px;
}

.footer h4 {
  font-size: 22px;
  color: #000;
  position: relative;
  margin-bottom: 14px;
  font-family: "DM Sans";
}

.footer .footer-links {
  margin-bottom: 30px;

  @media screen and (max-width:600px) {
    text-align: center;
  }
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}


.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;

  @media screen and (max-width:600px) {
    justify-content: center;
  }
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: #333333;
}


.footer .copyright {
  padding-top: 25px;
  padding-bottom: 0;
  font-size: 14px;
  border-top: 1px solid #333333;
}

.footer .copyright p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #21874F;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, #21874F, transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 600;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 0;
  scroll-margin-top: 60px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 48px;
  font-weight: 500;
  font-family: var(--heading-font);

  @media screen and (max-width:600px) {
    font-size: 28px;
  }
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* .hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background-size: cover !important;
  background-repeat: no-repeat !important;
    @media screen and (max-width:600px) { 
    min-height: 50vh; 
} 
} */

section#hero-section {
  padding: 100px 0 10px 0;
}

.hero-section-main {
  display: flex;
  align-items: self-end;
  gap: 20px;
  justify-content: space-evenly;
}

.hero-section-main img {
  border-radius: 10px;
}

.about .hero-content {
  width: 500px;
}

.special-content {
  display: inline-block;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.special-text-out {
  opacity: 0;
  transform: translateY(15px);
}

.special-text-in {
  opacity: 1;
  transform: translateY(0);
}

.center-content .sub-text {
  font-size: 16px;
}

.hero-img {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-img-out {
  opacity: 0;
  transform: scale(0.95);
}

.hero-img-in {
  opacity: 1;
  transform: scale(1);
}

.hero-content h1 {
  font-size: 34px;
  margin: 0;
}

.hero-content span {
  font-size: 34px;
  color: #21874F;
  font-weight: 500;
  font-family: 'DM Mono';
}

.hero-content hr {
  width: 10%;
  opacity: 1;
  color: #FF9623;
  border-top: 3px solid;
  margin: 10px auto;
}

/* @media screen and (min-width: 1200px){
  .hero-content {
    width: 400px;
  }
} */

@media screen and (max-width: 767.98px) {
  .hero-section-main {
    display: block;
  }

  #heroLeftImg,
  #heroRightImg {
    display: none;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content span {
    font-size: 32px;
  }

  .about .hero-content {
    width: unset;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .col-lg-5,
.about .col-lg-7 {
  position: relative;
}

.about .about-content {
  position: absolute;
  background-color: var(--background-color);
  border: 1px solid var(--default-color);
  left: -150px;

  @media screen and (max-width:600px) {
    position: relative;
    left: 50%;
    top: -70px;
    width: 95%;
    transform: translate(-50%, 0);
  }

}

.about .about-content h3 {
  font-weight: 500;
  font-size: 38px;

  @media screen and (max-width:600px) {
    font-size: 24px;
  }

}

.about .about-content ul {
  list-style: none;
  padding: 0;
}

.about .about-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  border-left: 3px solid var(--accent-color);
  padding-left: 16px;
}

.about .about-content ul li:first-child {
  margin-top: 35px;
}


.about .about-content ul h4 {
  font-size: 24px;
  font-family: 'DM Sans';
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 6px;
  line-height: 1;

  @media screen and (max-width:600px) {
    font-size: 18px;
  }
}

.about .about-content ul h4 span {
  color: #212A5E;
  text-transform: uppercase;
}

.about .about-content ul p {
  font-size: 16px;
}

.about .about-content p:last-child {
  margin-bottom: 0;
}

.about figure img {
  width: 100%;
  max-width: 790px;
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.benefit .col-lg-5,
.benefit .col-lg-7 {
  position: relative;
}


.benefit .benefit-content {
  @media screen and (max-width:600px) {
    padding: 12px !important;
  }
}

.benefit .benefit-content ul {
  list-style: none;
  padding: 0;
}

.benefit .benefit-content ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-left: 16px;

  @media screen and (max-width:600px) {
    padding-left: 0;
  }

}

.benefit .benefit-content ul i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 110px;
  margin-right: 20px;
  font-weight: 700;
  font-style: Bold;
  line-height: 78px;
  font-style: normal;
  min-width: 90px;

  @media screen and (max-width:600px) {
    font-size: 80px;
    margin-right: 10px;
    min-width: 75px;

  }
}

.benefit .benefit-content ul i.s {
  color: #21874F;
}

.benefit .benefit-content ul i.m {
  color: #37C979;
}

.benefit .benefit-content ul i.a {
  color: #568D67;
}

.benefit .benefit-content ul i.r {
  color: #40C69C;
}

.benefit .benefit-content ul i.t {
  color: #236237;
}

.benefit .benefit-content ul h4 {
  font-size: 24px;
  font-weight: 500;
  color: var(--default-color);
  margin-bottom: 6px;
  line-height: 1;
}

.benefit .benefit-content ul h4 span {
  color: #212A5E;
  text-transform: uppercase;
}

.benefit .benefit-content ul li p {
  font-size: 16px;
  border-bottom: 1px dashed var(--default-color);
  padding-bottom: 20px;
}

.benefit .benefit-content ul li:last-child p {
  border-bottom: none;
}

.benefit .benefit-content p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Luxury Section
--------------------------------------------------------------*/

.luxury {
  position: relative;
  padding: 0;
}

.luxury img {
  width: 100%;
}

.luxury h2 {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 65%;
  transform: translate(-50%, 0);
  color: var(--contrast-color);
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;

  @media screen and (max-width:600px) {
    font-size: 32px;
    top: 50%;
  }
}

.custom h2 {
  top: 75%;
}

@media screen and (max-width: 767.98px) {
  .luxury {
    padding: 0;
  }

  .custom h2 {
    top: 65%;
  }
}


.how_it_works {
  background: #fff;
  padding-top: 10px;
  /* color: var(--contrast-color); */
}

/* .services .section-title p{
  color: var(--contrast-color);
} */

.how_it_works .service-item {
  text-align: center;
  overflow: hidden;
  height: 100%;
}

.how_it_works .service-item img {
  margin-bottom: 10px;
  width: 100%;
  transition: ease-in-out 0.75s;
}

.how_it_works .service-item .content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 0 20px;
}

.how_it_works .service-item .content button {
  margin-bottom: 40px;
}

.how_it_works .service-item h3 {
  margin: 5px 0 0px 0;
  font-size: 22px;
  transition: 0.3s;
  /* color: var(--contrast-color); */
}

.how_it_works .service-item p {
  line-height: 24px;
  font-size: 16px;
}

/* Target ODD boxes */
.how_it_works .row>div:nth-child(even) .service-item {
  display: flex;
  flex-direction: column-reverse;
}

@media screen and (max-width: 767.98px) {
  
  .how_it_works .row>div:nth-child(even) .service-item {
    flex-direction: column;
  }

}

/* 
.how_it_works .row > div:nth-child(even) .service-item img {
  width: 100%;
  display: block;
}

.how_it_works .row > div:nth-child(even) .service-item .content {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
}

.how_it_works .row > div:nth-child(even) .service-item h3 {
  color: #fff;
} */


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services {
  background: linear-gradient(180deg, #236237 11.38%, #070C1A 100%);
  color: var(--contrast-color);
}

.services .section-title p {
  color: var(--contrast-color);
}

.services .service-item {
  text-align: center;
  overflow: hidden;
  height: 100%;
}

.services .service-item img {
  margin-bottom: 10px;
  width: 100%;
  transition: ease-in-out 0.75s;
}

.services .service-item .content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 0 20px;
}

.services .service-item .content button {
  margin-bottom: 40px;
}

.services .service-item h3 {
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
  color: var(--contrast-color);
}

.services .service-item p {
  line-height: 24px;
  font-size: 16px;
}

/* Target ONLY the 2nd box */
.services .row>div:nth-child(3) .service-item {
  position: relative;
  overflow: hidden;
}

.services .row>div:nth-child(3) .service-item img {
  width: 100%;
  display: block;
}

.services .row>div:nth-child(3) .service-item .content {
  position: absolute;
  top: 55%;
  left: 0;
  right: 0;
  /* transform: translate(-50%, -50%); */
  color: #fff;
  text-align: center;
  padding: 20px;
  /* background: rgba(0, 0, 0, 0.5); */
  border-radius: 8px;
  width: 100%;
}

.services .row>div:nth-child(3) .service-item .btn {
  background: #fff;
  color: #000;
  border: none;
}

/* ------------------------------------------------------------
# Default Template
--------------------------------------------------------------*/

.default-template {
  margin-top: 120px;
}


/*--------------------------------------------------------------
# Property Section
--------------------------------------------------------------*/

.property {
  padding: 50px 0;
  position: relative;
}


.property .row.reverse {
  @media screen and (max-width:600px) {
    flex-direction: column-reverse;
  }
}

.property .col-lg-5,
.property .col-lg-7 {
  position: relative;
}

.property .property-content {
  position: absolute;
  background-color: #EDFAE6;
  border: 1px solid var(--default-color);
  left: -150px;
  bottom: 65px;
  z-index: 1;

  @media screen and (max-width:600px) {
    position: relative;
    left: 50% !important;
    top: -70px;
    width: 95%;
    transform: translate(-50%, 0);
    right: auto !important;
  }
}

.property .property-content.right {
  right: -150px;
  left: auto;
}

.property .property-content a {
  margin-left: auto;
  display: flex;
}

.property .property-content label {
  text-transform: uppercase;
}

.property .property-content label:after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: var(--default-color);
  display: block;
  margin: 10px 0;
}

.property .property-content h3 {
  font-weight: 500;
  font-size: 38px;
}

.property .container {
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 767.98px) {
  .property {
    padding: 30px 0;
    position: relative;
  }
}

/*--------------------------------------------------------------
# info Section
--------------------------------------------------------------*/

.info-table {
  padding: 20px 0 30px 0;
  position: relative;
}

.info-table .section-title p {
  font-size: 42px;

  @media screen and (max-width:600px) {
    font-size: 28px;
  }
}


.info-table .info-bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  inset: 0px;
}

.info-table .container {
  position: relative;
  z-index: 3;
}

.info-table .data-grid {
  display: grid;
  grid-template-columns: 30% 35% 35%;
  gap: 16px;
  z-index: 11;

  @media screen and (max-width:600px) {
    grid-template-columns: 210px 400px 400px;
    max-width: 800px;
    overflow: scroll;
  }
}

.info-table .data-grid>div {
  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  padding: 12px 24px;
  border-radius: 8px;
  background: #FFFFFF1A;
  color: var(--contrast-color);
  text-align: center;
}

.info-table .data-grid>div:nth-child(3n + 1) {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
}

.info-table .data-grid>div.highlight {
  background: #ffffff;
  color: #000000;
}

@media screen and (max-width: 767.98px) {
  .info-table {
    padding: 30px 0;
  }
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq-section {
  text-align: center;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.faq-banner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  background: url('../img/FAQ.png');
  background-size: cover;
  min-height: 370px;
}

.faq-image {
  width: 100%;
  height: auto;
  display: block;
}

.faq-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: white;
  text-align: left;
  padding: 40px;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.faq-subtitle {
  font-size: 14px;
  margin-bottom: 10px;
}

.faq-subtitle:after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: var(--contrast-color);
  display: block;
  margin: 10px 0;
}

.faq-heading {
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--contrast-color);

  @media screen and (max-width:600px) {
    font-size: 26px;

  }
}



/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/

.news-section {
  position: relative;
}

.news-section .card img {
  width: 100%;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Main loader screen Section
--------------------------------------------------------------*/

.logo-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  position: absolute;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, -50%);
  top: 50%;
  pointer-events: none;
  background-color: #fff;
  height: 100vh;
}

.logo-placeholder p {
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--heading-color);
}

.logo-placeholder img.mono {
  width: 484px;
  height: auto;

  @media screen and (max-width:600px) {
    width: 85%;
  }
}

.main {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  clip-path: polygon(50% 35%, 55% 50%, 50% 65%, 45% 50%);

  @media screen and (max-width:600px) {
    clip-path: polygon(50% 45%, 60% 50%, 50% 55%, 40% 50%);
  }
}

/* properties page css------- */

.hero-section-properties {
  position: relative;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
  background-color: #fff;
}

.hero-img-properties img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-overlay-properties {
  margin-top: -163px;
  margin-left: 60px;
  margin-right: 60px;
  position: relative;
  background-color: #fff;
  margin-bottom: 50px;
  padding: 30px;
}

.overlay-title p {
  font-size: 20px;
}

.counter-box {
  border: 1px solid #969494;
  padding: 30px 20px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.counter-number {
  font-size: 2rem;
  font-weight: 700;
}

.counter-label {
  font-size: 1rem;
  color: #555;
  margin-top: 8px;
}

.counter-number span {
  font-family: var(--heading-font);
  ;
}

.search-box {
  max-width: 400px;
  position: relative;
}

.search-box .fa-search {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #888;
}

.search-box input {
  padding-left: 40px;
  /* space for the icon */
  border-radius: 5px;
}

.filter-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px 10px;
  gap: 8px;
  background-color: #fff;
  width: fit-content;
  font-size: 14px;
  height: max-content;
}

.filter-divider {
  height: 20px;
  width: 1px;
  background-color: #ddd;
  margin: 0 4px;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  color: #555;
}

.filter-item i {
  font-size: 12px;
}

.filter-box i.bi-x {
  cursor: pointer;
  color: #666;
  font-size: 16px;
}

.filter-box i.bi-sliders {
  font-size: 16px;
  color: #444;
}

.property-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.property-card img {
  width: 100%;
  object-fit: cover;
  position: relative;
}

.live-badge {
  position: absolute;
  top: 0;
  left: 0px;
  color: #fff;
  transform: rotate(0deg);
  text-align: center;
  width: 110px;
}

.favorite-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #00000099;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: #FFFFFF;
}

.favorite-btn {
  display: none;
}

.property-content {
  padding: 12px 16px 16px 16px;
  position: absolute;
  /* top: 0; */
  bottom: 0;
  left: 0;
  display: flex;
  right: 0;
  flex-direction: column;
  /* align-items: center; */
}

.property-title h3 {
  color: #fff;
}

.property-location {
  font-size: 18px;
  color: #ffffff;
  background: #21874F;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  text-transform: uppercase;
  width: fit-content;
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  width: 100%;
}

.property-footer .price span {
  font-weight: 700;
}

.property-footer .price {
  font-size: 20px;
  color: #fff;
  margin: 0;
}

.property-footer button {
  font-size: 16px;
  padding: 6px 20px;
  border-radius: 6px;
}

#prperty-single {
  padding-top: 120px;
}

.p-info .accordion-button {
  text-transform: uppercase;
}

.p-type {
  background-color: #21874F;
  width: fit-content;
  color: #fff;
  padding: 5px 30px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.p-about {
  padding: 15px;
  background-color: #F2F2F2;
  border-radius: 10px;
}

.price {
  color: #21864f;
  font-size: 26px;
  font-weight: bold;
}

.specifications {
  padding-left: 10px;
  border-left: 2px solid #21864f;
}

.p-buttons {
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid #D5D5D5;
  border-bottom: 1px solid #D5D5D5;
}

.p-buttons a {
  background-color: #FF9623;
  width: 100%;
  padding: 10px 100px;
  border-radius: 10px;
  color: #fff;
  display: block;
}

.accordion-item {
  border-radius: 10px !important;
  border: 1px solid #000 !important;
}

.accordion-button {
  background-color: unset;
  font-size: 22px;
  font-weight: bold;
}

.accordion-button:not(.collapsed) {
  background-color: unset;
  color: #000;
}

.accordion-button:focus {
  box-shadow: unset;
}

.icon-box {
  padding: 20px;
  background-color: #dbebdd;
  border-radius: 10px;
  height: 100%;
}

.enquiry-form {
  background-color: #dbebdd;
  padding: 20px;
  border-radius: 10px;
}

.submit-btn {
  background-color: #21874f;
  /* width: 100%; */
  padding: 10px 30px;
  border-radius: 10px;
  color: #fff;
  /* display: block; */
  border: unset;
}

@media screen and (max-width: 767.98px) {
  .enquiry-button {
    margin-bottom: 10px;
  }
  .hero-overlay-properties {
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
  }
  #hero-properties .overlay-title h2 {
    font-size: 30px;
  }

}

.stars {
  display: flex;
  gap: 4px;
}

.star {
  font-size: 18px;
  color: #ccc;
}

.star.filled {
  color: #FFC107;
  /* gold */
}

.Testimonial-slide {
  border: 1px solid #000;
  border-radius: 10px;
  padding: 20px;
}

.person-details {
  justify-content: space-between;
  display: flex;
  align-items: center;
}

.details {
  display: flex;
  align-items: center;
}

.Testimonial-slide {
  background: #fff;
  border-radius: 12px;
  height: 100%;
}

.star {
  color: #ccc;
}

.star.filled {
  color: #f5b301;
}

/* Floating Button */
.enquiry-btn {
  position: fixed;
  right: -40px;
  bottom: 18%;
  background: #236237;
  color: #fff;
  padding: 14px 20px;
  border: none;
  border-radius: unset;
  cursor: pointer;
  font-weight: 600;
  z-index: 9;
  transform: rotate(270deg);
  font-size: 18px;
}

/* Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

/* Drawer */
.enquiry-drawer {
  position: fixed;
  top: 50px;
  right: -400px;
  width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  transition: 0.4s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}

.enquiry-drawer .wpcf7-spinner {
    display: none;
}

/* Drawer Active */
.enquiry-drawer.active {
  right: 0;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Header */
.drawer-header {
  padding: 20px;
  background: #fff;
  color: #21874f;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-header h3 {
  color: #21874f;
}

.close-btn {
  font-size: 26px;
  cursor: pointer;
}

.drawerbody label {
  margin-bottom: 6px;
}

/* Form */
.enquiry-form {
  padding: 20px;
  flex: 1;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.enquiry-form button {
  width: 100%;
  padding: 12px;
  background: #ff6600;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.drawerbody {
    padding-bottom: 70px;
}

.drawerbody .submit-btn {
  width: 100%;
  border-radius: unset;
}

.drawerbody .form-control {
  border-radius: unset;
  padding: 10px;
}

.third-ses-bg {
  background-color: #EDFAE6;
  padding: 30px 50px 10px 50px;
  border-radius: 20px;
}

.third-ses-bg img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

/* .about-us-page-content {
  background: #EDFAE6;
  padding: 20px;
  border-radius: 20px;
} */

@media screen and (max-width:767.98px) {
  .enquiry-btn {
    bottom: 40%;
  }
  .third-ses-bg {
    padding: 30px 20px 10px 20px;
  }
  .third-ses-bg img {
    width: 100%;
    height: 100%;
  }
}

section#insta-feeds {
  padding-top: 0;
}

section#services {
  padding-top: 10px;
}

section#Testimonial {
  padding-top: 10px;
}

section.news-section.section {
  padding-top: 10px;
}

section.about.section.light-background {
  padding-top: 10px;
}

section.benefit.section.light-background {
  padding-top: 10px;
}

section#faq {
  padding-top: 10px;
}

section#blog-listing {
  padding-top: 140px;
}

section#blog-listing .content {
  background: #EDFAE6;
  padding: 20px;
  border-radius: 20px;
  width: 85%;
  margin: 0 auto;
}

section#blog-single {
  padding-top: 140px;
}

#blog-single .blog-image img {
  height: 400px;
  object-fit: cover;
  object-position: top;
}

.about-us-page-content .section-title h2 {
    font-size: 32px;
}

section#third-section {
    padding-top: 0;
}

article#post-252,article#post-254,article#post-259,article#post-263 {
    width: 70%;
    margin: 0 auto;
    text-align: justify;
}

.pum-theme-309 .pum-content + .pum-close, .pum-theme-default-theme .pum-content + .pum-close {
    position: absolute;
    height: auto;
    width: auto;
    left: auto;
    right: 0px;
    bottom: auto;
    top: 0px;
    padding: 8px;
    color: #ffffff;
    font-family: inherit;
    font-weight: 400;
    font-size: 12px;
    font-style: inherit;
    line-height: 36px;
    border: 1px none #ffffff;
    border-radius: 0px;
    box-shadow: 1px 1px 3px 0px rgba(2, 2, 2, 0.23);
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.23);
    background-color: #21874f !important;
}

.s-bn p {
    display: inline-flex;
    flex-direction: column;
}

#navmenu .menu-item:last-child a {
    background-color: #236237;
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
}

@media screen and (max-width: 767.98px) {
  
  #navmenu .menu-item:last-child a {
    margin: 0 10px;
  }

  .navmenu #menu-main-menu {
    height: max-content;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.pum-content .wpcf7-spinner {
    display: none;
}

/* #faq_section {
    padding: 120px 0 60px;
} */

.country_tab {
    padding: 20px;
    background-color: #236137;
    border-radius: 10px;
}

/* .country_tab strong {
    color: #fff;
} */

.country_tab small {
    background-color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
}

.accordion-item{
  border: 1px solid #000 !important;
  border-radius: 5px !important;
}

.country_tab_content .accordion-button {
    color: #000 !important;
    background-color: unset !important;
}

.country_tab_content .accordion-button:focus {
    border-color: unset !important;
    box-shadow: unset !important;
}

.accordion-item:not(:first-of-type) {
  border-top: 1px solid #000 !important;
}

.country_tab .nav-link {
    color: #fff;
    text-align: left;
	border: 1px solid #fff;
    margin-bottom: 20px;
    padding: 10px 30px;
}

.country_tab .nav-pills .nav-link.active, .country_tab .nav-pills .show>.nav-link {
    color: #000;
    background-color: #edfae6;
}

#properties-listing .nav {
    border: none;
}

#properties-listing .nav-item button {
    background-color: #fff !important;
    margin-right: 10px;
    color: #000 !important;
    border-radius: 10px !important;
    padding: 10px 50px !important;
    border: 1px solid #000 !important;
}

#properties-listing .nav-item button.active {
    background-color: #236237 !important;
    margin-right: 10px;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 10px 50px !important;
    border: 1px solid #236237 !important;
}