:root {
    --primarycolor: #0D0047;
    --secondarycolor: #f00;
    --accentcolor: #0B0039;
    --headingclr: #000000;
    --textclr: #666666;
    --white: #ffffff;
    --black: #000000;
    --headfont: "Montserrat", sans-serif;
    --parafont: "Montserrat", sans-serif;
}

body {
    color: var(--textclr);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    font-family: var(--parafont);
    overflow-x: hidden;
}

a {
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease-out;
}

a:hover {
    color: var(--secondarycolor);
}

a:focus,
input:focus,
textarea:focus,
button:focus {
    outline: 0;
    box-shadow: 0;
}

dl,
ol,
ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
}

h2 {
    color: #4D4D4D;
    font-size: 42px;
    font-weight: 300;
}

p {
    color: #4D4D4D;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    color: var(--headclr);
    font-family: var(--headfont);
    margin: 0;
}

/* --- Back To Top Code --- */
.back-to-top {
    position: fixed;
    z-index: 9;
    bottom: 150px;
    right: -2px;
    background-color: var(--secondarycolor);
    padding: 10px 12px 5px;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    box-shadow: 0 0 10px #979797;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

#btn-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    transition: all 0.3s ease-in-out;
    color: var(--white);
}

.back-to-top:hover {
    background-color: #4A9A03;
}

.back-to-top:hover i {
    color: var(--white);
}

.container {
    max-width: 1420px;
    width: 90%;
}

section {
    position: relative;
}

ul.lists {
    margin-bottom: 20px;
}

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

/* --- Scrollbar Code --- */
/* ::-webkit-scrollbar {
    width: 8px;
} */

/* ::-webkit-scrollbar-track {
    background: var(--primarycolor);
} */

::-webkit-scrollbar-thumb {
    background: var(--othercolor);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primarycolor);
}

.subtitle {
    margin-bottom: 15px;
    color: #f00;
    font-size: 18px;
    font-weight: 700;
}

h2.maintitle {
    margin-bottom: 18px;
    color: #000;
    font-size: 42px;
    font-style: normal;
    font-weight: 300;
}

h2.maintitle span {
    display: block;
}

.desc h4,
h4 {
    color: #000;
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 22px;
}

/* --- Header Code --- */
header {
    width: 100%;
    z-index: 999;
}

header .nav-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    background-color: transparent;
    transition: all 0.3s ease-in-out;
}

header.fixed-header .header-btn {
    background-color: var(--secondarycolor);
    color: var(--bgdktxtclr);
}

header.fixed-header header .nav-header {
    padding: 20px 0;
}

header.fixed-header .top-header {
    opacity: 0;
    visibility: hidden;
    height: 0;
    padding: 0;
}

header.fixed-header {
    background-color: var(--primarycolor);
    position: fixed !important;
    animation: smoothScroll 1s forwards;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

nav.navbar {
    width: fit-content;
}

.navbar-expand-xl .navbar-nav {
    flex-direction: row;
    gap: 98px;
}

.navbar-nav li {
    color: #0B599F;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    list-style: none;
}

.navbar-nav>li {
    padding-right: 0;
    margin-right: 0;
}

.navbar-nav li a {
    position: relative;
    color: #0B599F;
    border-bottom: 1px solid transparent;
}

.navbar-nav ul {
    display: flex;
    gap: 10px;
}

.navbar-nav li:hover a,
.navbar-nav li.current-menu-item a {
    color: #0B599F;
    border-bottom: 1px solid #0B599F;
}

.navbar-nav li.current-menu-item a {
    font-weight: 700;
}

.navbar-nav li.menu-item-has-children {
    position: relative;
}

.navbar-nav li.menu-item-has-children>span {
    position: absolute;
    top: 0;
    right: 0;
}

.navbar-nav li.menu-item-has-children>span:after {
    content: '\276E';
    transform: rotate(-90deg);
    position: absolute;
    right: -17px;
    color: var(--bgwhclr);
    transition: all 0.3s ease-in-out;
}

.navbar-nav li.menu-item-has-children>span.active:after {
    transform: rotate(90deg);
}

.navbar-nav ul.sub-menu {
    position: absolute;
    left: 0;
    padding: 0;
    width: 180px;
    list-style: none;
    background-color: var(--bgwhclr);
    opacity: 0;
    visibility: hidden;
    transform: translate(0%, 50%);
    transition: all 0.3s ease-in-out;
}

.navbar-nav li.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(0%, 0%);
}

