/* ================================
   RESET
================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================================
   ROOT VARIABLES
================================ */
:root {
    --black: #000;
    --primary-font: "Figtree", sans-serif;
    --secondary-font: "Poppins", sans-serif;
    --theme-color: #386C44;
    --white-color: #fff;
    --gold-color: #DFB556;
}

/* ================================
   BODY
================================ */
body {
    font-family: var(--secondary-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white-color);
    overflow-x: hidden;
}

/* ================================
   TYPOGRAPHY
================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
    color: var(--gold-color);
    line-height: 1.2;
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 40px;
}

p {
    font-size: 16px;
    font-family: var(--secondary-font);
    font-weight: 400;
    margin-bottom: 0px;
    color: #5C5E61;
    line-height: 28px;
    text-align: justify;
}

/* ================================
   LINKS
================================ */
a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

.space1 {
    height: 1px;
}

.space2 {
    height: 2px;
}

.space3 {
    height: 3px;
}

.space4 {
    height: 4px;
}

.space5 {
    height: 5px;
}

.space6 {
    height: 6px;
}

.space7 {
    height: 7px;
}

.space8 {
    height: 8px;
}

.space9 {
    height: 9px;
}

.space10 {
    height: 10px;
}

.space11 {
    height: 11px;
}

.space12 {
    height: 12px;
}

.space13 {
    height: 13px;
}

.space14 {
    height: 14px;
}

.space15 {
    height: 15px;
}

.space16 {
    height: 16px;
}

.space17 {
    height: 17px;
}

.space18 {
    height: 18px;
}

.space19 {
    height: 19px;
}

.space20 {
    height: 20px;
}


/* ================================
   LISTS
================================ */
ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

li {
    list-style: none;
}

/* ================================
   IMAGES
================================ */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================
   SECTION SPACING
================================ */
section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

/* ================================
   BUTTONS
================================ */
button {
    border: none;
    cursor: pointer;
    font-family: var(--primary-font);
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: var(--primary-font);
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--black);
    color: var(--white-color);
}

.btn-primary:hover {
    background: #333;
}

/* ================================
   COMMON SPACING UTILITIES
================================ */
.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}



/* ================================
   Navbar Css
================================ */

header.ur-header {
    background-color: var(--theme-color);
}

.sticky-wrapper {
    -webkit-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
}

header.ur-header .menu-area {
    position: relative;
}

header.ur-header .menu-area nav.main-menu {
    position: relative;
}

header.ur-header .menu-area .main-menu>ul>li {
    margin: 0px 15px;
}

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.main-menu>ul>li>a {
    padding: 25px 0;
}

.main-menu a {
    display: block;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--primary-font);
    color: var(--black);
    text-transform: capitalize;
}

header.ur-header .main-menu>ul>li>a:before {
    content: '';
    position: absolute;
    height: 1px;
    left: 0;
    background: var(--gold-color);
    width: 0%;
    margin-top: 30px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

header.ur-header .menu-area .main-menu>ul>li>a:hover:before,
header.ur-header .menu-area .main-menu>ul>li>a.active:before {
    width: 100%;
}

header.ur-header .menu-area .main-menu ul.sub-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: var(--white-color);
    visibility: hidden;
    min-width: 160px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 10px 20px 10px 20px;
    left: -27px;
    opacity: 0;
    z-index: -1;
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
    border-radius: 0;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    border-bottom: 3px solid var(--theme-color);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

header.ur-header .menu-area .main-menu ul li:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 9;
}

.call-us-info .primary-btn1 {
    padding: 12px 12px;
    background-color: var(--gold-color);
}

header.ur-header .menu-area header.ur-header .menu-area.main-menu ul.sub-menu li {
    display: block;
    margin: 0 0;
    padding: 0px 0px;
    margin-bottom: 5px;
}

.header-logo a img {
    max-width: 180px;
}

.main-menu ul li:first-child {
    margin-left: 0 !important;
}

