:root{
	--primary:#FF6F00;
    --secondary:#0496B7;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: 'Brasika Display';
  src: url('../font/BrasikaDisplayRegular.woff2') format('woff2'),
       url('../font/BrasikaDisplayRegular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;

}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #0D0D0F;
}

.brasika-font {
  font-family: 'Brasika Display', serif;
    letter-spacing: 0.05em;
}
.brasika-font,
.brasika-font strong,
.brasika-font b {
    font-weight: 400;
}


ul{
	padding:0;
	margin:0;
}
a{
	color: #0D0D0F;
	text-decoration: none !important;
}
/*===========================Home Page ==================================*/
.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #0000003d;
}
.header_inner .header_menu ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 20px;
}
header.header {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 25px;
}
.header_inner .logo img {
    max-width: 100px;
    height: auto;
}
/* Mobile */
@media (max-width: 767px) {
    .header_inner .logo img {
        max-width: 90px !important;
    }
}
.header_inner .header_menu ul li a {
    color: #0D0D0F;
    font-size: 16px;
	transition:0.3s;
}
.header_inner .header_menu ul li a:hover {
    color: var(--primary);
}
.header_button a {
    background: var(--primary);
    color: #fff;
    border-radius: 15px;
    padding: 10px 15px;
}
section.hero_banner {
    padding: 150px 0px 100px;
    background-size: cover;
    background-position: top;
    position: relative;
    margin-bottom: -30px;
    z-index: 0;
}
.hero_banner_left { 
    color: #fff;
}
.hero_banner_left h4 {
    font-size: 80px;
    font-weight: 700;
}
.hero_banner_left p {
    font-size: 20px;
    margin-bottom: 0;
}
.hero_banner_left a {
    background: var(--primary);
    color: #fff;
    border-radius: 15px;
    padding: 7px 15px;
    min-width: 200px;
    display: block;
    width: max-content;
    text-align: center;
    margin-top: 20px;
}
.hero_banner_right {
    background: #fff;
    padding: 30px 20px;
    border-radius: 25px;
}
.hero_banner_right h4 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.cf_group {
    width: 100%;
    margin-bottom: 20px;
}
.cf_group label {
    margin: 0;
    display: block;
    width: 100%;
    font-size: 16px;
}
.cf_group input,.cf_group textarea,  .cf_group select {
    border: 1px solid var(--primary);
    height: 50px;
    width: 100%;
    border-radius: 10px;
    background: #0091EA08;
    padding: 10px;
}
.cf_group textarea {
    height: auto;
}
.cf_group button {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border-radius: 15px;
    padding: 10px 15px;
    display: block;
    text-align: center;
    border: none;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cf_group input.wpcf7-form-control.wpcf7-submit {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border-radius: 15px;
    padding: 10px 15px;
    display: block;
    text-align: center;
    border: none;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.screen-reader-response {
    display: none;
}
span.wpcf7-not-valid-tip {
    color: red;
    border: 1px solid;
    width: 100%;
    display: block;
    padding: 2px 5px;
    margin-top: 3px;
    border-radius: 5px;
}
section.hero_banner:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    background: #2A7B9B;
    background: linear-gradient(180deg, #00000029 45%, rgb(0 0 0 / 75%) 100%);
}
section.highlight_header {
    padding: 100px 0px;
    border-radius: 30px 30px 0px 0px;
    position: relative;
    background: #fff;
}
.highlight_header_left h4 {
    font-size: 48px;
    font-weight: 600;
    margin: 0;
    color: var(--secondary);
}
.highlight_header_right p {
    margin: 0;
    font-size: 20px;
    color: #0D0D0FBF;
}
.highlight_boxes_inner {
    border: 1px solid var(--secondary);
    background: #0091EA08;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
	position:relative;
	top:0;
    transition: 0.5s;
}
.highlight_boxes_inner:hover {
    box-shadow: 5px 5px 15px -5px #00cdfe7a;
    top: -5px;
}
.highlight_boxes_inner .hb_img img {
    max-width: 100%;
}
.hb_text {
    padding: 15px;
}
.hb_text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #0D0D0FBF;
}
.hb_text p {
    font-size: 16px;
    color: #0D0D0FBF;
    margin: 0;
}
section.highlight_boxes {
    padding-bottom: 50px;
}
.ms_left h4 {
    font-size: 48px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
}
.ms_left p {
    font-size: 20px;
    color: #0D0D0FBF;
    margin-bottom: 25px;
}
.ms_boxes {
    padding: 15px;
    border: 1px solid var(--secondary);
    margin-bottom: 15px;
    border-radius: 15px;
    max-width: 100%;
    transition: 0.5s;
    position: relative;
    top: 0;
}
.ms_boxes:hover {
    box-shadow: 5px 5px 15px -5px #00cdfe7a;
    top: -5px;
}
.ms_boxes .msb_head {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.ms_boxes .msb_head p {
    margin: 0;
    margin-left: 10px;
    font-size: 18px;
    font-weight: 600;
}
.ms_boxes .msb_head i {
    color: #fff;
    background: var(--secondary);
    padding: 5px;
    border-radius: 5px;
}
.ms_boxes .msb_bottom p {
    font-size: 16px;
    margin: 0;
}
.learn_more_btn a {
    background: var(--primary);
    color: #fff;
    border-radius: 15px;
    padding: 7px 15px;
    min-width: 150px;
    display: block;
    width: max-content;
    text-align: center;
    margin-top: 30px;
}
section.management_service {
    padding: 50px 0px;
}
section.rental_section .rs_img img {
    max-width: 100%;
    border-radius: 20px;
    height: 450px;
    object-fit: cover;
}
section.rental_section .rental_box {
    position: absolute;
    bottom: 0;
    width: 80%;
    border: 1px solid var(--secondary);
    border-radius: 15px;
    padding: 15px;
    left: 10%;
    background: #C3DFED;
    bottom: 20px;
}
.rs_inner {
    position: relative;
}
section.rental_section .rental_box span {
    background: var(--secondary);
    color: #fff;
    padding: 2px 10px;
    display: block;
    width: max-content;
    border-radius: 5px;
    margin-bottom: 20px;
}
section.rental_section .rental_box a {
    position: absolute;
    right: 10px;
    top: 10px;
}
section.rental_section .rental_box a img {
    max-width: 30px;
}
section.rental_section .rental_box h4 {
    font-size: 20px;
    color: #0D0D0F;
    font-weight: 600;
}
section.rental_section .rental_box p {
    font-size: 16px;
    color: #0D0D0F;
    margin: 0;
}
section.offer_contet {
    padding: 50px 0px;
}

section.rental_section {
    padding-bottom: 50px;
}

.offer_top {
    text-align: center;
}

.offer_top h4 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary);
}

