* {
    margin: 0;
    padding: 0;
    font-family: "Moderat", sans-serif;
    box-sizing: border-box;
}
:root {
    --pri-color: #123b79;
    --sec-color: #232629;
    --bg-light: #f8fbff;
    --pri-border: #c7d9f0;
    --bg-white: white;
    --p1-size: 48px;
    --p2-size: 32px;
    --p3-size: 24px;
    --p4-size: 18px;
    --p5-size: 16px;
    --p6-size: 14px;
}
html,
body {
    width: 100%;
    overflow-x: hidden;
}
.plb_row {
    display: flex;
    max-width: 1300px;
    margin: auto;
}
.plb_row_2 {
    margin-top: 20px;
}
.plb_col {
    width: 100%;
}
.section_title {
    color: var(--pri-color);
}
.title_h1 {
    font-size: 34px;
    font-weight: 700;
}
.title_h2 {
    font-size: 32px;
    font-weight: 700;
}
.title_h3 {
    font-size: 24px;
    font-weight: 700;
}
.title_h4 {
    font-size: 18px;
    font-weight: 600;
}
p {
    font-size: 16px;
    color: var(--sec-color);
    font-weight: 400;
}
.mt1 {
    margin-top: 10px;
}
.mt2 {
    margin-top: 20px;
}
.mt3 {
    margin-top: 30px;
}
.mt4 {
    margin-top: 40px;
}
.mt5 {
    margin-top: 50px;
}
.mb1 {
    margin-bottom: 10px;
}
.mb2 {
    margin-bottom: 20px;
}
.mb3 {
    margin-bottom: 30px;
}
.mb4 {
    margin-bottom: 40px;
}
.mb5 {
    margin-bottom: 50px;
}
.mlf {
    margin-left: 15px;
}
.pt1 {
    padding-top: 10px;
}
.pt2 {
    padding-top: 20px;
}
.pt3 {
    padding-top: 30px;
}
.pt4 {
    padding-top: 40px;
}
.pt5 {
    padding-top: 50px;
}
.pb1 {
    padding-bottom: 10px;
}
.pb2 {
    padding-bottom: 20px;
}
.pb3 {
    padding-bottom: 30px;
}
.pb4 {
    padding-bottom: 40px;
}
.pb5 {
    padding-bottom: 50px;
}
.plb_header {
    width: 100%;
    padding: 8px 5px;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
}
.plb_header_div {
    display: flex;
    margin: auto;
    align-items: center;
}
.plb_header_div .logo {
    width: 20%;
}
.plb_header_div .menu {
    width: 80%;
}
.logo img {
    width: 220px;
    height: auto;
}
.menu > ul {
    text-align: right;
}
.menu > ul > li {
    display: inline-block;
    list-style: none;
    font-size: var(--p5-size);
    margin: 2px 10px;
    padding: 12px 0;
}
.menu ul a {
    color: var(--sec-color);
    text-decoration: none;
    font-weight: 500;
}
.menu ul li i {
    font-size: 11px;
    position: relative;
    top: -2px;
}
.menu ul .active a {
    color: #fff;
}
.menu ul li.active {
    border-bottom: 1px solid #fff;
}
#menu_toggle {
    display: none;
}
.header_btn {
    background: var(--pri-color);
    display: inline-block;
    color: white !important;
    padding: 10px 15px 10px 15px;
    border-radius: 5px;
    margin-left: 10px;
}
.menu ul li .header_btn i {
    font-size: 16px;
    position: relative;
    top: 0;
    margin-right: 6px;
}
.plb_mega_sub_menu {
    width: 100%;
    min-height: 200px;
    position: absolute;
    margin-top: 12px;
    left: 0;
    padding: 40px 10px 30px 10px;
    background: #fff;
    display: none;
    z-index: 999;
    border-bottom: 1px solid #e2e2e2;
    box-sizing: border-box;
}
.plb_header_div li:hover .plb_mega_sub_menu {
    display: block;
}
.icon_heading {
    display: flex;
    font-size: 18px;
    font-weight: 700;
    align-items: center;
    color: var(--pri-color);
}
.icon_heading > img {
    height: 24px;
    margin-right: 12px;
}
.icon_heading > span {
    margin-bottom: -3px;
}
.mega_menu_links {
    list-style: none;
    text-align: left;
    margin-top: 15px;
}
.mega_menu_links li {
    display: block;
    padding: 6px 0;
}
.mega_menu_links li a {
    color: #777;
    font-weight: 400;
}
.mega_menu_links li a:hover {
    color: var(--pri-color);
    text-decoration: underline;
}
.mega_menu_links li:hover a:after {
    font-family: FontAwesome;
    content: url(https://plb-integrity1.s3.ap-southeast-1.amazonaws.com/wp-content/uploads/2023/04/24091950/right-arrow.svg);
    display: inline-block;
    margin-left: 5px;
    color: #123b79;
    font-weight: 400;
    position: absolute;
}
.vert_tabs {
    text-align: left;
    display: flex;
    width: 100%;
    column-gap: 30px;
}
.vert_tabs_titles {
    width: 20%;
}
.vert_tabs_titles ul {
    list-style: none;
}
.vert_tabs_titles ul li {
    font-size: var(--p5-size);
    font-weight: 700;
    color: var(--pri-color);
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
}
.vert_tabs_titles ul li.active {
    box-shadow: -1px 1px 5px rgb(0 0 0 / 0.1);
}
.vert_tabs_cont_div {
    width: 80%;
}
.vert_tab_cont {
    padding: 30px;
    border-radius: 10px;
    display: none;
}
.vert_tab_cont.active {
    display: block;
    box-shadow: -1px 1px 5px rgb(0 0 0 / 0.1);
}
.vert_tab_cont .mega_menu_links li a {
    color: #777;
}
.plb_content {
    width: 100%;
    min-height: 500px;
    padding-bottom: 30px;
    background-color: #fff0;
    background-image: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}
.plb_page_title_div {
    margin-top: 80px;
    width: 100%;
    min-height: 180px;
    background-color: #fff0;
    background-image: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
}
.plb_page_title_div h2 {
    font-size: var(--p2-size);
    color: var(--pri-color);
    text-align: center;
    width: 100%;
}
.plb_page_title_div {
    background-image: url(https://plb-integrity1-media.propertylimbrothers.com/wp-content/uploads/2023/04/12120031/banner_shape.png);
    background-position: center center;
    background-size: cover;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.vert_tabs_p {
    margin-top: 20px;
    color: var(--sec-color);
}
.filters_div {
    max-width: 1300px;
    margin: auto;
}
.plb_filters_ul {
    list-style: none;
    display: flex;
    column-gap: 10px;
    cursor: pointer;
}
.plb_filters_ul > li,
.plb_filters_ul > li * {
    cursor: pointer;
}
.plb_filters_ul > li:nth-child(1) {
    width: 22%;
}
.plb_filters_ul > li:nth-child(2) {
    width: 12%;
}
.plb_filters_ul > li:nth-child(3) {
    width: 20%;
}
.plb_filters_ul > li:nth-child(4) {
    width: 20%;
}
.plb_filters_ul > li:nth-child(5) {
    width: 15%;
}
.plb_filters_ul > li:nth-child(6) {
    width: 11%;
}
.plb_filter_item_div {
    font-size: 16px;
    font-weight: 500;
    color: #123b79;
    background-color: #fff;
    border: 1px solid #c7d9f0;
    border-radius: 30px;
    padding: 9px 15px;
    display: flex;
    align-content: center;
    transition: border 0.4s;
}
#plb_search_property input {
    font-size: 16px;
    font-weight: 500;
    color: var(--pri-color);
    background-color: #fff;
    border: 1px solid #c7d9f0;
    border-radius: 30px;
    padding: 6px 15px;
    display: flex;
    align-content: center;
    transition: border 0.4s;
    width: 100%;
}
#plb_search_property input::placeholder {
    color: var(--pri-color);
    opacity: 1;
}
#plb_search_property input::-ms-input-placeholder {
    color: var(--pri-color);
}
#plb_search_property {
    display: flex;
}
#plb_search_property i {
    position: relative;
    top: 26%;
    left: -38px;
	padding-left: 8px;
	background: white;
	height: fit-content;
}
.plb_filter_item_div:hover,
.plb_filter_item_div.active {
    border: 1px solid #123b79;
    background: #ebf1fa;
}
.plb_filter_item_div .fa-filter {
    font-size: 12px;
    left: 8px;
    display: none;
}
.plb_filter_item_div label {
    width: 80%;
    line-height: 20px;
}
.plb_filter_item_div > label {
    margin-bottom: -2px;
}
.plb_filter_item_div .filter_icon {
    text-align: right;
    width: 20%;
    display: block;
    margin-bottom: -4px;
}
.plb_filter_item_div i {
    position: relative;
    top: 0;
}
.plb_filter_item_div img {
    width: 15px;
}
.plb_filter_item .plb_filter_subdiv {
    min-height: 100px;
    background-color: #fff;
    border: 1px solid #dbe6f5;
    border-radius: 5px;
    position: absolute;
    max-width: 280px;
    width: 100%;
    z-index: 9;
    padding: 15px;
    display: none;
    margin-top: 5px;
    box-shadow: 0 5px 15px -10px #000;
}
.filter_title {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 8px;
    color: var(--pri-color);
}
.filter_space {
    width: 100%;
    height: 15px;
}
.filter_number {
    display: inline-block;
    background: #123b79;
    padding: 0 3px;
    color: #fff;
    margin-left: 5px;
    font-size: 11px;
    border-radius: 2px;
    line-height: 15px;
    position: relative;
    top: -2px;
}
.p_type .sub_types {
    margin-top: 10px;
    max-height: 180px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.type_hdb,
.type_condo,
.type_commercial,
.type_landed {
    display: none;
}
.range_ux {
    display: flex;
    column-gap: 5px;
    margin-top: 10px;
}
.range_ux > div {
    min-height: 1px;
    width: 50%;
}
.min_range_ux,
.max_range_ux {
    font-size: 12px;
    font-weight: 500;
    color: #123b79;
    background-color: #f6faff;
    border-radius: 5px;
    padding: 3px;
    align-content: center;
    width: 100%;
    max-height: 200px;
    overflow-y: scroll;
    overflow-x: hidden;
    display: none;
}
.min_range_ux span,
.max_range_ux span {
    display: block;
    padding: 2px 5px;
}
.min_range_ux span:hover,
.max_range_ux span:hover {
    background: #dbe6f5;
}
.jet-search-filter__submit {
    z-index: 2;
}
.jet-search-filter__submit:focus {
    outline: none;
    border: none;
}
#ui-datepicker-div {
    z-index: 9999999 !important;
}
#property_type:hover .jet-filter-items-dropdown__label,
#bedrooms:hover .jet-filter-items-dropdown__label,
.jet-search-filter__input:hover {
    border: 1px solid #123b79 !important;
    background: #ebf1fa;
}
.min-max {
    display: flex;
    margin-bottom: -27px;
}
.min-max span {
    width: 50%;
    padding-left: 34px;
    font-size: 12px;
}
.min-max div {
    display: inline-block;
    position: relative;
    top: -27px;
    width: 0;
}
.f_floor_size .min-max span {
    padding-left: 8px;
}
.jet-range__inputs__min,
.jet-range__inputs__max {
    transition: all 0s !important;
}
#f_bed fieldset > div:nth-child(2),
.f_bathroom fieldset > div:nth-child(2),
#f_bed fieldset > div:nth-child(10),
#f_bed fieldset > div:nth-child(11),
#f_bed fieldset > div:nth-child(12) {
    display: none !important;
}
#f_bath fieldset > div:nth-child(10),
#f_bath fieldset > div:nth-child(11),
#f_bath fieldset > div:nth-child(12) {
    display: none !important;
}
.plb_popup {
    background: rgb(0 0 0 / 0.5);
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.plb_popup .plb_popup_div {
    max-width: 600px;
    width: 100%;
    min-height: 400px;
    background: #fff;
    border: 1px solid var(--pri-border);
    border-radius: 10px;
    padding: 30px;
    position: relative;
}
.plb_popup .fa-times {
    color: var(--pri-color);
    font-size: 18px;
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
    padding: 8px;
}
#plb_district_popup .plb_popup_div {
    max-width: 1000px;
}
#plb_district_popup.active,
#plb_all_filters_popup.active,
#virtual_tour_popup.active {
    display: flex;
}
#plb_district_popup h4,
#plb_all_filters_popup h4 {
    font-size: 20px;
    color: var(--pri-color);
}
#virtual_tour_popup .plb_popup_div {
    width: 80%;
    height: 80vh;
    margin-top: 5vh;
    border: none !important;
    max-width: 100% !important;
    padding: 0px !important;
    background: none !important;
}
#virtual_tour_popup iframe {
    width: 100%;
    height: 80vh;
}
#virtual_tour_popup i {
    font-size: 12px;
    padding: 5px 7px;
    border-radius: 50%;
    color: #fff;
    background: var(--pri-color);
    right: -13px !important;
    top: -13px !important;
}
.pt_type_filter {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.pt_type_filter li {
    background-color: var(--bg-light);
    padding: 5px 8px;
    border: 1px solid var(--pri-border);
    border-radius: 20px;
    font-size: 14px;
    margin: 02px 0;
    color: #5d545b;
}
.pt_type_filter li.active {
    background-color: var(--pri-color);
    color: #fff;
}
.pt_filter_btn {
    background-color: var(--pri-color);
    color: #fff;
    padding: 5px 15px;
    margin-top: 15px;
    font-size: 14px;
    border-radius: 5px;
}
.pt_filter_btn:hover {
    background-color: #f0a939;
}
.fl_pt_type_sub {
    display: none;
    margin-top: 10px;
    max-height: 180px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.fl_pt_type_sub input {
    margin: 5px 5px 0 0;
}
#plb_district_popup,
.fl_pt_type_sub label {
    font-size: 14px;
    color: #333;
}
#plb_district_popup input {
    margin-right: 8px;
}
#plb_district_popup label {
    margin: 0 15px 0 0;
}
#plb_district_popup .plb_row {
    flex-wrap: wrap;
}
#plb_district_popup .pt_district_pop {
    width: 32%;
}
#plb_district_popup .pt_district_pop {
    margin: 5px 0 5px 0;
}
#plb_district_popup input[type="search"] {
    border: 1px solid var(--pri-color);
    border-radius: 50px;
    padding: 10px 15px;
}
.custom-range__inputs-box {
    display: flex;
}
.ui-widget.ui-widget-content,
.ui-widget-content {
    border: none !important;
}
.ui-widget.ui-widget-content {
    margin: 5px;
}
.ui-slider-horizontal .ui-slider-range {
    height: 2px !important;
    top: 2px !important;
    background-color: #f6faff !important;
}
.ui-state-default,
.ui-widget-content .ui-state-default {
    border-radius: 50px;
    border: none !important;
    background-color: var(--pri-color) !important;
    font-size: 10px;
}
.custom-range__inputs-group:first-child {
    margin-right: calc(10px / 2);
}
.custom-range__inputs-text {
    padding: 2px 6px;
    display: flex;
    align-items: center;
    color: #212529;
    text-align: center;
    white-space: nowrap;
    background-color: #f6faff;
    border-style: solid;
    border-width: 0 1px 0 0;
    border-color: #cfcfcf;
}
.all_floorsize_range_div .custom-range__inputs-text {
    border-width: 0 0 0 01px !important;
}
.custom-range__inputs-group {
    overflow: hidden;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ced4da;
    font-size: 12px;
}
.custom-range__inputs-group .custom-range__inputs-min,
.custom-range__inputs-group .custom-range__inputs-max {
    margin: 8px 12px;
    padding: 0;
    width: 100%;
    min-height: auto;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    line-height: normal;
    letter-spacing: inherit;
    border: none;
    outline: none;
    background: none;
}
#plb_all_filters_popup .plb_popup_div {
    width: 500px;
}
#plb_all_filters_popup .plb_popup_div {
    padding: 0;
}
#plb_all_filters_popup .plb_popup_div .plb_popup_content {
    padding: 20px;
    overflow-y: scroll;
    max-height: 400px;
}
#plb_all_filters_popup input[type="search"] {
    font-size: 16px;
    font-weight: 500;
    color: var(--pri-color);
    background-color: #fff;
    border: 1px solid var(--pri-border);
    border-radius: 50px;
    padding: 8px 16px;
    width: 100%;
}
#plb_all_filters_popup .all_filter_search_div i {
    position: absolute;
    right: 24px;
    top: 23%;
    pointer-events: none;
    color: var(--pri-color);
}
#plb_all_filters_popup input[type="search"]::placeholder {
    color: var(--pri-color);
}
#plb_all_filters_popup .all_filter_search_div {
    display: inline-block;
    position: relative;
    width: 100%;
}
#plb_all_filters_popup p {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--pri-color);
}
.m_filters_accord_cont {
    display: none;
}
.m_filters_accord_sec {
    margin-top: 30px;
    cursor: pointer;
}
.all_filter_ptype_tab i {
    float: right;
    transition: transform 0.3s ease;
}
.all_filter_ptype_tab i.rotated {
    transform: rotate(180deg);
}
#plb_all_filters_popup .pt_all_clear_btn {
    font-size: 14px;
    color: var(--pri-color);
    background-color: #fff;
    border: none;
}
#start_date,
#end_date {
    width: 49%;
    font-size: 14px;
    color: var(--pri-color);
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--pri-border);
    padding: 8px 16px;
}
#start_date:focus-visible,
#end_date:focus-visible {
    outline: none;
}
#ui-datepicker-div .ui-state-default,
#ui-datepicker-div .ui-widget-content .ui-state-default {
    background: none !important;
    color: var(--pri-color) !important;
    text-align: center;
    font-size: 12px;
}
#ui-datepicker-div .ui-datepicker-calendar tbody tr:nth-child(odd) {
    background-color: #f6f6f6;
}
#ui-datepicker-div .ui-datepicker-header {
    background-color: white !important;
    border-width: 0 0 1px 0px !important;
}
#ui-datepicker-div .ui-datepicker-calendar th span,
#ui-datepicker-div .ui-datepicker-title {
    color: var(--pri-color);
}
#ui-datepicker-div {
    width: 300px;
    padding: 10px;
    box-shadow: 0 5px 10px rgb(0 0 0 / 0.1);
}
#ui-datepicker-div .ui-datepicker-calendar thead span {
    font-size: 12px;
}
.plb_property_listings {
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    padding: 20px 0;
    cursor: pointer;
}
.plb_property_listing {
    border: 1px solid var(--pri-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    font-weight: 600;
    width: calc(25% - 15px);
    padding-bottom: 40px;
    overflow: hidden;
    position: relative;
    min-height: 380px;
}
.plb_property_listing.loading {
    background: linear-gradient(90deg, #f8f8f8 5%, #ffffff 40%, #f8f8f8 70%);
    animation: shimmer 1.5s infinite;
}
.pt_arrow_left {
    position: absolute;
    top: 85px;
    left: 0;
    background: rgb(255 255 255 / 50%);
    color: var(--pri-color);
    padding: 3px 5px;
    font-size: 22px;
    border-radius: 0 5px 5px 0;
    z-index: 2;
}
.pt_arrow_right {
    position: absolute;
    top: 85px;
    right: 0;
    background: rgb(255 255 255 / 50%);
    color: var(--pri-color);
    padding: 3px 5px;
    font-size: 22px;
    border-radius: 5px 0 0 5px;
    z-index: 2;
}
.listing_slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
    width: 100%;
}
.pt_listing_slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    opacity: 0;
    display: none;
    position: relative;
}
.pt_listing_slide.active {
    opacity: 1;
    display: block;
}
.listing_slider > div {
    width: 100%;
    height: 190px;
}
.listing_slider .pt_featured_image {
    width: 100%;
    height: 190px !important;
    object-fit: cover;
}
.home_tour_slide .pt_featured_image {
    filter: blur(1px);
}
.pt_listing_content {
    padding: 10px 20px 15px 20px;
}
.pt_listing_content h3 {
    font-size: 18px;
    color: var(--pri-color);
    margin-bottom: 8px;
}
.pt_listing_content h4 {
    font-size: 18px;
    color: var(--pri-color);
    margin-bottom: 15px;
    margin-top: 5px;
}
.pt_listing_address {
    color: #818890;
    font-weight: 500;
    font-size: var(--p6-size);
    margin-bottom: 10px;
    display: flex;
    column-gap: 8px;
}
.pt_listing_features {
    font-size: 12px;
    color: var(--pri-color);
    font-weight: 600;
    margin-bottom: 8px;
}
.pt_listing_content i {
    font-size: 14px;
    color: var(--pri-color);
    margin-right: 3px;
}
.listing_agents {
    display: flex;
    position: absolute;
    width: calc(100% - 40px);
    bottom: 20px;
}
.listing_agents > div {
    width: 50%;
}
.listing_agents > div:first-child {
    display: flex;
}
.listing_agents > div:last-child {
    text-align: right;
}
.listing_agents > div:last-child a {
    display: inline-block;
    border: 1px solid var(--pri-color);
    padding: 8px 12px;
    color: var(--pri-color);
    text-decoration: none;
    font-size: var(--p6-size);
    border-radius: 5px;
    font-weight: 500;
}
.listing_agents > div:last-child a:hover {
    background-color: #f6faff;
}
.listing_agents > div img {
    width: 35px;
    margin-right: 10px;
    border-radius: 50%;
    height: auto;
}
.pt_video_tour iframe {
    height: 100%;
}
.tour_play_icon {
    position: absolute;
    width: 55px;
    left: calc(50% - 27px);
    top: calc(50% - 27px);
    z-index: 2;
    scale: 1;
    transition: all 0.2s;
}
.tour_play_icon:hover {
    scale: 1.1;
}
.price_sec {
    position: absolute;
    font-size: 15px;
    font-weight: 600;
    background: rgb(0 0 0 / 0.32);
    color: #fff;
    padding: 7px 14px !important;
    bottom: 3px;
}
.sec_3 {
    background: var(--bg-light);
    padding: 40px 20px 0 20px;
}
.sec_3 h2 {
    font-weight: 900;
    color: var(--pri-color);
    margin-bottom: 15px;
}
.sec_3 p {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 15px;
    max-width: 420px;
}
.sec_3 .plb_row {
    align-items: center;
}
.sec_3 .plb_col {
    width: 100%;
}
.sec_3 img {
    width: 95%;
    display: block;
    margin: auto;
}
.plb_form .plb_form_input {
    width: 100%;
    max-width: 500px;
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid var(--pri-color);
    margin-bottom: 15px;
    font-size: var(--p5-size);
    color: var(--pri-color);
    background: none;
    display: block;
}
.sec_3 .jet-form-builder__label {
    display: none;
}
.sec_3 form{
	width: 80%;
}
.sec_3 input {
    background-color: #f8fbff !important;
    border: 1px solid #30496f !important;
    border-radius: 50px 50px 50px 50px !important;
    padding: 12px 16px !important;
    width: 100% !important;
    margin-bottom: 15px !important;
    outline: none;
}
.sec_3 input::focus-visible {
    border: 1px solid #30496f;
}
.sec_3 button {
    color: #123b79 !important;
    padding: 12px 24px;
    border-radius: 50px;
    background: #f8fbff !important;
    border: 1px solid #30496f;
}
.input_submit {
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid var(--pri-color);
    margin-bottom: 15px;
    font-size: var(--p5-size);
    color: var(--pri-color);
    background: none;
}
.jet-form-builder-message {
	display: none !important;
}
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: 200px 0;
    }
}
.sec_load .plb_row {
    justify-content: center;
    padding-bottom: 40px;
}
.pt_load_more {
    color: #fff;
    border-style: none;
    border-radius: 5px 5px 5px 5px;
    padding: 12px 24px 12px 24px;
    background-color: var(--pri-color);
}
.pt_load_more i {
    margin-left: 8px;
}
.mobile {
    display: none;
}
.contact_listing_main_cont {
    background: #fff;
    text-align: center !important;
    padding: 40px 20px 0 20px;
}
#contact_listing_popup {
    display: none;
    background: rgb(0 0 0 / 0.5);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}
