* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif !important;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/Montserrat/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../../assets/fonts/Montserrat/Montserrat-Bold.woff2') format('woff2'), url('../../assets/fonts/Montserrat/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../../assets/fonts/Montserrat/Montserrat-Regular.woff2') format('woff2'), url('../../assets/fonts/Montserrat/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../../assets/fonts/Montserrat/Montserrat-Medium.woff2') format('woff2'), url('../../assets/fonts/Montserrat/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Damion';
    src: url('../../assets/fonts/Damion/Damion.woff') format('woff2'), url('../../assets/fonts/Damion/Damion.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    max-width: 1460px!important;
}

.topbar {
    background-color: #e40f15;
    padding: 6px 16px;
    position: sticky;
    top: 0;
    z-index: 999;
    transition: background-color 0.3s ease;
}

.topbar.sticky {
    border-bottom: 1px solid #ccc;
    background: #eeeeee;
}

.topbar.sticky .city,
.topbar.sticky .login {
    color: #000;
}

.topbar.sticky .switch-btn .active {
    background-color: #e40f15;
    color: #fff;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.topbar-left img {
    width: 96px;
    height: auto;
    transition: 0.3s;
}


/* .topbar.sticky .topbar-left img {
     content: url('assets/img/color-logo.webp');
 }
  */

.switch-btn {
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-left: 40px;
    padding: 3px;
}

.switch-btn button {
    border: none;
    outline: none;
    padding: 0px 15px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    height: 27px;
    line-height: 27px;
}

.switch-btn .active {
    background-color: #e40f15;
    color: white;
    border-radius: 20px;
}

.switch-btn .inactive {
    background-color: white;
    color: black;
}

.city a {
    color: white;
    font-size: 14px;
    text-decoration: none;
    padding: 16px 10px;
}

