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

html,
body {
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-weight: normal;
    font-size: 16px;
    color: #374151;
}

a {
    text-decoration: none;
    color: #e5322d;
    transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
}

a:hover {
    color: #374151;
    text-decoration: none;
}

a:focus {
    outline: none;
    text-decoration: none;
    color: inherit;
}

:focus {
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-weight: normal;
    color: #374151;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    text-decoration: none;
}

p {
    margin: 0 0 20px 0;
    line-height: 25px;
}

ul,
ol {
    margin: 0;
}

strong,
b {}

/*----------------------------------------------*/
.container {
    padding-left: 24px;
    padding-right: 24px;
}

.px-6 {
    padding-left: 24px;
    padding-right: 24px;
}

.py-4 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.w-10 {
    width: 40px;
}

.h-10 {
    height: 40px;
}

.h-full {
    height: 100%;
}

.padd80 {
    padding: 80px 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.relative {
    position: relative;
}

.header .bg-primary {
    background-color: #b30c0d !important;
    align-items: center;
    justify-content: center;
    display: flex;
    border-radius: 8px;
}

.header .text-white {
    opacity: 1;
    color: #fff;
    font-size: 24px;
    line-height: 18px;
}

.header .bg-primary svg {
    width: 20px;
    height: 20px;
    overflow: visible;
    box-sizing: content-box;
}

.header .logotxt {
    margin-left: 8px;
}

.header .logotxt h1 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0;
    font-weight: 700;
    filter: inherit;
    opacity: 1;
}

.header .logotxt p {
    font-size: 12px;
    color: #4b5563;
    margin-bottom: 0;
    line-height: 16px;
    filter: inherit;
    opacity: 1;
}

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

.items-center {
    align-items: center;
}

.flex {
    display: flex;
}

.header {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 50;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header .main-menu {
    display: inline-block;
    vertical-align: middle;
    filter: inherit;
    opacity: 1;
}

.header .main-menu nav ul {
    display: block;
    padding: 0;
}

.header .main-menu nav ul li {
    display: inline-block;
    position: relative;
    margin-right: 25px;
}

.header .main-menu nav ul li:last-child {
    margin-right: 0;
}

.header .main-menu nav ul li a {
    font-size: 16px;
    color: #374151;
    font-weight: 500;
    padding: 0;
    position: relative;
}

.header .main-menu nav ul li span {
    font-size: 16px;
    color: #001834;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    padding: 20px;
    position: relative;
}

.header .main-menu nav ul li a:hover {
    color: #374151;
}

.header .main-menu nav ul li a:after {
    width: 0px;
    left: 0px;
    height: 3px;
    bottom: -8px;
    position: absolute;
    content: "";
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    background-color: #b30c0d;
}

.header .main-menu nav ul li a:hover:after {
    width: 100%;
}

.header .main-menu nav ul li ul.mega-menu {
    background-color: #fff;
    display: block;
    left: 0;
    margin-top: 27%;
    position: absolute;
    text-align: left;
    top: 100%;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: center top 0;
    transform-origin: center top 0;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    visibility: hidden;
    width: auto;
    min-width: 210px;
    z-index: 999;
    -webkit-box-shadow: 0 1px 7px -2px rgb(0 0 0 / 30%);
    box-shadow: 0 1px 7px -2px rgb(0 0 0 / 30%);
}

.header .hamburgericn {
    text-align: center;
    display: inline-block;
    vertical-align: middle;
}

.header .hamburgericn .plus-btn {
    cursor: pointer;
}

.header .main-menu nav ul li ul.mega-menu {
    background-color: #fff;
    display: block;
    left: 0;
    margin-top: 0;
    position: absolute;
    text-align: left;
    top: 100%;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: center top 0;
    transform-origin: center top 0;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    visibility: hidden;
    width: auto;
    min-width: 210px;
    z-index: 999;
    -webkit-box-shadow: 0 1px 7px -2px rgb(0 0 0 / 30%);
    box-shadow: 0 1px 7px -2px rgb(0 0 0 / 30%);
}

.header .main-menu nav ul li ul.mega-menu {
    background-color: #fff;
    display: block;
    left: 0;
    position: absolute;
    text-align: left;
    top: 100%;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: center top 0;
    transform-origin: center top 0;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    visibility: hidden;
    width: auto;
    min-width: 210px;
    z-index: 999;
    -webkit-box-shadow: 0 1px 7px -2px rgb(0 0 0 / 30%);
    box-shadow: 0 1px 7px -2px rgb(0 0 0 / 30%);
}

.header .main-menu nav ul li ul.mega-menu li a {
    line-height: 30px;
}

.header .main-menu nav ul li:hover>ul.mega-menu {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    visibility: visible;
}

.main-menu nav ul li ul.mega-menu>li {
    display: block;
    margin-left: 0;
    padding: 0;
    width: auto;
    margin-right: 0;
    float: none;
}

.header .main-menu nav ul li ul li {
    display: block;
    width: 100%;
}

.main-menu nav ul li ul.mega-menu>li ul li.mega-menu-title a {
    color: #242424;
    margin: 0 0 10px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
}

.header .main-menu nav ul li ul.mega-menu>li ul li a {
    color: #333;
    display: block;
    font-size: 15px;
    font-weight: 400;
    line-height: 28px;
    text-align: left;
    text-transform: capitalize;
    position: relative;
    padding: 8px 15px;
    border-bottom: 1px solid #e2e2e2;
    min-width: 250px;
}

.header .main-menu nav ul li ul.mega-menu>li ul li:last-child a {
    border-bottom: none;
}

.header .main-menu nav ul li.mega-menu-title a {
    line-height: 24px;
}

.header .main-menu nav ul li ul.mega-menu>li ul li a:hover {
    color: #dec465;
}

.header .main-menu nav ul li.mega-menu-title a:before {
    display: none;
}

.header .main-menu nav ul li.mega-menu-title:hover a {
    padding-left: 0 !important;
}

.header .main-menu nav ul li ul.mega-menu>li ul li:hover a {
    background-color: #ff3131;
    color: #fff;
}

.header .main-menu nav ul.mega-menu li ul li {
    margin-right: 0;
}

.header .main-menu nav ul li>ul.mega-menu li a {
    font-size: 14px;
    display: block;
    border-bottom: 1px solid #e2e2e2 !important;
    padding: 7px 12px;
    background: #fff;
}

.header .main-menu nav ul li>ul.mega-menu li a:hover {
    background: #ff3131;
    color: #fff;
}

.header .main-menu nav ul li>ul.mega-menu li:last-child a {
    border-bottom: none;
}

.header .main-menu ul li ul li ul.mega-menu {
    top: 0;
    left: 100%;
    right: inherit;
    margin-top: 0;
}

.mobile-header__menu-button {
    display: none;
}

.btnthrd svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.btnthrd .phnnmbr {
    color: #374151;
    font-weight: 600;
    margin-right: 15px;
}

.btnthrd .lstpropertybtn {
    border-radius: 8px;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 12px;
    padding-bottom: 12px;
    background: linear-gradient(135deg, #b30c0d 0%, #8a0909 100%);
    color: #fff;
    font-weight: 600;
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.btnthrd .lstpropertybtn:hover {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1.05) scaleY(1.05);
}

.hero-section {}

.hero-section .bnrposion {
    position: absolute;
    inset: 0px;
}

.hero-section .bnrposion img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
}

.hero-section .transparentlyr {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    inset: 0px;
    z-index: 2;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 1));
    opacity: .9;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .relative {
    z-index: 2;
}