.offer_top p {
    font-size: 20px;
    color: #0D0D0F;
}

.offer_top {
    margin-bottom: 50px;
}

.offer_bottom {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.offer_bottom img {
    max-width: 100%;
}

.offer_bottom .play_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer_bottom .play_overlay img {
    border-radius: 50%;
    box-shadow: 0px 0px 20px 0px #0000008f;
}
.ms_right img {
    width: 100%;
    max-width: 100%;
}
.team_inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.team_inner .team_member_detail img {
    max-width: 100%;
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
}
.team_inner .team_member_highlight {
    position: absolute;
    width: 100%;
    bottom: 0;
    padding: 15px;
    background: linear-gradient(180deg, #ffffff00 55%, #ffffffeb 100%);
    display: flex;
    flex-wrap: wrap;
}
.team_inner .team_member_highlight h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
    width: 100%;
    margin-top: auto;
}
.team_inner .team_member_highlight p {
    margin-bottom: 0;
}
.team_member_detail:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff00 45%, #ffffffe0 100%);
}
.team_member_more {
    position: absolute;
    z-index: 1;
    bottom: 0;
    padding: 20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0496b7a8 55%, #0496b7a8 100%);
    transition: 1.5s;
    top: 100%;
    color: #ffffff96;
}
.team_member_more p {
    font-size: 20px;
}
.tmm_name {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 20px;
}
.tmm_name h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
    width: 100%;
    margin-top: auto;
}
.tmm_name p {
    margin-bottom: 0;
    font-size: 20px;
}
.team_inner:hover .team_member_more {
    top: 0;
}
section.team_section {
    padding-bottom: 50px;
}
.testimonial_section {
    padding: 50px 0px;
}
.testi_slide {
    display: flex;
    align-items: center;
    gap: 5%;
}
.testi_slide .testi_img {
    max-width: 0%;
    flex: 0 0 0%;
}
.testi_slide .testi_img img {
    max-width: 100%;
    width: 100%;
}
.testi_slide .testi_text {
    max-width: 95%;
    flex: 0 0 95%;
}
.testi_slide .testi_text .stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}
.testi_slide .testi_text .stars i {
    color: var(--primary);
}
.testi_slide .testi_text p {
    font-size: 20px;
    margin-bottom: 10px;
    min-height: 125px;
}
.testi_slide .testi_text h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #000;
    border: 1px solid #000;
}

.owl-theme .owl-dots .owl-dot span {
    background: transparent;
    border: 1px solid #000;
}

.owl-dots {
    margin-top: 30px !important;
}
.testimonial_slider {
    margin-top: 50px;
}
section.faqs_section {
    padding: 100px 0px;
}
.faq_head h4 {
    font-size: 48px;
    font-weight: 600;
}
.faq_head {
    margin-bottom: 50px;
    color: var(--secondary);
}
.faq_img img {
    max-width: 100%;
    width: 100%;
    border-radius: 15px;
}
.faq_question .panel-heading a i {
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.5s;
    transform: rotate(180deg);
    border: 1px solid var(--secondary);
    color: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 50%;
    background: var(--secondary);
}
.faq_question .panel-heading a {
    position: relative;
    display: block;
    width: 100%;
    padding-right: 40px;
    font-size: 24px;
    line-height: 1;
    color: #0D0D0F !important;
    font-weight: 600;
}
.faq_question .panel.panel-default {border-bottom: 1px solid #D9D9D9;padding: 20px 0px;}
.panel-collapse {
    padding-top: 20px;
}
.faq_question .panel-heading a.collapsed i {
    border: 1px solid var(--secondary);
    color: var(--secondary);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 50%;
    transition: 0.5s;
    transform: rotate(0deg);
    background: transparent;
}
.panel-collapse .panel-body {
    font-size: 20px;
}
.sb_inner {
    background: transparent;
    padding: 50px 30px;
    border-radius: 40px;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.sb_right img {
    max-width: 100%;
}
.sb_left h4 {
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--secondary);
}
.sb_left p {
    font-size: 20px;
    margin: 35px;
}
.sb_left a {
    background: var(--primary);
    color: #fff;
    border-radius: 15px;
    padding: 10px 15px;
    margin-top: 30px;
    display: initial;
    width: max-content;
}
.sb_right {
    position: absolute;
    top: -80px;
}
.sb_rights {
    margin: 26px;
}
section.save_big_section {
    padding: 50px 0px 75px;
    background: #fff;
    border-radius: 0px;
    z-index: 1;
    position: relative;
}
footer.footer {
    background: linear-gradient(180deg, #0297b6 55%, #0297b6 120%);
    padding: 130px 0px 51px;
    margin-top: -25px;
    position: relative;
    z-index: 0;
}
.footer_top_logo {
    text-align: left;
    padding-bottom: 75px;
}
.footer_top_logo img {
    max-width: 150px;
}
.footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #fff;
    padding-top: 30px;
}
.footer_bottom ul {
    display: flex;
    align-items: center;
    list-style-type: none;
    gap: 20px;
}
.footer_bottom ul li a {
    color: #fff;
    text-decoration: underline !important;
    font-size: 16px;
}
.footer_bottom p {
    margin: 0;
    color: #fff;
    font-size: 16px;
}
.mobile_menu{
	display: none;
}
.mobile_menu_nav {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background: #fff;
    z-index: 999;
    height: calc(100vh - 65px);
    border-top: 1px solid #ddd;
    padding: 20px;
}
.mobile_menu_nav ul {
    list-style-type: none;
}
.mobile_menu_nav li {
    text-align: center;
}
.mobile_menu_nav li {
    padding: 20px;
    font-size: 18px; 
}
.mobile_menu_nav .header_button {
    display: block;
    position: absolute;
    bottom: 100px;
    width: 100%;
    left: 0;
    padding: 15px 20px;
}
.mobile_menu_nav .header_button a {
    width: 100%;
    display: block;
    text-align: center;
    padding: 15px 10px;
}
ul.submenu {
    background: var(--primary);
}
ul.submenu a {
    color: #fff;
}
ul.submenu li {
    padding: 5px !important;
    border-bottom: 1px  solid #fff;
}
.testi_slide .testi_img .mobile_block {
    display: none;
}
section.testimonial_section.homepage_testimonial_first {
    padding-bottom: 75px;
}

section.testimonial_section.homepage_testimonial_second {
    padding-top: 75px;
}
.home_property_search_content {
    position: relative;
	display: flex;
    gap: 10px;
}
.home_property_search_content select#list_type {
    min-width: 100px;
    height: 65px;
    border-radius: 25px;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 12px 16px;
    color: #fff;
    font-size: 22px;
}
.home_property_search_content select#list_type option{
	color:#000;
} 
.home_property_search_content input#home_property_search_input::placeholder {
    color: #fff;
}
.home_property_search_content input#home_property_search_input {
    width: 100%;
    height: 65px;
    border-radius: 25px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.25);
    border: none;
    padding: 12px 16px;
    color: #fff;
    font-size: 22px;
    padding-right: 165px;
}