.main-menu ul.sub-menu li a {
    position: relative;
    padding-left: 0;
    text-transform: capitalize;
}

.main-menu ul.sub-menu a {
    font-size: 16px;
    line-height: 30px;
    color: var(--theme-color);
}

.main-menu a {
    display: block;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    font-family: var(--body-font);
    color: var(--white-color);
    text-transform: capitalize;
}

header.ur-header .menu-area .main-menu ul li:has(.sub-menu)>a:after,
header.ur-header .menu-area .main-menu ul li:has(.mega-menu)>a:after,
header.ur-header .menu-area .main-menu ul li.menu-item-has-children>a:after {
    content: "";
    background-image: url(/assets/images/angle-down.svg);
    display: inline-block;
    margin-left: 3px;
    color: var(--white-color);
    transition: 0.3s ease-in-out;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
    filter: brightness(0) invert(1);
}

header.ur-header .menu-area .main-menu ul li:has(.sub-menu)>a:hover:after,
header.ur-header .menu-area .main-menu ul li:has(.mega-menu)>a:hover:after,
header.ur-header .menu-area .main-menu ul li.menu-item-has-children>a:hover:after {
    content: "";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    top: 41%;
    color: var(--theme-color);
}

span.call-us-icon img {
    max-width: 40px;
}

.call-us {
    display: flex;
    align-items: center;
    gap: 15px;
}

.th-menu-toggle {
    width: 56px;
    height: 56px;
    padding: 0;
    font-size: 20px;
    border: none;
    border-radius: 8px;
    background-color: var(--theme-color);
    color: var(--white-color);
    display: inline-block;
}

li.menu-item-has-children ul.sub-menu li {
    display: block;
    margin-bottom: 5px;
}

.ur-mobile-title a img {
    max-width: 180px;
}

/* toggle btn css */

/* Mobile toggle button look (optional) */
.th-menu-toggle {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 10px;
    background: var(--gold-color);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Overlay */
.ur-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
    z-index: 9998;
}

/* Drawer */
.ur-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: #2f5b45;
    /* aapke theme ke hisaab se */
    color: var(--white-color);
    transform: translateX(105%);
    transition: .25s ease;
    z-index: 9999;
    padding: 18px 16px;
    overflow-y: auto;
}

/* Drawer header */
.ur-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    margin-bottom: 12px;
}

.ur-mobile-title {
    font-size: 18px;
    font-weight: 600;
}

.ur-mobile-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    color: var(--white-color);
}

/* Menu list */
.ur-mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ur-mobile-menu>li {
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ur-mobile-menu a {
    display: flex;
    justify-content: space-between;
    padding: 12px 4px;
    color: var(--white-color);
    text-decoration: none;
    font-size: 16px;
    position: relative;
}

.ur-mobile-menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: none;
}

li.menu-item-has-children.open>a::after {
    top: 23% !important;
}

.ur-mobile-menu li.open>.sub-menu {
    display: block;
}

.ur-mobile-menu .sub-menu a {
    font-size: 14px;
    padding: 10px 10px;
    opacity: .95;
}

body.ur-menu-open .ur-mobile-overlay {
    opacity: 1;
    visibility: visible;
}

body.ur-menu-open .ur-mobile-nav {
    transform: translateX(0);
}

@media (min-width: 1200px) {

    .ur-mobile-nav,
    .ur-mobile-overlay {
        display: none !important;
    }
}