.contact_listing_main_cont h3 {
    color: #123b79;
}
#contact_listing_popup img {
    width: 100%;
}
#contact_listing_popup p {
    font-size: 18px;
}
.contact_listing_main_cont > i {
    position: relative;
    background: #000;
    top: -40px;
    left: 258px;
    padding: 6px 8px;
    color: #fff;
}
.contact_listing__cont > i {
    font-size: 50px;
    color: #123b79;
}
.contact_listing__cont {
    justify-items: center !important;
}
@media (max-width: 1024px) {
    .plb_filters_ul {
        width: 1100px;
    }
    .filters_div .filters {
        overflow: scroll;
    }
    .sec_3,
    .plb_content {
        padding-right: 10px;
        padding-left: 10px;
    }
    .sec_3 {
        padding-bottom: 40px;
    }
    .listing_agents > div:last-child a {
        padding: 4px 10px;
    }
    .listing_agents > div:first-child {
        width: 30%;
        align-items: center;
    }
    .listing_agents > div:last-child {
        width: 70%;
        justify-content: end;
        width: 70%;
        display: flex;
    }
    .listing_agents > div img {
        width: 20px;
        height: 20px;
    }
    .plb_property_listing {
        padding-bottom: 40px;
    }
}
@media (max-width: 767px) {
    .mobile {
        display: block;
    }
    .desktop_only {
        display: none !important;
    }
    .title_h1 {
        font-size: 24px;
        font-weight: 700;
    }
    .title_h2 {
        font-size: 18px;
        font-weight: 700;
    }
    .title_h3 {
        font-size: 16px;
        font-weight: 700;
    }
    .title_h4 {
        font-size: 14px;
        font-weight: 600;
    }
    .plb_property_listings {
        display: block;
    }
    .plb_property_listings .plb_property_listing {
        width: 100%;
        margin: 15px 0;
    }
    .filters_div .filters {
        overflow: scroll;
    }
    .filters_div .filters ul {
        width: 850px;
        overflow-y: hidden;
    }
    .plb_content {
        padding: 40px 20px 0 20px;
    }
    .plb_page_title_div {
        padding: 20px;
        min-height: 0;
    }
    .plb_page_title_div h2 {
        font-size: var(--p3-size);
    }
    #plb_search_property input {
        font-size: 12px;
    }
    .plb_filter_item_div {
        font-size: 12px;
		align-items: baseline;
    }
    .plb_filters_ul > li:nth-child(1) {
        width: 174px;
        margin-right: -15px;
    }
    .plb_filters_ul > li:nth-child(2) {
        width: 104px;
    }
    .plb_filters_ul > li:nth-child(3) {
        width: 160px;
    }
    .plb_filters_ul > li:nth-child(4) {
        width: 120px;
    }
    .plb_filters_ul > li:nth-child(5) {
        width: 120px;
    }
    .plb_filters_ul > li:nth-child(6) {
        width: 120px;
    }
    #plb_district_popup .pt_district_pop {
        width: 100%;
    }
    .plb_filter_item .plb_filter_subdiv {
        left: 0;
        right: 0;
        max-width: 100%;
    }
    #plb_district_popup .plb_popup_content {
        max-height: 400px;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    #plb_district_popup .plb_popup_div,
    #plb_all_filters_popup .plb_popup_div {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
    }
    .listing_agents > div:last-child a {
        padding: 4px 12px;
        align-self: baseline;
    }
    .listing_agents > div:last-child {
        align-self: end;
    }
    .listing_agents > div img {
        width: 46px;
        height: 46px;
    }
    .sec_3 p {
        font-size: 14px;
        line-height: 20px;
    }
    .sec_3 .plb_row {
        display: block;
    }
    .sec_3 img {
        margin: 0;
        width: 252px;
        height: 200px;
    }
    .sec_3 .plb_row div:nth-child(2) {
        justify-items: end;
    }
	.sec_3 form{
	width: 100%;
		}
    .sec_3 input {
        padding: 8px 16px !important;
        width: 100% !important;
    }
    .sec_3 {
        padding-bottom: 0;
    }
    .contact_listing_main_cont > i {
        left: 182px;
    }
    .plb_property_listing {
        padding-bottom: 40px;
    }
}
.contact_listing_popup_btn:hover {
    background: #123b79 !important;
    color: white !important;
}
.contact_listing_popup_btn:focus {
    background: #123b79;
    color: white !important;
}
.pt_all_clear_btn {
    cursor: pointer;
}