.home_property_search_content #home_property_search_btn {
    position: absolute;
    right: 20px;
    background: var(--primary);
    color: #fff;
    height: 45px;
    min-width: 130px;
    border: none;
    border-radius: 15px;
    top: 10px;
    transition: 0.5s;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home_property_search_content button#home_property_search_btn:hover {
    color: var(--primary);
    background: #fff;
}
section.hero_banner.inner_hero .hero_banner_left.home_search_conent {
    max-width: 100%;
}
/*===========================Home Page ==================================*/
/*===========================Featured Properties Page ==================================*/
.property_listing_head h4 {
    font-size: 48px;
    font-weight: 600;
}

.text_center {
    text-align: center;
}


.property_listing_head {
    padding-bottom: 20px;
}
section.hero_banner.inner_hero .hero_banner_left {
    padding: 50px 0px;
    text-align: center;
    max-width: 992px;
    margin: 0 auto;
}
section.hero_banner.inner_hero  a {
    margin-left: auto;
    margin-right: auto;
}
section.hero_banner.inner_hero::before {
    background: #0000007d;
}
section.property_listing {
    padding: 100px 0px 50px;
    background: #fff;
    border-radius: 30px;
    z-index: 1;
    position: relative;
}
.property_searching {
    display: flex;
    align-items: center;
    border: 1px solid var(--primary);
    padding: 10px;
    border-radius: 15px;
    gap: 15px;
	flex-wrap:wrap; 
}

.property_search_first {
    max-width: 70%;
    flex: 0 0 70%;
    position: relative;
}

.property_search_first input {
    width: 100%;
    border: 1px solid var(--primary);
    padding: 8px;
    border-radius: 15px;
    padding-left: 50px;
    background: #0091EA08;
}

.property_search_first button {
    position: absolute;
    left: 15px;
    background: transparent;
    border: none;
    top: 8px;
}

.property_search_second {
    max-width: calc(15% - 15px);
    flex: 0 0 calc(15% - 15px);
}

.property_search_second button {
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 15px;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    padding: 8px;
}

.property_search_second button img {
    max-width: 20px;
}

.property_search_second button#dropdownfilterButton:after {
    display: none;
}

.property_search_third {
    max-width: calc(15% - 15px);
    flex: 0 0 calc(15% - 15px);
}

.property_search_third button.search_btn {
    width: 100%;
    padding: 8px;
    background: var(--primary);
    color: #fff;
    border-radius: 15px;
    border: 1px solid var(--primary);
}

.property_result {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.property_result h4 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
}

.property_result select {
    border: 1px solid var(--primary);
    padding: 8px;
    border-radius: 15px;
    background: #0091EA08;
    min-width: 150px;
}

.property_result button i {
    margin-left: 10px;
}
.pl_img img {
    max-width: 100%;
    border-radius: 15px;
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.property_listing {
	padding-top: 50px;
}
.pl_inner {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--primary);
    height: 100%;
}
.property_listing .col-md-4 {
    margin-bottom: 20px;
}
.pl_text {
    padding: 20px;
}

.plt_first {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    margin-top: 10px;
}

.plt_first p {
    margin: 0;
    font-size: 16px;
}

.plt_first button {
    border: 1px solid var(--primary);
    padding: 5px 8px;
    border-radius: 15px;
    background: #0091EA08;
    font-weight: 600;
    min-width: 115px;
}

.plt_second h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.2px;
    line-height: 120%;
    margin-bottom: 5px;
}
.plt_second p {
    margin: 0;
    font-size: 16px;
}
.plt_second {
    margin-bottom: 20px;
}
.plt_third {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plt_third p {
    margin: 0;
    font-weight: 600;
    font-size: 16px;
}

.plt_third .pltt_right ul {
    display: flex;
    align-items: center;
    gap: 15px;
    list-style-type: none;
}

.plt_third .pltt_right ul img {
    max-width: 20px;
    margin-right: 5px;
    line-height: normal;
}

.plt_third .pltt_right ul li {
    font-size: 16px;
    line-height: normal;
}
section.property_listing.home_property_listing section.property_listing {
    padding-top: 0;
}

section.property_listing.home_property_listing .property_result {
    display: none;
}
/*===========================Featured Properties Page ==================================*/
/*===========================Contact Page ==================================*/
section.contact_us_section {
    padding: 100px 0px;
    background: #fff;
    border-radius: 30px;
}

.cf_head h4 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 50px;
}
.cf_left .cfl_top {
    margin-bottom: 20px;
    border: 1px solid var(--primary);
    width: 100%;
    border-radius: 10px;
    background: #0091EA08;
    padding: 10px 20px;
}

.cf_left .cfl_top ul {
    list-style-type: none;
}

.cf_left .cfl_top ul li {
    margin: 5px 0px;
}

.cf_left .cfl_top ul li a {
    font-size: 20px;
    color: inherit;
    display: flex;
    align-items: flex-start;
}