.ur-mobile-menu li.menu-item-has-children>a::after {
    content: "";
    background-image: url(/assets/images/angle-down.svg);
    display: inline-block;
    margin-left: 3px;
    color: var(--white-color);
    transition: 0.3s ease-in-out;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.ur-mobile-menu li.open>a::after {
    transform: rotate(180deg);
}


/* ================================
   Hero Css
================================ */

section.banner-area {
    position: relative;
    background-position: top center;
    height: 560px;
    align-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url('/assets/images/hero-1.jpg');
    background-size: cover;
}

.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.banner-content h5 {
    color: var(--white-color);
    letter-spacing: 0.6px;
    font-size: 18px;
}

.banner-content h1 {
    color: var(--gold-color);
    font-weight: 700;
    letter-spacing: 0.6px;
}

.banner-content h2 {
    color: var(--white-color);
    font-weight: 500;
}

/* .theme-btn {
    width: fit-content;
    background-color: #456246;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 20px;
} */

.primary-btn1 {
    background-color: #456246;
    font-weight: 500;
    font-size: 15px;
    color: var(--white-color);
    letter-spacing: 0.48px;
    line-height: 1;
    padding: 15px 18px;
    border-radius: 10px;
    position: relative;
    align-items: center;
    display: inline-flex;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.primary-btn1>span {
    transition: opacity 0.3s, transform 0.3s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    background-color: transparent;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.primary-btn1>span:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0;
    transform: translate(0, 100%);
    transition: opacity 0.3s, transform 0.3s;
    transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
    white-space: nowrap;
}

.primary-btn1>span svg {
    fill: var(--white-color);
    transition: 0.5s;
}

.primary-btn1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 102% 102%;
    border-radius: inherit;
    transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    opacity: 0;
    z-index: -1;
}

.primary-btn1::after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(110%);
    background-color: var(--gold-color);
    overflow: hidden;
    transition: opacity 0.5s, transform 0.5s;
    z-index: -1;
}

.primary-btn1:hover>span {
    transform: translateY(-150%);
    opacity: 0;
}

.primary-btn1:hover>span:nth-child(2) {
    opacity: 1;
    transform: translate(0%, -50%);
}

.primary-btn1:hover::after {
    transform: translate(0);
    border-radius: 0;
}

.banner-content .theme-btn {
    margin: 0 auto;
    margin-top: 30px;
}







/* ================================
   About Section Css
================================ */


.about-content h3 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--gold-color);
}

section.about-area {
    background-color: #F4F3F1;
}

.about-imgs {
    position: relative;
    margin-left: 30px;
}

.about-img1 img {
    max-width: 340px;
    border-radius: 16px;
}

.about-img2 {
    position: relative;
    float: right;
    margin-top: -240px;
    z-index: 0;
}

.about-img2 img {
    max-width: 340px;
    border-radius: 16px;
}

.about-img1 {
    position: relative;
    z-index: 1;
}

.counter-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.counter-box {
    position: relative;
}

.counter-icon img {
    width: 60px;
    height: 60px;
}

.counter-box>h3 {
    color: var(--black);
    letter-spacing: 0.6px;
}

.counter-icon {
    margin-bottom: 8px;
}


/* ================================
   Location Section Css
================================ */