.city a:hover {
    background: #ffffff;
    color: #e40f15;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.post-btn {
    background-color: white;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.post-btn .free-tag {
    background-color: #ffba00;
    font-size: 10px;
    padding: 0 6px;
    border-radius: 30px;
    margin-left: 5px;
}

.dropdown-arrow::after {
    content: ' \25BE';
    font-size: 14px;
    margin-left: 3px;
}

.post-btn:hover .post-dropdown {
    display: block;
}

.post-dropdown {
    display: none;
    position: absolute;
    top: 36px;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 240px;
}

.post-dropdown .property_create {
    padding: 8px 12px;
}

.post-dropdown a .property_create {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.post-dropdown .property_create:hover {
    background-color: #eee;
}

.post-dropdown a .property_create:hover {
    color: #e40f15;
}

.post-dropdown a .property_create i {
    color: #e40f15;
}

.login a {
    color: white;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    padding: 16px 10px;
}

.login a:hover {
    background: #ffffff;
    color: #e40f15;
}


/* --------------------------------header----------------------------------------- */


/* ------------------home page------------------------ */

.nav-tabs {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.nav-tabs button {
    padding: 10px 30px;
    border: none;
    background: #f0f0f0;
    margin: 0 5px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
}

.nav-tabs .active {
    background: red;
    color: #fff;
}

.search-bar-wrapper {
    background-color: #e40f15;
    padding: 0 15px 20px;
    border-radius: 20px;
    max-width: 950px;
    margin: 25px auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tab-buttons {
    display: flex;
    justify-content: center;
    padding: 10px 0 0;
}

.tab-buttons .btn {
    border-radius: 50px;
    padding: 3px 20px;
    margin: 0 5px;
    font-weight: 600;
    background-color: transparent;
    color: white;
    border: none;
}

.tab-buttons .btn.active {
    background-color: #fff;
    color: #e40f15;
}

.search-bar {
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 30px;
    border: 1px solid #aba4b1;
    margin: 0 auto;
    padding: 5px;
    height: 50px;
    box-shadow: 0 3px 12px -9px rgba(0, 0, 0, .4);
    margin-top: 5px;
}

.form-item {
    flex: 1;
    position: relative;
}

.form-item i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #e40f15;
    font-size: 14px;
}

.form-item::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    pointer-events: none;
    font-size: 12px;
}

.form-item input,
.form-item select {
    width: 100%;
    padding: 8px 28px 8px 32px;
    border: none;
    border-left: 1px solid #ccc;
    font-size: 14px;
    background: transparent;
    outline: none;
    appearance: none;
}

.form-item:first-child input {
    border-left: none;
}

.form-item:first-child::after {
    content: none;
}

.btn-search {
    background-color: #d50000;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-search-gray {
    background-color: #f0f0f0;
    color: #000;
    border-radius: 30px;
    padding: 10px;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 3px;
}

.property-options,
.services,
.owner-plots {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
}

.property-options h2,
.property-slider h2,
.services h2,
.owner-plots h2 {
    text-align: center;
    margin-bottom: 30px;
}

.services-grid,
.plots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.option-card,
.service-card,
.plot-card {
    background: #fff;
    width: 250px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.option-card:hover,
.service-card:hover,
.plot-card:hover {
    transform: translateY(-5px);
}

.option-card img,
.service-card img,
.plot-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.option-card p,
.service-card p,
.plot-card p {
    padding: 15px;
    font-size: 14px;
}

.highlight-slide {
    background: red;
    color: white;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.highlight-slide img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.highlight-slide .info {
    flex: 1;
}

.highlight-slide .info h3 {
    margin-bottom: 10px;
}

.highlight-slide .info button {
    background: #fff;
    color: red;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
}

.plot-card .footer {
    padding: 10px 15px;
}

.plot-card .btn {
    background: red;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    display: inline-block;
}

.banner-home-set {
    background-image: url('../../assets/img/anuda-live-banner2.webp');
    position: relative;
    background-color: #fafafa;
    min-height: 410px;
    margin-top: 0px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
}

.banner-form h3 {
    color: #000000;
    text-transform: none;
    text-align: center;
    padding-bottom: 30px;
    font-size: 28px;
    font-weight: normal;
}

.banner-form h3 span {
    font-weight: 500;
    font-family: 'Damion' !important;
    font-size: 48px;
    color: #000;
}

.txt-rotate>.wrap {
    border-right: 0.08em solid #666;
    padding-left: 5px;
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from,
    to {
        border-color: transparent;
    }
    50% {
        border-color: #666;
    }
}

.prheads {
    margin-bottom: 30px;
}

.prheads h3 {
    text-transform: capitalize;
    position: relative;
    color: #000000;
    text-align: center;
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.prheads h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 4px;
    width: 60px;
    height: 3px;
    background-color: #e40f15;
}

.prheads h3 span {
    font-weight: 700;
    color: #e40f15;
}

.swiper-container {
    position: relative;
    width: 90vw;
    height: 300px;
}

.swiper-container>.swiper-slide__content {
    position: absolute;
    top: 0;
}

.swiper-slide {
    height: 300px;
    display: flex;
    background: #eee;
    align-items: center;
    justify-content: center;
    transition: all 200ms linear;
    transform: scale(0.8);
}

.swiper-slide__content {
    height: 300px;
}

.pre-plot {
    display: flex;
}

.new-properties-inner {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    flex-basis: 23.6%;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
    display: flex;
    height: 185px;
}


/* .new-properties-inner:hover {
     transform: scale(1.03);
 } */

.new-properties-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.new-properties-inner:hover img {
    transform: scale(1.2);
}

.pr-inners {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: #fff;
}

.new-properties-inner-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.new-properties-inner-content p {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.new-properties-inner-content p img {
    width: 13px;
    height: 13px;
}

.new-properties-inner-content a {
    text-decoration: none;
    color: inherit;
}

.new-launching-rw {
    max-width: 1250px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 0px 20px;
    position: relative;
}

.newlaunch-box {
    border-radius: 10px;
    overflow: hidden;
    height: 324px;
    position: relative;
}

.newlaunch-box img {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    object-fit: cover;
    width: 60% !important;
    height: 324px;
    position: absolute;
    right: 0;
}

.new-launch-box-content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 40px;
    background: url(../../assets/img/new-launch-bg.webp) no-repeat top left;
    background-size: cover;
    width: 57%;
    color: #ffffff;
}

.new-launch-box-content h5 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.new-launch-box-content p:nth-child(3) {
    font-weight: 600;
    padding: 20px 0;
}

.new-launch-box-content p {
    font-size: 15px;
    margin: 4px 0;
}

.new-launch-box-content span {
    margin-top: 12px;
    background: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    width: fit-content;
}

.owl-nav {
    position: absolute;
    top: 42%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    margin-top: 0 !important;
}

.owl-dots {
    display: none;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    border: none !important;
    font-size: 20px !important;
    pointer-events: all !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background 0.3s ease !important;
    border-radius: 50% !important;
    height: 42px !important;
    width: 42px !important;
    background: rgba(0, 0, 0, 0.6) !important;
    color: #ffffff !important;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
    background: rgba(0, 0, 0, 0.9) !important;
}

.owl-nav button span {
    display: block;
}

.new-launch-box-content p:nth-child(4),
.new-launch-box-content p:nth-child(5) {
    position: relative;
    padding-left: 20px;
}

.new-launch-box-content p img {
    width: 13px !important;
    height: auto !important;
    position: absolute;
    top: 6px;
    object-fit: inherit;
    left: 0;
    right: inherit;
    border-radius: 0;
}

#owner-properties .owl-nav .owl-prev {
    position: absolute;
    left: -22px;
}

#owner-properties .owl-nav .owl-next {
    position: absolute;
    right: -22px;
}

.property-slider {
    background: #eeeeee;
    padding: 50px 0;
}

.mrt-70 {
    margin-top: 70px !important;
}

.pr-services {
    flex-wrap: wrap;
    display: flex;
}

.pr-services .upcoming-events-items {
    flex-basis: 23.6%;
    margin-right: 15px;
}

.upcoming-events-items {
    position: relative;
    transition: transform .2s;
}

.popular-properties {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 140px;
    z-index: 1;
}

.zoom img {
    object-fit: unset;
    transition: transform .5s ease;
    height: 100%;
    width: 100%;
}

.popular-properties-shdes {
    overflow: hidden;
    position: relative;
    bottom: 20px;
    background: #ffffff;
    box-shadow: 0 0 8px #b6b5b5;
    width: 90%;
    border-radius: 10px;
    padding: 15px;
    margin: 0 auto;
    padding-top: 30px;
}

.popular-properties-shdes:hover {
    background: #e40f15;
}

.popular-properties-shdes a {
    color: #000000;
    transition: all 0.5s;
    text-decoration: none;
}

.popular-properties-shdes:hover a {
    color: #fff;
}

.popular-properties-shdes h4 {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 600;
}

.card--address p {
    margin-top: 4px;
    font-size: 15px;
    line-height: 22px;
}

#mapContentBox .col-right {
    display: none;
}

.zoom:hover img {
    transform: scale(1.2);
}


/* ------------------------------------End--------------------------------------------- */


/* --------------------------------------------login----------------------------------------------- */

.login-rw {
    display: flex;
    height: 93vh;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: url(../../assets/img/login-bg.webp) repeat 25px top #ffffff;
    background-attachment: fixed;
    transition: all .5s ease;
}

.login-left-container {
    flex-basis: 32%;
    padding: 30px;
    position: relative;
    display: flex;
    align-items: center;
}

.login-left {
    background-image: url(../../assets/img/left-bg.webp);
    background-attachment: fixed;
    background-size: cover;
    background-color: #ffffff;
    align-items: center;
    display: flex;
    color: #000000;
    height: 600px;
    position: absolute;
    padding: 30px;
    border-radius: 10px;
    left: 20px;
}

.login-left ul {
    list-style: none;
    padding-left: 25px;
}

.login-left ul li {
    position: relative;
    line-height: 26px;
    margin-bottom: 15px;
    font-size: 15px;
}

.login-left ul li i {
    position: absolute;
    left: -25px;
    top: 6px;
    color: #e40f15;
}

.login-right {
    flex-basis: 68%;
    align-items: center;
    display: flex;
}

.login-inner-content {
    width: 500px;
    height: auto;
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    margin: 30px auto 0;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.login-logo {
    margin-bottom: 20px;
    text-align: center;
}

.login-right h3 {
    text-transform: capitalize;
    padding-bottom: 20px;
    font-size: 24px;
    text-align: center;
    font-weight: 600;
}

.logintext {
    font-size: 13px;
    text-align: center;
    margin-bottom: 26px;
}

.login-right ul {
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.m_set {
    margin: 0;
}

.login-right ul li {
    padding-bottom: 20px;
}

.login-right input[type="text"],
.login-right input[type="email"],
.login-right input[type="number"],
.login-right input[type="password"],
.login-right select {
    width: 100%;
    border-radius: 30px;
    background: #FFFFFF;
    border: 1px solid #D7D7D7;
    padding: 10px 15px;
}

.login-right .main-btn2 {
    width: 100%;
}

.main-btn2 {
    border-radius: 30px;
    background: #06090f !important;
    text-transform: capitalize;
    font-weight: 600;
    border: none;
    cursor: pointer;
    padding: 14px 30px;
    display: inline-table;
    color: #ffffff;
    transition: ease-in 0.5s;
    text-align: center;
    /* pointer-events: none; */
}

.login-right .main-btn {
    width: 100%;
}

.main-btn {
    border-radius: 30px;
    background: #e40f15;
    text-transform: capitalize;
    font-weight: 600;
    border: none;
    cursor: pointer;
    padding: 10px 30px;
    display: inline-table;
    color: #ffffff;
    transition: ease-in 0.5s;
    margin-top: 14px;
    display: inline-block;
    text-decoration: none;
}

.new-signin {
    margin-top: 40px;
    text-align: center;
}

.new-signin a {
    color: #e40f15;
    font-weight: 600;
    text-decoration: none;
    transition: 0.4s;
}

.new-signin a:hover {
    color: #000;
}

.form-privacy {
    text-align: center;
    margin-top: 10px;
}

.form-privacy a {
    text-transform: capitalize;
    color: #848484;
    transition: 0.5s;
    position: relative;
    margin: 0 10px;
    font-weight: 500;
    font-size: 11px;
    text-decoration: none;
    transition: 0.4s;
}

.form-privacy a:hover {
    color: #e40f15;
}

.ul_design .switch-field {
    display: inline-block;
    overflow: hidden;
    border-radius: 30px;
    padding: 3px;
    background: transparent;
    width: max-content;
    white-space: nowrap;
}

.switch-field input {
    position: absolute !important;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    width: 1px;
    border: 0;
    overflow: hidden;
}

.ul_design .switch-field input:checked+label {
    background-color: #e40f15;
    box-shadow: none;
    color: #ffffff;
    border-radius: 30px;
    padding: 18px 20px;
}

.ul_design .switch-field label {
    background-color: #ffffff;
    color: #000000;
    font-size: 14px;
    line-height: 1;
    text-align: center;
    padding: 18px 20px;
    margin-right: -1px;
    border: none;
    transition: all 0.1s ease-in-out;
    text-transform: capitalize;
    font-weight: 600;
    cursor: pointer;
}

.switch-field label:last-of-type {
    border-radius: 0 30px 30px 0;
}

.ul_design ul {
    margin-bottom: 10px !important;
    display: block;
    text-align: center;
}


/* -----------------------------------------------End---------------------------------------------- */


/* -------------------footer------------------------------------------- */


/* footer.css */

.footer {
    background: #eeeeee;
    padding-top: 40px;
}

.top-feedback {
    text-align: center;
    padding: 12px 10px;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
}

.top-feedback a {
    color: #e40f15;
    text-decoration: none;
}

.footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.footer h5 {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 15px !important;
}

.footer h5::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #000;
}

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

.footer ul li {
    line-height: 28px;
}

.footer ul li a {
    text-decoration: none;
    color: #000;
    transition: 0.3s;
    font-size: 14px;
}

.footer ul li a:hover {
    color: #e40f15;
}

.footer-app {}

.footer-app img.qr-img {
    width: 100%;
    margin-bottom: 10px;
}

.store-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.store-icons img {
    width: 100%;
}

.footer-logo {
    text-align: center;
    margin: 20px 0;
}

.footer-logo img {
    height: 36px;
}

.footer-lang {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
    text-align: center;
}

.lang-bx img {
    max-width: 100%;
    height: auto;
}

.footer-lang .lang-bx {
    flex-basis: 48%;
    border-radius: 30px;
    border: 1px solid #aaaaaa;
    padding: 5px 6px;
    font-size: 14px;
    position: relative;
}

.footer-lang button {
    background: #fff;
    border: 1px solid #ccc;
    padding: 6px 14px;
    margin: 4px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

.footer-bottom {
    background: #e40f15;
    color: #fff;
    text-align: center;
    margin-top: 40px;
}

.footer-bottom .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 18px;
    font-size: 14px;
}

.footer-bottom a:hover {
    background: #000;
    color: #fff;
}

.copyright p {
    font-size: 14px;
    line-height: 25px;
    padding: 15px 0;
    text-align: center;
    margin: 0;
}

.scanner-left {
    flex: 24%;
}

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

.scanner-right {
    flex: 66%;
    font-size: 13px;
    line-height: 20px;
    padding-left: 15px;
}

.top-feedback {
    flex-wrap: wrap;
    padding-bottom: 15px;
    border-bottom: 1px solid #000000;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-feedback .text {
    font-size: 16px;
    color: #000;
}

.top-feedback .text a {
    color: #e40f15;
    font-weight: 600;
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons a {
    width: 30px;
    height: 30px;
    background-color: #e40f15;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #000000;
    color: #fff;
}

.sticky .login a {
    color: #000000;
}

.sticky .city a {
    color: #000000;
}

.sticky .topbar-right .post-btn {
    background: #e40f15;
    color: #ffffff;
}

.swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0px auto;
    padding-bottom: 40px;
    position: relative;
}

.swiper-slide {
    background: #ffffff;
    box-shadow: 0 0 8px #b6b5b5;
    border-radius: 10px;
    margin-bottom: 10px;
}

.swiper-slide img {
    width: 100%;
    height: 185px;
    object-fit: cover;
}

.new-properties-inner2 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 5px;
    height: 185px;
}

.new-properties-inner2 span {
    width: 100%;
    display: block;
    line-height: 20px;
}

.new-properties-inner2:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0;
    bottom: 0;
    opacity: .8;
    background-image: linear-gradient(180deg, transparent, #000000);
}

.new-properties-inner2 .date {
    position: absolute;
    font-size: 12px;
    color: #ffffff;
    padding: 10px 15px;
    bottom: 0;
    z-index: 1;
}

.property-details {
    padding: 15px;
}

.property-details a {
    text-decoration: none;
}

.property-details h5 {
    margin: 0;
    text-transform: capitalize;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
}

.property-details p {
    margin: 4px 0;
    font-size: 14px;
    color: #333;
}

.property-contents {
    text-align: left;
}

.property-contents p {
    color: #000000;
    font-size: 14px;
    line-height: 22px;
}

.property-contents p:nth-child(2) {
    padding-bottom: 15px;
    color: #848484;
}

.property-details span {
    font-weight: 600;
}

.cn-now {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.cn-now .main-btn {
    padding: 5px 14px;
}

.pr-short-des {
    min-height: 390px;
}

.swiper-button-prev,
.swiper-button-next {
    border-radius: 50%;
    height: 42px !important;
    width: 42px !important;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff !important;
    margin: 0;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    font-size: 20px !important;
    font-weight: 600;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: 600;
}

.main-btn {
    border-radius: 30px;
    background: #e40f15;
    text-transform: capitalize;
    font-weight: 600;
    border: none;
    cursor: pointer;
    color: #ffffff;
    transition: ease-in 0.5s;
    margin-top: 14px;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
}

.main-btn:hover {
    background: #000000;
    color: #ffffff;
}

.cn-now p {
    line-height: 20px;
    color: #000000;
    text-align: right;
}

.ow-name {
    width: 112px !important;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    font-weight: 400 !important;
}

.owner {
    font-size: 13px;
    margin-top: 10px;
    color: #333;
}

.owner i {
    margin-right: 5px;
}

.form-item span {
    padding-left: 40px;
}

.filter-trigger {
    cursor: pointer;
    position: relative;
    display: block;
    width: 100%;
    padding: 8px 0px 8px 0px;
    border: none;
    border-left: 1px solid #ccc;
}

.filter-trigger i {
    margin-right: 8px;
}

.filter-wrapper {
    display: none;
    background: #fff;
    border: 1px solid #ccc;
    margin: 0 15px;
    padding: 20px;
    transition: all 0.3s ease;
    position: absolute;
    top: 60%;
    z-index: 2;
    height: 270px;
    width: 40%;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .3);
}

.filter-wrapper.open {
    display: flex;
}

.filter-content {
    display: flex;
    height: 100%;
    overflow: hidden;
}

.filter-left {
    width: 240px;
    border-right: 2px solid #eee;
    padding: 20px 10px;
    overflow-y: auto;
}

.filter-left a {
    display: block;
    margin: 10px 0;
    padding: 6px 10px;
    color: #000;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s;
    font-size: 14px;
}

.filter-left a.active,
.filter-left a:hover {
    background: #e40f15;
    font-weight: 600;
    border-left: 4px solid #000;
    padding-left: 6px;
    color: #fff;
}

.filter-right {
    flex: 1;
    overflow-y: auto;
    padding: 30px 20px;
}

.filter-right h5 {
    margin-bottom: 15px;
    text-transform: capitalize;
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-right section {
    margin-bottom: 40px;
}

.filter-buttons label {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
}

.filter-buttons label.active {
    border: 1px solid #e40f15;
    color: #e40f15;
    background-color: rgba(236, 30, 36, 0.2);
    font-weight: 600;
}

.filter-buttons input {
    display: none;
}

.filter-buttons i.fa-plus {
    color: #e40f15;
    margin-right: 8px;
    font-size: 14px;
    display: inline;
}

.filter-buttons i.fa-check {
    color: green;
    margin-right: 8px;
    font-size: 14px;
    display: none;
}

.filter-buttons label.active i.fa-plus {
    display: none;
}

.filter-buttons label.active i.fa-check {
    display: inline;
}

.furnished-dropdown {
    position: relative;
    display: inline-block;
}

.furnished-toggle {
    display: inline-block;
    align-items: center;
    background: #f5f5f5;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
}

.furnished-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    z-index: 999;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.furnished-options .option {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
    margin-bottom: 5px;
}

.furnished-options .option.active {
    border: 1px solid #e40f15;
    color: #e40f15;
    background-color: rgba(236, 30, 36, 0.2);
    font-weight: 600;
}

.furnished-options .option i {
    color: #e40f15;
    margin-right: 8px;
    font-size: 14px;
    display: inline;
}

.furnished-options .option.active i.fa-plus {
    display: none;
}

.furnished-options .option i.fa-check {
    display: none;
}

.furnished-options .option.active i.fa-check {
    display: inline;
    color: green;
}


/* -----------------------------------------------------------2----------------------------------------------------------------------------------------- */

.furnished-dropdown2 {
    position: relative;
    display: inline-block;
}

.furnished-toggle2 {
    display: inline-block;
    align-items: center;
    background: #f5f5f5;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
}

.furnished-options2 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    z-index: 999;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.furnished-options2 .option {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
    margin-bottom: 5px;
}

.furnished-options2 .option.active {
    border: 1px solid #e40f15;
    color: #e40f15;
    background-color: rgba(236, 30, 36, 0.2);
    font-weight: 600;
}

.furnished-options2 .option i {
    color: #e40f15;
    margin-right: 8px;
    font-size: 14px;
    display: inline;
}

.furnished-options2 .option.active i.fa-plus {
    display: none;
}

.furnished-options2 .option i.fa-check {
    display: none;
}

.furnished-options2 .option.active i.fa-check {
    display: inline;
    color: green;
}


/* -------------------------------------------------------3----------------------------------------------------- */

.furnished-dropdown3 {
    position: relative;
    display: inline-block;
}

.furnished-toggle3 {
    display: inline-block;
    align-items: center;
    background: #f5f5f5;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
}

.furnished-options3 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    z-index: 999;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.furnished-options3 .option {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
    margin-bottom: 5px;
}

.furnished-options3 .option.active {
    border: 1px solid #e40f15;
    color: #e40f15;
    background-color: rgba(236, 30, 36, 0.2);
    font-weight: 600;
}

.furnished-options3 .option i {
    color: #e40f15;
    margin-right: 8px;
    font-size: 14px;
    display: inline;
}

.furnished-options3 .option.active i.fa-plus {
    display: none;
}

.furnished-options3 .option i.fa-check {
    display: none;
}

.furnished-options3 .option.active i.fa-check {
    display: inline;
    color: green;
}


/* -----------------------------------------------------------------------------------------4----------------------------------------------------------- */

.furnished-dropdown4 {
    position: relative;
    display: inline-block;
}

.furnished-toggle4 {
    display: inline-block;
    align-items: center;
    background: #f5f5f5;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
}

.furnished-options4 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    z-index: 999;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.furnished-options4 .option {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
    margin-bottom: 5px;
}

.furnished-options4 .option.active {
    border: 1px solid #e40f15;
    color: #e40f15;
    background-color: rgba(236, 30, 36, 0.2);
    font-weight: 600;
}

.furnished-options4 .option i {
    color: #e40f15;
    margin-right: 8px;
    font-size: 14px;
    display: inline;
}

.furnished-options4 .option.active i.fa-plus {
    display: none;
}

.furnished-options4 .option i.fa-check {
    display: none;
}

.furnished-options4 .option.active i.fa-check {
    display: inline;
    color: green;
}


/* -----------------------------------------------------------------5------------------------------------------------------------------------- */

.furnished-dropdown5 {
    position: relative;
    display: inline-block;
}

.furnished-toggle5 {
    display: inline-block;
    align-items: center;
    background: #f5f5f5;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
}

.furnished-options5 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    z-index: 999;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.furnished-options5 .option {
    display: inline-flex;
    align-items: center;
    background: #f5f5f5;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
    margin-bottom: 5px;
}

.furnished-options5 .option.active {
    border: 1px solid #e40f15;
    color: #e40f15;
    background-color: rgba(236, 30, 36, 0.2);
    font-weight: 600;
}

.furnished-options5 .option i {
    color: #e40f15;
    margin-right: 8px;
    font-size: 14px;
    display: inline;
}

.furnished-options5 .option.active i.fa-plus {
    display: none;
}

.furnished-options5 .option i.fa-check {
    display: none;
}

.furnished-options5 .option.active i.fa-check {
    display: inline;
    color: green;
}


/* -----------------------------------------------------------------End---------------------------------------------------------------------- */

.done-btn {
    align-self: flex-end;
    margin-top: 20px;
    background: #e40f15;
    border: 1px solid #e40f15;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
}


/* ---------------------------------------Budget------------------------------ */

.size-m-inner {
    display: flex;
    justify-content: space-between;
    text-align: center;
    border-bottom: 1px solid #d7d7d7;
}

.size-m-inner h5 {
    text-transform: uppercase;
    font-size: 14px;
    padding: 6px 12px;
    color: #000;
    font-weight: 600;
}

.left_budget label {
    margin-top: 8px;
    display: table;
}

.right_budget label {
    margin-top: 8px;
    display: table;
}

.filter-wrapper2 {
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
}

.filter-buttons2 {
    display: inline-flex;
    height: 270px;
    overflow-x: scroll;
    padding-bottom: 70px;
}


/* ----------------------------------------------Property Type--------------------------------------- */

.commercial_section {
    padding-top: 20px;
    padding-bottom: 5px;
}

.commercial_section h5 {
    margin-bottom: 15px;
    text-transform: capitalize;
    font-size: 14px;
    color: #000;
    font-weight: 600;
}

.filter-right3 {
    overflow-y: scroll;
}


/* ----------------------------------------------------End-------------------------------------------------------- */

.psinstant-fixed {
    position: fixed;
    right: 15px;
    bottom: 50px;
    z-index: 2;
}


/* --------------------------------Contact--------------------------------------------------------------------------- */

.inner-pages-banner {
    background: #eeeeee;
    padding: 20px 0;
    text-align: left;
}

.inner-pages-banner h1 {
    font-size: 35px;
    text-transform: capitalize;
    padding-bottom: 15px;
    line-height: 40px;
    font-weight: 600;
}

.inner-bredcumbs {
    color: #000000;
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
}

.inner-bredcumbs a {
    color: #e40f15;
    transition: 0.5s;
    text-decoration: none;
}

.inner-bredcumbs a:hover {
    color: #000000;
}

.inner-bredcumbs i {
    padding: 0 10px;
}

.pd-50 {
    padding: 50px 0;
}

.contact_box_content {
    position: relative;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 10px 60px rgba(15, 53, 103, 0.1);
    text-align: center;
    min-height: 330px;
}

.contact_box_content .icon {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 120px;
    background: #eeeeee;
    text-align: center;
    margin: 0 auto 30px;
    line-height: 120px;
}

.contact_box_content .icon img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 70px;
    height: auto;
    margin: auto;
}

.title_no_a_24 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-infor span {
    font-size: 15px;
}

.contact-infor span {
    font-size: 15px;
}

.contact-infor a {
    text-decoration: none;
    color: #e40f15;
    font-weight: 600;
}


/* ====== Base ====== */

.contact-info {
    padding: 60px 0;
}

.section_title.type_one h4.sm_title {
    font-weight: 600;
    font-size: 22px;
    line-height: 26px;
    text-transform: capitalize;
    color: #000;
}

.section_title.type_one .title_whole .title {
    font-weight: 600;
    margin: 10px 0;
    font-size: 43px;
    line-height: 56px;
    text-transform: capitalize;
    color: #e40f15;
}

.section_title.type_one p {
    line-height: 24px;
    color: #000;
}

.contact_form_box_all {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.contact_form_box_all .form-group {
    margin-bottom: 20px;
    position: relative;
}

.contact_form_box_all input,
.contact_form_box_all select,
.contact_form_box_all textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background: #fff;
}

.contact_form_box_all input:focus,
.contact_form_box_all select:focus,
.contact_form_box_all textarea:focus {
    border-color: #e40f15;
    box-shadow: 0 0 0 3px #e40f152e;
    outline: none;
}

.contact_form_box_all textarea {
    min-height: 120px;
    resize: vertical;
}

.form-person.ph-code {
    display: flex;
    gap: 10px;
}

.country-code select {
    padding: 12px 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    width: 124px;
    background: #fdfdfd;
}

.whatsapp-nu input {
    flex: 1;
}

.whatsapp-nu {
    width: 100%;
}

.contact_form_box_all .main-btn {
    background-color: #e40f15;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease;
    cursor: pointer;
}

.contact_form_box_all .main-btn:hover {
    background-color: #e40f15;
    box-shadow: 0 0 0 3px #e40f152e;
}

.country-code {
    flex-basis: 40%;
}

.mrt-70 {
    margin-top: 70px;
}


/* ----------------------------------------End------------------------------------------------------------------------ */


/* ---------------------------------About us----------------------------------------------------------------------------- */

.abt-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.buyservice-sec {
    background: url(../../assets/img/about-us-img.webp) no-repeat top center;
    background-size: cover;
    height: 400px;
}

.abt-banner h1,
.abt-banner .inner-bredcumbs {
    color: #ffffff;
}

.abt-banner h1,
.abt-banner .inner-bredcumbs {
    color: #ffffff;
}

.about_t a {
    color: #fff;
    transition: 0.5s;
}

.mrt-50 {
    margin-top: 50px !important;
}

.left_img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.left_img img {
    width: fit-content;
    height: 450px;
    display: block;
    transition: transform 0.4s ease;
    border-radius: 16px;
}

.left_img:hover img {
    transform: scale(1.05);
}

.concept_text_inner {
    background: #f9fbfd;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    border-left: 6px solid #e40f15;
    transition: 0.3s ease;
}

.concept_text_inner:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.concept_text_inner p {
    font-size: 16px;
    line-height: 32px;
    color: #444;
    margin-bottom: 20px;
}

.concept_text_inner2 {
    background: #f9fbfd;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    border-right: 6px solid #e40f15;
    transition: 0.3s ease;
}

.concept_text_inner2:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.concept_text_inner2 p {
    font-size: 16px;
    line-height: 32px;
    color: #444;
    margin-bottom: 20px;
}

.our_journey {
    padding-bottom: 20px;
}

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

.achievement-block {
    background: #ffffff;
    border-left: 6px solid #e40f15;
    padding: 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
}

.achievement-block h3 {
    text-transform: capitalize;
    position: relative;
    color: #000000;
    text-align: left;
    padding-bottom: 5px;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.achievement-block h3 span {
    font-weight: 700;
    color: #e40f15;
}

.achievement-block h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #e40f15;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.achievement-block p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

.chairman-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-top: 80px;
}

.chairman-img {
    flex: 0 0 180px;
    max-width: 180px;
    margin-right: 30px;
}

.chairman-img img {
    width: 100%;
    border-radius: 12px;
}

.chairman-text {
    flex: 1;
}

.chairman-text h3 {
    text-transform: capitalize;
    position: relative;
    color: #000000;
    text-align: left;
    padding-bottom: 5px;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.chairman-text h3 span {
    font-weight: 700;
    color: #e40f15;
}

.chairman-text h3::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #e40f15;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.chairman-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 0;
}


/* -------------------------------Career----------------------------------------- */

.form-section {
    background: #ffffff;
    padding: 50px;
    margin: 50px auto;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: rgba(236, 30, 36, 0.2);
    border-radius: 50%;
    z-index: 0;
}

.form-section h2 {
    font-weight: 700;
    color: #e40f15;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.form-label {
    font-weight: 600;
    color: #333;
}

.form-check-label {
    font-weight: 500;
}

.form-control,
.form-select {
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, .25);
}

