@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #000;
    background: #ffffff;
/*     overflow-x: hidden; */
}

input,
textarea,
button {
    outline: none;
}

button,
input[type="submit"],
input[type="reset"] {
    cursor: pointer;
}

.btn-primary {color: var(--grey-scale-ffffff, #FFF);font-family: Inter;font-size: 16px;font-style: normal;font-weight: 400;line-height: normal;padding: 14px 42px;border-radius: 4px;background: var(--005496, #005496);display: block;max-width: max-content;border: 2px solid var(--005496, #005496);}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #9bb5c4;
    margin: 0;
    padding: 0;
}

input,
select {
    outline: none;
}

a {
    text-decoration: none;
    color: #1b2642;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
} 
button {
    transition: 0.4s;
}

.transition {
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
}

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

fieldset {
    border: none;
    padding: 0;
}

#wrapper {
    position: relative;
/*     overflow: hidden; */
}

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

p {
    margin: 0;
    padding: 0;
}

img {
    padding: 0;
    margin: 0;
    max-width: 100%;
/*     display: block; */
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0px 20px;
} 

.container-left {
    width: 100%;
    max-width: 1360px;
    margin-left: auto;
} 

.container-right {
    width: 100%;
    max-width: 1360px;
    margin-right: auto;
}

/* Home Page */

header#header {
    max-width: 1440px;
    margin: auto;
}  

/* Top Bar */
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    border-bottom: 1px solid #E9ECEF;
    position: relative;
    z-index: 999;
}


