* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
/* :focus {
    outline: 0;
    box-shadow: none;
}
:focus-visible {
    outline: none;
} */
body {
    padding: 0;
    margin: 0;
    font-family: var(--f-family-inter);
    font-size: var(--f-fs-font-16);
    line-height: var(--space-24);
    font-weight: 400;
    color: var(--color-body-text);
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
a {
    color: var(--color-heading);
    text-decoration: none;
}
a:hover {
    color: var(--color-primary);
    text-decoration: none;
}
/*b,
strong {
    font-weight: 500;
}*/
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}
h1,
h2,
h4,
h5,
h6 {
    color: var(--color-body-text);
}
.container {
    max-width: 1170px;
    padding: 0 15px;
}
.z-1 {
    z-index: 1;
}
.z-n1 {
    z-index: -1;
}
.h1-title {
    /* font-size: clamp(2.375rem, -0.5035rem + 6.0046vw, 4rem);
    line-height: clamp(2.875rem, -0.0035rem + 6.0046vw, 4.5rem);
    font-size: clamp(2rem, -1.5427rem + 7.3903vw, 4rem);
    line-height: clamp(2.1875rem, -1.9088rem + 8.545vw, 4.5rem);*/

    /* font-size: clamp(1.75rem, -2.2356rem + 8.3141vw, 4rem);
    line-height: clamp(2.1875rem, -1.9088rem + 8.545vw, 4.5rem); */

    font-size: var(--h1-font-size);
    line-height: var(--h1-line-height);

    font-weight: var(--f-fw-semibold);
    color: var(--color-white);
}
.sub-title {
    font-size: var(--f-fs-font-14);
    line-height: var(--f-fs-font-20);
    font-weight: var(--f-fw-medium);
    color: var(--color-accent-light);
    text-transform: uppercase;
}
.h2-title {
    /* font-size: clamp(1.625rem, 0.5179rem + 2.3095vw, 2.25rem);
    line-height: clamp(1.875rem, 0.3251rem + 3.2333vw, 2.75rem); */

    /* font-size: clamp(1.375rem, -0.1749rem + 3.2333vw, 2.25rem);
    line-height: clamp(1.6875rem, -0.1946rem + 3.9261vw, 2.75rem); */

    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);

    font-weight: var(--f-fw-semibold);
}
.h3-title {
    font-size: var(--f-fs-font-18);
    line-height: var(--space-28);
    font-weight: var(--f-fw-semibold);
}
.text-18 {
    font-size: var(--f-fs-font-18);
    line-height: var(--space-28);
}
.py-80 {
    padding: 80px 0;
}
.py-100 {
    padding: 100px 0;
}
.py-150 {
    padding: 150px 0;
}
.radius-8 {
    border-radius: var(--radius-8);
}
.mb-56 {
    margin-bottom: 56px;
}
.color-heading {
    color: var(--color-heading);
}
.bg-surface {
    background-color: var(--color-surface);
}
.lk-btn-primary,
.lk-btn-secondary {
    padding: 11px 25px;
    border-radius: 4px;
    font-size: var(--f-fs-font-14);
    line-height: var(--space-20);
    font-weight: var(--f-fw-medium);
    display: inline-block;
    transition: all 0.6s;
}
.lk-btn-primary {
    color: var(--color-white);
    background: linear-gradient(180deg, #0070D5 0%, #004C90 100%);
}
.lk-btn-primary:hover {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), linear-gradient(180deg, #0070D5 0%, #004C90 100%);
    color: var(--color-white);
}
.lk-btn-secondary {
    background: var(--color-white);
    color: var(--color-body-text);
    border: 1px solid #E2E4E8;
}
.lk-btn-secondary:hover {
    background: var(--color-surface);
    color: var(--color-body-text);
}
.sec-title {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.desc-wrap p:not(:last-child) {
    margin-bottom: 15px;
}
.lk-select {
    position: relative;
    appearance: none;
    cursor: pointer;
}
.lk-select:focus {
    border-color: var(--color-primary);
    outline: none;
}
.lk-select select,
.lk-select .floating-field {
    display: none;
}
.lk-select-selected {
    position: relative;
    width: 100%;
    padding: 11px 15px;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    color: var(--color-grey);
    font-size: 14px;
    line-height: 22px;
    cursor: pointer;
    transition: .3s;
}
.lk-select-selected::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 1.5px solid #000;
    border-bottom: 1.5px solid #000;
    transform: translateY(-60%) rotate(45deg);
    transition: .3s;
}
.lk-select-selected.lk-select-open {
    border-color: var(--color-primary);
}
.lk-select-selected.lk-select-open::after {
    transform: translateY(-40%) rotate(-135deg);
}
.lk-select-dropdown {
    position: absolute;
    /* top: 55px; */
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 10px;
    overflow: hidden;
    display: none;
    z-index: 95;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}
.lk-select-option {
    padding: 6px 15px;
    font-size: 15px;
    color: var(--color-grey-500);
    cursor: pointer;
    transition: .25s;
}
.lk-select-option:not(:last-child) {
    border-bottom: 1px solid #E6E6E6;
}
.lk-select-option:hover,
.lk-select-option-active {
    background: #F6F9FD;
    color: var(--color-primary);
}
.lk-select-placeholder {
    opacity: .6;
}
.lk-select-selected.lk-select-placeholder-active {
    color: #858d94;
}
.lk-select-selected.lk-select-placeholder-active::after {
    border-color: #858d94;
}
.lk-select-selected:not(.lk-select-placeholder-active) {
    color: #191919;
}
.lk-select-selected:not(.lk-select-placeholder-active)::after {
    border-color: #191919;
}
.lk-select-selected.lk-select-open {
    border-color: var(--color-primary);
}
.lk-select-selected.lk-select-open::after {
    border-color: var(--color-primary);
}
.sic-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}
.sic-list li {
    position: relative;
    display: flex;
    /* align-items: center; */
    gap: 10px;
}
.sic-list li::before {
    display: inline-block;
    content: "";
    min-width: 8px;
    height: 8px;
    background-color: #191919;
    border-radius: 100px;
    margin-top: 10px;
}
.about-into {
    max-width: 800px;
    margin: 0 auto;
}
#wpadminbar #wp-admin-bar-wp-logo>.ab-item .ab-icon::before {
    content: '' !important;
    background-image: url('../img/favicon-32x32.png');
    width: 25px;
    height: 25px;
    display: inline-block;
    background-position: center;
    background-size: contain;
}
/* -------------- Blog detail ------------- */
.showcase-property-page .main-wrap {
    padding-top: 100px;
}
.blog-hero {
    position: relative;
    overflow: hidden;
}
.blog-hero img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}
.blog-hero::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 25, 30, 0.78) -8.79%, rgba(0, 42, 78, 0) 23.98%), linear-gradient(180deg, rgba(0, 42, 78, 0) 0.56%, rgb(18 25 30 / 80%) 98.88%);
}
.blog-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
}
.blog-hero-content .entry-title {
    margin-bottom: 15px;
    font-size: clamp(1.4375rem, -0.0992rem + 3.2015vw, 2.5rem);
    line-height: 1.2;
    font-weight: var(--f-fw-semibold);
    color: var(--color-white);
}
.blog-hero-content .entry-meta, .blog-hero-content .entry-meta a {
    color: #fff;
    font-weight: 600;
}
.blog-single-content .entry-content {
    width: 100%;
    margin: -45px auto 50px auto;
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    margin-top: -45px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.blog-single-content .entry-content p.wp-block-paragraph:not(:last-child),
.blog-single-content .entry-content p:not(:last-child) {
    margin-bottom: 12px;
}
.blog-single-content .entry-content h4 {
    margin-bottom: 5px;
    margin-top: 20px;
}
.blog-single-content .entry-content a,
.a-link {
    color: var(--color-accent-light);
}
.blog-single-content .entry-content a:hover,
.a-link:hover {
    color: var(--color-primary);
}
.category .hero-title {
    position: relative;
    min-height: 400px;
    padding: 90px 0;
    align-content: end;
}
.category .hero-title.only-title {
    min-height: 300px;
    padding: 90px 0 50px;
    align-content: center;
}

.blog-category-page .article-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(217, 217, 217, .8);
    border-radius: var(--radius-8);
    height: 100%;
    display: flex;
    flex-direction: column;
    /* background-color: var(--color-surface); */
    padding: 0 !important;
}
.blog-category-page .article-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}
.blog-category-page .article-img {
    overflow: hidden;
    border-radius: var(--radius-8);
}
.blog-category-page .article-img img {
    transition: .3s;
    height: 270px;
    object-fit: cover;
}
.blog-category-page .article-card:hover img {
    transform: scale(1.05)
}
.blog-category-page .article-title {
    font-weight: var(--f-fw-medium);
    font-size: var(--f-fs-font-24);
    line-height: var(--space-32);
}
.blog-category-page .article-content .meta {
    font-size: 14px;
}
.blog-category-page .article-content .meta p {
    display: flex;
    align-items: center;
    gap: 7px;
}
.blog-category-page .meta-icon {
    line-height: 0;
}
.blog-category-page .article-content .text-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-category-page .featured-label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--color-white);
    font-size: var(--f-fs-font-14);
    line-height: var(--space-20);
    padding: 5px 10px;
    background: var(--color-accent);
    border-radius: 20px;
}
.blog-category-page .pagination-wrap {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}
.blog-category-page .pagination-wrap .page-numbers {
    min-width: 40px;
    height: 40px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
    border: 1px solid #E2E4E8;
}
.blog-category-page .pagination-wrap .page-numbers:hover,
.blog-category-page .pagination-wrap .page-numbers.current {
    background-color: var(--color-surface);
    color: var(--color-primary)
}
.blog-category-page .pagination-wrap .prev,
.blog-category-page .pagination-wrap .next {
    font-size: 0
}
.blog-category-page .pagination-wrap .prev svg,
.blog-category-page .pagination-wrap .next svg {
    width: 25px;
    height: 25px
}
.blog-category-page .icta-sec {
    position: relative;
    margin-top: 80px;
    background-image: var(--cta-bg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    height: 100vh;
}
.blog-category-page .icta-sec:before {
    background: linear-gradient(0deg, #005099 0%, rgba(0, 80, 153, 0) 31.05%, rgba(255, 255, 255, 0) 48.16%, #FFFFFF 78.02%);
    position: absolute;
    content: '';
    inset: 0;
    width: 100%;
    height: calc(100% + 5px);
    top: -3px;
}
.blog-category-page .icta-top {
    text-align: center;
    z-index: 1;
    position: relative;
}
.blog-category-page .icta-btn-wrap {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.blog-category-page .blog-grid {
    scroll-margin-top: 100px;
}
a.a-link-btn {
    margin-left: 11px;
    padding: 5px 15px;
}
@media (max-width: 1024px) {
    .category .hero-title{
        min-height: 310px;
        padding: 70px 0;
    }
    .category .only-title-wrap {
        min-height: 250px;
    }
    .category .hero-title.only-title {
        min-height: 250px;
    }
}
@media (max-width: 1199px) {
    .py-80 {
        padding: 60px 0;
    }
}
@media (max-width: 1024px) {
    .py-80 {
        padding: 40px 0;
    }
    .py-100 {
        padding: 30px 0;
    }
    .py-150 {
        padding: 30px 0;
    }
    .blog-category-page .icta-sec {
        margin-top: 80px;
        height: 60vh;
    }
    .blog-category-page .icta-btn-wrap {
        margin-top: 30px;
    }
}
@media (max-width: 991px) {
    .mb-56 {
        margin-bottom: 40px;
    }
    .sec-title {
        gap: 10px;
    }
    .blog-sidebar.aos-init.aos-animate {
        display: flex;
        align-items: center;
        justify-content: space-between;
        z-index: 9;
        margin-bottom: 25px;
        background-color: var(--color-surface);
        padding: 10px;
        border-radius: 8px
    }
    .blog-filter-toggle {
        display: block;
        pointer-events: auto;
    }
    .filter-wrap {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        margin-top: 12px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0px 0px 16px rgb(0 0 0 / 15%);
    }
    .category-filter {
        margin-top: 0;
        gap: 0;
    }
    .category-filter a {
        padding: 10px 15px;
        width: 100%;
        display: inline-block;
        font-size: var(--f-fs-font-14);
        line-height: var(--f-fs-font-18);
    }
    .category-filter a:not(:last-child) {
        border-bottom: 1px solid #F5F5F5;
    }
    .article-title {
        font-size: var(--f-fs-font-18);
        line-height: var(--space-22);
    }
    .blog-sidebar .h2-title {
        font-size: var(--f-fs-font-24);
        line-height: var(--space-32);
    }
    .blog-category-page .icta-sec {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .sec-title {
        gap: 7px;
    }
    .mb-56 {
        margin-bottom: 25px;
    }
    .py-80 {
        padding: 25px 0;
    }
    .text-18 {
        font-size: var(--f-fs-font-16);
        line-height: var(--space-22);
    }
    .lk-btn-primary,
    .lk-btn-secondary {
        padding: 10px 15px;
    }
    .sec-title  br {
        display: none;
    }
    .sic-list li::before {
        min-width: 7px;
        height: 7px;
        margin-top: 8px;
    }
    .blog-single-content .entry-content {
        padding: 18px;
    }
    .blog-hero img {
        height: 450px;
    }
    .category .hero-title {
        min-height: 260px;
        padding: 50px 0 0;
        align-content: center;
    }
    .blog-category-page .icta-sec {
        margin-top: 30px;
        height: 65vh;
    }
    .blog-category-page .icta-btn-wrap {
        margin-top: 20px;
    }
}