.submit-btn {
    background: linear-gradient(to right, #0d6efd, #4a9eff);
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.submit-btn:hover {
    background: linear-gradient(to right, #0b5ed7, #3d8ef8);
    transform: translateY(-2px);
}

#otherLanguagesContainer {
    display: none;
}

.report-abuse {
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
}

.report-abuse a {
    color: #dc3545;
    text-decoration: none;
}

.report-abuse a:hover {
    text-decoration: underline;
}


/* ------------------------------------End--------------------------------------- */


/* -------------------------------------------------blog---------------------------- */

.tab-btn {
    display: inline-block;
    padding: 6px 16px;
    background-color: #000000;
    color: #fff;
    border-radius: 4px;
    border: none;
    margin: 5px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 25px rgb(30 30 30 / 50%);
    outline: 0;
    transition: transform ease-in 0.1s, background-color ease-in 0.1s, box-shadow ease-in 0.25s;
}

.tab-btn::before {
    content: none;
    /* By default, no bubble background */
}

.tab-btn.active::before {
    content: '';
    position: absolute;
    left: -2em;
    right: -2em;
    top: -2em;
    bottom: -2em;
    pointer-events: none;
    transition: ease-in-out .5s;
    background-repeat: no-repeat;
    background-image: radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), /*  */
    radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%), radial-gradient(circle, #e40f15 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%, 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
    background-position: 18% 40%, 20% 31%, 30% 30%, 40% 30%, 50% 30%, 57% 30%, 65% 30%, 80% 32%, 15% 60%, 83% 60%, 18% 70%, 25% 70%, 41% 70%, 50% 70%, 64% 70%, 80% 71%;
    animation: bubbles ease-in-out .75s forwards;
}

.tab-btn.active {
    transform: scale(0.95);
    background-color: #e40f15;
    box-shadow: 0 2px 25px rgb(228 15 21);
}

.tab-btn:not(.active)::before {
    animation: none;
    background-size: 0;
}

@keyframes bubbles {
    0% {
        background-position: 18% 40%, 20% 31%, 30% 30%, 40% 30%, 50% 30%, 57% 30%, 65% 30%, 80% 32%, 15% 60%, 83% 60%, 18% 70%, 25% 70%, 41% 70%, 50% 70%, 64% 70%, 80% 71%;
    }
    50% {
        background-position: 10% 44%, 0% 20%, 15% 5%, 30% 0%, 42% 0%, 62% -2%, 75% 0%, 95% -2%, 0% 80%, 95% 55%, 7% 100%, 24% 100%, 41% 100%, 55% 95%, 68% 96%, 95% 100%;
    }
    100% {
        background-position: 5% 44%, -5% 20%, 7% 5%, 23% 0%, 37% 0, 58% -2%, 80% 0%, 100% -2%, -5% 80%, 100% 55%, 2% 100%, 23% 100%, 42% 100%, 60% 95%, 70% 96%, 100% 100%;
        background-size: 0% 0%;
    }
}

.elementor-widget-wrap {
    display: flex;
}

.elementor-widget-wrap {
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
}

.elementor-widget-wrap>.elementor-element {
    width: 100%;
}

.elementor-widget-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 30px;
}