.cf_left .cfl_top ul li a i {
    width: 20px;
    position: relative;
    top: 5px;
    margin-right: 10px;
}
.cfl_bottom iframe {
    width: 100%;
    height: 300px;
}
section.testimonial_section.footer_testimonial_section {
    background: #fff;
    border-radius: 30px;
}
.cf_img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
}
.appriasal_head {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
/*===========================Contact Page ==================================*/
/*===========================featured properties for lease =============================*/
.fpi_show_img img {
    max-width: 100%;
    width: 100%;
    border-radius: 15px;
    height: 555px;
    object-fit: cover;
}
section.featured_properties_images {
    padding: 100px 0px 50px;
    background: #fff;
    border-radius: 30px 30px 0px 0px;
}
.fpi_thumb_img .fpi_thumb_img_sub img {
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
    height: 175px;
    object-fit: cover;
    cursor: pointer;
}
.fpi_thumb_img .fpi_thumb_img_sub {
    margin-bottom: 15px;
}
.fpd_left h4 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}
.fpd_left p {
    font-size: 16px;
}
.fpd_left p:nth-child(2) {
    font-size: 24px;
}
.fpd_left h4 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}
.fpd_left p {
    font-size: 16px;
}
.fpd_left p:nth-child(2) {
    font-size: 24px;
}
.fpdr_first {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.fpdr_first ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.fpdr_first ul li img {
    max-width: 20px;
    margin-right: 5px;
}
.fpdr_first p {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}
.fpdr_second h4 {
    font-size: 16px;
    font-weight: 600;
}
.fpdr_second {
    margin-bottom: 15px;
}
.fpdr_second p {
    font-size: 16px;
    margin-bottom: 0;
}
.fpdr_third {
    display: flex;
    flex-wrap: wrap;
}
.fpdr_third .fpdrt_sub {
    max-width: 33.33%;
    flex: 0 0 33.33%;
}
.fpdr_third .fpdrt_sub p {
    margin-bottom: 5px;
}
.fpdr_third .fpdrt_sub h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}
.fpdr_third {
    margin-bottom: 15px;
}
.fpdr_btns {
    margin-top: 30px;
}
.fpdr_btns .fpdr_btns_sub {
    margin-bottom: 15px;
}
.fpdr_btns .fpdr_btns_sub a {
    width: 100%;
    text-align: center;
    height: 50px;
    background: #E5FAFE;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}
.fpdr_btns .fpdr_btns_sub a.fpdrb_regular {
    background: var(--primary);
    color: #fff;
}
section.featured_properties_details {
    padding: 50px 0px;
}
section.featured_properties_details {
    padding: 50px 0px;
}
section.agent_details {
    padding: 50px 0px;
}
.agent_details_right > h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.adr_box .adr_top img {
    max-width: 100%;
    border-radius: 15px;
}

.adr_top {
    display: flex;
    margin-bottom: 15px;
}

.adr_top .adr_img {
    max-width: 40%;
    flex: 0 0 40%;
}

.adr_top .adr_img .adr_name {
    max-width: 60%;
    flex: 0 0 60%;
    padding-left: 20px;
}

.adr_top .adr_name {
    max-width: 60%;
    flex: 0 0 60%;
    padding-left: 15px;
}

.adr_top .adr_name h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.adr_top .adr_name p {
    font-size: 16px;
    margin: 0;
}

.adr_box {
    background: #E5FAFE;
    padding: 20px;
    border-radius: 14px;
    border: 1px solid var(--primary);
}

.adr_box ul {
    list-style-type: none;
}

.adr_box ul li {
    margin: 5px 0px;
}

.adr_box ul li a {
    display: flex;
    align-items: center;
    word-break: break-all;
}
.adr_box ul li a i {
    margin-right: 10px;
}

.agent_map iframe {
    width: 100%;
    height: 300px;
}
/*===========================featured properties for lease =============================*/
/*===========================sale page =============================*/
.ms_right {
    height: 100%;
}
.ms_right img {
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
section.management_service.management_first {
    background: #fff;
    padding-top: 100px;
    border-radius: 30px;
}
.ws_left img {
    max-width: 100%;
    height: 325px;
    object-fit: cover;
    width: 100%;
    border-radius: 15px;
}
.ws_right h4 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}
.ws_right p {
    margin-bottom: 20px;
}
.ws_right a {
    background: var(--primary);
    color: #fff;
    border-radius: 15px;
    padding: 8px 15px;
    display: inline-block;
    margin-top: 20px;
}
.ms_right {
    height: 50%;
    display: grid;
    padding: 25px;
}
section.why_sell {
    padding: 50px 0px;
}
section.track_records {
    padding: 50px 0px;
}
section.track_records h4.tr_heading {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 50px;
}
.tr_box_sub {
    text-align: center;
}
.tr_box_sub h4 {
    color: var(--primary);
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}
.tr_box_sub p {
    margin: 0;
    font-size: 20px;
}
.tr_box_main {
    border: 1px solid var(--primary);
    border-left: 0;
    border-right: 0;
    padding: 30px 0px;
}
/*===========================sale page =============================*/
/*===========================why sale with us page =============================*/
section.our_stories {
    padding: 50px 0px;
    padding-top: 100px;
    background: #fff;
    border-radius: 30px;
}
section.our_stories h4.os_heading {
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: 600;
}
.os_box {
    background: #0091EA08;
    padding: 20px;
    border: 1px solid var(--primary);
    border-radius: 15px;
    margin-bottom: 20px;
}
.os_box h4 {
    font-size: 20px;
    font-weight: 600;
}
.os_box p {
    font-size: 16px;
    margin-bottom: 5px;
}
/*===========================why sale with us page =============================*/
/*=========================== residential sold =================================*/
.pl_img {
    position: relative;
}
.pl_img span.sold_label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 2px;
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    border-radius: 5px;
}
.plt_first .sold_brn {
    background: #000;
    color: #fff;
    border: none;
    min-width: 90px;
}
/* =======================  residential sold  ===================================*/
/* =======================  Manage page  ===================================*/
section.why_sell.why_sell_first {
    padding-top: 100px;
    background: #fff;
    border-radius: 30px;
}
section.why_sell.why_sell_first .row {
    align-items: center;
}

/* =======================  Manage page  ===================================*/
/* =======================  about page  ===================================*/
.why_sell_heading {
    text-align: center;
    padding-bottom: 50px;
}
.why_sell_heading h4 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}
.why_sell_heading p {
    font-size: 20px;
    max-width: 768px;
    margin: 0 auto;
}
/* =======================  about page  ===================================*/
/* =======================  testimonial page  ===================================*/
section.testimonial_section.testimonia_first {
    padding-top: 100px;
    background: #fff;
    border-radius: 30px;
}
section.love_us_section {
    padding: 50px 0px;
}

section.love_us_section .love_us_head {
    text-align: center;
    padding-bottom: 50px;
}