.navbar-nav li ul.sub-menu a {
    color: var(--bgdktxtclr);
}

.navbar-nav ul.sub-menu>li {
    padding: 10px 15px;
    font-size: 14px;
}

.login-register li {
    list-style: none;
}

li.btn-phone-number a {
    color: #0B599F;
    font-size: 16px;
    font-weight: 700;
}

li.btn-phone-number a:hover {
    color: #FF0000;
}

a.btn.btn-create-listing {
    display: flex;
    padding: 18px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: #F00;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

a.btn.btn-create-listing:hover {
    background: #0B599F;
}

.login-register.on-hover-menu ul {
    padding-left: 40px;
    gap: 22px;
}

section.banner-section {
    position: relative;
    z-index: 9;
}

.banner-content-wrp {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 560px;
}

.banner-content-wrp:after {
    background: rgba(0, 69, 121, 0.68);
    content: '';
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100%;
}

.b-content-col {
    position: relative;
    z-index: 9;
    padding: 140px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.b-content-col h1 {
    color: #FFF;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

.b-content-col h1 span {
    font-weight: 700;
}

.b-content-col h3 {
    color: #FFF;
    text-align: center;
    font-size: 33px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.b-content-col p {
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 0 18%;
    margin: 0;
}

section.filter_section {
    background: #F7F8F9;
    padding-bottom: 65px;
}

.houzez-search-builder-wrapper {
    background-color: #FFFFFF;
    padding: 30px 30px 30px 30px;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.1);
}

.houzez-search-form-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-left: calc(-10px / 2);
    margin-right: calc(-10px / 2);
    gap: 11px;
}

.filter_btn1 {
    width: 19%;
}

.type-submit {
    width: 20%;
    display: flex;
    align-items: flex-end;
}

.filter_btn1 label {
    color: #000;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.dropdown.bootstrap-select.form-control {
    border: none;
    padding: 0;
    position: relative;
}

/* select.selectpicker.form-control {
    background-color: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #848484;
    display: flex;
    padding: 16px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    color: #848484;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
} */

.nice-select.selectpicker {
    width: 100%;
    display: flex;
    align-items: center;
    height: 52px;
}

.nice-select.selectpicker::after {
    display: none;
}

.nice-select .list,
.nice-select-dropdown {
    width: 100%;
}

button.search-button {
    border-radius: 4px;
    border: 1px solid #02AEFF;
    background: #F00;
    display: flex;
    width: 100%;
    padding: 14px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: .4s;
}

.clear_filter button.search-button {
    max-width: fit-content;
    margin: 0 auto;
}

button.search-button:hover {
    background: #02AEFF;
}

.nav-pills .nav-link {
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 8px 8px 0 0;
    background: rgba(11, 159, 142, 0.67);
    margin: 0px 3px;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.nav-pills .nav-link.active {
    color: #0B599F;
    background-color: #FFFFFF;
}

ul.houzez-status-tabs.nav.nav-pills {
    justify-content: center;
}

.filter-widget-container {
    margin-top: -103px;
    margin-bottom: 0px;
    position: relative;
    z-index: 9;
}

.dropdown.bootstrap-select:after {
    content: "";
    font-size: 10px;
    font-weight: 700;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    margin: auto;
    width: 16px;
    height: 16px;
    background-image: url('../images/ph_caret-up-down-light.svg');
}

section.featured-section {
    background: #F7F8F9;
    padding: 20px 0px 80px;
}

section.featured-section .section-title-module {
    margin-bottom: 15px;
}

.item-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-footer {
    padding: 20px;
    padding-top: 0px;
    display: flex;
}

h2.item-title {
    color: #4D4D4D;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

address.item-address {
    color: #4D4D4D;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 6px;
}

ul.item-amenities {
    padding: 0 0 15px;
    border-bottom: 1px solid rgba(77, 77, 77, 0.27);
    gap: 16px;
}

.item-body li {
    color: #4D4D4D;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    gap: 8px;
}

.featured-posts-items {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.4s;
}

.item-body li.h-type {
    text-transform: uppercase;
}

.item-author-image {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
}

.item-author-image img {
    width: 100%;
}

.item-author a,
.item-date {
    color: #4D4D4D;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.item-author a:hover {
    color: #f00;
}

.section-title-module {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

h2.title {
    color: #4D4D4D;
    text-align: center;
    font-size: 42px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

h2.title span {
    font-weight: 700;
}

p.subtitle {
    color: #4D4D4D;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

p.subtitle span {
    display: block;
}

.f_image img {
    max-height: 349px;
    width: 100%;
    object-fit: cover;
    transition: .4s;
}

.f_image {
    position: relative;
    overflow: hidden;
}

.f_image:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0px;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(0, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, .75)));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, .75) 100%);
}

.featured-posts-slider .slick-slide {
    padding: 10px 6px;
}

.featured-posts-slider .slick-next:before,
.featured-posts-slider .slick-prev:before {
    display: none;
}

.featured-posts-slider .slick-next,
.featured-posts-slider .slick-prev {
    text-indent: 1px;
    position: absolute;
    top: 0;
    bottom: auto;
    z-index: 999;
    width: 70px;
    gap: 10px;
    background: #D2D3D4;
    height: 34px;
    transform: none;
    color: #4D4D4D;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    transition: .4s;
}

.featured-posts-slider .slick-next:hover,
.featured-posts-slider .slick-prev:hover {
    background: #F00;
    color: #fff;
}

.featured-posts-slider {
    padding-top: 32px;
}

.featured-posts-slider .slick-prev {
    left: auto;
    right: 82px;
}

.featured-posts-slider .slick-next {
    right: 5px;
}

.featured-posts-items:hover {
    box-shadow: 0px 0px 5px #F00;
}

.img-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
}

h5.p_price {
    color: #FFF;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: absolute;
    bottom: 15px;
    left: 15px;
}

span.featured {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    background: #4A9A03;
    padding: 4px 8px;
    position: absolute;
    top: 15px;
    left: 15px;
}

span.for-rent {
    background: #0B599F;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    padding: 4px 8px;
    position: absolute;
    top: 15px;
    right: 15px;
    text-transform: uppercase;
}

span.for-rent.sale {
    background: #F00;
}

span.img-arrow {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.featured-posts-items:hover .f_image img {
    transform: scale(1.2);
}

.featured-posts-items:hover span.img-arrow img {
    transform: none;
}

.grid-item {
    position: relative;
    width: 100%;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-bottom: 40px;
}

.grid-item[data-ratio=landscape]::before {
    content: "";
    display: block;
    padding-top: 75%
}

.grid-item[data-ratio=square]::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.grid-item:not([data-ratio]) {
    padding-top: 211%;
}

.grid-item[data-ratio=vertical]::before {
    content: "";
    display: block;
    padding-top: 150%
}

.hover-effect-flat:before,
.hover-effect:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    transition: .4s;
}

.hover-effect-flat:hover:before,
.hover-effect:hover:before {
    opacity: 0;
}

.hover-effect-flat:before {
    opacity: .3;
    background-color: #000;
}

.grid-item>a {
    position: absolute;
    inset: 0;
    display: block
}

.grid-item-text-wrap {
    padding: 16px;
    position: relative;
}

.grid-item-subtitle {
    color: #fff;
    font-size: 16px;
    line-height: normal
}

.grid-item-title {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.grid-item-text-link {
    color: #fff;
    font-size: 16px;
    text-transform: capitalize;
}

.grid-item-icon {
    color: #fff
}

.d-flex.flex-column {
    gap: 12px;
}

section.apartment-content-section {
    padding: 80px 0px;
}

section.apartment-content-section .container {
    max-width: 1185px;
    width: 100%;
}

.apartment_content,
.apartment_items {
    padding: 0px 20px;
}

.apart_title_wrap,
.grid-item {
    padding: 0px;
}

.apartment_items .grid-item:last-child {
    margin-bottom: 0px;
}

.apart_title_wrap p {
    padding: 20px 0px;
}

.apart_title_wrap {
    position: relative;
    padding-bottom: 30px;
}

.apart_title_wrap:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    background: #4D4D4D;
    width: 220px;
    height: 3.5px;
}

.apartment_content {
    display: flex;
    flex-wrap: wrap;
    align-items: anchor-center;
}

.apartment_content>div {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.real-state-form-section {
    padding: 150px 20px;
    background-size: cover;
    background-attachment: fixed;
}

.rs-items_content h5 {
    color: #FFF;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 22px;
}

.rs-items_content p,
.rs-items p {
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.rs-items h4 {
    color: #FFF;
    font-size: 32px;
    font-weight: 300;
}

.rs-items h4 span,
.rs-items h4 strong {
    display: block;
}

.rs-form-wrp {
    background: #fff;
    max-width: 522px;
    width: 100%;
    display: flex;
    gap: 10px;
    flex-direction: column;
    padding: 40px 20px;
}

.rs-form-wrp label {
    display: block;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 5px 12px;
}

.rs-form-wrp .input_field input,
.rs-form-wrp .input_field select {
    border-radius: 4px;
    border: 1px solid #848484;
    width: 100%;
    height: 45px;
    padding: 0px 10px;
    color: #848484;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    background-color: #fff;
}

.rs-form-wrp .input_field select {
    background-image: url(../images/ph_caret-up-down-light.svg);
    background-repeat: no-repeat;
    background-position: 98% center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input_submit_field input {
    border-radius: 4px;
    border: 1px solid #02AEFF;
    background: #F00;
    width: 100%;
    display: flex;
    height: 45px;
    justify-content: space-between;
    align-items: center;
    color: #FFF;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    transition: .4s;
}

.input_submit_field input:hover {
    border: 1px solid #F00;
    background: #02AEFF;
}

.input_checkbox_field,
.input_submit_field {
    padding: 0 5px;
    position: relative;
}

/* .input_checkbox_field input {} */

.input_field {
    padding: 0px 5px;
    margin-bottom: 15px;
}

.rs-form-wrp .row {
    margin: 0;
}

.form_heading_wrp h5 {
    color: #000;
    font-size: 28px;
    font-weight: 600;
}

.form_heading_wrp {
    padding: 0px 5px;
}

.input_field {
    padding: 0px 5px;
}

.rs-form-wrp .row {
    margin: 0;
}

.form_heading_wrp h5 {
    color: #000;
    font-size: 28px;
    font-weight: 600;
}

.form_heading_wrp {
    padding: 0px 5px;
}

.rs-form-wrp span.wpcf7-list-item.first.last {
    margin: 0;
    display: flex;
    align-items: start;
    gap: 9px;
}

.rs-form-wrp span.wpcf7-list-item-label {
    color: #000;
    font-size: 13px;
    font-weight: 400;
    margin-top: -5px;
}

.input_checkbox_field {
    margin-bottom: 10px;
}

span.wpcf7-spinner {
    position: absolute;
    margin: auto !important;
    left: 0;
    right: 0;
}

.container-rs {
    max-width: 1420px;
    width: 100%;
    margin: auto;
}

.real-state-form {
    display: flex;
    justify-content: flex-end;
}

.real-state-content {
    display: flex;
    align-items: center;
}

.rs-items_content,
.rs-items {
    padding-bottom: 50px;
    padding-right: 40px;
    position: relative;
}

.real-state-content .row {
    row-gap: 70px;
}

.rs-items:after {
    content: '';
    position: absolute;
    left: 15px;
    bottom: 0;
    background: #fff;
    width: 220px;
    height: 1px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: none !important;
    font-size: 14px;
    text-align: center;
    margin: 0;
    color: #FF0000;
}

.wpcf7 form.sent .wpcf7-response-output {
    display: none !important;
}

section.Finest-Properties-section {
    background: #F7F8F9;
    padding: 80px 0px;
}

.Finest-Properties-section .apart_title_wrap {
    text-align: center;
}

.fp_items_wrp .grid-item {
    width: 32%;
    margin-bottom: 20px;
    border-radius: 8px;
}

.fp_items_wrp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.fp_content .apart_title_wrap:after {
    display: none;
}

.fp_content .apart_title_wrap p {
    padding: 15px 0px 0px;
}

.fp_items_wrp .f_content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 999;
}

.fp_items_wrp h2 {
    text-transform: capitalize;
}

.fp_items_wrp h2 a,
.fp_items_wrp li,
.fp_items_wrp li a,
.fp_items_wrp address,
.fp_items_wrp div {
    color: #fff;
}

.fp_items_wrp h2 a:hover,
.fp_items_wrp li a:hover {
    color: #F00;
}

.fp_items_wrp ul.item-amenities {
    padding: 0 0 15px;
    border-bottom: none;
    gap: 16px;
}

.fp_items_wrp h5.p_price {
    position: relative;
    left: 0;
    bottom: 0;
}

.fp_items_wrp .hover-effect-flat:before {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 999;
}

.fp_items_wrp .hover-effect-flat:hover:before,
.fp_items_wrp button.slick-arrow:before {
    opacity: 0;
}

.finest_properties_slider {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
}

.fp_items_wrp .slick-list,
.fp_items_wrp .slick-track {
    height: 100%;
}

.fp_items_wrp button.slick-prev.slick-arrow {
    left: 15px;
    background-image: url('../images/f-prev.svg');
}

.fp_items_wrp button.slick-next.slick-arrow {
    right: 15px;
    background-image: url('../images/f-next.svg');
}

.fp_items_wrp button.slick-arrow {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    bottom: auto;
    top: 90px;
    z-index: 999;
    width: 18px;
    height: 30px;
    background-size: cover;
}

.fp_items_wrp .grid-item-link.hover-effect-flat {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

section.explore-cities-section {
    padding: 80px 20px;
}

.explore-content {
    display: flex;
    align-items: center;
}

.explore-content .apart_title_wrap p {
    padding: 20px 0px;
    margin: 0;
}

.explore-cities-wrp .grid-item.slick-slide {
    margin: 0px 7px;
}

.explore-cities-wrp .hover-effect-flat:before {
    opacity: 1;
    background: rgba(11, 89, 159, 0.30);
}

.explore-cities-wrp .hover-effect-flat:hover:before {
    opacity: 0;
}

section.about-team-section {
    padding: 80px 0px;
    background: #F7F8F9;
}

.bteam-content {
    text-align: center;
    margin-bottom: 50px;
}

section.about-team-section .row {
    margin: auto;
    background: #fff;
    display: flex;
    max-width: 1060px;
    width: 100%;
    padding: 40px;
    justify-content: space-between;
    gap: 20px;
}

.team_photo {
    max-width: 440px;
    width: 100%;
}

.team_content {
    width: 53%;
    display: flex;
    align-items: center;
}

.team_details {
    background: #EDF9FF;
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 3px;
}

.inn_team_content li {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    list-style: none;
    background-image: url('../images/square-tick.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    padding-left: 36px;
    margin-bottom: 10px;
}

.team_details h5 {
    color: #02AEFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 5px;
}

.team_details h6 {
    color: #000;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    letter-spacing: 0.72px;
}

section.testimonials-section {
    padding: 80px 0px;
}

.testimonial-item {
    background: #EDF9FF;
    padding: 20px;
}

img.star {
    width: auto !IMPORTANT;
}

.testimonial-body {
    color: #4D4D4D;
    font-size: 18px;
    font-style: italic;
    padding: 10px 0px;
    min-height: 140px;
}

strong.testimonial-name {
    color: #4D4D4D;
    font-size: 18px;
    font-weight: 700;
    display: block;
}

em.testimonial-job {
    color: #4D4D4D;
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    display: block;
}

.testimonial-item .d-flex.align-items-center {
    gap: 18px;
    padding-top: 20px;
}

.testimonials-module .slick-slide {
    margin: 0px 10px;
}

.client_partner_logo_section {
    padding-top: 80px;
}

.clogo {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer_detail_sec {
    background: #004274;
}

.copyright-row {
    background: #00335A;
    padding: 15px 0px;
    text-align: center;
}

.footer_detail_sec .container {
    padding: 60px 0px;
}

p.copyright-txt {
    margin: 0;
    color: #FFF;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.28px;
}

.f_content p {
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

ul.f_social_media {
    display: flex;
    gap: 10px;
}

ul.f_social_media>li:hover {
    transform: scale(0.9);
}

ul.f_social_media>li {
    transition: all 0.3s ease-in-out;
}

ul.f_social_media li {
    list-style: none;
}

.f_content {
    padding: 15px 0px 20px;
}

.common-nav h6 {
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    padding: 70px 0px 30px;
}

.common-nav.fnav2 li,
.f_contact_detail p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.32px;
}

.common-nav.fnav2 li {
    margin-bottom: 10px;
}

.f_contact_detail strong {
    display: block;
}

.common-nav.fnav2 li a,
.f_contact_detail a {
    color: #fff;
}

.common-nav.fnav2 li a {
    text-transform: capitalize;
}

.common-nav.fnav2 li a:hover,
.f_contact_detail a:hover, .common-nav li.current_page_item a {
    color: #F00;
}

.f_items {
    position: relative;
    padding-left: 30px;
}

.f_items img,
.f_items svg {
    position: absolute;
    top: 6px;
    left: 0px;
}

.common-nav.fnav4 p {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.28px;
    margin-bottom: 0px;
}

.common-nav.fnav1 {
    width: 24%;
}

.common-nav.fnav2 {
    width: 10%;
}

.common-nav.fnav3 {
    width: 23%;
}

.common-nav.fnav4 {
    width: 35%;
}

.footer_detail_sec .row {
    justify-content: space-between;
}

.common-nav.fnav4 .es-form-1 form {
    background: transparent !important;
    border: none !important;
    border-radius: 0px !important;
    padding: 0px !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    gap: 15px;
}

.common-nav.fnav4 label.es-field-label {
    text-indent: -999999px;
}

.common-nav.fnav4 .es_txt_email.ig_es_form_field_email.ig-es-form-input {
    display: flex;
    height: 45px;
    padding: 16px;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid #FFF !important;
    background: transparent;
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 345px !IMPORTANT;
    position: relative;
    top: -3px;
}

.common-nav.fnav4 .es-field-wrap.ig-es-form-field {
    margin-bottom: 0px !important;
    margin-top: -20px;
}

.common-nav.fnav4 .es-form-1 .es-field-wrap {
    margin-bottom: 0px !important;
}

.common-nav.fnav4 input.es-subscribe-btn.es-custom-button{
    border-radius: 4px !important;
    border: 1px solid #02AEFF !important;
    background: #F00 !important;
    display: flex;
    width: 118px !important;
    height: 45px !important;
    justify-content: space-between;
    align-items: center;
    color: #FFF;
    font-size: 18px !important;
    font-style: normal;
    font-weight: 700 !important;
    line-height: normal;
    transition:.4s;
    padding: 0 !important;
    margin: 0 !important;
}
.common-nav.fnav4 input.es-subscribe-btn.es-custom-button:hover{
    background: #02AEFF !important;
}
input.es-subscribe-btn.es-custom-button {
    margin: 0 !important;
}
.common-nav.fnav4 input::placeholder {
    color: #fff;
}

.common-nav.fnav4 input::-webkit-input-placeholder {
    color: #fff;
}

.common-nav.fnav4 input:-ms-input-placeholder {
    color: #fff;
}

.common-nav.fnav4 input::-ms-input-placeholder {
    color: #fff;
}

.common-nav.fnav4 .es_form_wrapper {
    margin-bottom: 20px !important;
}

section.client_section .client_partner_logo_section {
    padding: 60px 0px;
}

.inner-banner-section {
    height: 210px;
    display: flex;
    align-items: center;
    background-size: cover;
}

.banner-text h1 {
    color: #FFF;
    font-size: 44px;
    font-weight: 500;
    text-transform: capitalize;
}

.banner-text h1 span {
    font-weight: 400;
}

section.apartment-content-section.about-wrp {
    padding-bottom: 0px;
}

.about-wrp h2 {
    padding-bottom: 30px;
}

.about-wrp h2 strong,
.prices strong {
    font-weight: 700;
}

.about-wrp .row {
    justify-content: space-between;
}

.abt_content {
    width: 49%;
}

section.services_wrp {
    background: transparent;
    padding: 40px 0px;
}

.services-items {
    padding: 8px;
}

.pagination ul {
    display: flex;
    gap: 15px;
    align-items: center;
    margin: auto;
}
.pagination ul li{
    list-style: none;
}
.pagination ul li a, span.page-numbers.current{
    display: flex;
    width: 40px;
    height: 40px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #000;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #EBEBEB;
    background: #FFF;
}

span.page-numbers.current {
    background: #35AEFD;
    border: 1px solid #35AEFD;
    color: #fff;
    font-weight: 600;
}

.pagination {
    padding: 20px 0px;
}

section.advanced-search.advanced-search-nav {
    background: #004274;
    padding: 27px 0px;
}

.advanced-search-v1 {
    padding: 0;
    max-width: 1160px;
    width: 100%;
    margin: auto;
}

.advanced-search-v1 .search-icon input {
    background-image: url('../images/search-icon.svg');
    background-repeat: no-repeat;
    background-position: 3% center;
    padding-left: 45px;
}

.advanced-search-v1 input,
.advanced-search-v1 select,
.flex-search button {
    padding: 10px 15px;
    height: 44px;
    border-radius: 4px;
    background-color: #FFF;
    border: none;
    color: #848484;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    outline: none;
}

.flex-search button[type=submit] {
    border-radius: 4px;
    background: #F00;
    border: none;
    display: flex;
    width: 126px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    transition: .4s;
}

.flex-search button[type=submit]:hover,
.reset-search-btn-wrap button:hover {
    background: #4A9A03;
    color: #fff;
}

.form-group.two select {
    width: 162px;
    background-image: url(../images/ph_caret-up-down-light.svg);
    background-repeat: no-repeat;
    background-position: 96% center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
select{
    background-image: url(../images/select.svg);
    background-repeat: no-repeat;
    background-position: 97% center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.form-group.three select {
    width: 126px;
    background-image: url(../images/ph_caret-up-down-light.svg);
    background-repeat: no-repeat;
    background-position: 96% center;
    appearance: none;
}

.form-group.one {
    width: 50%;
}

.advanced-search-v1 .flex-wrap {
    justify-content: space-between;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
}

.breadcrumbs a {
    color: #004274;
}

.breadcrumbs a:hover {
    color: #F00;
}

.breadcrumbs-tabs h2 strong {
    font-weight: 700;
}

.breadcrumbs-tabs,
.product-details-save {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-tabs button.tab {
    display: flex;
    max-width: 208px;
    width: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: 1px solid #848484;
    background: #848484;
    color: #FFF;
    text-transform: uppercase;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    transition: .4s;
}

.filter-tabs button.tab.active,
.filter-tabs button.tab:hover {
    border: 1px solid #848484;
    background: #FFF;
    box-shadow: -4px -2px 4px 0 rgba(0, 0, 0, 0.25);
    color: #004274;
}

.filter-tabs {
    display: flex;
    gap: 2px;
    padding: 20px 0px;
}

.details_pro {
    display: flex;
    align-items: center;
    gap: 40px;
}

.details_pro address.item-address {
    margin: 0;
}

.details_pro ul.item-amenities {
    padding: 0;
    border: none;
}

.details_pro ul.item-amenities li {
    gap: 6px;
    font-weight: 600;
}

section.services_details_wrp {
    padding: 40px 0px;
}

.details_top_wrp {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.picon-save {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
}

.picon-save>div {
    border-radius: 5.368px;
    border: 0.671px solid #4D4D4D;
    width: 26px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cat_name a {
    background: #FFC300;
    display: inline-flex;
    padding: 4px 10px;
    color: #4D4D4D;
    font-size: 16px;
    font-weight: 600;
}

.cat_name a:hover {
    background: #F00;
    color: #fff;
}

.cat_name {
    text-align: right;
}

.slider-single>div:nth-child(1n+2) {
    display: none
}

.slider-single.slick-initialized>div:nth-child(1n+2) {
    display: block
}

.slider-nav h3::before {
    content: "";
    display: block;
    padding-top: 75%;
}

.slider-nav h3 span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slider-nav .slick-slide {
    cursor: pointer;
}

.slider-single .slick-slide {
    background: #f1f1f1;
    display: flex;
    justify-content: center;
}

.slider-nav .slick-slide {
    margin: 4px 2px;
}

.slider.slider-nav {
    margin: 0px -2px;
}

.slider_icons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 20px;
}

.product-carousel-slider {
    position: relative;
}

.slider.slider-single {
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.slider-nav .slick-next:before,
.slider-nav .slick-prev:before {
    opacity: 1;
    color: #0B599F;
}

.slider-nav .slick-next:hover:before,
.slider-nav .slick-prev:hover:before {
    opacity: 1;
    color: #F00;
}

.overview-section {
    background: #F3FBFF;
    padding: 28px;
    margin-top: 40px;
}

.overview-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #0B599F;
}

.overview-head h3 {
    margin: 0;
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.product-id {
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.overview-grid {
    display: flex;
    padding-top: 20px;
    justify-content: space-between;
}

.item {
    padding: 10px 0;
}

.item:last-child {
    border-right: none;
}

.item h4 {
    color: #000;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
}

.item p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

span.product-id span {
    font-weight: 400;
}

.item div {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.item div h4 {
    margin: 0;
}

.slider_icons span {
    cursor: pointer;
    background: #02AEFF;
    border-radius: 10px;
}

.product-description .overview-head {
    margin-bottom: 20px;
}

.product-gallery-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin-top: 40px;
}

.featured-grid ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.featured-grid li {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    list-style: none;
    background-image: url(../images/circle-tick.svg);
    background-repeat: no-repeat;
    background-position: 0px center;
    padding-left: 38px;
}

.similar-posts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #0B599F;
    margin-top: 30px;
    margin-bottom: 10px;
}

.similar-posts h6 {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

span.see-more a {
    display: flex;
    width: 219px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #4D4D4D;
    background: #FFF;
    color: #4D4D4D;
    font-size: 16px;
    font-weight: 600;
}

span.see-more a:hover {
    background: #F00;
    border: 1px solid #F00;
    color: #fff;
}

.featured-grid {
    margin-bottom: 15px;
}

.p_enq_form {
    background: #E6F7FF;
    padding: 30px;
}

.p_enq_form h4 {
    color: #0B599F;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.p_enq_form input,
.p_enq_form select,
.p_enq_form textarea,
.contact-us-form input,
.contact-us-form textarea {
    border-radius: 4px;
    background-color: #FFF;
    display: flex;
    width: 100%;
    padding: 10px;
    align-items: center;
    color: #848484;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.p_enq_form textarea {
    height: 110px;
    padding: 10px 15px;
    resize: none;
}

.p_enq_form span.wpcf7-form-control-wrap,
.contact-us-form span.wpcf7-form-control-wrap {
    display: flex;
    margin-bottom: 10px;
    flex-direction: column;
}

.p_enq_form span.wpcf7-form-control.wpcf7-checkbox label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: #000;
    font-size: 12px;
    font-weight: 400;
}

.contact-us-form span.wpcf7-form-control.wpcf7-checkbox label {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.p_enq_form span.wpcf7-list-item.first.last,
.contact-us-form span.wpcf7-list-item.first.last {
    margin: 0;
}

.p_enq_form span.wpcf7-form-control.wpcf7-checkbox label input,
.contact-us-form span.wpcf7-form-control.wpcf7-checkbox label input {
    width: auto;
}

.slider-nav .slick-next {
    right: 0px;
}

.slider-nav .slick-prev {
    left: 0px;
    z-index: 9;
}

input.wpcf7-form-control.wpcf7-submit {
    border-radius: 4px;
    background: #F00;
    border: 1px solid #F00;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    transition: .4s;
    display: flex;
    justify-content: center;
}

input.wpcf7-form-control.wpcf7-submit:hover {
    background: #000;
}

.p_enq_form .col-md-12 {
    position: relative;
}

.p_enq_form .wpcf7-not-valid,
.contact-us-form .wpcf7-not-valid {
    border: 1px solid #F00;
}

span.wpcf7-not-valid-tip {
    display: none;
}

.map_iframe {
    padding-bottom: 50px;
}

.contact-form-area-wrap {
    padding: 80px 0px 30px;
}

.cd-wrap {
    background: #F3FBFF;
    padding: 28px 18px;
    margin-bottom: 40px;
}

.cd-wrap h5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #0B599F;
    margin-bottom: 25px;
    color: #000;
    font-size: 18px;
    font-weight: 600;
}

.cd-wrap p strong {
    display: block;
    padding: 5px 0px;
}

.email,
.phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.email p,
.phone p {
    margin: 0;
}

.map_iframe .container {
    height: 340px;
}

.map_iframe iframe {
    height: 100%;
    width: 100%;
}

.contact_details_wrp {
    padding-left: 40px;
}

.contact-form-content {
    background: #F3FBFF;
    display: flex;
    padding: 28px 23px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.contact-form h2 strong {
    font-weight: 700;
}

.contact-form p {
    padding: 20px 0px;
}

.contact-us-form p {
    padding: 0;
}

.contact-us-form .col-md-6,
.contact-us-form .col-md-12 {
    padding: 0px 4px;
}

.contact-us-form textarea {
    height: 150px;
    resize: none;
}

.contact-us-form .row {
    margin: 0;
}

.contact-socail-meida {
    display: flex;
    gap: 20px;
}

.container-fluid.for-section {
    padding: 50px 0px;
}

.btn_class a.btn.btn-create-listing {
    display: inline-flex;
    padding: 20px 25px;
}
.contact-form-area-wrap .container, .map_iframe .container{
    padding: 0px 7%;
}

.product-gallery-section img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.wpcf7-not-valid {
    border: 1px solid #FF0000 !important;
}
.form-group select {
    background-image: none;
}
.contact-us-form .wpcf7-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  border: 1px solid #fff;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.contact-us-form .wpcf7-checkbox input[type="checkbox"]:checked {
  background-color: #007bff;
  border-color: #007bff;
}

.contact-us-form .wpcf7-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 7px;
  height: 12px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