.elementor-widget-container2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr)!important;
    grid-column-gap: 30px;
}

.elementor-element .elementor-widget-container {
    transition: background .3s, border .3s, border-radius .3s, box-shadow .3s, transform var(--e-transform-transition-duration, .4s);
}

.dtdr-user-list-item.type1 .dtdr-user-image {
    width: 100%;
    max-width: fit-content;
    margin: auto;
    border-radius: 50%;
    border: 1px solid #c7d5e1;
    overflow: hidden;
    transition: 375ms cubic-bezier(0.7, 0, 0.3, 1);
    background-color: transparent;
}

.elementor a {
    box-shadow: none;
    text-decoration: none;
}


/*  */

.dtdr-user-list-item.type1 .dtdr-user-image img {
    border-radius: 50%;
    transform: scale(.9);
    transition: all 0.3s linear 0s;
    width: 100%;
    height: 180px;
}

.dtdr-user-list-item.type1 .dtdr-user-item-meta-data {
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column-reverse;
}

.dtdr-user-list-item.type1 .dtdr-user-item-meta-data .dtdr-user-sociallinks-list {
    justify-content: center;
}

.dtdr-user-list-item .dtdr-user-sociallinks-list {
    display: flex;
    flex-wrap: wrap;
}

.dtdr-user-list-item.type1 .dtdr-user-sociallinks-list li:not(:last-child) {
    margin-right: 15px;
}

.dtdr-user-list-item.type1 ul.dtdr-user-sociallinks-list li a {
    color: #44525e;
}

.dtdr-user-list-item.type1 .dtdr-user-sociallinks-list li a {
    width: 30px;
    height: 30px;
    border: 1px solid #44525e;
    border-radius: 50%;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    background: none;
}

.dtdr-user-list-item.type1 .dtdr-user-item-meta-data .dtdr-user-item-meta-details {
    margin-bottom: 20px;
}

.dtdr-user-list-item .dtdr-user-item-meta-data h4 {
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
    margin-top: 0;
}

.dtdr-user-list-item.type1 .dtdr-user-item-meta-data h4 a {
    color: #000000;
}

.dtdr-user-list-item.type1 {
    background-color: #f9fcff;
    padding: 40px 40px 30px;
    border: 1px solid #c7d5e1;
    border-radius: 2.5em;
    transition: all 0.3s linear 0s;
}

.dtdr-user-list-item {
    margin-bottom: 30px;
}

.dtdr-user-list-item.type1:hover {
    box-shadow: 0 0 20px 0 #0d263c2e;
}

.dtdr-user-list-item.type1:hover .dtdr-user-image {
    border-color: #e40f15;
    background-color: #e40f15;
}

.dtdr-user-list-item.type1 ul.dtdr-user-sociallinks-list li a:hover {
    color: #ffffff;
    background: #e40f15;
    border-color: #e40f15;
}

.blog-card {
    flex: 1 1 300px;
    max-width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    position: relative;
    margin-bottom: 28px;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.blog-card:hover::before {
    opacity: 0.2;
}

.blog-content {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.blog-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 20px;
}

.blog-title a {
    color: #000;
    text-decoration: none;
}

.blog-title a:hover {
    color: #e40f15;
}

.read-more {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    font-size: 14px;
    border: 1px solid #000;
    border-radius: 6px;
    background: transparent;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: #000;
    color: #fff;
}

.read-more svg {
    margin-left: 6px;
    width: 14px;
    height: 14px;
}

.blog-create {
    margin-bottom: 70px;
}


/* ----------------------------------End--------------------------------- */


/* --------------------blog details--------------------------------------- */

.rich-editor-text h1 {
    text-transform: capitalize;
    position: relative;
    /* color: #000000; */
    text-align: left;
    padding-bottom: 8px;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
    font-weight: 600;
    color: #e40f15;
    line-height: normal;
}

.rich-editor-text h1::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    border-radius: 4px;
    width: 60px;
    height: 3px;
    background-color: #e40f15;
}

.slider-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 40px auto;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-item {
    min-width: 25%;
    padding: 15px;
    box-sizing: border-box;
}

.slider-box {
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.slider-box img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.slider-content {
    padding: 15px;
    text-align: center;
    flex: 1;
}

.slider-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.slider-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.read-more-btn {
    display: inline-block;
    padding: 8px 16px;
    background: #e40f15;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background: #a00d0f;
    color: #fff;
}

.arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #e40f15, #a00d0f);
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.2s;
    z-index: 1;
}

.arrow-btn:hover {
    background: linear-gradient(135deg, #c20e13, #800a0c);
    transform: translateY(-50%) scale(1.1);
}

.arrow-left {
    left: 10px;
}

.arrow-right {
    right: 10px;
}

.cs-blog-detail {
    margin-top: 60px;
}

.cs-blog-detail .cs-main-post img {
    width: 100%;
}

.cs-main-post img {
    border-radius: 15px;
}

.cs-blog .cs-author,
.cs-blog-detail .cs-author {
    float: left;
    margin: 0 0 10px;
}

.cs-blog-detail .post-option {
    float: right;
}

.cs-blog-detail .cs-post-title::after {
    clear: both;
    content: "";
    display: block;
}

.cs-blog-detail .post-option .post-date {
    margin-left: 18px;
}

.cs-blog .post-option span a,
.cs-blog-detail .post-option span a {
    color: #202020 !important;
    display: inline-block;
    font-size: 14px;
    margin-right: 18px;
    vertical-align: middle;
}

.post-date a {
    text-decoration: none;
}

.post-option span i {
    margin-right: 5px;
    transition: all 0.3s ease-in-out 0s;
}

.cs-blog .post-option span i,
.cs-blog-detail .post-option span i {
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    vertical-align: middle;
}

.cs-blog-detail .cs-post-option-panel {
    padding-top: 20px;
    width: 100%;
}

.content_font {
    font-size: 16px;
    line-height: 30px;
}

.rich-editor-text h2 {
    font-size: 32px;
    line-height: normal;
    text-transform: capitalize;
    color: #e40f15;
    font-weight: 600;
}

.content_font h3 {
    font-size: 22px;
    padding-top: 10px;
}

.content_font a {
    text-decoration: none;
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.button_blog {
    border: 1px solid #e40f15 !important;
    background: #e40f15 !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    font-size: 16px !important;
}


/* --------------------------------------End-------------------------------------------------------- */

.privacy-policy-rs .row {
    color: #000000;
    padding: 20px;
    border-radius: 15px;
    background: #eeeeee;
    box-shadow: 0px 0px 15px 0px #c3c3c34d;
}

.privacy-policy-rs ul {
    padding-left: 15px;
}

.privacy-policy-rs ul li {
    list-style: disc;
    padding-bottom: 20px;
}

.privacy-policy-rs ul li h5 {
    padding-bottom: 15px;
    font-weight: 600;
}


/********************************* Help Center ***********************/


/********************************* Help Center ***********************/

.help-center-content {
    padding: 50px 0;
    background: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.help-center-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #d1001f;
    /* Brand Red */
}

.help-center-content h2 span {
    color: #000;
}

.help-center-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}

.help-center-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #d1001f;
    border-left: 4px solid #d1001f;
    padding-left: 10px;
}

.help-center-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.help-center-content ul li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #333;
}