section.love_us_section .love_us_head h4 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 30px;
}

section.love_us_section .love_us_head p {
    font-size: 20px;
    max-width: 768px;
    margin: 0 auto;
}
.lu_item_inner {
    border: 1px solid #00cdfe;
    border-radius: 15px;
    overflow: hidden;
    background: #00cdfe0d;
    height: 100%;
}
.lu_item_inner .ls_item_img {
    position: relative;
}

.lu_item_inner .ls_item_img > img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.lu_item_inner .ls_item_img button {
    position: absolute;
    width: 60px;
    height: 60px;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    padding: 0;
    background: transparent;
    border: navajowhite;
}

.lu_item_inner .ls_item_img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: #0000003d;
    width: 100%;
    height: 100%;
}

.lu_texts {
    padding: 20px;
}
.lu_texts > p {
    font-size: 20px;
    margin: 0;
    min-height: 95px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.lu_texts .lu_text_user {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.lu_texts .lu_text_user .lutu_img {
    max-width: 50px;
    flex: 0 0 50px;
    margin-right: 15px;
}

.lu_texts .lu_text_user .lutu_img img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.lu_texts .lu_text_user .lutu_name {
    max-width: calc(100% - 60px);
    flex: calc(100% - 60px);
}

.lu_texts .lu_text_user .lutu_name h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.lu_texts .lu_text_user .lutu_name p {
    font-size: 16px;
    margin: 0;
}
.properties_inner_filter {
    max-width: 100%;
    flex: 0 0 100%;
}
.properties_inner_filter .top_pif_filter {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	margin-bottom: 15px;
}
.properties_inner_filter .top_pif_filter .tpf_sub {
    max-width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
}
.properties_inner_filter span.select2-selection.select2-selection--single {
    width: 100%;
    height: 45px;
    border-color: var(--primary);
    border-radius: 10px;
    background: #0091EA08;
}
.properties_inner_filter span.selection {
    width: 100%;
    display: block;
    max-width: 100%;
}
.properties_inner_filter span.select2 {
    width: 100% !important;
}
.properties_inner_filter span.select2-selection.select2-selection--single span.select2-selection__rendered {
    height: 45px;
    display: flex;
    align-items: center;
}
.properties_inner_filter span.select2-selection.select2-selection--single button.select2-selection__clear {
    display: none;
}
.properties_inner_filter span.select2-selection.select2-selection--single span.select2-selection__arrow {
    height: auto;
    top: 50%;
    right: 10px;
}
.properties_inner_filter span.select2-selection.select2-selection--single span.select2-selection__arrow b {
    border-color: var(--primary) transparent transparent transparent !important;
    border-width: 7px 6px 0 6px;
}
.bottom_pif_filter {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.bottom_pif_filter .bpf_sub.bpf_col3 {
    max-width: calc(25% - 15px);
    flex: 0 0 calc(25% - 15px);
}
.bottom_pif_filter .bpf_sub.bpf_col2 {
    width: calc(16.66% - 17px);
    flex: 0 0 calc(16.66% - 17px);
}
.property_result span.select2-selection.select2-selection--single {
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 15px;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    padding: 8px;
    height: auto;
}
.property_result span.select2-selection.select2-selection--single button.select2-selection__clear {
    display: none;
}
.property_result span.select2-selection.select2-selection--single span.select2-selection__arrow {
    height: auto;
    top: 50%;
    right: 10px;
}
.property_result span.select2-selection.select2-selection--single span.select2-selection__arrow b {
    border-color: var(--primary) transparent transparent transparent;
    border-style: solid;
    border-width: 7px 6px 0 6px;
}
.header_inner .header_menu ul li {
    position: relative;
}
.header_inner .header_menu ul li ul.submenu {
    position: absolute;
    background: #fff;
    top: 100%;
    display: block;
    border: 1px solid var(--primary);
    border-radius: 10px;
    min-width: 160px;
    padding-top: 3px;
    padding-bottom: 3px;
    display: none;
}
.header_inner .header_menu ul li ul.submenu li {
    padding: 3px 5px;
    border-bottom: 1px solid var(--primary);
}
.header_inner .header_menu ul li ul.submenu li a {
    font-size: 14px;
    font-weight: 600;
}
.header_inner .header_menu ul li ul.submenu li:last-child {
    border-bottom: 0;
}
.header_inner .header_menu ul li:hover ul.submenu {
    display: block;
}
.header_inner .header_menu ul.sub-menu {
    position: absolute;
    background: #fff;
    top: 100%;
    display: block;
    min-width: 200px;
    border: 1px solid var(--primary);
    padding: 3px 0px;
    border-radius: 10px;
}
.header_inner .header_menu ul.sub-menu li {
    padding: 3px 10px;
    border-bottom: 1px solid var(--primary);
}
.header_inner .header_menu ul.sub-menu li:last-child {
    border-bottom: none;
}
.header_inner .header_menu ul.sub-menu li a {
    font-size: 15px;
    font-weight: 600;
}
.header_inner .header_menu ul li a i {
    font-size: 14px;
    margin-left: 5px;
    position: relative;
    top: 1px;
}
.mobile_menu_nav ul.submenu li {
    padding: 0px;
}
/* =======================  testimonial page  ===================================*/
.rental_section .col-md-3 {
 transition:
    flex-basis 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

section.rental_section .col-md-3.active {
    max-width: 50%;
    flex: 0 0 50%;
}
section.rental_section .rental_box{
    display: none;
}
section.rental_section .col-md-3.active .rental_box{
    display: block;
}

.footer_menu h4 {
    margin-bottom: 15px;
}
.footer_menu h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}
.footer_menu ul li a {
    color: #fff;
    font-size: 12px;
}
.footer_menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.footer_menu ul li {
    margin-bottom: 5px;
}
.footer_top {
    padding-bottom: 75px;
}
.fpi_thumb_img {
    max-height: 550px;
    overflow: auto;
}
.footer_bottom p a {
    color: #fff;
    text-decoration: underline !important;
}
.video-popup-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Box */
.video-popup {
    width: 80%;
    max-width: 800px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    padding: 0;
    overflow: hidden;
    margin: 50px auto 0px;
    line-height: 0;
}
/* Close Button */
.video-close {
    position: absolute;
    top: 10px; 
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: white;
    z-index: 999;
}

.video-frame {
    width: 100%;
    height: 450px;
}
.open-video-btn{
    cursor: pointer;
}
section.suppoter {
    padding: 75px 0px;
    background: var(--primary);
}

section.suppoter .suppoter_heading {
    text-align: center;
}

section.suppoter .suppoter_heading h4 {
    font-size: 48px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

section.suppoter .suppoter_heading {
    color: #fff;
    font-size: 18px;
    max-width: 768px;
    margin: 0 auto;
    margin-bottom: 50px;
}

section.suppoter .supporter_img {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center !important;
    width: 100%;
}

section.suppoter .supporter_img .supporter_sub {
    max-width: 200px;
    flex: 0 0 200px;
}

section.suppoter .supporter_img .supporter_sub img {
    max-width: 100%;
}
section.policy_content {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 50px 0px;
    border-radius: 30px;
}
section.hero_banner.inner_hero.policy_hero::before {
    background: transparent;
}
/* Style for the arrow icon */
.mobile_menu_nav i {
    transition: transform 0.3s ease;
    margin-left: 5px;
}

/* Styling for the mobile menu */
.mobile_menu_nav .submenu {
    display: none; /* Submenus are hidden by default */
}

/* When submenu is open, rotate the arrow */
.mobile_menu_nav li.open a i {
    transform: rotate(180deg); /* Rotate the arrow when submenu is open */
}

/* Make the submenu appear when it's toggled */
.mobile_menu_nav li.open .submenu {
    display: block !important;
}
ul.wp-block-list {
    padding-left: 15px;
    margin-bottom: 15px;
}
/* General Form Styles */
.urbnest_forms {
    margin: 0 auto;
    padding: 20px;
    max-width: 600px;
    background-color: #f9f9f9; /* Light background for the form */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Label Styling */
.urbnest_forms label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

/* Text, Email, Subject Input Styles */
.urbnest_forms input[type="text"],
.urbnest_forms input[type="email"],
.urbnest_forms input[type="tel"],
.urbnest_forms textarea,
.urbnest_forms select {
    width: 100%;
    padding: 10px;
    margin-bottom: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    box-sizing: border-box;
}

/* Focus and Hover Effects for Inputs */
.urbnest_forms input[type="text"]:focus,
.urbnest_forms input[type="email"]:focus,
.urbnest_forms input[type="tel"]:focus,
.urbnest_forms textarea:focus,
.urbnest_forms select:focus {
    border-color: var(--primary);
    outline: none;
}

/* Placeholder Styles */
.urbnest_forms input::placeholder,
.urbnest_forms textarea::placeholder {
    color: #bbb;
}

/* Checkbox & Radio Button Styling */
.urbnest_forms input[type="checkbox"],
.urbnest_forms input[type="radio"] {
    margin-right: 8px;
    vertical-align: middle;
}

/* Submit Button */
.urbnest_forms input[type="submit"] {
    background-color: var(--primary); /* Primary background color */
    color: #fff; /* White text color */
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
    display: inline-block;
    margin-top: 10px;
}

/* Submit Button Hover Effect */
.urbnest_forms input[type="submit"]:hover {
    background-color: darken(var(--primary), 10%);
}

/* Form Validation Styles */
.urbnest_forms .wpcf7-response-output {
    margin-top: 10px;
    padding: 10px;
    font-size: 14px;
    border-radius: 4px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: none; /* Initially hidden */
}

.urbnest_forms .wpcf7-response-output.wpcf7-validation-errors {
    display: block; /* Show if there are validation errors */
}

/* Success message styles */
.urbnest_forms .wpcf7-response-output.wpcf7-mail-sent-ok {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Style for the error field (when validation fails) */
.urbnest_forms .wpcf7-form-control.wpcf7-not-valid {
    border: 1px solid #dc3545;
    background-color: #f8d7da;
}

/* Optional: Add spacing and align the form elements */
.urbnest_forms input,
.urbnest_forms select,
.urbnest_forms textarea {
    margin-bottom: 10px;
}

/* Style for optional message field */
.urbnest_forms textarea {
    min-height: 120px;
}

/* Prevent double border effect for submit button */
.urbnest_forms input[type="submit"]:focus {
    outline: none;
}

/* Customizing Select Dropdown */
.urbnest_forms select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 30px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="none" stroke="currentColor" stroke-width="2"><path d="M3 5l4 4 4-4"></path></svg>');
    background-position: right 10px center;
    background-repeat: no-repeat;
}

/* Customizing Radio and Checkbox labels */
.urbnest_forms input[type="radio"] + label,
.urbnest_forms input[type="checkbox"] + label {
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
    color: #333;
    vertical-align: middle;
}
.header_menu.menu-large ul#menu-header-menu > li > a {
    font-size: 12px;
}
.header_menu.menu-large ul#menu-header-menu > li > a i {
    font-size: 11px;
}
/* For mobile responsiveness */
.header_inner .header_menu.menu-large ul li ul.submenu li a {
    font-size: 12px;
}
.header_inner .header_menu.menu-large ul li ul.submenu li {
    padding: 0px 5px !important;
}
.mobile_menu_nav ul {
    max-height: 650px;
    overflow-y: auto;
}

.home_property_heading {
    margin-top: 30px;
}
section.property_listing .property_listing {
    padding-top: 0;
}
@media (max-width: 600px) {
    .urbnest_forms {
        padding: 15px;
        max-width: 100%;
    }

    .urbnest_forms input[type="submit"] {
        width: 100%;
    }
}

@media screen and (max-width: 992px){
	.header_menu, .header_button {
	    display: none;
	}
    .header_menu, .header_actions {
        display: none !important;
    }
	.mobile_menu{
		display: block;
	}
	button.menu_open_btn {
	    border: none;
	    background: none;
	}
	button.menu_open_btn img {
	    width: 30px;
	}
	header.header {
        position: relative;
        top: 0;
    }
	header.header .header_inner {
	    box-shadow: none;
	}
}
@media screen and (max-width: 576px){
	section.hero_banner {
	    padding: 50px 0px 50px;
	}
	.hero_banner_left h4 {
	    font-size: 40px;
	    margin-bottom: 20px;
	    text-align: center;
	}
	.hero_banner_left p {
	    font-size: 20px;
	    text-align: center;
	}
	.hero_banner_left a {
	    width: 80%;
	    margin-bottom: 40px;
	    margin-left: auto;
	    margin-right: auto;
	    padding: 15px;
	}
	.highlight_header_left h4 {
	    font-size: 24px;
	    margin-bottom: 25px;
	    text-align: center;
	}
	.highlight_header_right p {
	    text-align: center;
	}
	section.highlight_header {
	    padding: 50px 0px 50px;
	}
	.highlight_boxes_inner {
	    margin-bottom: 25px;
	}
	.ms_left h4 {
	    font-size: 24px;
	    text-align: center;
	}
	.ms_left p {
	    text-align: center;
	}
	.ms_boxes {
	    max-width: 100%;
	}
	.ms_boxes .msb_bottom p {
	    text-align: left;
	}
	.learn_more_btn a {
	    margin: 0 auto;
	    margin-top: 30px;
	}
	.ms_left {
	    margin-bottom: 30px;
	}
	.ms_right img {
	    max-height: 300px;
	    object-fit: cover;
	    border-radius: 15px;
	}
	.sb_left p {
	    text-align: center;
	}
	section.rental_section .rental_box {
	    width: 92%;
	    left: 4%;
	}
	.rs_inner {
	    margin-bottom: 25px;
	}
	section.rental_section .rs_img img {
	    height: 300px;
        width: 100%;
	}
	.offer_top h4 {
	    font-size: 24px;
	}
	.offer_bottom {
	    border-radius: 15px;
	    overflow: hidden;
	}
	.team_inner {
	    margin-bottom: 25px;
		border: 2px solid #aaa
	}
	.testi_slide .testi_text .stars {
	    margin-bottom: 10px;
	}
	.faq_head h4 {
	    font-size: 24px;
	}
	section.faqs_section {
	    padding: 50px 0px;
	}
	.faq_head {
	    margin-bottom: 30px;
        color: var(--secondary);
	}
	.faq_question .panel-heading a {
	    font-size: 20px;
	}
	.faq_question {
	    margin-top: 30px;
	}
	.sb_inner {
	    padding: 30px 20px;
	    border-radius: 20px;
	}
	.sb_left h4 {
	    text-align: center;
	    font-size: 24px;
	}
	.sb_left h4 {
	    text-align: center;
	}
	.sb_left a {
	    margin-left: auto;
	    margin-right: auto;
	}
	.sb_right {
	    top: 0;
	    margin-top: 25px;
	    position: relative;
	}
	section.save_big_section {
	    padding: 50px 0px 50px;
	    border-radius: 0px;
	}
	footer.footer {
	    padding: 75px 0px 75px;
	    margin-top: -15px;
	}
	.footer_top_logo img {
	    max-width: 130px;
	}
	.footer_top_logo {
	    padding-bottom: 50px;
	}
	.footer_bottom {
	    flex-wrap: wrap;
	}
	.footer_bottom p {
	    order: 1;
		margin-top: 20px;
	}
	.footer_bottom ul {
	    gap: 20px;
	    flex-wrap: wrap;
	}
	.footer_bottom ul li {
	    max-width: 100%;
	    flex: 0 0 100%;
	    text-align: center;
	    margin-bottom: 10px;
	}
    .testi_slide .testi_text .stars, .testi_slide .testi_text h4 {
        display: none;
    }
    .testi_slide .testi_img .mobile_block {
        display: block;
    }
    .testi_slide {
        flex-wrap: wrap;
    }
    .testi_slide .testi_img {
        max-width: 100%;
        flex: 0 0 100%;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .testi_slide .testi_img img {
        max-width: 40%;
        width: 40%;
    }
    .testi_slide .testi_img .mobile_block {
        display: block;
        max-width: calc(60% - 15px);
        flex: 0 0 calc(60% - 15px);
    }
    .mobile_block .stars i.fa-solid.fa-star {
        color: var(--primary);
        font-size: 20px;
    }
    .testi_slide .testi_text {
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
        margin-top: 15px;
    }
    .testi_slide .testi_text p {
        min-height: auto;
    }
    section.property_listing {
        padding: 50px 0px 10px;
    }
    .property_searching {
        flex-wrap: wrap;
    }
    .property_search_first {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .property_search_second {
        max-width: calc(50% - 7px);
        flex: 0 0 calc(50% - 7px);
    }
    .property_search_third {
        max-width: calc(50% - 8px);
        flex: 0 0 calc(50% - 8px);
    }
    .pl_inner {
        margin-bottom: 20px;
    }
    section.contact_us_section {
        padding: 50px 0px;
    }
    .cf_head h4 {
        font-size: 24px;
        text-align: center;
    }
    section.contact_us_section .container > .row > .col-md-6:first-child {
        order: 1;
        margin-top: 30px;
    }
    .cf_img img {
        height: 350px;
    }
    .fpi_show_img img {
        height: auto;
    }
    .fpi_show_img {
        margin-bottom: 30px;
    }
    .fpi_show_img {
        margin-bottom: 30px;
    }

    .fpi_thumb_img {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .fpi_thumb_img .fpi_thumb_img_sub {
        max-width: calc(33.33% - 7px);
        flex: 0 0 calc(33.33% - 7px);
    }

    .fpi_thumb_img .fpi_thumb_img_sub img {
        height: 75px;
    }
    section.featured_properties_images {
        padding: 50px 0px 30px;
    }
    section.featured_properties_details {
        padding: 30px 0px;
    }
    .fpd_left h4 {
        font-size: 24px;
    }
    .fpd_left p:nth-child(2) {
        font-size: 18px;
    }
    .agent_details_right {
        margin-top: 30px;
    }
    section.agent_details {
        padding: 30px 0px;
    }
    section.management_service.management_first {
        padding-top: 50px;
    }
    section.why_sell {
        padding: 30px 0px;
    }
    section.why_sell .col-md-5 {
        order: 1;
    }

    .ws_right {
        text-align: center;
        margin-bottom: 30px;
    }
    .ws_right h4 {
        font-size: 24px;
    }
    section.track_records {
        padding: 30px 0px;
    }
    .tr_box_main .col-md-3 {
        max-width: 50%;
        flex: 0 0 50%;
    }
    section.track_records h4.tr_heading {
        font-size: 24px;
         margin-bottom: 20px;
        text-align: center;
    }
    .tr_box_sub h4 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .tr_box_sub p {
        font-size: 16px;
    }
    .tr_box_main {
        padding: 5px 0px;
    }
    .tr_box_sub {
        text-align: center;
        padding: 15px 0px;
    }
    section.our_stories h4.os_heading {
        font-size: 24px;
        margin-bottom: 30px;
        text-align: center;
    }
    section.our_stories {
        padding: 30px 0px;
        padding-top: 50px;
    }
    section.management_service.management_left .col-md-6:first-child {
        order: 1;
    }
    section.highlight_header_other {
        padding: 50px 0px 50px;
    }
    .highlight_boxes_inner {
        height: auto;
    }
    section.why_sell.why_sell_first {
        padding-top: 50px;
    }
    section.management_service.manage_page .col-md-6:first-child {
        order: 1;
    }
    .why_sell_heading h4 {
        font-size: 24px;
    }
    section.management_service.about_manage_first .col-md-6:first-child {
        order: 1;
    }
    section.testimonial_section.testimonia_first {
        padding-top: 50px;
    }
    section.love_us_section .love_us_head h4 {
        font-size: 24px;
        margin-bottom: 15px;
    }
	.bottom_pif_filter .bpf_sub.bpf_col3 {
		max-width: calc(50% - 10px);
		flex: 0 0 calc(50% - 10px);
	}
	.bottom_pif_filter .bpf_sub.bpf_col2 {
		width: calc(33.33% - 14px);
		flex: 0 0 calc(33.33% - 14px);
	}
	section.rental_section .rental_box {
        display: block !important;
    }
    section.rental_section .col-md-3.active {
        max-width: 100%;
        flex: 0 0 100%;
    }
	.footer_menu {
		margin-bottom: 30px;
	}
	.footer_menu h4 {
		margin-bottom: 10px;
	}
	.footer_top {
		padding-bottom: 30px;
	}
	.footer_bottom ul {
        gap: 10px;
    }
	.footer_bottom > * {
        gap: 10px;
        flex-wrap: wrap;
        max-width: 100%;
        flex: 0 0 100%;
    }
	.property_listing_head h4 {
		font-size: 24px;
		margin: 0;
	}
	.property_listing_head {
        padding-bottom: 20px;
    }
	.home_property_search_content #home_property_search_btn {
        right: 10px;
        height: 35px;
        min-width: 90px;
        border-radius: 10px;
        top: 7px;
        display: flex;
        width: max-content;
        padding: 0;
    }
	.home_property_search_content input#home_property_search_input {
		height: 50px;
		border-radius: 15px;
		font-size: 16px;
		padding-right: 105px;
	}
	.home_property_search_content select#list_type {
		height: 50px;
		border-radius: 15px;
		font-size: 16px;
	}
	section.suppoter .suppoter_heading h4 {
		font-size: 32px;
	}
	section.suppoter .suppoter_heading {
		font-size: 14px;
		margin-bottom: 30px;
	}
	section.suppoter {
		padding: 50px 0px;
	}
}

.wpcf7-response-output {
    background: #f7fcfe;
    border-radius: 5px;
    color: #000; 
}


/* ===============================
   VIDEO HERO BASE STYLES
================================ */
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}

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

/* ===============================
   TABLET (≤ 991px)
================================ */
@media (max-width: 991px) {
  .video-hero {
    height: 80vh;
    min-height: 450px;
  }
}

/* ===============================
   MOBILE (≤ 767px)
================================ */
@media (max-width: 767px) {
  .video-hero {
    height: 70vh;
    min-height: 380px;
  }

  .hero-video {
    object-position: center;
  }

}

/* ===============================
   SMALL MOBILE (≤ 480px)
================================ */
@media (max-width: 480px) {
  .video-hero {
    height: 65vh;
    min-height: 320px;
  }

  .video-overlay {
    background: rgba(0, 0, 0, 0.55);
  }
}


/* ===============================
   //Custom CSS header
================================ */

.header_inner .logo img {
    max-width: 120px;
    height: auto;
}

.header_inner{
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.25);
}

.header_actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header_social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    gap: 14px;
}