.section-heading {
    max-width: 650px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading p {
    text-align: center;
}

.location-grid {
    gap: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.loc-big {
    grid-row: span 2;
    grid-column: 1;
}

.loc-card {
    border-radius: 12px;
    display: block;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.loc-card:first-child {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.loc-card img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.loc-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgb(0 0 0 / 66%) 100%);
}

.loc-name {
    position: absolute;
    left: 14px;
    bottom: 12px;
    color: var(--white-color);
    font-weight: 600;
    z-index: 2;
    font-size: 20px;
    font-family: "Figtree", sans-serif;
}




/* ================================
   Featured Projects Section Css
================================ */



section.featured-project-area {
    background-color: #F4F3F1;
}

.project-box {
    position: relative;
    padding: 20px;
    background-color: var(--white-color);
}

.project-box {
    position: relative;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 16px;
}

.project-img img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.project-img {
    border-radius: 16px;
    height: 300px;
    margin-bottom: 20px;
    position: relative;
}

.tag-img {
    width: fit-content;
    position: absolute;
    top: 20px;
    left: 20px;
}

.tag-img>span>h4 {
    margin-bottom: 0;
    background-color: #6e00ff;
    color: var(--white-color);
    font-size: 16px;
    letter-spacing: 0.6px;
    border-radius: 4px;
    padding: 3px 10px;
}

.color-type-2>span>h4 {
    background-color: #f5b53d;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.project-content h3 {
    font-size: 25px;
    margin-bottom: 10px;
    letter-spacing: 0.6px;
    font-weight: 600;
}

.project-content p {
    margin-bottom: 10px;
    letter-spacing: 0.6px;
    font-size: 18px;
}

.project-content p.small-text {
    margin-bottom: 15px;
    letter-spacing: 0.6px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.project-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.location-point {
    display: flex;
    align-items: center;
    gap: 5px;
}

.section-bottom-btn {
    margin-top: 50px;
    text-align: center;
}





/* ================================
   Services Section Css
================================ */


section.services-area {
    background-color: #D3E0D7;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.services-box {
    position: relative;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 16px;
}

.services-img {
    margin-bottom: 20px;
}

.services-img img {
    max-width: 80px;
    margin: 0 auto;
}

.services-content h3 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.services-content p {
    text-align: center;
}

.bottom-text {
    margin-top: 50px;
}

.bottom-text p {
    text-align: center;
    letter-spacing: 0.6px;
}

.bottom-text p a {
    text-align: center;
    color: #456246;
    font-weight: 600;
}

/* ================================
   Product Section Css
================================ */


.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.product-box {
    position: relative;
    border: 1px solid #ECECEC;
    padding: 15px;
    border-radius: 16px;
    background-color: var(--white-color);
    box-shadow: 0px 0px 10px #cfcfcf;
}

.product-img {
    margin-bottom: 20px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.product-img {
    margin-bottom: 20px;
    border-radius: 10px;
    position: relative;
}

.product-content h3 {
    color: var(--black);
    font-size: 25px;
    margin-bottom: 5px;
    font-weight: 500;
    letter-spacing: 0.6px;
}

.features-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.product-content {
    margin-bottom: 10px;
}

.feature-item {
    font-size: 14px;
    font-family: var(--secondary-font);
    font-weight: 400;
    margin-bottom: 0px;
    color: #5C5E61;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-btn {
    display: flex;
    justify-content: space-between;
}

.product-btn .theme-btn.border-btn a.primary-btn1 {
    background-color: var(--white-color);
    border: 1.5px solid #456246;
    color: #456246;
}

.product-btn .theme-btn.border-btn a.primary-btn1>span svg {
    fill: #456246;
    transition: 0.5s;
}

.product-btn .theme-btn.border-btn a.primary-btn1::after {
    background-color: var(--white-color);
}




/* ================================
   Contact Area Section Css
================================ */

section.contact-area {
    background-color: #F4F3F1;
}

input:-webkit-autofill {
    background-color: transparent !important;
}

.contact-heading {
    margin-bottom: 30px;
}

.contact-heading h3 {
    margin-bottom: 15px;
}

.contact-detail-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.contact-detail-box .icon svg {
    stroke: #8E8E93;
    stroke-width: 1px;
}

.contact-form {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 16px;
    margin-left: auto;
    max-width: 500px;
}

.contact-form h3 {
    color: var(--black);
    font-size: 30px;
}

.contact-form p {
    font-size: 15px;
}

.contact-form form {
    margin-top: 30px;
}

.form-group label {
    color: var(--gold-color);
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 400;
}

.Vertical-Divider {
    width: 1.6px;
    height: 80px;
    margin: 10.5px 20.8px 2.5px 20.8px;
    transform: rotate(-340deg);
    background-color: #d9d9d9;
}

.form-group .input-group {
    padding: 12px 20px 12px 20px;
    border-radius: 10px;
    border: solid 1px #e5e5ea;
    background-color: var(--white-color);
    align-items: center;
}

.form-group .input-group .form-control {
    border: none;
    box-shadow: none;
    font-size: 16px;
    outline: none;
    color: #3A3A3C;
    line-height: normal;
    padding: 0 0 0 12px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group .input-group .form-select {
    border: none;
    box-shadow: none;
    font-size: 16px;
    outline: none;
    color: #3A3A3C;
    line-height: normal;
    padding: 0 0 0 12px;
}

.form-group .input-group textarea.form-control {
    padding-left: 0;
}

span.input-group-icon svg {
    width: 20px;
    height: 18px;
    stroke: #456246;
}

.submit-btn {
    margin-top: 12px;
}

/* ================================
   Newsletter Area Section Css
================================ */

.newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}

.newsletter-box {
    background-color: #D3E0D7;
    padding: 30px;
    border-radius: 16px;
    position: relative;
}

.newsletter-wrapper {
    display: flex;
    align-items: center;
}

.newsletter-content {
    margin-left: 20px;
}

.newsletter-img img {
    max-width: 180px;
}

.newsletter-img-width img {
    max-width: 120px;
}

.newsletter-content h3 {
    font-size: 25px;
    color: var(--black);
    font-weight: 600;
}

.newsletter-content p {
    font-size: 15px;
    line-height: normal;
}

.newsletter-btn {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
}


/* ================================
   Testimonials Area Section Css
================================ */


section.client-reviews-area {
    background-color: #F4F3F1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.testimonials-box {
    background-color: var(--white-color);
    padding: 25px;
    border-radius: 16px;
    position: relative;
    border: 1.5px solid #dfdfdf;
    /* box-shadow: 0px 0px 10px #cfcfcf; */
    margin: 0 10px;
}

.rating-stars {
    margin-bottom: 15px;
}

.rating-stars i {
    color: #FFA800;
    font-size: 22px;
}

.rating-content {
    margin-bottom: 15px;
}

.rating-img-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rating-img-area .img img {
    border-radius: 60%;
    max-width: 60px;
}

.rating-img-area .title h3 {
    margin-bottom: 0;
    font-size: 25px;
    color: var(--black);
}

.slick-prev {
    left: auto !important;
    top: -85px !important;
    right: 80px !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 8px 0 0 !important;
    border-radius: 6px !important;
    border: solid 1px #456246 !important;
    align-content: center !important;
}

.slick-next {
    top: -85px !important;
    right: 15px !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 8px 0 0 !important;
    border-radius: 6px !important;
    border: solid 1px #456246 !important;
    align-content: center !important;
}

.slick-next:before {
    content: "" !important;
    background-image: url(/assets/images/angle-right.svg) !important;
}

.slick-prev:before {
    content: "" !important;
    background-image: url(/assets/images/angle-left.svg) !important;
}

.slick-prev:before,
.slick-next:before {
    content: "" !important;
    position: absolute;
    top: 50%;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    left: 9px;
    background-size: cover;
    transform: translateY(-50%);
}



/* ================================
   Blog Area Section Css
================================ */



.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.img-part {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.blog-box {
    position: relative;
}

.blog-content {
    padding: 25px;
    padding-left: 0;
    padding-bottom: 0;
}

.blog-content-inner {
    padding-left: 20px;
    border-left: 1px solid var(--black);
}

ul.blog-meta {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0px 0px 12px 0px;
}

ul.blog-meta li {
    padding-right: 16px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #5C5E61;
    font-size: 13px;
}

.blog-content-inner h5 {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 30px;
    font-weight: 600;
    color: var(--black);
}

/* ================================
   Footer Area Section Css
================================ */


footer.tf-footer-area {
    position: relative;
    background-color: var(--theme-color);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 300px 180px 180px 320px;
    gap: 20px;
}

.footer-box {
    position: relative;
}

.footer-logo img {
    max-width: 200px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-widget {
    position: relative;
}

.footer-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: var(--white-color);
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    font-weight: 300;
    padding-left: 18px;
    display: block;
}

.footer-widget ul li a::before {
    content: "";
    background-image: url(/assets/images/double-right.svg);
    display: inline-block;
    color: var(--white-color);
    transition: 0.3s ease-in-out;
    position: absolute;
    background-repeat: no-repeat;
    background-size: cover;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    filter: brightness(0) invert(1);
}

.footer-widget-headng h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

ul.footer-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

ul.footer-info li h6 {
    color: var(--white-color);
    opacity: 0.6;
    font-weight: 300;
    font-size: 15px;
}

ul.footer-info li p {
    color: var(--white-color);
    font-size: 14px;
    text-align: start;
    line-height: 25px;
    font-weight: 300;
}

ul.footer-info li span.icon svg {
    stroke: var(--white-color);
    width: 25px;
    height: 25px;
    stroke-width: 1px;
}

.footer-widget p {
    color: var(--white-color);
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    font-weight: 300;
    text-align: start;
}

.copyright-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #8d8d8d;
    padding-top: 20px;
}

.copyright-footer .content p {
    color: var(--white-color);
    font-size: 13px;
    text-align: start;
}

.footer-social-media h3 {
    margin-bottom: 0;
    color: var(--white-color);
    font-size: 18px;
}

.footer-social-media {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-media ul {
    display: flex;
    align-items: center;
    gap: 2px;
}

.footer-social-media ul li a {
    height: 30px;
    width: 30px;
    display: flex;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 6px 0 0;
    transition: all .4s;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

.footer-social-media ul li a svg {
    font-size: 14px;
    color: #fff;
}

.copyright-footer .content p a {
    color: var(--gold-color);
    font-weight: 500;
}


/* 

*/


.breadcrumb-area {
    padding-top: 20px;
    position: relative;
    padding-bottom: 0px;
    border-bottom: 1px solid #E5E7EB;
}

li.breadcrumb-item a {
    font-size: 14px;
    font-weight: 400;
    color: var(--black);
}

.breadcrumb-item+.breadcrumb-item {
    align-items: center;
    display: flex;
}

.breadcrumb-item+.breadcrumb-item:before {
    height: 18px;
    margin-right: 6px;
    padding-right: 0;
    width: 16px;
}

.breadcrumb-item+.breadcrumb-item:before {
    color: var(--fn-breadcrumb-divider-color);
    content: var(--fn-breadcrumb-divider, url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23333d4c' viewBox='0 0 24 24'%3E%3Cpath d='M8.381 5.381a.874.874 0 0 1 1.237 0l6 6a.874.874 0 0 1 0 1.237l-6 6a.874.874 0 1 1-1.237-1.237L13.763 12 8.381 6.619a.874.874 0 0 1 0-1.237z'/%3E%3C/svg%3E"));
    float: left;
}

.breadcrumb-item.active {
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-color);
}

section.bg-color-section {
    padding: 0;
    background-color: #FAFAFA;
    overflow: visible;
}

.profile-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-name h1 {
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--black);
    font-weight: 600;
}

.profile-reviews-area ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.profile-reviews-area ul>li svg {
    fill: transparent;
    color: #6c727f;
    width: 16px;
    height: 16px;
}

span.profile-review-count {
    font-size: 12px;
    color: #6c727f;
}

.profile-details {
    padding: 20px 0;
}

.property-imgs-grid {
    gap: 16px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.property-imgs:first-child {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.property-imgs {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 12px;
}

.property-imgs img {
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transition: 0.4s;
}

.property-imgs img:hover {
    transform: scale(1.08);
}

.property-imgs-area {
    padding: 0px 0 30px;
}

.property-imgs::before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0;
    z-index: 1;
    transition: 0.2s ease-in-out;
    border-radius: 12px;
}

.property-imgs--last:before {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.4;
    z-index: 1;
    border-radius: 12px;
}

.property-imgs:hover:before {
    opacity: 0.4;
}

.show-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    bottom: 30px;
    width: 100%;
    z-index: 2;
}

.show-all-btn button {
    height: 44px;
    padding: 0px 24px 0px 24px;
    color: #000;
    background-color: #FFFFFF;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    gap: 10px;
}

.show-all-btn button svg {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.box-property {
    background-color: #FFFFFF;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #E5E7EB;
    border-radius: 12px 12px 12px 12px;
    padding: 30px;
    margin-bottom: 30px;
}


.inner-banner .inner {
    position: relative;
    display: block;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    z-index: 5;
}

.inner-banner .inner>nav ol {
    justify-content: center;
}

section.inner-banner {
    position: relative;
    background-position: top center;
    align-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(/assets/images/breadcrumb-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.inner-banner .inner h1 {
    color: #fff;
}

.inner-banner .inner>nav ol li a {
    color: #fff;
}

.inner-banner .inner>nav ol .breadcrumb-item.active {
    color: #fff;
    filter: brightness(0) invert(1);
}

.my-listing-attributes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

.my-listing-attribute {
    display: flex;
    align-items: center;
    gap: 20px;
}

.my-listing-attribute-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.my-listing-attribute-icon svg {
    fill: #2563EB;
    stroke: #2563EB;
    height: 32px;
    width: auto;
    display: block;
}

.my-listing-attribute-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

span.my-listing-attribute-value-text {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    font-family: "Figtree", sans-serif;
}

span.my-listing-attribute-text-after {
    font-size: 12px;
    color: #6c727f;
}

.property-box-2 h3 {
    font-size: 25px;
    font-weight: 600;
    color: var(--theme-color);
    margin-bottom: 25px;
}

.property-box-2 p {
    font-size: 14px;
    color: #6c727f;
}

.my-details-listing-attributes-grid-list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 60px;
    grid-row-gap: 15px;
    display: grid;
}

.my-details-listing-attributes-list {
    padding-bottom: 10px;
    border-bottom-color: #E5E7EB;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    display: flex;
    gap: 2px;
    width: 100%;
    justify-content: space-between;
}

.my-details-listing-attributes-list-label {
    font-size: 16px;
    font-family: "Figtree", sans-serif;
    font-weight: 600;
}

.my-details-listing-attributes-list-value {
    text-align: right;
    font-size: 16px;
    font-weight: 400;
    color: #6c727f;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

.feature-list {
    display: flex;
    align-items: center;
}

.feature-icon svg {
    stroke: #2563EB;
    height: 22px;
    width: auto;
}

.feature-title {
    margin-left: 10px;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    font-family: "Figtree", sans-serif;
}

.property-details-boxes .contact-form {
    margin-bottom: 30px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #E5E7EB;
    border-radius: 12px 12px 12px 12px;
}

/*  */



.custom-gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.custom-gallery-popup img {
    max-width: 90%;
    max-height: 90%;
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: white;
    cursor: pointer;
    padding: 10px;
}

.gallery-prev {
    left: 40px;
}

.gallery-next {
    right: 40px;
}

.floor-layout-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
    row-gap: 30px;
}

.property-box-5 img {
    max-width: 360px;
}

.floor-img img {
    width: 100%;
    height: 100%;
}

.floor-img {
    cursor: pointer;
    overflow: hidden;
}

.floor-img img {
    transition: 0.4s;
}

.floor-img:hover img {
    transform: scale(1.08);
}

.layout-gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.layout-gallery-popup img {
    max-width: 90%;
    max-height: 90%;
}

.layout-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.layout-prev,
.layout-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: var(--white-color);
    cursor: pointer;
}

.layout-prev {
    left: 40px;
}

.layout-next {
    right: 40px;
}

.extra-gallery-img {
    display: none;
}

.call-us-btn-area {
    margin-bottom: 30px;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #E5E7EB;
    border-radius: 12px 12px 12px 12px;
    background-color: var(--white-color);
    padding: 30px;
}

.right-side-wrapper {
    position: sticky;
    top: 20px;
    margin-bottom: 30px;
}

.call-us-btn-area img {
    max-width: 60px;
}

.call-us-btn-area-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-us-btn-area h3 {
    color: var(--black);
    font-size: 30px;
    margin-bottom: 30px;
}