.help-center-content a {
    color: #d1001f;
    font-weight: 600;
    text-decoration: none;
}

.help-center-content a:hover {
    text-decoration: underline;
}


/* Contact Info */

.help-center-content p b {
    color: #000;
}


/* Responsive Design */

.help-center-content a:hover {
    text-decoration: underline;
}


/* Contact Info */

.help-center-content p b {
    color: #000;
}

.faq_set {
    position: relative;
    padding-bottom: 10px;
}

.faq_set::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 4px;
    width: 60px;
    height: 3px;
    background-color: #e40f15;
}

.faq-section h3 {
    position: relative;
    padding-bottom: 10px;
    font-size: 32px;
    line-height: normal;
    text-transform: capitalize;
    color: #e40f15;
    font-weight: 600;
    text-align: center;
}

.faq-section h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 4px;
    width: 60px;
    height: 3px;
    background-color: #e40f15;
}

.widget-title {
    border-bottom: inherit!important;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.widget-title::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 4px;
    width: 60px;
    height: 3px;
    background-color: #e40f15;
}

.meet_heading h2 {
    font-size: 42px;
    line-height: 55px;
    color: #e40f15;
    text-transform: capitalize;
    margin-top: 20px;
}

.dtdr-user-image img {
    width: 200px!important;
    height: 200px !important;
}


/* Responsive Design */

@media (max-width: 768px) {
    .help-center-content ul li {
        font-size: 12px;
    }
    .help-center-content {
        padding: 30px 15px;
    }
    .help-center-content h2 {
        font-size: 16px;
    }
    .help-center-content p {
        font-size: 12px;
    }
    .help-center-content h3 {
        font-size: 16px;
    }
    .help-center-content h3 {
        border-left: 3px solid #d1001f;
    }
}


/* ------------------------------------------Property List--------------------------------------------- */

.filter_search {
    position: relative;
}

.tbs-list-new {
    position: relative;
}

.tbs-list-new .nav-tabs {
    border-bottom: 0px solid #dee2e6;
    justify-content: left;
}

.tbs-list-new ul li button {
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    margin-right: 5px;
    background: #fff;
    border: 1px solid #dee2e6 !important;
    height: 38px;
    border-radius: 0 !important;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
    display: flex;
    align-items: center;
    color: #000;
    font-size: 14px;
    padding: 0px 15px;
}

.mp-veiw-btn {
    vertical-align: middle;
    display: flex;
    align-items: center;
}

.mp-veiw-btn input[switch] {
    display: none;
}

.mp-veiw-btn input[switch]+label {
    font-size: 1em;
    line-height: 1;
    width: 4rem;
    height: 1.6rem;
    background-color: #ddd;
    background-image: none;
    border-radius: 2rem;
    padding: 0.16666667rem;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    position: relative;
    font-family: inherit;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

select:focus-visible {
    outline: none;
    box-shadow: none;
    border-color: transparent;
}

.mp-veiw-btn input[switch="bool"]+label {
    background-color: #e3e3e3;
}

.mp-veiw-btn input[switch]+label:before {
    text-transform: uppercase;
    color: #b7b7b7;
    content: attr(data-off-label);
    display: block;
    font-family: inherit;
    font-family: FontAwesome, inherit;
    font-weight: 500;
    font-size: 0.6rem;
    line-height: 1.22rem;
    position: absolute;
    right: 0.21666667rem;
    margin: 0.21666667rem;
    top: 0;
    text-align: center;
    min-width: 1.66666667rem;
    overflow: hidden;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.mp-veiw-btn input[switch="bool"]+label:before {
    color: #fff !important;
}

.mp-veiw-btn input[switch]+label:after {
    content: '';
    position: absolute;
    left: 0.16666667rem;
    background-color: #e40f15;
    box-shadow: none;
    border-radius: 2rem;
    height: 1.22rem;
    top: 3.2px;
    width: 1.22rem;
    left: 4px;
    -webkit-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.relvence-filter {
    position: absolute;
    right: 0;
    top: 0;
    border: 1px solid #dee2e6;
    border-radius: 30px;
    background: #ffffff;
    height: 38px;
}

.relvence-filter span {
    padding-left: 10px;
}

.relvence-filter select {
    padding: 7px;
    font-weight: 500;
    border: none;
    border-radius: 30px;
    padding-left: 0;
    background: #ffffff;
}

.ss-list {
    margin-top: 10px;
}

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

.sslist-container {}

.tablist-rws {
    margin-top: 20px;
    background: #fff;
    padding: 22px 0;
}

.tbs-list-new ul li button.active {
    color: #ffffff !important;
    background-color: #e40f15 !important;
    border-color: #e40f15 #e40f15 #e40f15;
}

.tbs-list-new ul li button:hover {
    color: #000;
}


/* ----------------------myproperty-------------------------------------------------- */

.listed-properties-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 4px;
}

.listed-properties-filter-left {
    flex-basis: 25%;
}

.listed-properties-filter-left input {
    width: 100%;
    padding: 8px 15px;
    border-radius: 30px;
    border: 1px solid #d7d7d7;
}

.sortby-fillter {
    flex-basis: 15%;
    margin-left: 15px;
}

.sortby-fillter select {
    width: 100%;
    padding: 8px 6px;
    border-radius: 30px;
    border: 1px solid #d7d7d7;
}

.serby select {
    width: max-content;
}

.listed-properties-filter-right {
    flex-basis: 70%;
    display: flex;
    justify-content: flex-end;
}

.listed-properties-filter-right ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.listed-properties-filter-right ul li:first-child {
    margin-right: 15px;
}

.select_time_wrapper {
    display: flex;
}

.select_time_wrapper label {
    background-color: #ffffff;
    width: auto;
    margin-right: 7px;
    color: #000000;
    cursor: pointer;
    border-radius: 30px;
}

.active_tab {
    background: #e40f15;
    display: block;
    border-radius: 30px;
}

.active_tab .text-center {
    color: #fff !important;
}

.select_time_wrapper label span {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    border-radius: 30px;
    border: 1px solid #d7d7d7;
}

.ss-pr-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
}

.ss-pr-list:last-child {
    margin-bottom: 0;
}

.ss-pr-left {
    padding: 10px;
    display: flex;
    flex-basis: 100%;
}

.ss-pr-list-img {
    flex-basis: 31.5%;
    position: relative;
    text-align: center;
}

.Owner_date {
    margin: 10px 0px;
}

.ss-owner-name {
    margin-top: 0px;
    font-size: 12px;
    font-weight: 500;
}

.ss-owner-name span {
    color: #e40f15;
}

.last_date h6 {
    font-size: 12px;
    font-weight: 500;
    color: #a2a2a2;
    padding: 0px 0px;
}

.last_date h6 span {
    color: #e40f16;
}

.visibility_icon h3 {
    font-size: 12px;
    font-weight: 400;
    display: flex;
}

.box_top_dhe_s {
    margin-top: 5px;
}

.box_top_right_s {
    text-align: left;
    margin-left: 6px;
}

.visibility_icon span {
    border: 1px solid #e40f1524;
    padding: 4px 6px;
    border-radius: 3px;
    background: #eee;
    margin: 2px;
    font-size: 12px;
    display: inline-block;
    font-weight: 500;
}

.visibility_icon span a {
    color: #000;
}

.visibility_icon span i {
    color: #e40f16;
    margin-right: 5px;
}

.ss-pr-details {
    flex-basis: 72.5%;
    padding-left: 20px;
}

.ss-jda-whislist {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #efefef;
    padding-bottom: 0px;
}

.ss-jda {
    text-align: left;
    margin-bottom: 7px;
}

.ss-jda span {
    padding: 5px 5px;
    display: inline-table;
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    color: #000;
    background: #EEE;
    border: 1px solid #EEE;
    border-radius: 3px;
}

.property_id {
    display: flex;
}

.property_id h6 {
    font-size: 12px;
    font-weight: 500;
    color: #a2a2a2;
    padding: 0px 10px;
}

.ss-whishlist button {
    border: none;
    padding: 0;
    background: none;
    cursor: pointer;
    font-size: 16px;
}

.property_id h6:nth-child(1) {
    border-right: 1px solid #a2a2a2;
}

.property_id h6 span {
    color: #e40f16;
}

.ss-whishlist i {
    color: #7e7e7e;
}

.ss-pr-name {
    margin: 5px 0;
}

.ss-pr-name a {
    color: #000000;
    transition: 0.5s;
    text-decoration: none;
}

.ss-pr-name h5 {
    font-weight: 600;
    font-size: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: block;
    max-width: calc(100% - 222px);
    color: #000;
    padding: 5px 0px;
    margin-bottom: 0;
}

.ss-pr-name .site-color i {
    color: #e40f15;
}

.ss-pr-features {
    background: #EEEEEE;
    border-radius: 4px;
    padding: 10px 15px;
    position: relative;
    margin-bottom: 7px;
}

.ss-pr-features ul {
    display: flex;
    list-style: none;
    justify-content: space-between;
    margin-right: 30px !important;
    width: 100%;
    padding-left: 0px;
}

.ss-pr-features ul li {
    display: flex;
    align-items: center;
    position: relative;
    flex-basis: 33.33%;
}

.ss-icon {
    flex-basis: 20%;
}

.ss-heads {
    flex-basis: 80%;
    padding-left: 10px;
}

.ss-heads small {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: block;
    width: 110px;
}

.ss-pr-features ul li:nth-child(3n+3) {
    margin-left: 0;
}

.toggled-off .toggle-title {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 40%;
}

.toggled-off .toggled-on .toggle-title {
    top: 45%;
}

.toggled-off .toggled-on .fa-angle-down {
    display: none;
}

.toggled-off .toggle-title i {
    font-size: 16px;
}

.toggled-off .toggled-on .toggle-content {
    display: inherit;
}

.ss-jda {
    text-align: left;
}

.ss-jda span {
    padding: 5px 5px;
    display: inline-table;
    font-weight: 500;
    font-size: 12px;
    line-height: 12px;
    color: #000;
    background: #EEE;
    border: 1px solid #EEE;
    border-radius: 3px;
}

.ss-pr-ds {
    display: flex;
    justify-content: space-between;
}

.ss-pr-ds .ss-pr-features {
    background: none;
    border-radius: 0;
    display: inherit;
    padding: 0;
    margin-top: 10px;
    width: 58%;
    margin-bottom: 0;
}

.ss-pr-ds .ss-pr-features p {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: #a2a2a2;
    letter-spacing: 0.5px;
}

.ss-legle {
    font-size: 12px;
    margin-top: 6px;
}

.ss-pr-contact {
    display: flex;
    flex-basis: 24%;
    justify-content: space-between;
    align-items: center;
    padding: 10px 4px;
    position: relative;
    border-top: 1px solid #efefef;
}

.ss-price h4 {
    font-size: 18px;
    color: #000;
    font-weight: 500;
    margin-bottom: 5px;
}

.ss-price p {
    font-size: 14px;
}

.ss-ct-button {
    display: flex;
    flex-direction: column;
}

.ss-ct-button a {
    background: #e40f15;
    color: #ffffff;
    text-transform: capitalize;
    border-radius: 30px;
    padding: 6px 18px;
    transition: 0.5s;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}

.ss-ct-button a:hover {
    color: #fff;
}

.mypr-lists .ss-ct-button a:last-child {
    background: none !important;
    border-radius: 0 !important;
    color: #000000 !important;
    padding: 2px 0px !important;
}

.content-carousel {
    max-width: 300px;
    margin: auto;
}

.big-sl img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.pending_yellow {
    background: #FACC15 !important;
    color: #000 !important;
    margin-top: 8px;
}

.toggle-title .fa-angle-up {
    display: none;
}

.toggle-content {
    display: none;
    margin-top: 15px;
}

.toggle-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

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

.ss-icon img {
    width: 32px;
    height: auto;
}

.ss-heads small {
    display: block;
    font-size: 12px;
    color: #666;
}

.ss-heads h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}