.header_social .social-icon.instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    width: 31px;
    height: 32px;
    color: var(--primary);
}
.footer .social-icon svg{
    color: #fff;
}
.footer_top {
    padding-bottom: 10px;
}
.footer_top_logo {
    text-align: right;
    padding-bottom: 0;
}
.cf7-quote-form input, .cf7-quote-form select, .cf7-quote-form textarea{
    border: 1px solid var(--secondary);
    background-color: #29b5c61a;
    color: #757575;
}

.wpcf7-list-item input[type="checkbox"] {
    width: auto;
}


/* ===============================
   //Movile CSS
================================ */
@media screen and (max-width: 576px){
    .mobile_block h4 {
        line-height: 1.8;
        margin-bottom: 0rem;
    }
    .testi_slide .testi_img .mobile_block {
        display: block;
        max-width: calc(100% - 15px);
        flex: 0 0 calc(60% - 15px);
        flex: 0 0 100%;
        justify-content: center;
        text-align: center;
    }
}

.afterhero {
    background-color : #cee6f1 !important;
    padding-top: 10px !important;
	padding-bottom: 10px !important;
}
.afterhero .sb_left h4{
    color: #000;
} 
.afterhero .sb_left p {
    color: #606f77;
}


.cf7-quote-form input,
.cf7-quote-form select,
.cf7-quote-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #9dd6f4;
  border-radius: 6px;
  margin-bottom: 16px;
}

/* Two-column layout */
.two-columns {
  display: flex;
  gap: 15px;
}

.two-columns > div {
  width: 50%;
}

/* Three-column layout */
.three-columns {
  display: flex;
  gap: 15px;
}

.three-columns > div {
  width: 33.333%;
}

/* Checkbox alignment */
.cf7-quote-form .wpcf7-list-item {
  margin-right: 15px;
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 0;
}

/* Submit button */
.cf7-quote-form .btn-submit {
  width: 100%;
  background: #ff6a00;
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.cf7-quote-form .btn-submit:hover {
  background: #e55e00;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .two-columns,
  .three-columns {
    flex-direction: column;
  }

  .two-columns > div,
  .three-columns > div {
    width: 100%;
  }
}
/* Hide CF7 validation error message */
.wpcf7-not-valid-tip {
    display: none !important;
}

/* Red border for invalid fields */
.wpcf7-not-valid {
    border: 2px solid red !important;
}

@media only screen and (max-width: 992px) {
  .header {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999 !important;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  }

  /* Push content down so header doesn’t overlap content */
  body {
    padding-top: 35px; /* adjust if your header is taller/shorter */
  }
}
@media (max-width: 768px) {
  .footer_bottom {
    text-align: center;
  }
}