.hero-section .leading-tight {
    line-height: 1;
    font-size: 60px;
    color: #fff;
    font-weight: 700;
}

.hero-section .leading-tight span {
    color: #b30c0d;
}

.hero-section {
    height: 700px;
    margin-top: 80px;
    position: relative;
}

.hero-section .relative p {
    line-height: 1.625;
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
}

.max-w-3xl {
    max-width: 768px;
}

.hero-section .whtbgrads {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    min-height: 275px;
}

.hero-section .whtbgrads .nav li.nav-item .nav-link.active {
    border-color: #b30c0d;
    color: #b30c0d;
    background: transparent;
}

.hero-section .whtbgrads .nav li.nav-item .nav-link {
    padding: 12px 24px;
    font-weight: 600;
    border-bottom-width: 2px;
    color: #374151;
    border-style: solid;
    border-radius: 0;
    border-color: transparent;
}

.hero-section .whtbgrads .nav {
    border-bottom: 1px solid #e5e7eb !important;
    border-width: 1px !important;
    margin-bottom: 24px !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hero-section .whtbgrads .nav::-webkit-scrollbar {
    display: none;
}

.hero-section .whtbgrads .nav li.nav-item {
    flex-shrink: 0;
    white-space: nowrap;
}

.hero-section .whtbgrads .tab-content {
    border: none !important;
    padding: 0 !important;
}

.hero-section .whtbgrads .tab-content input.input-fill {
    font-size: 18px;
    line-height: 28px;
    padding-left: 24px;
    padding-right: 56px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-radius: 12px;
    border-width: 2px;
    border-style: solid;
    border-color: #e5e7eb;
    width: 100%;
}

.hero-section .whtbgrads .tab-content .srchfld {
    position: relative;
}

.hero-section .whtbgrads .tab-content .srchbtn {
    position: absolute;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    background: #b30c0d;
    right: 10px;
    top: 8px;
}

.hero-section .whtbgrads .tab-content .srchbtn svg {
    width: 16px;
    height: 16px;
    color: #fff;
    fill: #fff;
}

.hero-section .whtbgrads .tab-content .srchfld {
    margin-bottom: 16px;
}

.hero-section .whtbgrads .tab-content .populartag {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-section .whtbgrads .tab-content .populartag span {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #333333;
}

.hero-section .whtbgrads .tab-content .populartag a.popularlnk {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    padding: 6px 16px;
    border-radius: 9999px;
    background: #f3f4f6;
    color: #222222;
}

.verifiedsec {
    margin-top: 32px;
    display: flex;
    align-items: center;
}

.verifiedsec svg {
    width: 30px;
    height: 30px;
    fill: #b30c0d;
}

.verifiedsec i {
    color: #b30c0d !important;
}

.verifiedsec span {
    margin-left: 12px;
    font-weight: 600;
    color: #fff;
}

.verifiedsec .flex {
    margin-left: 30px;
}

.verifiedsec .flex:first-child {
    margin-left: 0;
}

h2.cntmntle {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

p.cntsubhead {
    font-size: 20px;
    line-height: 28px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: #4b5563;
}

.propertytypes .col-sm-2 {
    padding: 0 12px;
}

.propertytypes .row {
    margin: 28px -12px 0;
}

.propertytypes .whtradbg {
    padding: 24px;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background-image: linear-gradient(to bottom, #f9fafb, #ffffff);
}

.propertytypes .whtradbg:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.propertytypes .whtradbg .propertycn {
    border-radius: 9999px;
    width: 64px;
    height: 64px;
    background: #b30c0d;
    text-align: center;
    line-height: 64px;
    margin-bottom: 16px;
}

.propertytypes .whtradbg .propertycn i {
    color: #fff;
    font-weight: 30px;
    line-height: 36px;
}

.propertytypes .whtradbg .propertycn svg {
    height: 30px;
    width: 30px;
    fill: #fff;
}

.propertytypes .whtradbg .propertycn svg path {
    fill: #fff;
}

.propertytypes .whtradbg h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
    color: #111827;
}

.propertytypes .whtradbg p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
    color: #4b5563;
    min-height: 60px;
}

.propertytypes .whtradbg .arwredmr svg {
    width: 14px;
    height: 24px;
    fill: #4b5563;
}

.featuredproperties .nav {
    justify-content: center;
    border-bottom: none !important;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
    width: auto !important;
    margin: 0 auto !important;
    display: table !important;
    margin-bottom: 48px !important;
}

.featuredproperties .nav li {
    display: inline-block;
}

.featuredproperties .nav li button {
    padding: 12px 32px;
    font-weight: 600;
    color: #4b5563;
    border-radius: 8px;
    margin-right: 8px;
}

.featuredproperties .nav li:last-child button {
    margin-right: 8px;
}

.featuredproperties .nav li button.active {
    background-color: #b30c0d;
}

.featuredproperties .cardwhtlp {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    margin-bottom: 32px;
}

.featuredproperties .cardwhtlp:hover {
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.featuredproperties .lkebtn {
    height: 40px;
    width: 40px;
    border-radius: 9999px;
    display: flex;
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    align-items: center;
    justify-content: center;
}

.featuredproperties .lkebtn:hover {
    background: rgba(255, 255, 255, 1);
}

.featuredproperties .cardimgbx {
    height: 256px;
    position: relative;
    overflow: hidden;
}

.featuredproperties .cardimgbx i {
    font-size: 20px;
    line-height: 28px;
    color: #374151;
}

.featuredproperties .cardimgbx i svg {
    width: 20px;
    height: 28px;
}

.featuredproperties .cardimgbx .featuredbx {
    font-size: 14px;
    line-height: 20px;
    padding: 8px 16px;
    font-weight: 600;
    left: 16px;
    bottom: 16px;
    border-radius: 8px;
    position: absolute;
    background-color: #b30c0d;
    color: #fff;
    display: none;
}

.featuredproperties .propertyctn {
    padding: 24px;
}

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

.featuredproperties .propertyctn .propertysbdes .flex {
    margin-bottom: 12px;
}

.featuredproperties .propertyctn .flex .text-3xl {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    color: #111827;
}

@media (min-width: 992px) {
    .featuredproperties .propertyctn .flex .text-3xl {
        font-size: 20px;
        line-height: 28px;
    }
}

.featuredproperties .propertyctn .flex .bg-green-100 {
    color: #15803d;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    padding: 4px 12px;
    border-radius: 9999px;
    background: rgba(220, 252, 231, 1.0);
}

.featuredproperties .propertyctn .flex .bg-green-100 i {
    margin-right: 4px;
}

.featuredproperties .propertyctn .flex .bg-green-100 i svg {
    width: 12px;
    height: 12px;
}

.featuredproperties .propertyctn .flex .bg-blue-100 {
    color: #1d4ed8;
    background: #dbeafe;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    padding: 4px 12px;
    border-radius: 9999px;
}

.featuredproperties .propertyctn .flex .text-blue-700 {}

.featuredproperties .propertyctn .flex .text-blue-700 i {
    margin-right: 4px;
}

.featuredproperties .propertyctn .flex .text-blue-700 i svg {
    width: 12px;
    height: 12px;
}

.featuredproperties .propertyctn .propertytle {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
    color: #111827;
}

.featuredproperties .propertyctn p.propertydes {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 16px;
}

.featuredproperties .propertyctn p.propertydes svg {
    width: 10px;
    height: 14px;
    display: inline-block;
    margin-right: 2px;
    vertical-align: top;
    margin-top: 2px;
}

.featuredproperties .propertyctn p.propertydes svg path {
    fill: #b30c0d;
}

.featuredproperties .propertysbdes i {
    color: #b30c0d;
    margin-bottom: 8px;
    margin-right: 8px;
}

.featuredproperties .propertysbdes i svg {
    width: 17px;
    height: 14px;
    fill: #b30c0d;
}

.featuredproperties .propertysbdes i svg path {
    fill: #b30c0d;
}

.featuredproperties .propertysbdes .propertysbtl {
    font-weight: 500;
}

.featuredproperties .btmpropertydv {
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.featuredproperties .btmpropertydv a.shwmbicn {
    display: none;
}

.featuredproperties .btmpropertydv .flex img {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    margin-right: 12px;
}

.featuredproperties .btmpropertydv .flex .text-xs {
    color: #6b7280;
    font-size: 12px;
    line-height: 16px;
}

.featuredproperties .btmpropertydv .flex .text-sm {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #111827;
}

.featuredproperties .btmpropertydv .contactlnk {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    padding: 8px 16px;
    color: #fff;
    background: #b30c0d;
    border-radius: 8px;
    border: 1px solid #b30c0d
}

.featuredproperties .btmpropertydv .contactlnk:hover {
    background: transparent;
    color: #b30c0d;
}

.featuredproperties .btnvetcl {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.featuredproperties .btnvetcl a {
    font-weight: 600;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    padding: 16px 32px;
    border-radius: 8px;
    border: 2px solid #b30c0d;
    color: #b30c0d;
}

.featuredproperties .btnvetcl a:hover {
    background: #b30c0d;
    color: #fff;
}

.trending-properties .trendingpropertiesbx {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
}

.trending-properties .trendingpropertiesbx .trendingpropertimg {
    height: 192px;
    position: relative;
    overflow: hidden;
}

.trending-properties .trendingpropertiesbx .trendingpropertimg img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.trending-properties .trendingpropertiesbx .trendingpropertimg .trendingtxtpos {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 9999px;
    background: #ef4444;
    top: 12px;
    right: 12px;
    position: absolute;
    color: #fff;
    display: none;
}

.trending-properties .trendingpropertctn {
    padding: 16px;
}

.trending-properties .trendingpropertctn .trendingprc {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 32px;
    color: #111827;
}

.trending-properties .trendingpropertctn .trendingtle {
    font-weight: 600;
    margin-bottom: 4px;
    color: #111827;
    font-size: 16px;
    line-height: 22px;
}

.trending-properties .trendingpropertctn .trendingtext {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
}

.trending-properties .trendingpropertctn .trendingtext svg {
    width: 10px;
    height: 14px;
    display: inline-block;
    margin-right: 2px;
    vertical-align: top;
    margin-top: 2px;
}

.trending-properties .trendingpropertctn .trendingtext svg path {
    fill: #b30c0d;
}

.trending-properties .trendingpropertctn .trendingbxctn {
    color: #4b5563;
}

.trending-properties .trendingpropertctn .trendingbxctn span {
    color: #4b5563;
    font-size: 12px;
    line-height: 16px;
    margin-right: 12px;
}

.trending-properties .trendingpropertctn .trendingbxctn span svg {
    width: 15px;
    height: 12px;
    margin-right: 2px;
}

.trending-properties .trendingpropertctn .trendingbxctn span svg path {
    fill: #b30c0d;
}

.trending-properties .trendingpropertctn .trendingbxctn span:last-child {
    margin-right: 0;
}

.trending-properties .trendingpropertiesbx:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.tpdvlpr {
    background: #f9fafb;
}

.tpdvlpr small {
    font-size: 14px;
    line-height: 20px;
    display: table;
    margin: 0 auto 40px;
}

.tpdvlpr p.cntsubhead {
    margin-bottom: 8px;
}

.tpdvlpr .col-sm-2 {
    flex: 0 0 auto;
    width: 20.00%;
}

.tpdvlpr .whtdvlbx {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    text-align: center;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    margin-bottom: 25px;
}

.tpdvlpr .whtdvlbx .dvlcir {
    border-radius: 9999px;
    overflow: hidden;
    width: 96px;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 16px;
}

.tpdvlpr .whtdvlbx h3 {
    margin-bottom: 4px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
}

.tpdvlpr .whtdvlbx p {
    font-size: 14px;
    line-height: 20px;
    color: #4b5563;
    margin-bottom: 12px;
}

.tpdvlpr .whtdvlbx .properinf svg {
    font-size: 14px;
    line-height: 20px;
    margin-right: 8px;
    width: 10px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    color: #b30c0d;
}

.tpdvlpr .whtdvlbx .properinf {
    justify-content: center;
}

.tpdvlpr .whtdvlbx .properinf span {
    color: #b30c0d;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.tpdvlpr .whtdvlbx .properinf span svg {
    margin-left: 5px;
}

.tpdvlpr a.vewdvl {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    transition-duration: 150ms;
    padding: 16px 32px;
    border-radius: 8px;
    border: 2px solid #b30c0d;
    display: table;
    margin: 15px auto 0;
    background: #fff;
}

.tpdvlpr a.vewdvl:hover {
    background: #b30c0d;
    color: #fff;
}

.tpdvlpr .whtdvlbx:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.prmcty p.cntsubhead {
    max-width: 100%;
    margin-bottom: 10px;
}

.prmcty .ctyval {
    position: relative;
    margin-bottom: 16px;
    transition-duration: 150ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.prmcty .ctyval a {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.6s ease-in-out;
}

.prmcty .ctyval a:hover:before {
    background: rgba(179, 12, 13, 0.6);
    z-index: 2;
}

.prmcty .ctyval a img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease-in-out;
}

.prmcty .ctyval a:hover img {
    transform: scale(1.1);
}

.prmcty .ctyvaltxt {
    z-index: 3;
}

.prmcty .col-sm-2 {
    padding: 0 8px;
}

.prmcty .ctyval a:before {
    position: absolute;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    content: "";
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.prmcty small {
    font-size: 14px;
    line-height: 20px;
    display: table;
    margin: 0 auto 40px;
}

.prmcty .ctyvaltxt {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 3;
}

.prmcty .ctyvaltxt h3 {
    font-weight: 700;
    font-size: 15px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.prmcty .ctyvaltxt p {
    opacity: 0.9;
    font-size: 11px;
    line-height: 16px;
    margin-bottom: 0;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.prmcty a {
    border-radius: 12px;
    overflow: hidden;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    display: block;
    height: 160px;
    position: relative;
}

.servcsc {
    background: #f9fafb;
}

.servcsc .serbxl {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    padding: 32px;
    background: #fff;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    border-radius: 12px;
    min-height: 330px;
    margin-bottom: 32px;
}

.servcsc .serbxl .sericn {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    background: #b30c0d;
    margin-bottom: 24px;
    text-align: center;
    line-height: 64px;
}

.servcsc .serbxl .sericn svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    color: #fff;
}

.servcsc .serbxl h3 {
    font-weight: 700;
    line-height: 32px;
    font-size: 24px;
    color: #111827;
}

.servcsc .serbxl p {
    margin-bottom: 0;
    line-height: 1.625;
}

.servcsc .row {
    margin-top: 48px;
}



.popularprosch {
    background: #f9fafb;
}

.popularprosch .prplst {
    max-width: 1152px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 48px;
}

.popularprosch .prplst .flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.popularprosch .prplst .flex a {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    color: #374151;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    display: inline-block;
    padding: 8px 16px;
    margin-right: 10px;
}

.popularprosch .prplst .flex a:hover {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.seosesch {
    background: #f9fafb;
}

.seosesch .seowhtbx {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    background: #fff;
    padding: 48px;
    border-radius: 16px;
    max-width: 1024px;
    margin-right: auto;
    margin-left: auto;
}

.seosesch .seowhtbx h2.cntmntle {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 24px;
}

.tp-custom-accordion {
    max-width: 896px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 48px;
}

.tp-custom-accordion .accordion-items {
    background-color: #f9fafb;
    border-radius: 12px;
    margin-bottom: 16px;
}

.tp-custom-accordion .accordion-items .accordion-header .accordion-buttons {
    padding: 24px;
    border: none;
    background: transparent;
    text-align: left;
    color: #111827;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tp-custom-accordion .accordion-items .accordion-header {}

.tp-custom-accordion .accordion-items .accordion-header .accordion-buttons[aria-expanded="true"] svg {
    transform: rotate(-180deg);
}

.tp-custom-accordion .accordion-items .accordion-header svg {
    width: 16px;
    height: 16px;
    fill: #b30c0d;
    color: #b30c0d;
}

.tp-custom-accordion .accordion-items .accordion-body {
    color: #4b5563;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 0;
}

.contnthb {
    background-color: #f9fafb;
}

.contnthb .nav {
    justify-content: center;
    border-bottom: none !important;
    width: auto !important;
    margin: 0 auto !important;
    display: table !important;
    margin-bottom: 48px !important;
    margin-top: 40px !important;
}

.contnthb .nav li {
    display: inline-block;
}

.contnthb .nav li button {
    padding: 12px 32px;
    font-weight: 600;
    color: #374151;
    border-radius: 8px;
    margin-right: 8px;
    background: #fff;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    margin-right: 15px;
}

.contnthb .nav li button.active {
    background-color: #b30c0d;
    color: #fff;
}

.contnthb .hubox {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contnthb .hubox:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(179, 12, 13, 0.2);
}

.contnthb .hubox .huboximg {
    height: 224px;
    overflow: hidden;
}

.contnthb .hubox .huboximg img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.contnthb .hubox .hubctn {
    padding: 24px;
}

.contnthb .hubox .hubctn .items-center {
    margin-bottom: 12px;
}

.contnthb .hubox .hubctn .bglpwrp {
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    padding: 4px 12px;
    border-radius: 9999px;
    background: #b30c0d;
    color: #fff;
    margin-right: 8px;
}

.contnthb .hubox .hubctn .minrd {
    color: #6b7280;
    font-size: 14px;
    line-height: 20px;
}

.contnthb .hubox .hubctn h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
    color: #111827;
}

.contnthb .hubox .hubctn p {
    margin-bottom: 16px;
    color: #4b5563;
    min-height: 75px;
}

.contnthb .hubox .hubctn a.redmrlnk {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    color: #b30c0d;
}

.contnthb .hubox .hubctn a.redmrlnk svg {
    margin-left: 8px;
    width: 14px;
    height: 16px;
    fill: #b30c0d;
}

.whtfrmcnt .frmmaxwdth {
    max-width: 896px;
    margin-right: auto;
    margin-left: auto;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    border-radius: 16px;
    overflow: hidden;
}

.whtfrmcnt .frmmaxwdth .row {
    margin: 0;
}

.whtfrmcnt .frmmaxwdth .col-sm-6 {
    padding: 0;
}

.whtfrmcnt .frmmaxwdth .rdgrpwrp {
    background: #B30C0D;
    background: linear-gradient(90deg, rgba(179, 12, 13, 1) 0%, rgba(138, 9, 9, 1) 100%);
    padding: 48px;
    height: 100%;
}

.whtfrmcnt .frmmaxwdth .rdgrpwrp h2 {
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 16px;
    color: #fff;
}

.whtfrmcnt .frmmaxwdth .rdgrpwrp p {
    color: #f3f4f6;
    margin-bottom: 32px;
}

.whtfrmcnt .frmmaxwdth .rdgrpwrp .cntdtwdth {}

.whtfrmcnt .frmmaxwdth .rdgrpwrp .cntdtwdth .items-center {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.whtfrmcnt .frmmaxwdth .rdgrpwrp .cntdtwdth .items-center .icnlftl {
    background: rgba(255, 255, 255, 0.2);
    height: 48px;
    width: 48px;
    border-radius: 100%;
    line-height: 48px;
    text-align: center;
    margin-right: 16px;
}

.whtfrmcnt .frmmaxwdth .rdgrpwrp .cntdtwdth .items-center .icnlftl svg {
    height: 24px;
    width: 24px;
    fill: #fff;
    color: #fff;
}

.whtfrmcnt .frmmaxwdth .rdgrpwrp .cntdtwdth .items-center .cnlrtg {}

.whtfrmcnt .frmmaxwdth .rdgrpwrp .cntdtwdth .items-center .cnlrtg h4 {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    margin-bottom: 4px;
}

.whtfrmcnt .frmmaxwdth .rdgrpwrp .cntdtwdth .items-center .cnlrtg p {
    font-size: 14px;
    line-height: 20px;
    color: #f3f4f6;
    margin-bottom: 0;
}

.whtfrmcnt .frmmaxwdth .grypwrp {}

.whtfrmcnt .frmmaxwdth .grypwrp label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
    line-height: 20px;
    display: block;
    margin-bottom: 8px;
}

.whtfrmcnt .frmmaxwdth .grypwrp .form-control {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    background-color: #fff;
    border-radius: 8px;
}

.whtfrmcnt .frmmaxwdth .grypwrp .form-control:focus {
    outline: inherit;
    box-shadow: none;
}

.whtfrmcnt .frmmaxwdth .grypwrp .frmfl {
    margin-bottom: 24px;
}

.whtfrmcnt .frmmaxwdth .grypwrp select.form-control {
    -moz-appearance: auto;
    appearance: auto;
    -webkit-appearance: auto;
}

.whtfrmcnt .frmmaxwdth .grypwrp {
    background: #f9fafb;
    background: linear-gradient(90deg, rgba(249, 250, 251, 1) 0%, rgba(255, 255, 255, 1) 100%);
    padding: 48px;
}

.whtfrmcnt .frmmaxwdth .grypwrp .submitbtn {
    font-weight: 700;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    color: #fff;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
    background: linear-gradient(90deg, rgba(179, 12, 13, 1) 0%, rgba(138, 9, 9, 1) 100%);
    color: #fff;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border: none;
}

.whtfrmcnt .frmmaxwdth .grypwrp .submitbtn svg {
    width: 14px;
    height: 16px;
    fill: #b30c0d;
    margin-left: 8px;
}

.whtfrmcnt .frmmaxwdth .grypwrp .submitbtn:hover {
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    transform: scale(1.05);
}

.possntielne {
    background: #f9fafb;
}

.possntielne .maxdthvnt {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

.possntielne .nav {
    justify-content: center;
    margin: 48px 0;
}

.possntielne .nav li {
    display: inline-block;
}

.possntielne .nav li button {
    padding: 16px 32px;
    font-weight: 600;
    color: #374151;
    border-radius: 8px;
    margin-right: 8px;
    background: #fff;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    margin-right: 15px;
}

.possntielne .nav li button svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.possntielne .nav li button.active {
    background-color: #b30c0d;
    color: #fff;
}

.possntielne .tab-pane {
    background-color: #fff;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    border-radius: 16px;
}

.possntielne .tab-pane .items-center {
    justify-content: space-between;
    margin-bottom: 32px;
}

.possntielne .tab-pane .items-center .flexlftctn {}

.possntielne .tab-pane .items-center .flexlftctn h3 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.possntielne .tab-pane .items-center .flexlftctn p {
    color: #4b5563;
}

.possntielne .tab-pane .items-center .flexrtgctn {
    text-align: right;
}

.possntielne .tab-pane .items-center .flexrtgctn strong {
    color: #b30c0d;
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    display: block;
}

.possntielne .tab-pane .items-center .flexrtgctn span {
    font-size: 14px;
    line-height: 20px;
    color: #4b5563;
}

.possntielne .tab-pane .transbrdr {
    padding: 24px;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
}

.possntielne .tab-pane .transbrdr .flextransimg {
    border-radius: 8px;
    overflow: hidden;
    height: 160px;
    margin-bottom: 16px;
}

.possntielne .tab-pane .transbrdr .flextransimg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.possntielne .tab-pane .transbrdr h4 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}

.possntielne .tab-pane .transbrdr p {
    margin-bottom: 4px;
}

.possntielne .tab-pane .transbrdr small {
    font-size: 14px;
    line-height: 20px;
    color: #4b5563;
}

.possntielne .tab-pane .transbrdr .immediatepossession {
    margin-top: 16px;
    color: #16a34a;
    font-weight: 600;
}

.possntielne .tab-pane .transbrdr .immediatepossession svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    vertical-align: top;
    margin-top: 4px;
}

.grayradstatic {
    padding: 26px;
    background: #f9fafb;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grayradstatic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(179, 12, 13, 0.2);
}

.clntrevw {
    margin-top: 50px;
}

.clientsuccess .row {
    margin-top: 48px;
}

.clntrevw h3 {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #111827;
}

.clntrevw .whtlnt {
    padding: 24px;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
}

.clntrevw .whtlnt .clientimg {
    border-radius: 100%;
    margin-right: 12px;
    width: 48px;
    height: 48px;
    overflow: hidden;
}

.clntrevw .flex.items-center {
    margin-bottom: 16px;
}

.clntrevw .clientimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clntrevw .clientinf {}

.clntrevw .clientinf h5 {
    font-weight: 700;
    margin-bottom: 0;
    font-size: 16px;
}

.clntrevw .ratng {}

.clntrevw .ratng .starating {
    display: inline-block;
}

.clntrevw .ratng .starating svg {
    width: 14px;
    height: 14px;
    fill: #eab308;
    color: #eab308;
}

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

.clntrevw .owl-prev {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    border: 2px solid #b30c0d !important;
    margin-right: 10px;
}

.clntrevw .owl-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    border: 2px solid #b30c0d !important;
}

.clntrevw .owl-nav span {
    color: #b30c0d;
    font-size: 40px;
    line-height: 30px;
}

.clntrevw .owl-nav {
    position: absolute;
    right: 0;
    top: -75px;
}

.clntrevw .clntrevwcar {
    margin-top: 40px;
}

.grayradstatic .flex.items-center {
    margin-bottom: 22px;
}

.grayradstatic .flex.items-center img {
    width: 64px;
    height: 64px;
    border-radius: 100%;
    margin-right: 16px;
}

.grayradstatic .avtrdt {}

.grayradstatic .avtrdt h4 {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0;
    font-size: 16px;
}

.grayradstatic .avtrdt span {
    font-size: 14px;
    line-height: 20px;
    color: #4b5563;
}

.grayradstatic .ratng {
    margin-bottom: 16px;
}

.grayradstatic .ratng svg {
    width: 18px;
    height: 24px;
    color: #eab308;
}

.grayradstatic .ratng .starating {
    display: inline-block;
    vertical-align: middle;
}

.grayradstatic p {
    font-style: italic;
}

.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 64px 0;
}

.footer .ftrlgo {
    margin-bottom: 24px;
}

.footer .ftrlgo .lgoicn {
    border-radius: 8px;
    background-color: #b30c0d;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    vertical-align: middle;
}

.footer .ftrlgo .lgoicn svg {
    fill: #fff;
    width: 15px;
    height: 20px;
    color: #fff;
}

.footer .ftrlgo .ftrtle {
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
}

.footer .ftrlgo .ftrtle h3 {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 0;
}

.footer .ftrlgo .ftrtle span {
    color: #9ca3af;
    font-size: 14px;
    line-height: 20px;
}

.footer .sclbtnftr {
    display: flex;
    align-items: center;
}

.footer .sclbtnftr a {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-right: 16px;
    background: rgba(255, 255, 255, 0.1);
    text-align: center;
    line-height: 36px;
}

.footer .sclbtnftr a:last-child {
    margin-right: 0;
}

.footer .sclbtnftr a svg {
    width: 15px;
    height: 15px;
    fill: #fff;
    color: #fff;
}

.footer .sclbtnftr a:hover {
    background: #b30c0d;
}

.footer p {
    color: #d1d5db;
}

.footer .ftrfstdv p {
    padding-right: 30px;
}

.footer h4 {
    color: #ffffff;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

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

.footer ul li {
    margin-bottom: 14px;
}

.footer ul li:last-child {
    margin-bottom: 0;
}

.footer ul li a {
    color: #d1d5db;
    font-size: 16px;
}

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

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

.footer .frthdv ul li {
    margin-bottom: 14px;
    display: block;
    color: #d1d5db;
}

.footer .frthdv ul li svg {
    width: 15px;
    height: 15px;
    fill: #b30c0d;
    color: #b30c0d;
    float: left;
    margin-bottom: 10px;
    margin-right: 10px;
    margin-top: 5px;
}

.footer .border-t {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #374151;
}

.footer .border-t p {
    font-size: 14px;
    line-height: 20px;
    color: #9ca3af;
    margin-bottom: 0;
}

.footer .border-t .btmprvclnk {
    text-align: right;
}

.footer .border-t .btmprvclnk a {
    font-size: 14px;
    line-height: 20px;
    color: #9ca3af;
    display: inline-block;
    margin-right: 24px;
}

.footer .border-t .btmprvclnk a:last-child {
    margin-right: 0;
}

.tpcar .owl-prev {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    border: 2px solid #b30c0d !important;
    margin-right: 10px;
    left: 0;
    position: absolute;
    top: 40%;
}

.tpcar .owl-next {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
    border: 2px solid #b30c0d !important;
    right: 0;
    position: absolute;
    top: 40%;
}

.tpcar .owl-nav span {
    color: #b30c0d;
    font-size: 40px;
    line-height: 30px;
}

.modal-backdrop.fade.show {
    opacity: .8;
}

.modal .modal-header {
    display: block;
    text-align: center;
    background: linear-gradient(90deg, rgba(179, 12, 13, 1) 0%, rgba(138, 9, 9, 1) 100%);
}

.modal .modal-header .modal-title {
    text-transform: capitalize;
    font-weight: 700;
    color: #fff;
}

.modal .btn-close {
    right: -30px;
    position: absolute;
    color: #fff;
    top: 0;
    background-color: #fff;
    margin: 0;
    opacity: 1;
}

.modal form .form-control {
    margin-bottom: 20px;
}

.modal form textarea.form-control {
    height: 100px;
}

.modal form input[type="submit"] {
    background: linear-gradient(90deg, rgba(179, 12, 13, 1) 0%, rgba(138, 9, 9, 1) 100%);
    color: #fff;
    border-radius: 8px;
    padding: 8px 16px;
    border: none;
    border: 1px solid #b30c0d;
}

.modal form input[type="submit"]:hover {
    background: transparent;
    color: #b30c0d;
}

.modal form select {
    -moz-appearance: auto;
    appearance: auto;
    -webkit-appearance: auto;
}

/* ==========================================
   Header Override Fixes - Force new design
========================================== */
/* Header base styles - all screen sizes */
.header {
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    z-index: 999 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    padding: 0 !important;
}

.header .container {
    max-width: 1400px !important;
    padding: 0 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* Logo: never shrink */
.header .flex.items-center.space-x-2 {
    flex-shrink: 0 !important;
}

/* Desktop-only header styles */
@media (min-width: 992px) {
    .header .flex.items-center.justify-between {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 16px 0 !important;
    }

    .header .menu {
        display: flex !important;
        align-items: center !important;
    }

    .header .main-menu {
        display: block !important;
    }

    .header .main-menu nav ul {
        display: flex !important;
        align-items: center !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .header .main-menu nav ul li {
        display: inline-block !important;
        margin-right: 25px !important;
    }

    .header .main-menu nav ul li:last-child {
        margin-right: 0 !important;
    }

    .header .main-menu nav ul li a {
        font-size: 16px !important;
        color: #374151 !important;
        font-weight: 500 !important;
        text-decoration: none !important;
    }

    .header .btnthrd {
        display: flex !important;
        align-items: center !important;
    }

    .header .btnthrd .phnnmbr {
        display: flex !important;
        align-items: center !important;
        color: #374151 !important;
        font-weight: 600 !important;
        margin-right: 15px !important;
        text-decoration: none !important;
    }

    .header .btnthrd .lstpropertybtn {
        border-radius: 8px !important;
        padding: 12px 24px !important;
        background: linear-gradient(135deg, #b30c0d 0%, #8a0909 100%) !important;
        color: #fff !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        display: inline-block !important;
    }

    .mobile-header__menu-button {
        display: none !important;
    }
}

/* ==========================================
   Fix for 'Why Choose' Section (Ported from type-property-list.css)
   ========================================== */
.whychoose {
    background: #a30a0a;
    padding: 80px 0;
}

.whychoose .cntmntle {
    color: #fff !important;
}

.whychoose .cntsubhead {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 50px;
    font-size: 16px;
}

.why-choose-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.why-choose-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.wc-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b30c0d;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Ensure SVG fits within the wrapper */
.wc-icon-wrapper svg {
    width: 32px;
    height: 32px;
    fill: #b30c0d;
}

.why-choose-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-choose-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}