/* Toggle open state */

.open .fa-angle-down {
    display: none;
}

.open .fa-angle-up {
    display: inline-block;
}

.open+.toggle-content {
    display: block;
}

.ss-map {
    font-size: 12px;
    font-weight: 500;
    margin-top: 8px;
    display: inline-table;
}

.ss-pr-name a:hover {
    color: #e40f15;
}

.check_box_f .form-check-label {
    font-size: 14px !important;
}

.property_model {
    max-width: 620px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: auto !important;
}

.create_model_button {
    padding: 0px !important;
    border-bottom: none !important;
}

.create_model_button .btn-close {
    position: absolute;
    right: -10px;
    top: -10px;
    background-color: #fff !important;
    color: #ffffff;
    opacity: 1;
    border-radius: 50%;
    z-index: 2;
    height: 24px;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: none;
}

.create_model_button .btn-close:hover {
    opacity: 1 !important;
}

.sh-mod .modal-header {
    border: none;
    align-items: center;
}

.sh-mod .modal-header .modal-title {
    font-weight: 600;
}

.share-field {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.share-field ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-bottom: 20px !important;
}

.share-field ul li {
    text-align: center;
    margin-right: 25px;
    margin-bottom: 0;
}

.share-field a {
    margin: 0 auto;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
}

.share-field .envelope {
    background: #999999;
}

.share-field ul li p {
    font-size: 12px;
    padding-top: 10px;
    font-weight: 600;
}

.share-field .whatsapp {
    background: #25D366;
}

.share-field .facebook {
    background: #4267B2;
}

.share-field .twitter {
    background: #1DA1F2;
}

.cp-link {
    width: 460px;
    margin: 0 auto;
    position: relative;
    border: 1px solid #D7D7D7;
    border-radius: 30px;
    display: flex;
    position: relative;
}

.cp-link input {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: block;
    max-width: calc(100% - 80px);
    border: none !important;
    width: 100%;
    border-radius: 30px;
    background: #FFFFFF;
    border: 1px solid #D7D7D7;
    padding: 10px 15px;
}

.cp-copy {
    background: #e40f15;
    color: #FFFFFF;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 12px;
    position: absolute;
    right: 0;
    height: 39px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    cursor: pointer;
}

.share-field a:hover {
    color: #fff;
}

.ss-whishlist a {
    font-size: 14px;
}

.ss-whishlist i:hover {
    color: #e40f15;
}

.same-md-map .modal-dialog {
    max-width: 900px;
}

.modal-title {
    font-weight: 600;
}

.padding_set {
    padding: 10px 0px !important;
}


/* .ss-pr-list:hover {
     box-shadow: 0 1px 8px 1px rgba(0, 0, 0, .2);
 } */

.ss-pr h4 {
    font-weight: 600;
    font-size: 14px;
    padding: 10px;
    margin: 0;
}

.viewmore.button {
    background: #e40f15;
    color: #ffffff;
    text-transform: capitalize;
    border-radius: 30px;
    padding: 7px 25px 9px;
    transition: 0.5s;
    float: left;
    display: flex;
    cursor: pointer;
    text-decoration: none;
}


/* ---------------------------------------------End---------------------------------------------------- */


/* ----------------------------------------------------propertylist--------------------------------- */

.bx-shadow {
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 15px;
}

.sidebar-ads {
    background: #e40f15;
    color: #ffffff;
    padding: 15px;
}

.sidebar-ads h3 {
    font-size: 24px;
    font-weight: 500;
}

.sidebar-ads p {
    text-align: center;
    line-height: 22px;
    padding: 20px 0;
}

.main-btn {
    margin-top: 14px;
    display: inline-block;
    text-decoration: none;
}

.sidebar-ads .main-btn {
    background: #ffba00;
    color: #000000;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 180px;
    margin: 0 auto;
}

.sidebar-ads h4 {
    font-size: 18px;
    text-align: left;
    padding-top: 30px;
    padding-bottom: 20px;
}

.sidebar-ads ul {
    list-style: none;
    padding-left: 0;
}

.sidebar-ads ul li {
    position: relative;
    text-align: left;
    font-size: 13px;
    font-weight: 500;
    padding-left: 20px;
    padding-bottom: 15px;
}

.sidebar-ads ul li i {
    color: #ffba00;
    position: absolute;
    left: 0;
    top: 4px;
}

.onmap {
    width: 40% !important;
    overflow: hidden;
    overflow-y: scroll;
    height: 767px;
    float: left;
    margin-bottom: 50px;
}

.onmap .ss-pr h4 {
    font-size: 15px;
    font-weight: 600;
}

.onmap .ss-pr-list {
    flex-wrap: wrap;
}

.onmap .ss-pr-left {
    flex-basis: 100%;
}

.onmap .ss-jda-whislist {
    justify-content: flex-start;
}

.onmap .ss-whishlist {
    padding-left: 15px;
}

.ss-pr-list-img img {
    max-width: 100%;
    height: auto;
}

#map.streetviewmap {
    display: block;
    width: 60%;
    position: relative;
    overflow: hidden
}

.mp-veiw-btn {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
}

.mp-veiw-btn input[type="checkbox"] {
    display: none;
}

.mp-veiw-btn label {
    position: relative;
    width: 40px;
    height: 20px;
    background: #ccc;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.mp-veiw-btn label::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.mp-veiw-btn input[type="checkbox"]:checked+label {
    background: #e40f15;
}

.mp-veiw-btn input[type="checkbox"]:checked+label::after {
    left: 22px;
}

.nav-link:focus,
.nav-link:hover {
    color: #000!important;
}

#mapContentBox {
    display: none;
}

#mapContentBox.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --------------------------------------------------------End------------------------------------- */


/***************************** Testimonials Page **************************/

.testimonials-rw {
    background: #f4f6f9;
    padding: 50px 0;
}

.testimonials-frm {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.testimonials-frm p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #495057;
    padding-bottom: 15px;
}

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

.testimonials-frm ul li {
    margin-bottom: 18px;
}

.testimonials-frm input[type="text"],
.testimonials-frm input[type="email"],
.testimonials-frm textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    background-color: #fafafa;
    transition: border-color 0.3s ease-in-out;
}

.testimonials-img {
    text-align: center;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    position: relative;
}

.testimonials-img h3 {
    font-size: 24px;
    color: #e40f15;
    margin-bottom: 20px;
}

.testimonials-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.mailphoto {
    position: absolute;
    left: 10px;
    bottom: 5px;
}

.mailphoto p {
    font-size: 14px;
    color: #6c757d;
}

.mailphoto a {
    font-weight: 600;
    color: #e40f15;
    text-decoration: none;
}

.testimonial-section-2 {
    max-width: 900px;
    margin: 20px auto 10px;
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.slider-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    width: 100%;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 30px 40px;
    /* box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1); */
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
    position: relative;
    user-select: none;
    box-sizing: border-box;
}

.testimonial-card::before {
    content: '“';
    font-size: 7rem;
    color: #e40f15;
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.1;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
}

.testimonial-text {
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
    padding-top: 14px;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: #2d2d2d;
}

.author-role {
    font-size: 14px;
    color: #777;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    color: #000;
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgb(228 15 21 / 39%);
    transition: background 0.3s ease;
    user-select: none;
    z-index: 10;
}

.nav-prev {
    left: 0px;
}

.nav-next {
    right: 0px;
}

.pagination {
    margin-top: 0px;
    display: flex;
    justify-content: center;
    gap: 14px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #e40f15;
}

.mrb-50 {
    margin-bottom: 50px;
}


/* --------------------------Feedback------------------------------ */

.feedback-frm ul {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
}

.feedback-frm ul li {
    width: 49.2%;
    margin-right: 5px;
}

.testimonials-rw ul li input,
.testimonials-rw ul li select,
.testimonials-rw ul li textarea {
    width: 100%;
    border: 1px solid #d7d7d7;
    padding: 12px 10px;
    border-radius: 6px;
}

.testimonials-rw ul li textarea {
    min-height: 100px;
    resize: none;
}

.feedback-frm ul .feed-ds {
    width: 100%;
    margin-right: 0;
}

.feedback-frm ul li:nth-child(2n+2) {
    margin-right: 0;
}


/* ------------------------------------End-------------------------- */


/* -------------------------------Property List Details---------------- */

.ss-pr-details-main-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 370px;
    margin-bottom: 5px;
    cursor: pointer;
}

.ss-pr-details-main-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform .5s ease;
}

.ss-pr-details-main-img:hover img {
    transform: scale(1.2);
}

.ss-pr-details-min-img ul {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: 10px;
    padding: 0;
    list-style: none;
}

.ss-pr-details-min-img li img {
    width: 100px;
    height: 90px;
    border-radius: 6px;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid transparent;
    transition: 0.3s;
}

.ss-pr-details-min-img li img:hover {
    border-color: #e40f15;
}

.ss-pr-details-min-img img.active {
    border-color: #e40f15;
}