.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.login-btn {
    padding: 14px 42px;
    color: var(--grey-scale-ffffff, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    border-radius: 4px;
    background: var(--005496, #005496);
    border: 2px solid var(--005496, #005496);
}

.top-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.top-logo img {
    max-width: 204px;
}

.favorites-icon {
    width: 24px;
    height: 24px;
}

.hamburger {
    width: 28px;
    height: 28px;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hamburger-menu {
    position: absolute;
    top: 100%;
    right: 20px;
    display: none;
    flex-direction: column;
    z-index: 9;
    width: 220px;
    background: #FFF;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
}

.hamburger-menu a {
    padding: 16px;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px solid rgba(222, 226, 230, 0.42);
    color: var(--grey-scale-212529, #212529);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
}

.hamburger-menu a:hover {
    color: var(--005496, #005496);
    background: rgba(0, 84, 150, 0.05);
}

/* Main Navigation */
.main-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #E9ECEF;
    position: relative;
    z-index: 99;
}

.logo img {
    height: 40px;
}

.nav {
    display: flex;
    gap: 48px;
    list-style: none;
    flex-wrap: wrap;
    margin-left: 130px;
}

.nav>li {
    position: relative;
	padding:10px 0;
}

.nav>li>a {
    color: var(--grey-scale-212529, #212529);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
}

.nav>li:hover>a {
    color: #005496;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    display: none;
    white-space: nowrap;
    z-index: 9;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
}

.submenu-column {
    display: flex;
    flex-direction: column;
}

.submenu a {
    text-decoration: none;
    padding: 16px;
    border-bottom: 1px solid rgba(222, 226, 230, 0.42);
    color: var(--grey-scale-212529, #212529);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: block;
}

.submenu a:hover {
    background: rgba(0, 84, 150, 0.05);
    color: var(--005496, #005496);

}

.mobile-nav {
    display: none;
}

.top-logo a {
    display: block;
}

.main-bar-right button {
    padding: 20px 32px;
    color: var(--grey-scale-ffffff, #FFF);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: var(--005496, #005496);
    border: none;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.footer {
    background: var(--005496, #005496);
    color: var(--FFFFFF, #FFF);
    width: 100%;
    font-family: sans-serif;
    padding: 80px 0px 24px 0px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-left {
    flex: 1 1 260px;
}

.footer-logo {
    margin-bottom: 22px;
}

.footer-left p {
    color: var(--grey-scale-dee-2-e-6, #DEE2E6);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
    padding-bottom: 24px;
    max-width: 90%;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 13px;
    color: var(--FFFFFF, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 157.143% */
}

.footer-links {
    display: flex;
    flex: 2 1 600px;
    justify-content: space-between;
    gap: 40px;
}

.footer-links h4 {
    color: var(--FFFFFF, #FFF);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
    /* 130% */
    padding-bottom: 20px;
}

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

.footer-bottom {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 23px;
    flex-wrap: wrap;
    color: var(--grey-scale-dee-2-e-6, #DEE2E6);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
}

.footer-social img {
    margin-left: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.footer-contact a img {
    padding: 9px;
    display: block;
    border: 0.8px solid var(--grey-scale-ffffff, #FFF);
}

.footer-links a {
    color: var(--grey-scale-dee-2-e-6, #DEE2E6);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 157.143% */
    padding-bottom: 10px;
    display: block;
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

/* main banner */

.search-box {
  padding: 24px;
  max-width: 880px;
  border-radius: 8px;
  border: 1px solid #FCFCFD;
  background: linear-gradient(84deg, #FCFCFD 36.52%, rgba(252, 252, 253, 0.83) 98.8%);
  box-shadow: 0px 40px 64px -32px rgba(15, 15, 15, 0.10);
  backdrop-filter: blur(16px);
}

.search-title {
  margin-bottom: 25px;
  position: relative;
  border-bottom: 1px solid rgba(20, 47, 87, 0.1);
  padding-bottom: 13px;
  color: var(--005496, #005496);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.search-title .active {
  font-weight: 500;
}

.search-title .underline {
  width: 40px;
  height: 2px;
  background-color: #005ca9;
  position: relative;
  top: 15px;
}

.search-fields {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  padding-right: 15px;
}

.field {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2px 12px;
  width: 166px;
  overflow: hidden;
}

.field .icon {
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
}

.field-label {
  color: var(--grey-scale-212529, #212529);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.field input,
.field select {
  border: none;
  outline: none;
  background-color: transparent;
  color: var(--Grey, #5B5B5F);
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 79%;
  margin-left: auto;
}
.search-btn button {
  width: 56px;
  height: 56px;
  background-color: #005ca9;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn img {
  width: 20px;
  height: 20px;
}
.home-banner-content h4 {
    color: var(--005496, #005496);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px; /* 112.5% */
    padding-bottom: 24px;
}

.home-banner-content h1 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 74px; /* 132.143% */
    text-transform: uppercase;
    padding-bottom: 24px;
}

.home-banner-content h1 img {
    display: inline-block;
}

.home-banner-content p {
    color: var(--grey-scale-495057, #495057);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px; /* 162.5% */
    padding-bottom: 35px;
    max-width: 85%;
}
section.home-banner {
    background: #F6F7F8;
    overflow: hidden;
    max-width: 1440px;
    margin: auto;
}




.home-banner-content {
    max-width: 45%;
}
.banner-image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.field input::placeholder {
    color: var(--Grey, #5B5B5F);
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.home-banner-main {
    position: relative;
}

.banner-image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    max-width: 53%;
    height: 100%;
    max-height: 753px;
}
.banner-content-al {
    padding: 85px 0px;
    position: relative;
    z-index: 9;
}
.discover-properties-header h2 {
    color: var(--grey-scale-212529, #212529);
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 56px */
    padding-bottom: 16px;
}


.discover-properties-header p {
    color: var(--grey-scale-495057, #495057);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding-bottom: 40px;
    max-width: 65%;
    margin: auto;
}

.discover-properties-flex {
    display: flex;
    justify-content: space-between;
}

.discover-properties-sub1 {
    width: 24%;
}

.discover-properties-content {
    position: relative;
    top: -100px;
    max-width: 80%;
    margin: auto;
    text-align: center;
}

.discover-properties-content::before {
    position: absolute;
    content: "";
    border-radius: 4px;
    border: 1px solid var(--grey-scale-e-9-ecef, #E9ECEF);
    background: var(--grey-scale-ffffff, #FFF);
    height: 88%;
    width: 100%;
    z-index: 0;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}

.discover-properties-content h5 {
    position: relative;
    z-index: 9;
}

.discover-properties-content h6 {
    position: relative;
    z-index: 9;
}

.discover-properties-content h3 {
    position: relative;
    z-index: 9;
}

.property-flex {
    position: relative;
    z-index: 9;
    display: flex;
    justify-content: center;
    gap: 4px;
    color: var(--grey-scale-6-c-757-d, #6C757D);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 28px;
}

.discover-properties-content h5 {
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background: var(--005496, #005496);
    padding: 8px 24px;
    max-width: max-content;
    margin: auto;
    margin-bottom: 8px;
}

.discover-properties-content h6 {
    color: var(--grey-scale-6-c-757-d, #6C757D);
    text-align: center;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 16px;
}

.discover-properties-content h3 {
    color: var(--005496, #005496);
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 145%; /* 34.8px */
    text-transform: uppercase;
    padding-bottom: 5px;
}

section.discover-properties {
    padding-top: 88px;
}
.why-choose-header h2 {
    color: var(--grey-scale-212529, #212529);
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 56px */
}

.why-choose-header-icon {
    max-width: 52%;
    margin-left: auto;
    display: flex;
    justify-content: end;
    border-bottom: 2px solid #CED4DA;
    position: relative;
    top: -48px;
}

.why-choose-header-icon img {
    position: relative;
    top: 5px;
    z-index: 9;
}
section.why-choose {
    padding: 80px 0px;
    background-color: rgba(0, 84, 150, 0.06);
    margin-bottom: 80px;
}
.why-choose-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.why-choose-image {
    width: 49%;
}

.why-choose-content {
    width: 47%;
    padding-top: 50px;
}

.why-choose-image h3 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 44.8px */
    padding-bottom: 24px;
}

.why-choose-content h4 {
    color: var(--005496, #005496);
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 28px */
    padding-bottom: 12px;
}

.why-choose-content p {
    color: var(--grey-scale-495057, #495057);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding-bottom: 25px;
}
.why-choose-image img {
    border-radius: 4px;
}
.custom-homes-header h2 {
    color: var(--grey-scale-212529, #212529);
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 56px */
    padding-bottom: 16px;
}

.custom-homes-header p {
    color: var(--grey-scale-495057, #495057);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    max-width: 60%;
    margin: auto;
    padding-bottom: 40px;
}
.custom-item {
    padding-bottom: 16px;
    border-radius: 0px 0px 4px 4px;
    border: 1px solid var(--grey-scale-e-9-ecef, #E9ECEF);
    background: var(--grey-scale-ffffff, #FFF);
    position: relative;
}

.details {
    text-align: center;
}

.details h3 {
    color: var(--grey-scale-212529, #212529);
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 25.2px */
    padding-top: 16px;
    padding-bottom: 15px;
}

.lot-info img {
    width: 20px !important;
    height: 20px;
}

.lot-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding-bottom: 14px;
}

.details a {
    color: var(--005496, #005496);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 4px;
    border: 1px solid var(--005496, #005496);
    width: 90%;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

span.for-sale {
    color: var(--grey-scale-ffffff, #FFF);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 2px;
    background: #2FBF71;
    padding: 4px 8px;
    position: absolute;
    top: 12px;
    left: 12px;
}

section.custom-homes {
    padding-bottom: 80px;
}
.arrow-icon path {
  fill: #CED4DA;
  transition: fill 0.3s ease;
}

button:hover .arrow-icon path {
  fill: #005496;
}
.custom-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 48px;
    position: relative;
}

.custom-nav button {
    background: transparent;
    border: none;
}

.custom-nav::before {
    position: absolute;
    content: "";
    background-color: #CED4DA;
    height: 16px;
    width: 2px;
    top: 0;
}
.home-contact-flex {
    padding: 56px 43px 56px 56px;
    display: flex;
    justify-content: space-between;
    border-radius: 4px;
    background: var(--005496, #005496);
    align-items: center;
}

.home-contact-sub1 {
    width: 54%;
}

.home-contact-sub2 {
    width: 43%;
}

.home-contact-line1 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 24px;
}

.home-contact-line1 img {
    background-color: rgba(255, 255, 255, 0.12);
    padding: 6px;
}

.home-contact-line1 h3 {
    color: var(--grey-scale-ffffff, #FFF);
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 44.8px */
}

.home-contact-line1 span {
    color: var(--grey-scale-ffffff, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 157.143% */
}

.home-contact-sub1 h2 {
    color: var(--grey-scale-ffffff, #FFF);
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 56px */
    padding-bottom: 16px;
}

.home-contact-sub1 p {
    color: var(--grey-scale-ffffff, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px; /* 157.143% */
    padding-bottom: 32px;
    max-width: 100%;
}

.home-contact-sub1 a {
    color: var(--005496, #005496);
    background: var(--grey-scale-ffffff, #FFF);
    border-color: #fff;
}

section.home-contact {
    padding-bottom: 80px;
}
section.homes-available {
    padding: 80px 0px;
    background-color: rgba(0, 84, 150, 0.06);
}

.homes-available-headline h2 {
    color: var(--grey-scale-212529, #212529);
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 56px */
    padding-bottom: 40px;
}
.property-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px 0px;
}

.property-card {
    width: 24%;
    background-color: #fff;
    position: relative;
    border: 1px solid var(--grey-scale-e-9-ecef, #E9ECEF);
    border-radius: 4px 4px 4px 4px; 
}

span.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 9;
    color: var(--grey-scale-ffffff, #FFF);
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 2px;
    background: #2FBF71;
    padding: 4px 8px;
}

.property-content h3 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 25.2px */
    padding: 16px 30px 10px 30px;
}

.property-content p {
    color: var(--grey-scale-495057, #495057);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
    padding: 0px 30px 14px 30px;
}

.property-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: rgba(233, 236, 239, 0.60);
    margin-bottom: 14px;
}

.property-icon1 {
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-icons img {
    width: 14px;
    height: 14px;
    gap: 16px;
}

.property-icon1 span {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
 
.property-card a {
    color: var(--005496, #005496);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 4px;
    border: 1px solid var(--005496, #005496);
    width: 90%;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    background: transparent;
}  

.property-content {
    padding-bottom: 16px;
} 

.badge.red { background-color: #DC3545; }
.badge.yellow { background-color: #FFA500; }

a.sold-out { 
    background-color: #F2F4F5 !important;
    color: #ADB5BD !important;
    cursor: not-allowed;
    border: 1px solid #dee2e6 !important;
	border-radius: 4px;
}
.view-all-home {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}
.client-says-headline h2 {
    color: var(--grey-scale-212529, #212529);
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    padding-bottom: 48px;
}
section.client-says {
    padding: 80px 0px;
}
 
/* testi slide */
img.quote-icon {
    width: 80px !important;
    height: 80px;
    position: absolute;
    right: 24px;
    top: 23px;
}

img.stars {
    max-width: max-content;
    margin-bottom: 24px;
}

.testimonial-card h3 {color: var(--grey-scale-212529, #212529);font-family: Inter;font-size: 20px;font-style: normal;font-weight: 600;line-height: 140%; /* 28px */padding-bottom: 16px;}

p.testimonial-text {
    color: var(--grey-scale-495057, #495057);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding-bottom: 26px;
}

p.testimonial-name {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 22.4px */
    margin-bottom: 12px;
}

p.testimonial-role {
    color: var(--grey-scale-495057, #495057);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 171.429% */
}

.testimonial-card {
    padding: 32px 25px;
    border-radius: 0px 0px 4px 4px;
    border: 1px solid var(--grey-scale-e-9-ecef, #E9ECEF);
    background: var(--grey-scale-ffffff, #FFF);
    position: relative;
}
.home-banner-content h1 span {
    color: var(--005496, #005496);
}
.site-banner-content h2 {
    color: var(--grey-scale-212529, #212529);
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 56px */
}

section.site-banner {
    padding: 52px 0px;
    background-color: rgba(0, 84, 150, 0.1);
}
.apartments-rent-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.apartments-rent-content {
    width: 46%;
}

.apartments-rent-image {
    width: 49%;
}

.apartments-rent-content h2 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 56px */
    padding-bottom: 20px;
}

.apartments-rent-content p {
    color: var(--grey-scale-495057, #495057);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 22.4px */
    padding-bottom: 32px;
}
section.apartments-rent {
    padding: 0 0 80px 0px;
}
.ronning-apartments-header h2 {
    color: var(--grey-scale-212529, #212529);
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 56px */
    padding-bottom: 48px;
}
.ronning-apartments-main {
    display: flex;
    justify-content: space-between;
}

.ronning-apartments-map {
    width: 61%;
}

.ronning-apartments-content {
    width: 38%;
    padding-right: 24px;
}

.ronning-apartments-views-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0px;
}

.ronning-apartments-view-main {
    display: flex;
    align-items: center;
    gap: 8px;
}


.ronning-apartments-views-flex img {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid var(--grey-scale-dee-2-e-6, #DEE2E6);
    background: var(--grey-scale-ffffff, #FFF);
}
h4.properties-text1 {
    color: var(--grey-scale-6-c-757-d, #6C757D);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 8px;
}
.property-grid.to-colum .property-card {
    width: 49%;
}
.to-colum .property-icons {
    padding: 13px 16px;
}

.to-colum .property-content h3, .to-colum .property-content p {
    padding-left: 16px;
    padding-right: 16px;
}
 /* grid or list */

 .property-card {
    transition: 0.8s;
}
.active-list .property-card {
    width: 100% !important;
    display: flex;
    gap: 20px;
    align-items: center;
}

.active-list .image-wrapper img {
    height: 100%;
    object-fit: cover;
}

.active-list .image-wrapper {
    height: 100%;
    width: 300px;
}

.ronning-grid-view {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    border: 1px solid var(--grey-scale-dee-2-e-6, #DEE2E6);
    background: var(--grey-scale-ffffff, #FFF);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.ronning-list-view {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    border: 1px solid var(--grey-scale-dee-2-e-6, #DEE2E6);
    background: var(--grey-scale-ffffff, #FFF);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.active-1 svg path {
    fill: #fff !important;
}
.active-1 {
    background-color: #005496;
}
section.ronning-apartments {
    padding-bottom: 80px;
}
section.ronning-apartments {
/*     max-width: 1440px; */
    margin: auto;
}
.to-colum a.inquire-btn {
    color: #fff;
    background-color: var(--005496, #005496);
}

.lot-main1 .to-colum a.inquire-btn {
    color: var(--005496, #005496);
    background-color: #fff;
}   

.site-breadcrumbs-main {
    max-width: 1440px;
    margin: auto;
    padding: 12px 24px;
     background: #F2F4F5;
}  

.site-breadcrumbs-main ul {
    display: flex;
    gap: 16px;
}

.site-breadcrumbs-main a {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
}

.site-breadcrumbs-main li:last-child a {color: var(--005496, #005496);}
.apartments-detail-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 50px;
}

.apartments-detail-btn-1 button {
    display: flex;
    gap: 6px;
    padding: 12px 11px;
    border-radius: 4px;
    background: var(--grey-scale-ffffff, #FFF);
    border: none;
}

.apartments-detail-btn-2 a {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid var(--grey-scale-dee-2-e-6, #DEE2E6);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.apartments-detail-btn-2 {
    display: flex;
    gap: 8px;
}
section.ronning-apartments.apartments-details-al {
    position: relative;
}

section.ronning-apartments.apartments-details-al::before {
    position: absolute;
    content: "";
    background: #F2F4F5;
    width: 100%;
    height: 76px;
    z-index: -1;
    top: 0;
    right: 0;
}
.appart-details-headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
}

.appart-details-headline h3 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 33.6px */
}

.appart-details-headline span {
    color: var(--grey-scale-ffffff, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    border-radius: 2px;
    background: #2FBF71;
    display: flex;
    padding: 6px 10px;
}

.appart-details-loc {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 18px;
}

.appart-details-loc p {
    color: var(--grey-scale-495057, #495057);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
	margin-top: -5px;
}

/* Details slider css */

 .main-slider-container {
            position: relative;
            width: 576px;
            height: 376px;
            margin: 0 auto;
        }

        .main-slider {
            width: 100%;
            height: 100%;
        }

        .main-slider-item {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .main-slider img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .zoom-icon {
            position: absolute;
            bottom: 12px;
            right: 12px;
            width: 44px;
            height: 44px;
            background-color: #fff;
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
        }

        .thumbnails-slider {
            margin-top: 15px;
            width: 100%;
        }

        .thumbnail-item {
            width: 40px;
            height: 40px;
            cursor: pointer;
            position: relative;
        }

        .thumbnail-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
        }

        .thumbnail-item.active {
            border-color: #007bff;
        }

        .thumbnail-item.more-thumbs {
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-size: 14px;
            font-style: normal;
            line-height: normal;
            background: rgba(0, 0, 0, 0.70);
            color: #fff;
            border-radius: 4px;
        }
        .zoom-icon img {
    max-width: 28px !important;
    height: 28px;
    object-fit: contain;
}
.thumbnails-slider {
    max-width: 256px;
    padding: 8px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.70) 100%), url(<path-to-image>) lightgray 50% / cover no-repeat;
    border-radius: 4px;
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 99;
}
.appart-details-slides {
    position: relative;
    margin-bottom: 8px;
}
.appart-details-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    background: #F2F4F5;
    padding: 12px 16px;
    margin-bottom: 32px;
}

.appart-details-list1 {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 33%;
}

.appart-details-list1 h4 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.available-plans-headline h3 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 32px;
}

/* tabing */
.tabs {
      display: flex;
      border-bottom: 2px solid #ccc;
      justify-content: space-between;
    }

    .tab {
      padding: 10px 10px;
      cursor: pointer;
      margin-right: 10px;
      border-bottom: 2px solid transparent;
      color: var(--grey-scale-212529, #212529);
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
    }

    .tab.active {
      border-color: #005496;
      color: #005496;
      font-weight: bold;
    }

    .tab-content {
      display: none;
      padding: 15px 0;
    }

    .tab-content.active {
      display: block;
    }

    .info-row {
      margin: 10px 0 20px 0px;
      color: var(--grey-scale-495057, #495057);
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: 140%; /* 22.4px */
      display: flex;
      gap: 30px;
    }

    .info-label {
      width: 45%;
    }
    .near-by-headline h2 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 24px;
}
.near-by-sub-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
 
.near-by-img {
    display: flex;
    align-items: center;
    gap: 16px;
}


h4.near-by-name {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 22.4px */
}

.near-by-text {
    color: var(--grey-scale-495057, #495057);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 19.6px */
}
.near-by-btns a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 22px 22px;
    border-radius: 4px;
    background: var(--005496, #005496);
    color: var(--grey-scale-ffffff, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: 2px solid var(--005496, #005496);
    width: 48%;
    justify-content: center;
}

.near-by-btns {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 16px;
    border-bottom: 1px solid #E9ECEF;
    padding-bottom: 34px;
    margin-bottom: 34px;
}

.near-by-btns a:nth-child(2) {color: #005496;background: transparent;}
.detail-neighborhood-headline h2 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 33.6px */
    padding-bottom: 16px;
}
section.new-home-bar-1 {
    max-width: 1440px;
    margin: auto;
}

.home-bar-1-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid var(--grey-scale-e-9-ecef, #E9ECEF);
    margin-bottom: 0;
}

.home-bar-1-sub-1 button {
    color: var(--grey-scale-ffffff, #FFF);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    background: var(--005496, #005496);
    border: none;
    padding: 12px 16px;
}

.home-bar-1-sub-2 select {
    color: var(--005496, #005496);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    padding: 15px 16px;
    border-radius: 4px;
    border: 1px solid var(--005496, #005496);
    background: var(--grey-scale-ffffff, #FFF);
}

.home-bar-1-sub-3 select {
    color: var(--grey-scale-6-c-757-d, #6C757D);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px; /* 128.571% */
    padding: 15px 16px;
    border-radius: 4px;
    border: 1px solid var(--grey-scale-dee-2-e-6, #DEE2E6);
    background: var(--grey-scale-ffffff, #FFF);
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 24px 12px 24px;
    border-bottom: 1px solid var(--grey-scale-e-9-ecef, #E9ECEF);
}

.filters {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.filter-tag {
    border-radius: 4px;
    border: 1px solid var(--grey-scale-dee-2-e-6, #DEE2E6);
    padding: 7px 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

a.clear-filters {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.appart-details-list.adl-2 {
    margin-bottom: 6px;
}
.lots-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 16px;
}

.lots-sub1 {
    width: 32.5%;
    border-radius: 0px 0px 4px 4px;
    border: 1px solid var(--grey-scale-e-9-ecef, #E9ECEF);
    background: var(--grey-scale-ffffff, #FFF);
    text-align: center;
}

.lots-sub1 h3 {
    color: var(--grey-scale-212529, #212529);
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 25.2px */
    padding-top: 16px;
}

.lot-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 0px;
}

.lots-sub1 a {
    color: var(--005496, #005496);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 4px;
    border: 1px solid var(--005496, #005496);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px;
    max-width: 92%;
    margin: auto;
    margin-bottom: 16px;
}

.lots-sub1 a:hover {color: #fff !important;background: var(--005496, #005496);}

section.lots-main {
    padding: 80px 0px;
}
.lots-img {
    position: relative;
}
.thumbnail-item img {
    border: 1px solid transparent;
}

.thumbnail-item.active img {
    border-color: #fff;
}
.tab:nth-child(1) {
    padding-left: 0px;
}

/* for filter */

 .filter-panel {
      width: 388px;
      padding: 24px 20px;
      border-right: 1px solid #ddd;
      box-sizing: border-box;
    }

    .filter-panel h2 {
    color: var(--005496, #005496);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    }

    .filter-section {
      margin-bottom: 20px;
      border-bottom: 1px solid #E9ECEF;
      padding-bottom: 20px;
    }

    .filter-section h3 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 16px;
    }

    .filter-section input[type="text"],
    .filter-section input[type="number"] {
      width: 100%;
      padding: 10px 12px;
      font-size: 14px;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-sizing: border-box;
      height: 48px;
    }

    .checkbox-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .checkbox-list label {
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
      color: var(--grey-scale-6-c-757-d, #6C757D);
      font-family: Inter;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: normal;
    }

    .checkbox-list input[type="checkbox"] {
      appearance: none;
      width: 18px;
      height: 18px;
      position: relative;
      cursor: pointer;
      border-radius: 4px;
      border: 1px solid var(--grey-scale-e-9-ecef, #E9ECEF);
      margin: 0px;
    }

    .checkbox-list input[type="checkbox"]:checked {
      background-color: #005496;
      border-color: #005496;
    }

    .checkbox-list input[type="checkbox"]:checked::after {
      content: "";
      position: absolute;
      top: 2px;
      left: 6px;
      width: 4px;
      height: 8px;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }

    .range-fields {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .range-fields input {
      flex: 1;
    }

    .input-wrapper {
      position: relative;
    }

    .clear-button {
      display: inline-block;
      padding: 10px 16px;
      background-color: #ef4444;
      color: white;
      font-size: 14px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 10px;
    }

  .input-wrapper {
    position: relative;
    flex: 1;
  }

  .input-wrapper input {
    width: 100%;
    padding: 10px 40px 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
  }

  .input-suffix {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--grey-scale-212529, #212529);
    text-align: right;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  /* Hide arrows in number input fields for Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* For Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
 .input-with-icon {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border-bottom: 1px solid #E9ECEF;
  padding-bottom: 20px;
}

.input-with-icon input {
  width: 100%;
  padding: 10px 0px 10px 40px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid var(--Neutral-Grey-02, #E7E6E6);
  /* box-shadow: 0px 0px 20px 0px rgba(0, 27, 51, 0.04); */
  height: 47px;
}

.input-with-icon input::placeholder {
color: var(--grey-scale-6-c-757-d, #6C757D);
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
 
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.filter-section:last-child {
    border: none;
    padding: 0px;
}
.search-input1 {
    position: relative;
}
.input-with-icon h3 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding-bottom: 16px;
}
section.filter-sec {
    position: fixed;
    top: 0;
    background-color: #fff;
    z-index: 9999;
    height: 100vh;
    overflow: auto;
    left: -50%;
    transition: 0.8s;
}
.filter-headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
section.filter-sec.active-filter {
    left: 0;
}
body.active-body-1 #wrapper::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    z-index: 9999;
    background: #0000007d;
    transition: 0.8s;
}
body.active-body-1 {
    overflow: hidden;
}
.btn-cross {
    cursor: pointer;
}
/* About Page  */

.apartments-rent-content h3 {
    color: var(--005496, #005496);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    /* 33.6px */
    margin-bottom: 20px;
}

.apartments-rent-image {
    position: relative;
    max-height: 630px;
    height: 100%;
}

.rent-ron {
    position: absolute;
    bottom: 12px;
    right: 12px;
    border-radius: 4px;
    background: var(--grey-scale-ffffff, #FFF);
    padding: 10px;
}

.apartments-rent-image img {
    height: 100%;
    object-fit: cover;
}





.timeline-carousel .item {
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    max-width: 120px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid rgba(12, 29, 38, 0.15);
    background: #F2F4F5;
    color: var(--Black, #0C1D26);
    text-align: center;
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.timeline-carousel .owl-item.center .item {
    background: #004b87;
    color: #fff;
    transform: scale(1.1);
}

.item-desc {
    display: none;
    /* Hidden from view */
}

.timeline-desc {
    margin-top: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--grey-scale-495057, #495057);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
}

.owl-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.about-growth {
    border-radius: 4px;
    background: #F2F4F5;
    padding: 80px 100px;
}

.growth-dec {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 56px;
}

.growth-dec h2 {
    color: var(--grey-scale-212529, #212529);
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    /* 56px */
}

.growth-dec p {
    color: var(--grey-scale-495057, #495057);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
}

.growth-slider-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
}

.growth-slider-wrapper button {
    width: 48px;
    max-width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid var(--005496, #005496);
    background: #F2F4F5;
    padding: 16px;
}

.growth-slider-wrapper button img {
    max-width: 16px;
    height: 16px;
    display: block;
    padding: 0;
}

section.about-growth .container {
    padding: 0;
}

.timeline-carousel {
    position: relative;
}

.timeline-carousel::after {
    content: "";
    position: absolute;
    border-radius: 6px;
    background: var(--grey-scale-dee-2-e-6, #DEE2E6);
    width: 100%;
    max-width: 100%;
    height: 10px;
    top: 20px;
    z-index: -1;
}

.today-nav ul li {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--005496, #005496);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    /* 22.4px */
    margin-bottom: 16px;
}

.today-nav ul li img {
    width: 100%;
    max-width: 20px;
    height: 20px;
}

.today-nav {
    margin-bottom: 32px;
}


/* FAQ Section  */

.what-we-do {
    padding: 80px 0;
    background: var(--grey-scale-f-6-f-7-f-8, #F6F7F8);
}

.what-we-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.left-side img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.right-side {
    /* flex: 1; */
    /* min-width: 300px; */
    width: 100%;
    max-width: 49.38%;
}

.right-side h2 {
    margin-bottom: 48px;
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    /* 56px */
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid var(--grey-scale-dee-2-e-6, #DEE2E6);
}

.accordion-title {
    width: 100%;
    padding: 30px 28px;
    text-align: left;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    /* 33.6px */
    background: transparent;
}

.accordion-content {
    display: none;
    padding: 15px;
    border-top: 1px solid #ddd;
}

.accordion-item.active .accordion-content {
    display: block;
}

.discover-btn {
    border: none;
    cursor: pointer;
    color: var(--grey-scale-ffffff, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 4px;
    background: var(--005496, #005496);
    width: 196px;
    height: 47px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    /* max expected height of content */
    opacity: 1;
    padding: 16px 28px 28px;
}

.left-side {
    width: 100%;
    max-width: 46%;
    max-height: 703px;
    height: 100%;
    border-radius: 8px;
}

.left-side img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.accordion-item.active button.accordion-title {
    background: #fff;
    border: none;
}

.accordion-item.active .accordion-content {
    border: none;
    background: #fff;
}

.accordion-item.active button.accordion-title {
    padding-bottom: 0;
}

.accordion-content p {
    color: var(--grey-scale-495057, #495057);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
    max-width: 510px;
    margin-bottom: 20px;
}

.accordion-item.active {
    border: none;
}

.accordion-item.active .arrow img {
    transform: rotate(180deg);
}

section.about-value {
    margin: 80px 0;
}

.about-value-content h2 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    /* 56px */
    text-align: center;
}

.about-value-card-content {
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
}

.about-value-card {
    border-radius: 0px 0px 4px 4px;
    border: 1px solid var(--grey-scale-e-9-ecef, #E9ECEF);
    background: var(--grey-scale-ffffff, #FFF);
    width: 100%;
    max-width: 32.5%;
    padding: 56px 28px;
}

.about-value-card-data {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.value-card-img {
    border-radius: 4px;
    border: 1px solid var(--005496, #005496);
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.value-card-img img {
    width: 100%;
    max-width: 48px;
    height: 48px;
}

.about-value-card-data h3 {
    color: var(--grey-scale-212529, #212529);
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    /* 33.6px */
    margin-bottom: 16px;
}

.about-value-card-data p {
    color: var(--grey-scale-495057, #495057);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
}


/* Contact Page CSS  */

.contact-card-data {
    border-radius: 8px;
    background: rgb(0 84 150 / 5%);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: 0.4s;
}

.contact-card {
    width: 100%;
    max-width: 24.1%;
}

.contact-card-img {
    border: 0.8px solid var(--005496, #005496);
    width: 100%;
    max-width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-card-img img {
    width: 100%;
    max-width: 22px;
    height: 22px;
    object-fit: cover;
}

.contact-card-text h6 {
    color: var(--grey-scale-6-c-757-d, #6C757D);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 157.143% */
    margin-bottom: 4px;
}

.contact-card-text p {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 157.143% */
}

section.contact-page {
    margin: 80px 0;
}

.contact-top-card {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin-bottom: 64px;
}

.contact-page-data-left {
    width: 100%;
    max-width: 42.43%;
}

.contact-page-data-left h2 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    /* 56px */
    max-width: 524px;
    margin-bottom: 16px;
}

.contact-page-data-left p {
    color: var(--grey-scale-495057, #495057);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    /* 22.4px */
}

.contact-detail {
    border-radius: 8px;
    background: #f2f6fa;
    margin: 32px 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.contact-location-data {
    display: flex;
    align-items: center;
    gap: 16px;
}

.location-img {
    border: 0.8px solid var(--005496, #005496);
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location-img img {
    width: 100%;
    max-width: 22px;
    height: 22px;
}

.location-text h6 {
    color: var(--grey-scale-6-c-757-d, #6C757D);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 157.143% */
    margin-bottom: 4px;
}

.location-text p {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 157.143% */
}

.contact-social h3 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    /* 33.6px */
}

.contact-social-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 23px;
}

.contact-social-icon a {
    border-radius: 3px;
    border: 1px solid var(--005496, #005496);
    width: 100%;
    max-width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.6s;
}
.contact-social-icon a img{
    filter: brightness(0) saturate(100%) invert(16%) sepia(70%) saturate(3562%) hue-rotate(192deg) brightness(101%) contrast(103%);
}

.contact-social-icon a img {
    width: 100%;
    max-width: 20px;
    height: 20px;
}

.contact-form {
    background-color: #f2f6fa;
    padding: 32px 24px;
    border-radius: 10px;
    width: 100%;
    max-width: 49.4%;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.form-group {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
}

.full-width {
    width: 100%;
    margin-bottom: 24px;
}

.form-group label {
    margin-bottom: 11px;
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 128.571% */
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 14px;
    outline: none;
    resize: vertical;
    border-radius: 4px;
    border: 1px solid var(--Neutral-Grey-02, #E6E6E7);
    background: #FFF;
    color: var(--grey-scale-6-c-757-d, #6C757D);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    /* 128.571% */
    width: 100%;
    max-width: 100%;
}

.form-group textarea {
    min-height: 74px;
    resize: none;
}

.form-group button {
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    background: var(--005496, #005496);
    height: 48px;
    color: var(--grey-scale-ffffff, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border: 2px solid var(--005496, #005496);
}

.form-group button:hover {
    background-color: #004080;
}

.full-width:last-child {
    margin-bottom: 0;
}

.contact-page-data {
    display: flex;
    justify-content: space-between;
}
.contact-social-icon a:hover {
    background: #005496;
    
}
.contact-social-icon a:hover img{
  
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(309deg) brightness(103%) contrast(103%);
} 
.login-btn:hover {
    background-color: transparent;
    color: var(--005496, #005496);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--005496, #005496);
}

.details a:hover {
    color: #fff;
    background: var(--005496, #005496);
}

.home-contact-sub1 a:hover {color: #fff;}

.property-card a:hover {
    color: #fff;
    background-color: var(--005496, #005496);
}
.to-colum a.inquire-btn:hover {
    background: transparent;
    color: var(--005496, #005496);
}
.lot-main1 .to-colum a.inquire-btn:hover {
    background: var(--005496, #005496);
    color: #fff;
}
.contact-card-data:hover .contact-card-img {
    background-color: #fff;
}  

.contact-card-data:hover {
    background-color: #005496;
}

.contact-card-data:hover h6 {
    color: #fff;
}

.contact-card-data:hover p {
    color: #fff;
}
.form-group button:hover {
    background: transparent;
    color: var(--005496, #005496);
}
.beginning-flex {
            display: flex;
            justify-content: space-between;
        }

        .beginning-contnet {
            width: 46%;
        }

        .beginning-video {
            width: 49.4%;
        }

        section.about-beginning {
            padding: 80px 0px;
        }

        .beginning-contnet h3 {
            color: var(--grey-scale-212529, #212529);
            font-family: Inter;
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 140%;
            /* 56px */
            padding-bottom: 20px;
        }

        .beginning-flex p {
            color: var(--grey-scale-495057, #495057);
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 140%;
            /* 22.4px */
        }

        .beginning-text-img {
            display: flex;
            gap: 12px;
            padding-top: 122px;
            padding-bottom: 12px;
        }

        .text-img-1 {
            min-width: 70px;
        }

        .beginning-video-main {
            height: 346px;
            width: 100%;
            border-radius: 8px;
            margin-bottom: 32px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }

        .beginning-video p {
            padding-bottom: 20px;
        }

        .ronning-about-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #F2F4F5;
            border-radius: 8px;
        }

        .ronning-about-image {
            width: 45.7%;
        }

        .ronning-about-content {
            width: 44.6%;
            margin-right: 64px;
        }

        .ronning-about-image img {
            border-radius: 8px;
        }

        .ronning-about-content p {
            color: var(--grey-scale-495057, #495057);
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 140%;
            /* 22.4px */
            padding-bottom: 30px;
        }

        section.ronning-about {
            margin-bottom: 80px;
        }

        section.about-grows {
            margin-bottom: 80px;
            padding: 80px 0px;
            background: var(--005496, #005496);
        }

        .grows-header h3 {
            color: #FFF;
            font-family: Inter;
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 140%;
            /* 56px */
            padding-bottom: 20px;
        }

        section.about-grows p {
            color: #FFF;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 140%;
            /* 22.4px */
            opacity: 0.8;
        }

        .grows-header {
            padding-bottom: 40px;
        }

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

        .grows-content {
            width: 49.4%;
        }

        .grows-image {
            width: 45.7%;
        }

        h2.beyond-header {
            color: var(--grey-scale-212529, #212529);
            font-family: Inter;
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 140%;
            /* 56px */
            padding-bottom: 20px;
        }

        section.about-beyond p {
            color: var(--grey-scale-495057, #495057);
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 140%;
            /* 22.4px */
        }

        .beyond-flx {
            display: flex;
            justify-content: space-between;
            padding-bottom: 40px;
        }

        .beyond-content-1 {
            width: 46.3%;
        }

        .beyond-content-2 {
            width: 49.4%;
        }

        .beyond-main {
            display: flex;
            justify-content: space-between;
            padding-bottom: 100px;
        }

        .beyond-main-image {
            width: 46.3%;
            border-radius: 8px;
        }

        .beyond-main-content {
            width: 49.4%;
        }

        .beyond-main-content a {
            color: var(--grey-scale-ffffff, #FFF);
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            padding: 14px 55px;
            border-radius: 4px;
            background: var(--005496, #005496);
            display: inline-block;
            margin-top: 28px;
        } 
.beginning-contnet p a {
    color: var(--005496, #005496);
    font-weight: 600;
}
.grows-content p {
    padding-bottom: 20px;
}

.beyond-main-image img {
    border-radius: 8px;
}
.filter-bar-f2 select {
    border: none;
    padding: 0px;
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    max-width: max-content;
}

.filter-bar-f2 {
    display: flex;
    gap: 24px;
}
.home-bar-1-sub-1.flex-filter {
    display: flex;
    align-items: center;
    gap: 16px;
}
.flex-short-bt {
    display: flex;
    gap: 16px;
}
.search-box-s1 {
    width: 247px;
    height: 47px;
    border-radius: 6px;
    border: 1px solid var(--Neutral-Grey-02, #E7E6E6);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 13px 16px 14px 16px;
}

.search-box-s1 button {
    border: none;
    background: transparent;
}

.search-box-s1 input {
    height: 100%;
    width: 100%;
    border: none;
    color: var(--grey-scale-6-c-757-d, #6C757D);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.property-content.on-lot-2 {
    text-align: center;
}

.property-icon1.on-lot-3 {
    justify-content: center;
    padding-bottom: 14px;
}
.lot-detal-content-1 h3 {
            color: var(--grey-scale-212529, #212529);
            font-family: Inter;
            font-size: 32px;
            font-style: normal;
            font-weight: 600;
            line-height: normal;
            padding-bottom: 20px;
        }

        .lot-detal-content-1 p {
            color: var(--grey-scale-495057, #495057);
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 140%;
            /* 22.4px */
            padding-bottom: 25px;
        }

        .lot-detal-content-1 a {
            width: 216px;
            padding: 14px 14px;
            color: var(--grey-scale-ffffff, #FFF);
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
            border-radius: 4px;
            background: var(--005496, #005496);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .lot-detal-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        .lot-detal-content-1 {
            margin-bottom: 12px;
            padding: 36px 24px;
            background: var(--grey-scale-f-6-f-7-f-8, #F6F7F8);
        }
        .lot-bar1 {
            margin-bottom: 0px !important;
        }
.custom-select-wrapper {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

.custom-select-btn {
    background: transparent !important;
    border: none !important;
    font-size: 16px !important;
    cursor: pointer;
    padding: 8px 12px !important;
    display: flex !important;
    align-items: center !important;
    color: var(--grey-scale-212529, #212529) !important;
    font-weight: 400 !important;
	gap: 8px !important;
}
.custom-select-wrapper i {
    font-size: 12px;
    margin-top: 2px;
}

.custom-arrow {
  margin-left: 8px;
  font-size: 14px;
}  

.custom-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 12px;
    width: max-content;
    display: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.custom-select-wrapper.open .custom-dropdown {
    display: flex;
    gap: 10px;
    border-radius: 6px;
}
.custom-drop-1 {
    border: 2px solid #0000001a;
}

.custom-drop-1 {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 10px;
    border-radius: 4px;
}

.custom-drop-1 label {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.custom-drop-1 input {
    border: none;
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 80px;
}
  
 

.showing-results-main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 80px;
        }

        section.showing-results {
            padding-top: 48px;
            padding-bottom: 80px;
        }

        .showing-results-main h4 {
            color: var(--grey-scale-212529, #212529);
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
        }

        .showing-results-main span {
            color: var(--grey-scale-6-c-757-d, #6C757D);
            text-align: right;
            font-family: Inter;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

        .showing-results-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 40px;
        }

        .showing-results-header h2 {
            color: var(--grey-scale-212529, #212529);
            text-align: center;
            font-family: Inter;
            font-size: 40px;
            font-style: normal;
            font-weight: 600;
            line-height: 140%;
            /* 56px */
        }

        .property-card.search-card {
            width: 24% !important;
        }

        .property-grid.to-colum.main-appart.search-flex {
            padding: 0px 55px;
        }
.top-left a {
    opacity: 0;
    visibility: hidden;
} 



   
    

/* new css */


   @media screen and (max-width: 1201px) {
            .beginning-flex {
                flex-wrap: wrap;
                gap: 50px;
            }

            .beginning-contnet {
                width: 100%;
            }

            .beginning-video {
                width: 100%;
            }

            .ronning-about-flex {
                flex-wrap: wrap;
                gap: 50px;
                padding: 80px;
            }

            .ronning-about-image {
                width: 100%;
            }

            .ronning-about-content {
                width: 100%;
            }

            .grows-flex {
                flex-wrap: wrap;
                gap: 50px;
            }

            .grows-content {
                width: 100%;
            }

            .grows-image {
                width: 100%;
            }
	   .home-bar-1-flex {
    flex-wrap: wrap;
    gap: 16px;
}
.home-bar-1-sub-1.flex-filter {
    width: 100%;
    justify-content: space-between;
}
.home-bar-1-sub-1.flex-filter {
    flex-wrap: wrap;
}
.flex-short-bt {
    position: absolute;
    right: 20px;
    top: 15px;
}

.home-bar-1-flex.on-filter-1 {
    position: relative;
}	   
.filter-bar-f2 {
    width: 100%;
}
	   .filter-bar-f2 {
    padding-top: 80px;
}
	   .search-box-s1 {
    width: 100%
	   }
	       .lot-main-sec1 .flex-short-bt {
        right: auto;
	   } 
	   
        }  


        @media screen and (max-width: 901px) {
            section.about-beginning {
                padding: 60px 0px;
            }

            .beginning-text-img {
                display: flex;
                gap: 12px;
                padding-top: 40px !important;
                padding-bottom: 40px;
                align-items: center;
            }

            .ronning-about-flex {
                flex-wrap: wrap;
                gap: 50px;
                padding: 20px;
            }

            section.about-grows {
                margin-bottom: 60px;
                padding: 60px 0px;
            }

            .beyond-flx {
                flex-wrap: wrap;
                gap: 30px;
            }

            .beyond-content-1 {
                width: 100%;
            }

            .beyond-content-2 {
                width: 100%;
            }

            .beyond-main {
                flex-wrap: wrap;
                gap: 30px;
                padding-bottom: 60px;
            }

            .beyond-main-image {
                width: 100%;
            }

            .beyond-main-content {
                width: 100%;
            }
.filter-bar-f2 {
        flex-wrap: wrap;
        padding-bottom: 10px;
    }
			


        }

        @media screen and (max-width: 701px) {
            .beginning-contnet h3 {
                font-size: 30px;
                padding-bottom: 10px;
            }

            .beginning-flex p {
                font-size: 14px;
            }

            section.about-beginning {
                padding: 40px 0px;
            }

            .beginning-text-img {
                padding-top: 20px !important;
                padding-bottom: 20px;
            }

            .beginning-video-main {
                height: 220px;
            }

            .ronning-about-flex {
                gap: 0px;
                padding: 0px;
            }

            .ronning-about-content p {
                font-size: 14px;
                padding: 20px;
            }

            .ronning-about-content {
                margin-right: 0px;
            }

            section.ronning-about {
                margin-bottom: 60px;
            }

            section.about-grows {
                margin-bottom: 40px;
                padding: 40px 0px;
            }

            .grows-header h3 {
                font-size: 30px;
            }

            section.about-grows p {
                font-size: 14px;
            }

            .grows-header {
                padding-bottom: 40px;
            }

            .grows-flex {
                flex-direction: column-reverse;
                gap: 30px;
            }

            h2.beyond-header {
                font-size: 30px;
            }

            section.about-beyond p {
                font-size: 14px;
            }  
.filter-bar-f2 {
    padding-bottom: 10px;
} 
			
.home-bar-1-sub-1.flex-filter.page-f2 {
    gap: 80px;
}  
.flex-short-bt {
    flex-direction: column;
    align-items: end;
    gap: 10px;
}
.lot-detal-content-1 h3 {
    color: var(--grey-scale-212529, #212529);
    font-family: Inter;
    font-size: 26px;
	padding-bottom: 15px;
			}
			.lot-detal-content-1 {
    margin-bottom: 12px;
    padding: 16px 20px;
			}
			.lot-detal-content-1 p {
    font-size: 14px;
    padding-bottom: 15px;
}
.lot-detal-content-1 a {
    width: 48%
			}
			.lot-detal-links {
    gap: 10px;
}
	.lot-detal-content-1 a {
    padding: 10px 8px;
    font-size: 12px;	
			}
			
			

        }

/* 4 - 8 - 2025  */
.contact-form form select{
    appearance: none;
	background: url('https://jaidenshannon.com/ronning-companies/wp-content/uploads/2025/08/select.svg');
	background-repeat:no-repeat;
	background-position: center right 18px;
	cursor:pointer;
	background-color: #fff;
}

.home-bar-1-flex select{
    appearance: none;
	background: url('https://jaidenshannon.com/ronning-companies/wp-content/uploads/2025/08/dark-arrow.svg');
	background-repeat:no-repeat;
	background-position: center right 1%;
	padding-right: 20px;
	max-width: 170px;
	cursor:pointer;
}

.home-bar-1-flex select#neighborhoods {
    appearance: none;
	background: url('https://jaidenshannon.com/ronning-companies/wp-content/uploads/2025/08/blue-dropdown.svg');
	background-repeat:no-repeat;
	background-position: center right 16px;
	max-width: unset;
	cursor:pointer;
	padding-right:40px !important;
}

.lot-bar1 .home-bar-1-sub-2 select {
    max-width: unset !important;
	appearance: none;
	background: url('https://jaidenshannon.com/ronning-companies/wp-content/uploads/2025/08/blue-dropdown.svg');
	background-repeat:no-repeat;
	background-position: center right 16px;
	width:211px;
	cursor:pointer;
}

.lot-bar1 .home-bar-1-sub-3 select {
    max-width: unset !important;
	appearance: none;
	background: url('https://jaidenshannon.com/ronning-companies/wp-content/uploads/2025/08/select.svg');
	background-repeat:no-repeat;
	background-position: center right 16px;
	padding-right: 40px;
	width:max-content;
	cursor:pointer;
}


p.no__lots__text {
    font-size: 30px;
    font-style: italic;
    margin-top: 60px;
}

html.menu-open {
  overflow: hidden;
}

.current-menu-item a, li.current>a{
	color:#005496;
}

footer .current-menu-item a, footer li.current>a {
    color: #fff;
	font-weight: 700;
}

.btn-primary{
	text-transform: capitalize;
}

.filter-bar-f2 {
	width: 100%;
/*     overflow-x: scroll;
    white-space: nowrap;
    scrollbar-width: none; */
    padding-right: 40px;
}

/* .home-bar-1-sub-1.flex-filter {
    width: max-content;
    overflow-x: scroll;
	white-space: nowrap;
    scrollbar-width: none;
} */

.apartments-detail-btn {
    position: relative;
}

.share-popup{
	top: 65px !important;
    right: 80px !important;
}

.appart-details-list1 {
    width: max-content !important;
}

section.new-home-bar-1 .home-bar-1-flex select.sort-dropdown{
	background-position: center right 10px;
}
.apartments-detail-btn-1 button {
    color: #212529;
}

.appart-details-slides img {
    cursor: pointer;
}

.tabs {
    border-bottom: 2px solid #E9ECEF;
}

.appart-details-headline h3 {
    max-width: 78%;
}
.post-type-archive-homes section.ronning-apartments {
    padding-bottom: 24px;
}
.post-type-archive-commercial .property-icon1 span {
    font-size: 11px;
}

 div#selected-filters {
    overflow-x: scroll;
	scrollbar-width:none;
    white-space: nowrap;
    padding-right: 40px;
}

.filter-bar {
    flex-wrap: wrap;
    gap: 20px;
    padding-top:20px;
}

/* .home-bar-1-sub-1.flex-filter {
    overflow-y: visible;
    position: relative;
    overflow-x: auto; 
} */

.top-logo-new a {
    opacity: 1;
    visibility: visible;
}
.top-logo-new img {
    max-width: 204px;
}

.property-grid.to-colum .property-card a.inquire-btn {
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
}

.property-grid.to-colum .property-card {
    padding-bottom: 48px;
}

.contact-location a {
    width: max-content;
    display: block;
}

.search-box {
    padding-bottom: 14px;
}

.search-box input, .search-box select {
    padding: 10px 0;
}

.search-box select{
    appearance:none;
    background: url('https://jaidenshannon.com/ronning-companies/wp-content/uploads/2025/08/select.svg');
	background-repeat:no-repeat;
	background-position: center right;
	cursor:pointer;
}

.why-choose-header-icon img {
  animation: leftRightMove 3s infinite alternate ease-in-out;
}

@keyframes leftRightMove {
  from {
    transform: translateX(0px);
  }
  to {
    transform: translateX(-150px); 
  }
}

.property-content p{
	    max-height: 1rem;
    -webkit-line-clamp: 1;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
	 margin-bottom: 14px;
}

/* .property-content h3{
	min-height: 37px;
    -webkit-line-clamp: 1;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: normal;
    margin-bottom: 10px;
    padding-inline: 15px;
}  */

button.btn-filters {
    min-width: 150px;
}
.property-grid.to-colum.main-appart.active-list a.inquire-btn {
    position:unset;
}

.tabs {
    overflow-x: scroll;
    scrollbar-width: none;
    white-space: nowrap;
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-wrapper {
    height: 160px;
}

.search-tab-content {
        display: none;
    }

    .search-tab-content.search-current {
        display: inherit;
    }

.search-box {
    padding: unset !important;
    background: unset;
    border: unset !important;
    box-shadow: unset;
    backdrop-filter: url();
}

.banner-search {
    border-radius: 8px;
    border: 1px solid #FCFCFD;
    background: linear-gradient(84deg, #FCFCFD 36.52%, rgba(252, 252, 253, 0.83) 98.8%);
    box-shadow: 0 40px 64px -32px rgba(15, 15, 15, 0.10);
    backdrop-filter: blur(16px);
    width: max-content;
    padding: 24px;
}

span.search-tab-link.search-current {
    border-bottom: 2px solid #005496;
    transition: all 0.3s ease-in-out;
}


.search-title span {
    padding-bottom: 13px;
	border-bottom: 2px solid transparent;
	cursor:pointer;
}

.search-title {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: unset;
}

.discover-properties-content {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -60px;
    top: unset;
    height: max-content;
    margin: 0 auto;
}

a.discover-properties-sub1 {
    position: relative;
}

section.discover-properties {
    padding-bottom: 160px;
}

.tabs {
    justify-content: flex-start;
/* 	scrollbar-width:thin; */
}

select.sort-dropdown {
    padding-right: 26px !important;
}

.tabs {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
.tabs::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
 
.tab {
  flex: 0 0 auto;
  scroll-snap-align: start;
  cursor: pointer;
  user-select: none;
}

.property-grid.to-colum.main-appart.search-flex {
    justify-content: flex-start;
    gap: 14px;
}

 select {
    padding: 20px !important;
}

.custom-select-wrapper select {
    padding: unset !important;
}

.filter-bar-f2 {
    align-items: center;
}

.field input {
    margin-top: 9px;
}



#home_video iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}


button.mapboxgl-popup-close-button {
    font-size: 20px;
    right: 4px;
    top: 3px;
}

.mapboxgl-popup-content img {
    margin-top: 20px;
}

#apartments_map {
    height: 100vh !important;
}

/* .legend {
    bottom: 12px !important;
}

.mapboxgl-ctrl-bottom-right {
    bottom: 12px !important;
} */

.mapboxgl-map {
    top: 0px !important;
}

.single .ronning-apartments-map {
    width: 61% !important;
}

.single .apartments-detail-btn {
    justify-content: flex-start;
    gap: 10px;
    flex-direction: row-reverse;
}

.single section.ronning-apartments.apartments-details-al::before {
    display: none;
}

.home .legend {
    width: 97% !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
	justify-content: center;
}

.legend {
    bottom: 40px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 auto !important;
    width: max-content !important;
}
.mapboxgl-popup-content img:focus-visible, .mapboxgl-popup-content img {
    border: none;
    box-shadow: none;
     outline:none;
}

.mapboxgl-popup-content a:focus-visible, .mapboxgl-popup-content {
    outline:none;
     border: none;
    box-shadow: none;
}