.ss-pr-details-min-img img {
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.ss-plside {
    margin-top: 10px;
}

.ss-pr-features-details {
    padding-bottom: 0;
}

.ss-pr-features-details ul {
    flex-wrap: wrap;
    margin-right: 0 !important;
    justify-content: flex-start;
}

.ss-pr-features-details ul li {
    flex-basis: 30.33%;
    margin-bottom: 25px;
    margin-right: 10px;
}

.ss-pr-details-btns {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
}

.ss-ct-button a:first-child {
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.favoriteproperty a:first-child {
    color: #e40f15;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    border: 1.5px solid #e40f15;
    padding: 8px 16px;
}

.favoriteproperty a:last-child {
    border: 1.5px solid #e40f15;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
}

.ss-pr-details-btns a:last-child {
    margin-top: 0;
    margin-left: 20px;
}

.ss-ct-owner {
    padding: 20px;
}

.ss-ct-owner p:first-child {
    font-size: 18px;
}

.ss-ct-owner p {
    font-weight: 500;
}

.ss-ct-owner p span {
    font-size: 13px;
    color: #e40f15;
}

.ss-ct-owner a {
    margin-top: 10px;
    width: 100%;
    text-align: center;
}

.property-mr-details {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #D9D9D9;
}

.prheads-details {
    margin-bottom: 30px;
}

.prheads-details h3 {
    text-align: left;
    font-size: 22px;
}

.prheads-details h3::before {
    right: inherit;
    margin: auto;
}

.property-mr-details table tbody td:first-child {
    width: 200px;
}

.property-mr-details table tbody td {
    padding: 10px 0;
    vertical-align: top;
}

.sh-inner-des {
    padding: 15px;
    padding-top: 0;
}

.sh-inner-des .property-contents {
    text-align: left;
}

.property-contents h5 {
    text-transform: capitalize;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 0;
}

.property-contents p:nth-child(2) {
    padding-bottom: 10px;
    color: #848484;
}

.property-contents p {
    color: #000000;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.3em;
}

.ss-pr-liked .new-properties-inner {
    height: 150px;
    width: 100%;
    box-shadow: none;
}

.sidebar-properties-rw a {
    text-decoration: none;
}

.property-contents p span {
    font-weight: 600;
}

.details-img {
    min-height: 100%!important;
    background: #ffffff;
    box-shadow: 0 0 8px #b6b5b5;
    border-radius: 10px;
    margin-bottom: 10px;
}

.thumbimgfix {
    position: sticky;
    top: 70px;
    z-index: 2;
}

.ss-related-properties {
    margin-top: 50px;
}

a {
    text-decoration: none!important;
}

.owl-item a {
    text-decoration: none;
}

.new-properties-inner {
    box-shadow: inherit!important;
    width: 100%;
}

.properti-details-slider .pr-short-des {
    min-height: auto!important;
}

.properti-details-slider .swiper-slide img {
    width: 100%;
    object-fit: inherit!important;
}

.ss-ct-button a:first-child:hover {
    background: #e40f15;
    color: #ffffff;
}


/* -----------------------------------End---------------------------------- */


/* --------------------------------------buyService---------------------------------------------------- */

.buyservice-sec .new-post-property-banner {
    padding-top: 30px;
}

.b-heads,
.showbtn {
    padding-left: 30%;
}

.buyservice-sec .new-post-property-banner p {
    color: #ffffff;
}

.buyservice-sec .new-post-property-banner h3 {
    color: #ffffff;
    font-size: 22px;
    padding-bottom: 20px;
    font-weight: 500;
}

.b-services-left {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}

.b-services-left .splabel {
    color: #ffffff;
    padding-right: 10px;
    width: 30%;
    text-align: right;
}

.buyservice-sec .select_time_wrapper {
    width: 70%;
}

.select_time_wrapper label {
    background-color: #ffffff;
    width: 130px;
    margin-right: 7px;
    color: #000000;
    cursor: pointer;
    border-radius: 30px;
}

.buyservice-sec .select_time_wrapper label {
    background: none;
}

.select_time_wrapper label input {
    position: absolute;
    top: -20px;
}

.buyservice-sec .select_time_wrapper label span {
    background: #ffffff;
}

.buyservice-sec .select_time_wrapper input:checked+span {
    background: rgba(0, 0, 0, .7);
    border-color: #000000;
}

.select_time_wrapper label span {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    border-radius: 30px;
    border: 1px solid #d7d7d7;
}

.select_time_wrapper input:checked+span {
    background-color: #e40f15;
    color: #F7F7F7;
    border-radius: 30px;
    border-color: #e40f15;
}

.select_time_wrapper .agbuirec {
    width: 160px;
}

.buyservice-frm {
    margin-top: 30px;
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
}

.fm-head {
    padding-bottom: 20px;
}

.buyservice-frm ul {
    list-style: none;
}

.buyservice-frm ul li {
    padding-bottom: 10px;
}

.buyservice-frm ul li input[type="text"],
.buyservice-frm ul li input[type="email"],
.buyservice-frm ul li input[type="number"],
.buyservice-frm ul li input[type="password"],
.buyservice-frm ul li select,
.buyservice-frm ul li textarea {
    width: 100%;
    border-radius: 30px;
    background: #FFFFFF;
    border: 1px solid #D7D7D7;
    padding: 10px 15px;
    resize: none;
    font-size: 14px;
}

.buyservice-frm ul li .iagree {
    color: #000000;
    font-size: 13px;
    font-weight: 600;
}

.buyservice-frm ul li input[type="checkbox"] {
    accent-color: #e40f15;
    vertical-align: middle;
    margin-right: 5px;
    height: 18px;
    width: 18px;
}

.buyservice-frm ul li .iagree a {
    color: #000000;
    transition: 0.5s;
}

.benifitsgets .prheads h3 {
    text-align: left;
    margin-bottom: 5px;
}

.benifitsgets ul {
    display: flex;
    list-style: none;
}

.benifitsgets ul li {
    width: 33%;
    margin-bottom: 30px;
    display: flex;
    margin-right: 20px;
}

.benifitsgets-left {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #d7d7d7;
    padding: 10px;
}

.benifitsgets-right {
    width: 80%;
    padding-left: 15px;
}

.benifitsgets-left img {
    max-width: 100%;
    height: auto;
}

.benifitsgets-right img {
    max-width: 100%;
    height: auto;
}

.benifitsgets-right h6 {
    font-size: 14px;
}

.benifitsgets-right p {
    font-size: 13px;
    line-height: 18px;
    padding-top: 10px;
}

.buyservice-testimonial .testimonials-new {
    background: none;
    padding: 0;
}

.testiinner {
    height: 350px;
    margin: 0 auto;
    background-color: #fff;
    text-align: center;
    position: relative;
    padding: 20px;
    border-radius: 15px;
    -webkit-box-shadow: 0 13px 11px 4px rgba(0, 0, 0, .1);
    box-shadow: 0 13px 11px 4px rgba(0, 0, 0, .1);
}

.buyservice-testimonial .testiinner {
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.userimgs {
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
    border: 2px solid #e40f15;
    margin-bottom: 20px;
}

.userimgs img {
    object-fit: contain;
    width: 100% !important;
    height: 100%;
}

.usertxt {
    padding-bottom: 15px;
}

.usertxt p {
    line-height: 26px;
    display: block;
    display: -webkit-box;
    max-width: 100%;
    margin: 0 auto;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.username h4 {
    font-size: 22px;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: 600;
}


/* --------------------------------------End------------------------------------------------------------ */


/* --------------------------------Search Filter------------------------------------------------------------------ */

.search-bar-wrapper2 {
    padding: 0px;
    margin: 0px auto;
    width: 850px;
}

.search_propertylist .form-item span {
    font-size: 14px;
}

.inner-pages-banner2 {
    padding: 10px 0;
    text-align: left;
    background: linear-gradient(90deg, rgba(245, 76, 82, 1) 0%, rgb(255 255 255) 50%, rgba(245, 76, 82, 1) 100%);
}

.filter__component {
    position: relative;
    display: inline-block;
    margin-right: 4px;
}

.filter__component__title {
    color: #000000;
    padding: 8px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    font-size: 14px;
}

.title-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter__component__drop-down {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    display: none;
    z-index: 100;
    padding: 15px;
}

.filter__component__drop-down::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 20px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

.filter__common__component {
    margin-bottom: 15px;
}

.filter__common__component__title {
    font-weight: 600;
    margin-bottom: 10px;
}

.filter__common__component__item {
    display: inline-block;
    margin: 5px 5px 0 0;
}

.filter__common__component__item input {
    display: none;
}

.filter__common__component__item label {
    display: inline-block;
    border: 1px solid #ccc;
    transition: all 0.2s ease;
    background: #fff;
    background: #f5f5f5;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
}

.filter__common__component__item input:checked+label {
    border: 1px solid #e40f15;
    color: #e40f15;
    background-color: rgba(236, 30, 36, 0.2);
    font-weight: 600;
}

.search_propertylist .filter-wrapper {
    top: 88%!important;
}

.tablist-rws2 {
    margin-top: 10px;
    background: #fff;
    padding: 0;
}

.ss-jda-whislist a {
    font-weight: 500;
    font-size: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: block;
    max-width: calc(100% - 222px);
    color: #000;
    padding: 5px 0px;
    margin-bottom: 0;
}

.search_propertylist {
    height: 40px!important;
}

.search_propertylist .btn-search {
    padding: 5px 10px!important;
}


/* ---------------------------------------------------------End--------------------------------------------- */


/* ----------------------------------------------------property sell------------------------------------------- */

.bn-img img {
    max-width: 100%;
    height: auto;
}

.new-post-property-banner {
    padding-top: 30px;
}

.new-post-property-banner h3 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1.75rem;
}

.new-post-property-banner h3 span {
    color: #e40f15;
}

.new-post-property-banner ul {
    padding-top: 30px;
    list-style: none;
    padding-left: 0;
}

.new-post-property-banner ul li {
    position: relative;
    padding-left: 25px;
    font-size: 17px;
    padding-bottom: 15px;
}

.new-post-property-banner ul li i {
    color: #e40f15;
    position: absolute;
    left: 0;
    top: 5px;
}

.post-propertyform-first {
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 0px 6px #f3c4c5;
    margin-top: 30px;
}

.post-propertyform-first h3 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1.75rem;
}

.post-propertyform-first form {
    padding-top: 20px;
}

.post-propertyform-first ul {
    list-style: none;
    align-items: baseline;
}

.post-propertyform-first ul li {
    margin-bottom: 20px;
}

.form-person {
    display: flex;
    margin-bottom: 20px;
    position: relative;
}

.form-person:last-child {
    margin-bottom: 0;
}

.form-person .country-code {
    flex-basis: 40%;
}

.form-person select,
input {
    width: 100%;
    border-radius: 30px;
    background: #FFFFFF;
    border: 1px solid #D7D7D7;
    padding: 10px 15px;
}

.form-person .whatsapp-nu {
    flex-basis: 60%;
    margin-left: 15px;
}

.wh-info {
    background: rgba(228, 15, 21, 0.06);
    border: 2px solid #e40f15;
    border-radius: 10px;
    padding: 15px 20px;
}

.wh-info h6 {
    font-size: 15px;
}

.wh-info h6 img {
    max-width: 100%;
    height: auto;
}

.hide {
    display: none;
}

.howitworks-steps small {
    font-weight: 600;
    padding-bottom: 5px;
    display: inline-table;
}

.howitworks-steps h6 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 1rem;
}

.howitworks-steps p {
    padding-top: 10px;
    font-size: 16px;
}

.main_sell {
    display: flex;
    gap: 15px;
}

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

.tips-icons {
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(228, 15, 21, 0.1);
}

.tips-icons img {
    max-width: 100%;
    height: auto;
}

.top_sell {
    padding-top: 8px;
}

.benifits ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.benifits ul li {
    margin-bottom: 25px;
    position: relative;
    flex: 1;
    text-align: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benifits ul li:hover {
    background: #f9f9f9;
    border-color: #e40f15;
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.benifits ul li i {
    color: #e40f15;
    position: absolute;
    left: 5px;
    top: 5px;
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
}

.benifits ul li h5 {
    margin: 5px 0;
    font-size: 16px;
    font-weight: 600;
}

.benifits ul li p {
    line-height: 26px;
    margin: 0;
    font-size: 14px;
    color: #555;
}

.process-wrapp {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.process-wrapp li {
    text-align: center;
    flex: 1 1 15%;
    position: relative;
    margin-bottom: 40px;
}

.process-wrapp li .pro-step {
    height: 90px;
    width: 90px;
    line-height: 90px;
    border: 3px solid #e40f15;
    font-size: 22px;
    font-weight: 700;
    color: #e40f15;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    background: #fff;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.process-wrapp li p {
    font-size: 14px;
    font-weight: 600;
    margin-top: 12px;
    color: #222;
}


/* Connector Line */

.process-wrapp li::after {
    content: "";
    position: absolute;
    top: 45px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: -1;
}

.process-wrapp li:last-child::after {
    display: none;
}


/* Hover / Active Effect */

.process-wrapp li .pro-step:hover {
    background: #e40f15;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(228, 15, 21, 0.4);
}

.psfaqs {
    margin-bottom: 70px;
}

.accordion {
    background: #f7f6fc;
    margin-bottom: 15px;
}

.accordion-item {
    background: #f7f6fc!important;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button:focus {
    border-color: #e40f15b8!important;
    box-shadow: inherit!important;
}

.n-accordian .accordion-button:not(.collapsed) {
    background: #e40f15;
    color: #ffffff;
}

.n-accordian .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-collapse {
    border: solid rgba(0, 0, 0, .125);
    border-width: 0 1px;
}

.accordion-body {
    padding: 1rem 1.25rem;
}

.n-accordian .accordion-body p {
    padding-bottom: 10px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #e40f15, #e40f15);
    z-index: 0;
    transition: height 0.4s ease;
}

.step-card:hover::before {
    height: 100%;
}

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

.step-card:hover p {
    color: #fff;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f7f8fa;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    z-index: 1;
    position: relative;
    transition: transform 0.4s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.2);
    background: #fff;
}

.step-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.4s ease;
}

.step-content {
    z-index: 1;
    position: relative;
}

.step-content h6 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.otp-btn {
    background-color: #e40f15!important;
    border-color: #e40f15!important;
}

.list-unstyled button {
    background-color: #e40f15;
    border-color: #e40f15;
}

.list-unstyled button:hover {
    background-color: #d1090f;
    border-color: #d1090f;
}
#tabRentTop:hover{
    color: #fff!important;
}
.toast-body {
    background-color: grey!important;
}
/* ----------------------------------------------------End----------------------------------------------------- */


/* --------------------------Sell Rent button-------------------------------------------------------------- */

.badge-product-sale {
    display: table;
    position: absolute;
    text-align: center;
    top: 0px;
    left: 0px;
    z-index: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.badge-product-sale span {
    position: relative;
    background: #bc8246;
    color: #fff;
    float: left;
    font-size: 14px;
    font-weight: 400;
    height: 28px;
    line-height: 28px;
    padding: 0 10px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    min-width: 50px;
    border-radius: 0;
    min-height: auto;
    border: 0;
}

.badge-product-sale span.percent {
    background: #e40f16;
}

.badge-product-sale span.percent::before {
    border: 5px solid #e40f16;
    border-color: #e40f16 transparent transparent #e40f16;
    border-width: 9px 5px;
    position: absolute;
    right: -9px;
    top: 0;
    content: "";
    z-index: 1;
}

.badge-product-sale span.percent::after {
    border: 5px solid #e40f16;
    border-color: transparent transparent #e40f16 #e40f16;
    border-width: 10px 5px;
    position: absolute;
    right: -9px;
    bottom: 0;
    content: "";
    z-index: 1;
}

.badge-product-sale2 {
    display: table;
    position: absolute;
    text-align: center;
    top: 0px;
    left: 0px;
    z-index: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.badge-product-sale2 span {
    position: relative;
    background: #bc8246;
    color: #fff;
    float: left;
    font-size: 12px;
    font-weight: 400;
    height: 22px;
    line-height: 22px;
    padding: 0 6px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    min-width: 25px;
    border-radius: 0;
    min-height: auto;
    border: 0;
}

.badge-product-sale2 span.percent {
    background: #e40f16;
}

.badge-product-sale2 span.percent::before {
    border: 5px solid #e40f16;
    border-color: #e40f16 transparent transparent #e40f16;
    border-width: 9px 5px;
    position: absolute;
    right: -9px;
    top: 0;
    content: "";
    z-index: 1;
}

.badge-product-sale2 span.percent::after {
    border: 5px solid #e40f16;
    border-color: transparent transparent #e40f16 #e40f16;
    border-width: 10px 5px;
    position: absolute;
    right: -9px;
    bottom: 0;
    content: "";
    z-index: 1;
}

.contact-btn .hover-text {
    display: none;
}

.contact-btn:hover .default-text {
    display: none;
}

.contact-btn:hover .hover-text {
    display: inline;
}

.user-type-group .active {
    background: #000!important;
    border-color: #000!important;
    color: #fff;
}


/* ----------------------------End------------------------------------------ */

.mobile-menus {
    display: none;
    position: fixed;
    z-index: 999999;
    background: #e40f15;
    border-top: 1px solid #ffffff;
    left: 0;
    width: 100%;
    bottom: 0;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999999;
    top: 0;
    right: 0;
    background-color: #ffffff;
    transition: 0.5s;
    overflow-y: scroll;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 9999999;
    top: 0;
    right: 0;
    background-color: #ffffff;
    transition: 0.5s;
    overflow-y: scroll;
}

.mobile-menus ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-left: unset;
}

.mobile-menus ul li a {
    color: #ffffff;
    text-transform: capitalize;
    text-align: center;
    padding: 6px 15px;
    display: inline-block;
    /* position: relative; */
}

.mobile-menus ul li a i {
    font-size: 20px;
    padding-bottom: 5px;
}

.mobile-menus ul li a p {
    font-size: 11px;
    line-height: 14px;
    margin-bottom: 0;
}

.mobile-menus ul li {
    width: 20%;
    text-align: center;
}

.outermenus .sidebar-logo {
    padding: 10px 20px;
    border-bottom: 1px solid #d7d7d7;
}

.sidebar-logo {
    position: relative;
}

.sidebar-logo a:first-child {
    padding-left: 0;
}

.sidenav .closebtn {
    position: absolute;
    padding: 0;
    line-height: 20px;
    color: #ffffff;
    z-index: 2;
    background: #e40f15;
    border-radius: 60px;
    width: 35px;
    height: 35px;
    justify-content: center;
}

.outermenus .closebtn {
    right: 17px;
    left: inherit;
    top: 12px;
    font-size: 40px !important;
}

.outermenus .closebtn:hover {
    color: #000000 !important;
}

.sidebar-outer {
    position: relative;
    max-height: 100%;
}

.outermenus li {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    list-style: none;
}

.accordion {
    background: #f7f6fc;
    margin-bottom: 15px;
    width: 100%;
    border-radius: 0;
    padding-left: 0;
}

.link-mn {
    font-weight: 500;
    position: relative;
}

.sidenav a {
    text-decoration: none;
    font-size: 15px;
    color: #e40f15;
    display: block;
    transition: 0.3s;
    text-transform: capitalize;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link-mn a {
    padding-left: 45px;
}

#mySidenav .sidebar-inner ul li a i,
#mySidenav .accordion li i {
    color: #e40f15;
}

.sidenav a i {
    text-align: right;
}

.accordion li i,
.accordion li img {
    position: absolute;
    top: 16px;
    left: 12px;
    font-size: 18px;
    color: #e40f15;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.msellbtn i {
    background: #ffffff;
    color: #e40f15;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0 !important;
    font-size: 26px !important;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border: 3px solid #e40f15;
}

.mobile-menus ul li a p {
    font-size: 11px;
    line-height: 14px;
}

.msellbtn p {
    position: relative;
    bottom: -14px;
}

.outermenus a {
    color: #000000;
}

#mySidenav.outermenus .accordion .link {
    padding-left: 45px;
}

#mySidenav .sidebar-inner ul li a i,
#mySidenav .accordion li i {
    color: #e40f15;
}

.accordion li.open i.fa-chevron-down {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.accordion li i.fa-chevron-down {
    right: 12px;
    left: auto;
    font-size: 14px;
    top: 20px;
}

.accordion .link {
    cursor: pointer;
    display: block;
    padding: 15px 15px 15px 42px;
    color: #000000;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    font-weight: 500;
}

.outermenus .sidebar-outer .submenu li .link {
    padding-left: 80px !important;
}

.outermenus .submenu li i {
    left: 50px !important;
}

ul.submenu {
    padding-left: 0;
}

.submenu {
    display: none;
}

.submenu.show {
    display: block;
}

#mySidenav .submenu a {
    color: #000000 !important;
    padding-left: 45px;
    position: relative;
    background: #fff;
}

.link .chevron {
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

.link.active .chevron {
    transform: rotate(180deg);
}

.outermenus a:hover {
    color: #e40f15;
}

.link span:hover {
    color: #e40f15;
}

#scroll {
    position: fixed;
    right: 15px;
    bottom: 15px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #e40f15;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;
    z-index: 22;
}

#scroll span {
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent rgb(255, 255, 255);
    border-image: initial;
    margin-left: 17px;
    margin-top: -10px;
}

.login-left ul img {
    max-width: 210px;
    margin-bottom: 20px;
    border-bottom: 2px solid #3b3b3b;
}

.login-inner-content {
    height: auto;
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    margin: 30px auto 0;
    padding: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}


/* animated 2px red border */

.login-inner-content::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    padding: 2px;
    /* border thickness */
    background: linear-gradient(90deg, #e40f15, transparent, #e40f15, transparent);
    background-size: 200% 200%;
    z-index: -1;
    animation: border-rotate 3s linear infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
}


/* animation for rotation effect */

@keyframes border-rotate {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.login-right {
    position: relative;
}

.text_c2 {
    position: absolute;
    right: 31%;
    top: 0%;
}

.text_c2 img {
    max-width: 250px;
}

.property-layout {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    min-height: 630px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}


/* Left Red Section with Background Image */

.left-section {
    position: relative;
    flex: 1;
    color: white;
    padding: 30px 40px;
    overflow: hidden;
    background: url('../../assets/img/login-bg.jpg') center center/cover no-repeat;
}

.left-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.left-section * {
    position: relative;
    z-index: 2;
}

.left-section h1 {
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.left-section li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.left-section li i {
    color: #fff;
    font-size: 16px;
}

.building-img {
    width: 380px;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0.9;
    z-index: 0;
}

.woman-img {
    position: absolute;
    bottom: 4px;
    right: 40px;
    width: 400px;
    z-index: 2;
}


/* Right Section */

.right-section {
    flex: 1;
    background: #fff;
    border-left: 2px solid #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.property-layout .left-section,
.property-layout .right-section {
    flex: 1;
}


/* Default desktop layout */

.left-section {
    order: 1;
}

.right-section {
    order: 2;
}

.right-section {
    position: relative;
}

.property-title {
    display: block;
    width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky .topbar-right .user-profile-img span {
    color: #000;
}

.business_text {
    font-size: 42px;
    line-height: 55px;
    color: #e40f15;
    text-transform: capitalize;
    margin-top: 20px;
}

.filter-badge {
    line-height: 2 !important;
}