
/* =========================================
MOTHERLAND BLOG VARIABLES
========================================= */

:root {
    --ml-gold: #c99a2e;
    --ml-gold-dark: #9e7018;
    --ml-gold-light: #f3d57b;
    --ml-gold-soft: #fff8e7;

    --ml-black: #050505;
    --ml-black-soft: #101010;
    --ml-charcoal: #191919;
    --ml-dark-grey: #2a2a2a;

    --ml-white: #ffffff;
    --ml-off-white: #f8f7f3;
    --ml-grey: #737373;
    --ml-grey-light: #eeeeee;
    --ml-border: rgba(201, 154, 46, 0.18);

    --ml-text: #171717;
    --ml-body-text: #656565;

    --ml-gold-gradient:
        linear-gradient(
            135deg,
            #8d6114 0%,
            #c99a2e 32%,
            #f6dc8a 52%,
            #c08d20 72%,
            #8f6213 100%
        );

    --ml-dark-gradient:
        linear-gradient(
            135deg,
            #050505 0%,
            #141414 58%,
            #090909 100%
        );

    --ml-shadow:
        0 22px 60px rgba(0, 0, 0, 0.09);

    --ml-shadow-hover:
        0 30px 75px rgba(0, 0, 0, 0.16);

    --ml-radius-sm: 4px;
    --ml-radius-md: 5px;
    --ml-radius-lg: 8px;
}


/* =========================================
GLOBAL
========================================= */



body.ml-drawer-open {
    overflow: hidden;
}

.ml-blog-page *,
.ml-blog-page *::before,
.ml-blog-page *::after {
    box-sizing: border-box;
}

.ml-blog-page img {
    max-width: 100%;
}

.ml-blog-page button,
.ml-blog-page input,
.ml-blog-page select {
    font: inherit;
}


/* =========================================
HERO
========================================= */

.ml-blog-hero {
    position: relative;
    overflow: hidden;
    padding: 115px 0 125px;
    background: var(--ml-dark-gradient);
}

.ml-blog-hero::before {
    position: absolute;
    top: -180px;
    right: -140px;
    width: 520px;
    height: 520px;
    content: "";
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(201, 154, 46, 0.26),
            rgba(201, 154, 46, 0) 70%
        );
}

.ml-blog-hero::after {
    position: absolute;
    bottom: -190px;
    left: -180px;
    width: 470px;
    height: 470px;
    content: "";
    border: 1px solid rgba(201, 154, 46, 0.14);
    border-radius: 50%;
}

.ml-blog-hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 650px;
    height: 230px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            ellipse,
            rgba(201, 154, 46, 0.13),
            transparent 68%
        );
    filter: blur(10px);
}

.ml-blog-hero__content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.ml-section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--ml-gold-light);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ml-section-label i {
    color: var(--ml-gold);
}

.ml-blog-hero h1 {
    margin: 0;
    color: var(--ml-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 74px);
    font-weight: 500;
    line-height: 1.04;
    letter-spacing: -2px;
}

.ml-blog-hero h1 span {
    display: block;
    color: var(--ml-gold-light);
}

.ml-blog-hero p {
    max-width: 690px;
    margin: 26px auto 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.85;
}


/* =========================================
BLOG SECTION
========================================= */

.ml-blog-section {
    position: relative;
    padding: 40px 0 50px;
}

.ml-blog-search-panel {
    position: relative;
    z-index: 5;
    max-width: 970px;
    margin: -132px auto 58px;
    padding: 9px;
    border: 1px solid rgba(201, 154, 46, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--ml-shadow);
    backdrop-filter: blur(18px);
}

.ml-blog-search-panel__content {
    display: flex;
    align-items: center;
    min-height: 92px;
    padding: 14px 18px;
    border: 1px solid var(--ml-grey-light);
    border-radius: 8px;
}

.ml-blog-search-panel__icon {
    display: grid;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    margin-right: 18px;
    border-radius: 50%;
    background: var(--ml-gold-soft);
    color: var(--ml-gold-dark);
    place-items: center;
}

.ml-blog-search-panel__input {
    flex: 1;
}

.ml-blog-search-panel__input label {
    display: block;
    margin-bottom: 5px;
    color: var(--ml-text);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.ml-blog-search-panel__input input {
    width: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ml-text);
    font-size: 17px;
}

.ml-blog-search-panel__input input::placeholder {
    color: #a3a3a3;
}

.ml-search-clear {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--ml-black);
    color: var(--ml-white);
    transition: 0.3s ease;
}

.ml-search-clear.is-visible {
    display: grid;
    place-items: center;
}

.ml-search-clear:hover {
    transform: rotate(90deg);
    background: var(--ml-gold-dark);
}


/* =========================================
SIDEBAR
========================================= */

.ml-blog-sidebar {
    position: sticky;
    top: 25px;
}

.ml-sidebar-widget {
    margin-bottom: 25px;
    padding: 28px;
    border: 1px solid var(--ml-border);
    border-radius: var(--ml-radius-lg);
    background: var(--ml-white);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.055);
}

.ml-widget-title {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.ml-widget-title__icon {
    display: grid;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    box-shadow: 0 10px 26px rgba(201, 154, 46, 0.24);
    place-items: center;
}

.ml-widget-title small {
    display: block;
    margin-bottom: 3px;
    color: var(--ml-gold-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ml-widget-title h3 {
    margin: 0;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 600;
}

.ml-category-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ml-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 12px;
    background: #fafafa;
    color: var(--ml-body-text);
    text-align: left;
    transition: 0.3s ease;
}

.ml-category-item__name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
}

.ml-category-item__name i {
    width: 17px;
    color: var(--ml-gold-dark);
}

.ml-category-item__count {
    display: grid;
    min-width: 29px;
    height: 29px;
    padding: 0 8px;
    border-radius: 9px;
    background: var(--ml-white);
    color: var(--ml-text);
    font-size: 11px;
    font-weight: 800;
    place-items: center;
}

.ml-category-item:hover,
.ml-category-item.is-active {
    transform: translateX(4px);
    border-color: rgba(201, 154, 46, 0.28);
    background: var(--ml-black);
    color: var(--ml-white);
}

.ml-category-item:hover .ml-category-item__count,
.ml-category-item.is-active .ml-category-item__count {
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
}

.ml-sidebar-loading {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 15px 0;
    color: var(--ml-grey);
    font-size: 13px;
}


/* =========================================
LATEST POSTS
========================================= */

.ml-latest-posts {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.ml-latest-post {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 13px;
    color: inherit;
    text-decoration: none;
}

.ml-latest-post__image {
    position: relative;
    overflow: hidden;
    width: 78px;
    height: 76px;
    border-radius: 12px;
    background: #eeeeee;
}

.ml-latest-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ml-latest-post:hover img {
    transform: scale(1.12);
}

.ml-latest-post__content {
    min-width: 0;
}

.ml-latest-post__content span {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 7px;
    color: var(--ml-gold-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.ml-latest-post__content h4 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    transition: color 0.3s ease;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ml-latest-post:hover h4 {
    color: var(--ml-gold-dark);
}


/* =========================================
TOOLBAR
========================================= */

.ml-blog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 24px;
    padding: 17px 20px;
    border: 1px solid var(--ml-border);
    border-radius: 6px;
    background: var(--ml-white);
}

.ml-blog-result-count {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ml-result-icon {
    display: grid;
    width: 43px;
    height: 43px;
    border-radius: 13px;
    background: var(--ml-black);
    color: var(--ml-gold-light);
    place-items: center;
}

.ml-blog-result-count small {
    display: block;
    color: var(--ml-grey);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ml-blog-result-count strong {
    color: var(--ml-text);
    font-size: 13px;
}

.ml-blog-toolbar__filters {
    display: flex;
    gap: 12px;
}

.ml-select-box {
    position: relative;
    display: flex;
    align-items: center;
}

.ml-select-box > i {
    position: absolute;
    z-index: 1;
    left: 15px;
    color: var(--ml-gold-dark);
    pointer-events: none;
}

.ml-select-box select {
    min-width: 180px;
    height: 46px;
    padding: 0 39px 0 40px;
    border: 1px solid var(--ml-grey-light);
    border-radius: 13px;
    outline: 0;
    background-color: #fafafa;
    color: var(--ml-text);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.ml-select-box select:focus {
    border-color: var(--ml-gold);
    box-shadow: 0 0 0 4px rgba(201, 154, 46, 0.09);
}


/* =========================================
ACTIVE FILTERS
========================================= */

.ml-active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.ml-active-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(201, 154, 46, 0.22);
    border-radius: 50px;
    background: var(--ml-gold-soft);
    color: var(--ml-gold-dark);
    font-size: 11px;
    font-weight: 800;
}

.ml-active-filter button {
    display: grid;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--ml-black);
    color: var(--ml-white);
    font-size: 9px;
    place-items: center;
}


/* =========================================
BLOG CARDS
========================================= */

.ml-blog-card {
    position: relative;
    display: flex;
    overflow: hidden;
    height: 100%;
    min-height: 535px;
    flex-direction: column;
    border: 1px solid rgba(201, 154, 46, 0.15);
    border-radius: 6px;
    background: var(--ml-white);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.ml-blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 154, 46, 0.4);
    box-shadow: var(--ml-shadow-hover);
}

.ml-blog-card__media {
    position: relative;
    overflow: hidden;
    height: 245px;
    background: var(--ml-charcoal);
}

.ml-blog-card__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.25)
        );
}

.ml-blog-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: mlImageZoom 12s ease-in-out infinite alternate;
    transition: filter 0.6s ease;
}

.ml-blog-card:hover .ml-blog-card__image {
    filter: brightness(0.83);
}

@keyframes mlImageZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.ml-blog-card__category {
    position: absolute;
    z-index: 3;
    top: 17px;
    right: 17px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: calc(100% - 34px);
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 5px;
    background: rgba(5, 5, 5, 0.83);
    color: var(--ml-gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.ml-blog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px 24px 21px;
}

.ml-blog-card__date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 13px;
    color: var(--ml-gold-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ml-blog-card__title {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 13px;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 1.28;
    transition: color 0.3s ease;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ml-blog-card:hover .ml-blog-card__title {
    color: var(--ml-gold-dark);
}

.ml-blog-card__summary {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 22px;
    color: var(--ml-body-text);
    font-size: 13px;
    line-height: 1.78;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ml-blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: fit-content;
    margin-top: auto;
    color: var(--ml-black);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.ml-blog-card__read-more span {
    display: grid;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    transition: 0.4s ease;
    place-items: center;
}

.ml-blog-card:hover .ml-blog-card__read-more span {
    transform: translateX(6px) rotate(-35deg);
}

.ml-blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    border-top: 1px solid var(--ml-grey-light);
    background: #fcfcfc;
}

.ml-blog-card__stats {
    display: flex;
    align-items: center;
    gap: 17px;
}

.ml-blog-card__stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ml-grey);
    font-size: 11px;
    font-weight: 700;
}

.ml-blog-card__stat i {
    color: var(--ml-gold-dark);
}

.ml-blog-card__footer-mark {
    color: var(--ml-gold);
    font-size: 11px;
}


/* =========================================
LOADING AND EMPTY
========================================= */

.ml-blog-loading {
    display: none;
    min-height: 400px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.ml-blog-loading.is-visible {
    display: flex;
}

.ml-loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(201, 154, 46, 0.18);
    border-top-color: var(--ml-gold);
    border-radius: 50%;
    animation: mlSpin 0.85s linear infinite;
}

@keyframes mlSpin {
    to {
        transform: rotate(360deg);
    }
}

.ml-blog-loading p {
    margin: 0;
    color: var(--ml-grey);
    font-size: 13px;
}

.ml-blog-empty {
    display: none;
    padding: 70px 20px;
    border: 1px dashed rgba(201, 154, 46, 0.35);
    border-radius: 22px;
    background: var(--ml-white);
    text-align: center;
}

.ml-blog-empty.is-visible {
    display: block;
}

.ml-blog-empty__icon {
    display: grid;
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--ml-gold-soft);
    color: var(--ml-gold-dark);
    font-size: 27px;
    place-items: center;
}

.ml-blog-empty h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.ml-blog-empty p {
    max-width: 490px;
    margin: 0 auto 22px;
    color: var(--ml-body-text);
    font-size: 14px;
    line-height: 1.7;
}

.ml-reset-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 20px;
    border: 0;
    border-radius: 50px;
    background: var(--ml-black);
    color: var(--ml-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* =========================================
PAGINATION
========================================= */

.ml-blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.ml-page-btn {
    display: grid;
    min-width: 43px;
    height: 43px;
    padding: 0 12px;
    border: 1px solid var(--ml-grey-light);
    border-radius: 12px;
    background: var(--ml-white);
    color: var(--ml-text);
    font-size: 12px;
    font-weight: 800;
    transition: 0.3s ease;
    place-items: center;
}

.ml-page-btn:hover,
.ml-page-btn.is-active {
    transform: translateY(-3px);
    border-color: var(--ml-gold);
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    box-shadow: 0 12px 25px rgba(201, 154, 46, 0.2);
}

.ml-page-btn:disabled {
    cursor: not-allowed;
    transform: none;
    opacity: 0.38;
    box-shadow: none;
}

.ml-pagination-dots {
    padding: 0 4px;
    color: var(--ml-grey);
}


/* =========================================
MOBILE CONTROLS
========================================= */

.ml-mobile-controls {
    display: none;
}

.ml-sidebar-mobile-header,
.ml-sidebar-overlay {
    display: none;
}


/* =========================================
TABLET
========================================= */

@media (max-width: 1199px) {

    .ml-sidebar-widget {
        padding: 22px;
    }

    .ml-blog-card__title {
        font-size: 21px;
    }

    .ml-select-box select {
        min-width: 155px;
    }

}


/* =========================================
MOBILE
========================================= */

@media (max-width: 991px) {

    .ml-blog-hero {
        padding: 40px 0 40px;
    }

    .ml-blog-hero h1 {
        letter-spacing: -1px;
    }

    .ml-blog-section {
        padding: 28px 0 80px;
    }

    .ml-blog-search-panel {
        display: none;
    }

    .ml-blog-toolbar {
        display: none;
    }

    .ml-mobile-controls {
        position: relative;
        z-index: 5;
        display: block;
        margin-top: -66px;
        margin-bottom: 28px;
        padding: 13px;
        border: 1px solid rgba(201, 154, 46, 0.2);
        border-radius: 6px;
        background: var(--ml-white);
        box-shadow: var(--ml-shadow);
    }

    .ml-mobile-controls__top {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
        gap: 8px;
        margin-bottom: 10px;
    }

    .ml-filter-toggle {
        display: inline-flex;
        min-width: 50px;
        height: 48px;
        align-items: center;
        justify-content: center;
        gap: 7px;
        padding: 0 14px;
        border: 0;
        border-radius: 12px;
        background: var(--ml-black);
        color: var(--ml-white);
        font-size: 12px;
        font-weight: 800;
    }

    .ml-filter-toggle i {
        color: var(--ml-gold-light);
    }

    .ml-mobile-controls .ml-select-box select {
        width: 100%;
        min-width: 0;
        height: 48px;
        padding-right: 25px;
        padding-left: 35px;
        font-size: 11px;
    }

    .ml-mobile-controls .ml-select-box > i {
        left: 12px;
    }

    .ml-mobile-search {
        position: relative;
        display: flex;
        align-items: center;
    }

    .ml-mobile-search > i {
        position: absolute;
        left: 16px;
        color: var(--ml-gold-dark);
    }

    .ml-mobile-search input {
        width: 100%;
        height: 51px;
        padding: 0 48px 0 45px;
        border: 1px solid var(--ml-grey-light);
        border-radius: 13px;
        outline: 0;
        background: #fafafa;
        color: var(--ml-text);
        font-size: 13px;
    }

    .ml-mobile-search input:focus {
        border-color: var(--ml-gold);
        box-shadow: 0 0 0 4px rgba(201, 154, 46, 0.08);
    }

    .ml-clear-search {
        position: absolute;
        right: 8px;
        display: none;
        width: 34px;
        height: 34px;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: var(--ml-black);
        color: var(--ml-white);
    }

    .ml-clear-search.is-visible {
        display: grid;
        place-items: center;
    }

    .ml-blog-sidebar {
        position: fixed;
        z-index: 1100;
        top: 0;
        bottom: 0;
        left: 0;
        overflow-y: auto;
        width: min(88%, 380px);
        padding: 0 18px 30px;
        transform: translateX(-105%);
        background: var(--ml-off-white);
        box-shadow: 25px 0 70px rgba(0, 0, 0, 0.25);
        transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .ml-blog-sidebar.is-open {
        transform: translateX(0);
    }

    .ml-sidebar-mobile-header {
        position: sticky;
        z-index: 5;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 -18px 20px;
        padding: 19px 20px;
        background: var(--ml-black);
    }

    .ml-sidebar-mobile-header span {
        display: block;
        color: var(--ml-gold-light);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .ml-sidebar-mobile-header h3 {
        margin: 3px 0 0;
        color: var(--ml-white);
        font-family: Georgia, "Times New Roman", serif;
        font-size: 19px;
    }

    .ml-sidebar-mobile-header button {
        display: grid;
        width: 42px;
        height: 42px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: var(--ml-white);
        place-items: center;
    }

    .ml-sidebar-overlay {
        position: fixed;
        z-index: 1090;
        inset: 0;
        display: block;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.68);
        opacity: 0;
        backdrop-filter: blur(5px);
        transition:
            opacity 0.35s ease,
            visibility 0.35s ease;
    }

    .ml-sidebar-overlay.is-visible {
        visibility: visible;
        opacity: 1;
    }

    .ml-sidebar-widget {
        margin-bottom: 18px;
        border-radius: 18px;
        box-shadow: none;
    }

    .ml-blog-card {
        min-height: 0;
    }

}


/* =========================================
SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .ml-blog-hero {
        padding: 74px 0 92px;
    }

    .ml-blog-hero p {
        font-size: 14px;
    }

    .ml-mobile-controls__top {
        grid-template-columns: 48px 1fr 1fr;
    }

    .ml-filter-toggle {
        width: 48px;
        min-width: 48px;
        padding: 0;
    }

    .ml-filter-toggle span {
        display: none;
    }

    .ml-blog-card__media {
        height: 238px;
    }

    .ml-blog-card__body {
        padding: 22px 20px 18px;
    }

    .ml-blog-card__footer {
        padding: 14px 20px;
    }

    .ml-blog-card__title {
        font-size: 22px;
    }

    .ml-blog-pagination {
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 36px;
    }

    .ml-page-btn {
        min-width: 40px;
        height: 40px;
        border-radius: 10px;
    }

}
/*****************************POST DETAILS**************************/

.ml-details-page *,
.ml-details-page *::before,
.ml-details-page *::after {
    box-sizing: border-box;
}

.ml-details-page img {
    max-width: 100%;
}

.ml-details-page a {
    text-decoration: none;
}

.ml-details-page button,
.ml-details-page input,
.ml-details-page textarea {
    font: inherit;
}

/* =========================================
HERO
========================================= */

.ml-article-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 155px;
    background: var(--ml-dark-gradient);
}

.ml-article-hero::before {
    position: absolute;
    top: -220px;
    right: -150px;
    width: 560px;
    height: 560px;
    content: "";
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(201, 154, 46, 0.24),
            transparent 68%
        );
}

.ml-article-hero::after {
    position: absolute;
    bottom: -230px;
    left: -150px;
    width: 480px;
    height: 480px;
    content: "";
    border: 1px solid rgba(201, 154, 46, 0.14);
    border-radius: 50%;
}

.ml-article-hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 850px;
    height: 300px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            ellipse,
            rgba(201, 154, 46, 0.12),
            transparent 70%
        );
    filter: blur(14px);
}

.ml-article-hero__content {
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: auto;
    text-align: center;
}

.ml-back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.ml-back-to-blog:hover {
    color: var(--ml-gold-light);
}

.ml-back-to-blog i {
    transition: transform 0.3s ease;
}

.ml-back-to-blog:hover i {
    transform: translateX(-5px);
}

.ml-article-category {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin: 0 auto 22px;
    padding: 9px 15px;
    border: 1px solid rgba(244, 215, 125, 0.25);
    border-radius: 50px;
    background: rgba(201, 154, 46, 0.1);
    color: var(--ml-gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ml-article-hero h1 {
    max-width: 950px;
    margin: 0 auto;
    color: var(--ml-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 73px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -2px;
}

.ml-article-summary {
    max-width: 760px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.85;
}

.ml-article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 13px 25px;
    margin-top: 32px;
}

.ml-article-meta > span,
.ml-meta-comment-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 700;
}

.ml-article-meta i {
    color: var(--ml-gold-light);
}

.ml-meta-comment-btn {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.ml-meta-comment-btn:hover {
    color: var(--ml-white);
}

/* =========================================
ARTICLE
========================================= */

.ml-article-section {
    position: relative;
    padding: 0 0 110px;
}

.ml-article-card {
    position: relative;
    margin-top: -92px;
    border: 1px solid var(--ml-border);
    border-radius: var(--ml-radius-lg);
    background: var(--ml-white);
    box-shadow: var(--ml-shadow);
}

.ml-article-featured-image {
    position: relative;
    overflow: hidden;
    height: min(590px, 58vw);
    min-height: 380px;
    border-radius:
        var(--ml-radius-lg)
        var(--ml-radius-lg)
        0 0;
    background: var(--ml-charcoal);
}

.ml-article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: mlHeroImageZoom 16s ease-in-out infinite alternate;
}

@keyframes mlHeroImageZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.ml-featured-image__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.04),
            rgba(0, 0, 0, 0.42)
        );
}

.ml-featured-image__category {
    position: absolute;
    right: 26px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50px;
    background: rgba(5, 5, 5, 0.78);
    color: var(--ml-gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.ml-article-layout {
    display: grid;
    grid-template-columns: 95px minmax(0, 1fr);
}

.ml-share-sidebar {
    position: relative;
    padding: 55px 20px;
    border-right: 1px solid var(--ml-grey-light);
}

.ml-share-sidebar__label {
    display: block;
    margin-bottom: 22px;
    color: var(--ml-grey);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-align: center;
    text-transform: uppercase;
}

.ml-share-buttons {
    position: sticky;
    top: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

.ml-share-btn {
    position: relative;
    display: grid;
    overflow: hidden;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--ml-white);
    font-size: 15px;
    cursor: pointer;
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    place-items: center;
}

.ml-share-btn::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: opacity 0.3s ease;
}

.ml-share-btn:hover {
    transform: translateY(-5px) scale(1.07);
    color: var(--ml-white);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.ml-share-btn:hover::before {
    opacity: 1;
}

.ml-share-btn i {
    position: relative;
    z-index: 2;
}

.ml-share-btn--facebook {
    background: #1877f2;
}

.ml-share-btn--pinterest {
    background: #e60023;
}

.ml-share-btn--x {
    background: #050505;
}

.ml-share-btn--tiktok {
    background:
        linear-gradient(
            135deg,
            #25f4ee,
            #010101 48%,
            #fe2c55
        );
}

.ml-share-btn--whatsapp {
    background: #25d366;
}

.ml-share-btn--instagram {
    background:
        radial-gradient(
            circle at 30% 107%,
            #fdf497 0%,
            #fdf497 5%,
            #fd5949 45%,
            #d6249f 60%,
            #285aeb 90%
        );
}

.ml-share-btn--copy {
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
}

.ml-share-btn--copy:hover {
    color: var(--ml-black);
}

.ml-article-content {
    min-width: 0;
    padding: 62px 70px 70px;
}

.ml-article-introduction {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 38px;
    padding: 25px;
    border-left: 4px solid var(--ml-gold);
    border-radius: 0 16px 16px 0;
    background: var(--ml-gold-soft);
}

.ml-article-introduction > span {
    display: grid;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    place-items: center;
}

.ml-article-introduction p {
    margin: 0;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-style: italic;
    line-height: 1.75;
}

.ml-article-body {
    color: var(--ml-body-text);
    font-size: 16px;
    line-height: 1.95;
}

.ml-article-body h2,
.ml-article-body h3,
.ml-article-body h4 {
    margin-top: 42px;
    margin-bottom: 17px;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    line-height: 1.35;
}

.ml-article-body h2 {
    font-size: 34px;
}

.ml-article-body h3 {
    font-size: 27px;
}

.ml-article-body h4 {
    font-size: 22px;
}

.ml-article-body p {
    margin: 0 0 23px;
}

.ml-article-body a {
    color: var(--ml-gold-dark);
    font-weight: 700;
    text-decoration: underline;
}

.ml-article-body ul,
.ml-article-body ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.ml-article-body li {
    margin-bottom: 10px;
}

.ml-article-body blockquote {
    position: relative;
    margin: 38px 0;
    padding: 30px 32px 30px 42px;
    border-left: 4px solid var(--ml-gold);
    border-radius: 0 15px 15px 0;
    background: var(--ml-black);
    color: var(--ml-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-style: italic;
    line-height: 1.7;
}

.ml-article-body img {
    display: block;
    width: 100%;
    height: auto;
    margin: 35px 0;
    border-radius: 17px;
}

.ml-article-body table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.ml-article-body th,
.ml-article-body td {
    padding: 14px;
    border: 1px solid var(--ml-grey-light);
}

.ml-article-body th {
    background: var(--ml-black);
    color: var(--ml-white);
}

.ml-article-end {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 55px;
    color: var(--ml-gold);
}

.ml-article-end__line {
    width: 80px;
    height: 1px;
    background:
        linear-gradient(
            to right,
            transparent,
            var(--ml-gold),
            transparent
        );
}

.ml-mobile-share {
    display: none;
}

/* =========================================
COMMENTS
========================================= */

.ml-comments-section {
    margin-top: 45px;
    padding: 42px;
    border: 1px solid var(--ml-border);
    border-radius: var(--ml-radius-lg);
    background: var(--ml-white);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.065);
}

.ml-comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--ml-grey-light);
}

.ml-comments-header__title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ml-comments-header__icon {
    display: grid;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 18px;
    box-shadow: 0 12px 28px rgba(201, 154, 46, 0.22);
    place-items: center;
}

.ml-comments-header small {
    display: block;
    margin-bottom: 4px;
    color: var(--ml-gold-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ml-comments-header h2 {
    margin: 0;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
}

.ml-comments-header h2 span {
    display: inline-grid;
    min-width: 31px;
    height: 31px;
    margin-left: 6px;
    padding: 0 8px;
    border-radius: 10px;
    background: var(--ml-black);
    color: var(--ml-gold-light);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    place-items: center;
}

.ml-comment-toggle-btn {
    display: inline-flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 19px;
    border: 0;
    border-radius: 50px;
    background: var(--ml-black);
    color: var(--ml-white);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: 0.35s ease;
}

.ml-comment-toggle-btn:hover {
    transform: translateY(-3px);
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    box-shadow: 0 15px 30px rgba(201, 154, 46, 0.25);
}

.ml-comment-form-wrapper {
    display: none;
    margin-top: 30px;
    padding: 30px;
    border: 1px solid rgba(201, 154, 46, 0.24);
    border-radius: 19px;
    background:
        linear-gradient(
            135deg,
            #fffdf8,
            var(--ml-gold-soft)
        );
}

.ml-comment-form-wrapper.is-visible {
    display: block;
    animation: mlRevealForm 0.5s ease;
}

@keyframes mlRevealForm {
    from {
        transform: translateY(-15px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ml-comment-form-intro {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.ml-comment-form-intro > span {
    display: grid;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ml-black);
    color: var(--ml-gold-light);
    place-items: center;
}

.ml-comment-form-intro h3 {
    margin: 0 0 4px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
}

.ml-comment-form-intro p {
    margin: 0;
    color: var(--ml-body-text);
    font-size: 12px;
    line-height: 1.6;
}

.ml-comment-form {
    position: relative;
}

.ml-form-group {
    position: relative;
}

.ml-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    color: var(--ml-text);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ml-form-group label i {
    color: var(--ml-gold-dark);
}

.ml-form-group input,
.ml-form-group textarea {
    width: 100%;
    border: 1px solid var(--ml-grey-light);
    border-radius: 13px;
    outline: 0;
    background: var(--ml-white);
    color: var(--ml-text);
    font-size: 14px;
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.ml-form-group input {
    height: 54px;
    padding: 0 17px;
}

.ml-form-group textarea {
    min-height: 160px;
    padding: 16px 17px 35px;
    resize: vertical;
}

.ml-form-group input:focus,
.ml-form-group textarea:focus {
    border-color: var(--ml-gold);
    box-shadow: 0 0 0 4px rgba(201, 154, 46, 0.1);
}

.ml-character-count {
    position: absolute;
    right: 14px;
    bottom: 11px;
    color: var(--ml-grey);
    font-size: 10px;
    font-weight: 700;
}

.ml-comment-form__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 11px;
    margin-top: 22px;
}

.ml-cancel-comment-btn,
.ml-submit-comment-btn {
    display: inline-flex;
    height: 49px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ml-cancel-comment-btn {
    padding: 0 18px;
    border: 1px solid var(--ml-grey-light);
    background: var(--ml-white);
    color: var(--ml-grey);
}

.ml-submit-comment-btn {
    min-width: 174px;
    padding: 0 20px;
    border: 0;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    box-shadow: 0 13px 28px rgba(201, 154, 46, 0.22);
    transition: 0.35s ease;
}

.ml-submit-comment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(201, 154, 46, 0.3);
}

.ml-submit-comment-btn:disabled {
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

.ml-comments-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 31px;
}

.ml-comment-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 17px;
    padding: 23px;
    border: 1px solid var(--ml-grey-light);
    border-radius: 17px;
    background: #fdfdfd;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.ml-comment-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 154, 46, 0.35);
    box-shadow: 0 17px 38px rgba(0, 0, 0, 0.07);
}

.ml-comment-avatar {
    display: grid;
    width: 58px;
    height: 58px;
    border-radius: 17px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    font-weight: 700;
    box-shadow: 0 11px 25px rgba(201, 154, 46, 0.2);
    place-items: center;
}

.ml-comment-content {
    min-width: 0;
}

.ml-comment-content__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
}

.ml-comment-content h3 {
    margin: 0 0 5px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
}

.ml-comment-content__header span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--ml-grey);
    font-size: 10px;
    font-weight: 700;
}

.ml-comment-content__header span i {
    color: var(--ml-gold-dark);
}

.ml-comment-quote {
    color: rgba(201, 154, 46, 0.25);
    font-size: 23px;
}

.ml-comment-content p {
    margin: 0;
    color: var(--ml-body-text);
    font-size: 13px;
    line-height: 1.8;
}

.ml-no-comments {
    padding: 52px 20px;
    border: 1px dashed rgba(201, 154, 46, 0.35);
    border-radius: 19px;
    text-align: center;
}

.ml-no-comments > span {
    display: grid;
    width: 72px;
    height: 72px;
    margin: 0 auto 17px;
    border-radius: 50%;
    background: var(--ml-gold-soft);
    color: var(--ml-gold-dark);
    font-size: 25px;
    place-items: center;
}

.ml-no-comments h3 {
    margin: 0 0 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
}

.ml-no-comments p {
    max-width: 430px;
    margin: 0 auto 19px;
    color: var(--ml-body-text);
    font-size: 13px;
    line-height: 1.7;
}

.ml-no-comments button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border: 0;
    border-radius: 50px;
    background: var(--ml-black);
    color: var(--ml-white);
    font-size: 11px;
    font-weight: 800;
}

/* =========================================
RELATED POSTS
========================================= */

.ml-related-section {
    margin-top: 75px;
}

.ml-related-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 29px;
}

.ml-related-heading span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--ml-gold-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ml-related-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
}

.ml-related-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ml-text);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.ml-related-heading > a i {
    color: var(--ml-gold-dark);
    transition: transform 0.3s ease;
}

.ml-related-heading > a:hover i {
    transform: translateX(5px);
}

.ml-related-card {
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--ml-border);
    border-radius: 21px;
    background: var(--ml-white);
    box-shadow: 0 17px 45px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.ml-related-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--ml-shadow-hover);
}

.ml-related-card__image {
    display: block;
    overflow: hidden;
    height: 220px;
}

.ml-related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.ml-related-card:hover .ml-related-card__image img {
    transform: scale(1.11);
}

.ml-related-card__content {
    padding: 23px;
}

.ml-related-card__content > span {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 11px;
    color: var(--ml-gold-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ml-related-card h3 {
    margin: 0 0 11px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.4;
}

.ml-related-card h3 a {
    color: var(--ml-text);
    transition: color 0.3s ease;
}

.ml-related-card:hover h3 a {
    color: var(--ml-gold-dark);
}

.ml-related-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 17px;
    color: var(--ml-body-text);
    font-size: 12px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ml-related-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ml-black);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.ml-related-card__link i {
    color: var(--ml-gold-dark);
    transition: transform 0.3s ease;
}

.ml-related-card__link:hover i {
    transform: translateX(5px);
}

/* =========================================
TABLET
========================================= */

@media (max-width: 991px) {

    .ml-article-hero {
        padding: 85px 0 130px;
    }

    .ml-article-card {
        margin-top: -70px;
    }

    .ml-article-featured-image {
        min-height: 350px;
    }

    .ml-article-layout {
        display: block;
    }

    .ml-share-sidebar {
        display: none;
    }

    .ml-article-content {
        padding: 48px 40px 55px;
    }

    .ml-mobile-share {
        display: block;
        margin-top: 45px;
        padding: 23px;
        border: 1px solid var(--ml-border);
        border-radius: 17px;
        background: var(--ml-gold-soft);
    }

    .ml-mobile-share__header {
        display: flex;
        align-items: center;
        gap: 13px;
        margin-bottom: 18px;
    }

    .ml-mobile-share__header > span {
        display: grid;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        background: var(--ml-black);
        color: var(--ml-gold-light);
        place-items: center;
    }

    .ml-mobile-share__header small {
        display: block;
        color: var(--ml-gold-dark);
        font-size: 9px;
        font-weight: 900;
        letter-spacing: 0.7px;
        text-transform: uppercase;
    }

    .ml-mobile-share__header h3 {
        margin: 3px 0 0;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 21px;
    }

    .ml-mobile-share__buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

}

/* =========================================
MOBILE
========================================= */

@media (max-width: 767px) {

    .ml-article-hero {
        padding: 70px 0 110px;
    }

    .ml-article-hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .ml-article-summary {
        font-size: 14px;
    }

    .ml-article-meta {
        gap: 11px 16px;
    }

    .ml-article-featured-image {
        height: 330px;
        min-height: 330px;
    }

    .ml-featured-image__category {
        right: 17px;
        bottom: 17px;
    }

    .ml-article-content {
        padding: 36px 23px 43px;
    }

    .ml-article-introduction {
        grid-template-columns: 43px minmax(0, 1fr);
        gap: 12px;
        padding: 19px;
    }

    .ml-article-introduction > span {
        width: 42px;
        height: 42px;
    }

    .ml-article-introduction p {
        font-size: 16px;
    }

    .ml-article-body {
        font-size: 14px;
        line-height: 1.9;
    }

    .ml-article-body h2 {
        font-size: 28px;
    }

    .ml-article-body h3 {
        font-size: 24px;
    }

    .ml-comments-section {
        margin-top: 28px;
        padding: 25px 18px;
        border-radius: 21px;
    }

    .ml-comments-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .ml-comment-toggle-btn {
        width: 100%;
    }

    .ml-comment-form-wrapper {
        padding: 21px 16px;
    }

    .ml-comment-form__actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .ml-cancel-comment-btn,
    .ml-submit-comment-btn {
        width: 100%;
    }

    .ml-comment-card {
        grid-template-columns: 47px minmax(0, 1fr);
        gap: 12px;
        padding: 17px;
    }

    .ml-comment-avatar {
        width: 47px;
        height: 47px;
        border-radius: 14px;
        font-size: 19px;
    }

    .ml-comment-content__header {
        align-items: flex-start;
    }

    .ml-comment-quote {
        display: none;
    }

    .ml-related-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .ml-related-heading h2 {
        font-size: 32px;
    }

}

@media (max-width: 480px) {

    .ml-article-card {
        margin-right: -4px;
        margin-left: -4px;
        border-radius: 20px;
    }

    .ml-article-featured-image {
        height: 280px;
        min-height: 280px;
        border-radius: 20px 20px 0 0;
    }

    .ml-article-hero h1 {
        font-size: 35px;
    }

    .ml-article-meta {
        align-items: flex-start;
        flex-direction: column;
    }

    .ml-mobile-share__buttons .ml-share-btn {
        width: 43px;
        height: 43px;
    }

}













/*******************CONTACT PAGE**************/

.pt-contact-btn {
    position: relative;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.pt-contact-btn:disabled,
.pt-contact-btn.is-loading {
    cursor: not-allowed;
    opacity: 0.75;
    pointer-events: none;
}

.pt-contact-btn .fa-spinner {
    font-size: 15px;
}



/************************service page*****************/
/* =========================================
MOTHERLAND SERVICE DETAILS VARIABLES
========================================= */


/* =========================================
GLOBAL
========================================= */



.ml-service-details-page *,
.ml-service-details-page *::before,
.ml-service-details-page *::after {
    box-sizing: border-box;
}

.ml-service-details-page img {
    display: block;
    max-width: 100%;
}

.ml-service-details-page a {
    text-decoration: none;
}

.ml-service-details-page button,
.ml-service-details-page input,
.ml-service-details-page textarea {
    font: inherit;
}


/* =========================================
SERVICE HERO
========================================= */

.ml-service-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 130px;
    background: var(--ml-dark-gradient);
}

.ml-service-hero::before {
    position: absolute;
    top: -220px;
    right: -140px;
    width: 560px;
    height: 560px;
    content: "";
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(201, 154, 46, 0.24),
            transparent 68%
        );
}

.ml-service-hero::after {
    position: absolute;
    bottom: -250px;
    left: -180px;
    width: 510px;
    height: 510px;
    content: "";
    border: 1px solid rgba(201, 154, 46, 0.14);
    border-radius: 50%;
}

.ml-service-hero__glow {
    position: absolute;
    top: 45%;
    left: 48%;
    width: 800px;
    height: 300px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            ellipse,
            rgba(201, 154, 46, 0.13),
            transparent 70%
        );
    filter: blur(14px);
}

.ml-service-hero__content {
    position: relative;
    z-index: 3;
    max-width: 720px;
}

.ml-service-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 23px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.ml-service-back-link:hover {
    color: var(--ml-gold-light);
}

.ml-service-back-link i {
    transition: transform 0.3s ease;
}

.ml-service-back-link:hover i {
    transform: translateX(-5px);
}

.ml-service-eyebrow {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    margin-bottom: 21px;
    padding: 9px 15px;
    border: 1px solid rgba(244, 215, 125, 0.25);
    border-radius: 50px;
    background: rgba(201, 154, 46, 0.1);
    color: var(--ml-gold-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ml-service-hero h1 {
    margin: 0;
    color: var(--ml-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(45px, 6vw, 75px);
    font-weight: 500;
    line-height: 1.07;
    letter-spacing: -2px;
}

.ml-service-hero__content > p {
    max-width: 660px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.69);
    font-size: 16px;
    line-height: 1.85;
}

.ml-service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
    margin-top: 31px;
}

.ml-primary-service-btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 6px 7px 6px 22px;
    border-radius: 50px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    box-shadow: 0 16px 35px rgba(201, 154, 46, 0.22);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ml-primary-service-btn span {
    display: grid;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ml-black);
    color: var(--ml-white);
    transition: transform 0.35s ease;
    place-items: center;
}

.ml-primary-service-btn:hover {
    transform: translateY(-4px);
    color: var(--ml-black);
    box-shadow: 0 21px 42px rgba(201, 154, 46, 0.3);
}

.ml-primary-service-btn:hover span {
    transform: rotate(-35deg);
}

.ml-secondary-service-btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    color: var(--ml-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    transition: 0.35s ease;
}

.ml-secondary-service-btn i {
    color: var(--ml-gold-light);
}

.ml-secondary-service-btn:hover {
    border-color: var(--ml-gold);
    background: rgba(201, 154, 46, 0.1);
    color: var(--ml-white);
}


/* =========================================
HERO VISUAL
========================================= */

.ml-service-hero__visual {
    position: relative;
    z-index: 3;
    max-width: 510px;
    margin-left: auto;
}

.ml-service-hero__image {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 160px 22px 160px 22px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.36);
}

.ml-service-hero__image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    animation:
        mlServiceHeroZoom
        15s
        ease-in-out
        infinite
        alternate;
}

@keyframes mlServiceHeroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.ml-service-hero__image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.03),
            rgba(0, 0, 0, 0.4)
        );
}

.ml-service-icon-card {
    position: absolute;
    z-index: 4;
    right: -25px;
    bottom: 45px;
    display: flex;
    min-width: 255px;
    align-items: center;
    gap: 14px;
    padding: 13px 18px 13px 13px;
    border: 1px solid rgba(201, 154, 46, 0.28);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--ml-shadow);
    backdrop-filter: blur(12px);
}

.ml-service-icon-card__image {
    display: grid;
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 20px;
    place-items: center;
}

.ml-service-icon-card__image img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.ml-service-icon-card small {
    display: block;
    margin-bottom: 5px;
    color: var(--ml-gold-dark);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ml-service-icon-card strong {
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
}

.ml-service-decor {
    position: absolute;
    border: 1px solid rgba(201, 154, 46, 0.2);
    border-radius: 50%;
}

.ml-service-decor--one {
    top: -35px;
    left: -35px;
    width: 100px;
    height: 100px;
}

.ml-service-decor--two {
    right: -40px;
    bottom: -35px;
    width: 145px;
    height: 145px;
}


/* =========================================
SERVICE CONTENT
========================================= */

.ml-service-content-section {
    padding: 100px 0;
}

.ml-service-main-card {
    padding: 48px;
    border: 1px solid var(--ml-border);
    border-radius: var(--ml-radius-lg);
    background: var(--ml-white);
    box-shadow: var(--ml-shadow);
}

.ml-service-main-card__header {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-bottom: 30px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--ml-grey-light);
}

.ml-service-heading-icon {
    display: grid;
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
    overflow: hidden;
    border-radius: 19px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 23px;
    box-shadow: 0 13px 29px rgba(201, 154, 46, 0.22);
    place-items: center;
}

.ml-service-heading-icon img {
    width: 56%;
    height: 56%;
    object-fit: contain;
}

.ml-service-main-card__header span {
    display: block;
    margin-bottom: 5px;
    color: var(--ml-gold-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ml-service-main-card__header h2 {
    margin: 0;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 600;
}

.ml-service-introduction {
    position: relative;
    margin-bottom: 35px;
    padding: 25px 26px 25px 65px;
    border-left: 4px solid var(--ml-gold);
    border-radius: 0 16px 16px 0;
    background: var(--ml-gold-soft);
}

.ml-service-introduction i {
    position: absolute;
    top: 26px;
    left: 25px;
    color: var(--ml-gold-dark);
    font-size: 21px;
}

.ml-service-introduction p {
    margin: 0;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.75;
}

.ml-service-full-content {
    color: var(--ml-body-text);
    font-size: 15px;
    line-height: 1.95;
}

.ml-service-full-content h2,
.ml-service-full-content h3,
.ml-service-full-content h4 {
    margin-top: 40px;
    margin-bottom: 17px;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    line-height: 1.35;
}

.ml-service-full-content h2 {
    font-size: 32px;
}

.ml-service-full-content h3 {
    font-size: 26px;
}

.ml-service-full-content h4 {
    font-size: 21px;
}

.ml-service-full-content p {
    margin-bottom: 21px;
}

.ml-service-full-content ul,
.ml-service-full-content ol {
    margin-bottom: 27px;
    padding-left: 22px;
}

.ml-service-full-content li {
    margin-bottom: 10px;
}

.ml-service-full-content img {
    width: 100%;
    height: auto;
    margin: 32px 0;
    border-radius: 18px;
}

.ml-service-full-content blockquote {
    margin: 35px 0;
    padding: 28px 31px;
    border-left: 4px solid var(--ml-gold);
    border-radius: 0 15px 15px 0;
    background: var(--ml-black);
    color: var(--ml-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
}

.ml-service-full-content a {
    color: var(--ml-gold-dark);
    font-weight: 700;
    text-decoration: underline;
}

.ml-service-full-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
}

.ml-service-full-content th,
.ml-service-full-content td {
    padding: 14px;
    border: 1px solid var(--ml-grey-light);
}

.ml-service-full-content th {
    background: var(--ml-black);
    color: var(--ml-white);
}

.ml-service-content-end {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 50px;
    color: var(--ml-gold);
}

.ml-service-content-end span {
    width: 90px;
    height: 1px;
    background:
        linear-gradient(
            to right,
            transparent,
            var(--ml-gold),
            transparent
        );
}


/* =========================================
SIDEBAR
========================================= */

.ml-service-sidebar {
    position: sticky;
    top: 25px;
}

.ml-service-side-card {
    margin-bottom: 23px;
    padding: 28px;
    border: 1px solid var(--ml-border);
    border-radius: 5px;
    background: var(--ml-white);
    box-shadow: 0 17px 48px rgba(0, 0, 0, 0.06);
}

.ml-service-side-card--dark {
    position: relative;
    overflow: hidden;
    background: var(--ml-dark-gradient);
    color: var(--ml-white);
}

.ml-service-side-card--dark::before {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    content: "";
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(201, 154, 46, 0.25),
            transparent 70%
        );
}

.ml-side-card-icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
    border-radius: 17px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 19px;
    place-items: center;
}

.ml-side-card-label {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 8px;
    color: var(--ml-gold-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ml-service-side-card--dark h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 13px;
    color: var(--ml-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
}

.ml-service-side-card--dark p {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.75;
}

.ml-side-contact-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 100%;
    min-height: 49px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 18px;
    border-radius: 50px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition: 0.35s ease;
}

.ml-side-contact-btn:hover {
    transform: translateY(-3px);
    color: var(--ml-black);
}

.ml-side-card-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.ml-side-card-heading > span {
    display: grid;
    flex: 0 0 47px;
    width: 47px;
    height: 47px;
    border-radius: 15px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    place-items: center;
}

.ml-side-card-heading small {
    display: block;
    margin-bottom: 4px;
    color: var(--ml-gold-dark);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ml-side-card-heading h3 {
    margin: 0;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
}

.ml-service-benefit-list {
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 13px;
    list-style: none;
}

.ml-service-benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: var(--ml-body-text);
    font-size: 12px;
    line-height: 1.55;
}

.ml-service-benefit-list li span {
    display: grid;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--ml-gold-soft);
    color: var(--ml-gold-dark);
    font-size: 9px;
    place-items: center;
}

.ml-service-contact-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.ml-service-contact-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid var(--ml-grey-light);
    border-radius: 14px;
    color: var(--ml-text);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.ml-service-contact-list a:hover {
    transform: translateX(4px);
    border-color: var(--ml-gold);
    color: var(--ml-text);
}

.ml-service-contact-list a > span {
    display: grid;
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    border-radius: 12px;
    background: var(--ml-black);
    color: var(--ml-gold-light);
    place-items: center;
}

.ml-service-contact-list small {
    display: block;
    margin-bottom: 3px;
    color: var(--ml-grey);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.ml-service-contact-list strong {
    display: block;
    overflow-wrap: anywhere;
    font-size: 12px;
}


/* =========================================
OTHER SERVICES
========================================= */

.ml-other-services-section {
    padding: 95px 0;
    background: var(--ml-light);
}

.ml-other-services-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 37px;
}

.ml-other-services-heading span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--ml-gold-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ml-other-services-heading h2 {
    margin: 0;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
}

.ml-other-services-heading p {
    max-width: 630px;
    margin: 13px 0 0;
    color: var(--ml-body-text);
    font-size: 14px;
    line-height: 1.75;
}

.ml-other-services-heading > a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
    color: var(--ml-text);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.ml-other-services-heading > a i {
    color: var(--ml-gold-dark);
    transition: transform 0.3s ease;
}

.ml-other-services-heading > a:hover i {
    transform: translateX(5px);
}

.ml-other-service-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--ml-border);
    border-radius: 22px;
    background: var(--ml-white);
    box-shadow: 0 17px 48px rgba(0, 0, 0, 0.065);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.ml-other-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--ml-shadow-hover);
}

.ml-other-service-card__image {
    position: relative;
    display: block;
    overflow: hidden;
    height: 235px;
}

.ml-other-service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.75s ease;
}

.ml-other-service-card:hover
.ml-other-service-card__image img {
    transform: scale(1.11);
}

.ml-other-service-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(0, 0, 0, 0.37)
        );
}

.ml-other-service-card__icon {
    position: relative;
    z-index: 3;
    display: grid;
    width: 65px;
    height: 65px;
    overflow: hidden;
    margin: -33px 0 0 23px;
    border: 5px solid var(--ml-white);
    border-radius: 18px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 21px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.14);
    place-items: center;
}

.ml-other-service-card__icon img {
    width: 55%;
    height: 55%;
    object-fit: contain;
}

.ml-other-service-card__body {
    padding: 19px 23px 24px;
}

.ml-other-service-card h3 {
    margin: 0 0 11px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 23px;
    line-height: 1.35;
}

.ml-other-service-card h3 a {
    color: var(--ml-text);
    transition: color 0.3s ease;
}

.ml-other-service-card:hover h3 a {
    color: var(--ml-gold-dark);
}

.ml-other-service-card p {
    display: -webkit-box;
    overflow: hidden;
    min-height: 61px;
    margin: 0 0 20px;
    color: var(--ml-body-text);
    font-size: 12px;
    line-height: 1.7;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ml-other-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ml-black);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.ml-other-service-card__link span {
    display: grid;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    transition: transform 0.35s ease;
    place-items: center;
}

.ml-other-service-card:hover
.ml-other-service-card__link span {
    transform: translateX(5px) rotate(-35deg);
}


/* =========================================
WHITE CALL TO ACTION
========================================= */

.ml-service-cta-section {
    padding: 30px 0 50px;
    background: var(--ml-off-white);
}

.ml-service-cta {
    position: relative;
    display: grid;
    overflow: hidden;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 27px;
    padding: 42px 46px;
    border: 1px solid rgba(201, 154, 46, 0.24);
    border-radius: 5px;
    background: var(--ml-white);
    box-shadow: var(--ml-shadow);
}

.ml-service-cta__pattern {
    position: absolute;
    top: -90px;
    right: -80px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(201, 154, 46, 0.15);
    border-radius: 50%;
}

.ml-service-cta__pattern::after {
    position: absolute;
    inset: 34px;
    content: "";
    border: 1px solid rgba(201, 154, 46, 0.13);
    border-radius: 50%;
}

.ml-service-cta__icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 27px;
    box-shadow: 0 15px 35px rgba(201, 154, 46, 0.23);
    place-items: center;
}

.ml-service-cta__content {
    position: relative;
    z-index: 2;
}

.ml-service-cta__content span {
    display: block;
    margin-bottom: 7px;
    color: var(--ml-gold-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ml-service-cta__content h2 {
    margin: 0;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
}

.ml-service-cta__content p {
    max-width: 640px;
    margin: 11px 0 0;
    color: var(--ml-body-text);
    font-size: 13px;
    line-height: 1.75;
}

.ml-service-cta__actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ml-service-cta__primary,
.ml-service-cta__secondary {
    display: inline-flex;
    min-width: 205px;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition: 0.35s ease;
}

.ml-service-cta__primary {
    background: var(--ml-black);
    color: var(--ml-white);
}

.ml-service-cta__primary i {
    color: var(--ml-gold-light);
}

.ml-service-cta__primary:hover {
    transform: translateY(-3px);
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
}

.ml-service-cta__primary:hover i {
    color: var(--ml-black);
}

.ml-service-cta__secondary {
    border: 1px solid var(--ml-grey-light);
    color: var(--ml-text);
}

.ml-service-cta__secondary:hover {
    border-color: var(--ml-gold);
    background: var(--ml-gold-soft);
    color: var(--ml-text);
}


/* =========================================
TABLET
========================================= */

@media (max-width: 1199px) {

    .ml-service-hero__image,
    .ml-service-hero__image img {
        min-height: 500px;
    }

    .ml-service-main-card {
        padding: 38px;
    }

    .ml-service-cta {
        grid-template-columns:
            auto
            minmax(0, 1fr);
    }

    .ml-service-cta__actions {
        grid-column: 1 / -1;
        flex-direction: row;
        padding-left: 105px;
    }

}


/* =========================================
MOBILE AND TABLET
========================================= */

@media (max-width: 991px) {

    .ml-service-hero {
        padding: 85px 0 105px;
    }

    .ml-service-hero__content {
        max-width: 100%;
        text-align: center;
    }

    .ml-service-back-link,
    .ml-service-eyebrow {
        margin-right: auto;
        margin-left: auto;
    }

    .ml-service-hero__content > p {
        margin-right: auto;
        margin-left: auto;
    }

    .ml-service-hero__actions {
        justify-content: center;
    }

    .ml-service-hero__visual {
        max-width: 610px;
        margin: 15px auto 0;
    }

    .ml-service-hero__image,
    .ml-service-hero__image img {
        min-height: 520px;
    }

    .ml-service-hero__image {
        border-radius: 120px 22px 120px 22px;
    }

    .ml-service-icon-card {
        right: 20px;
    }

    .ml-service-content-section {
        padding: 75px 0;
    }

    .ml-service-sidebar {
        position: static;
    }

    .ml-service-side-card {
        margin-bottom: 20px;
    }

    .ml-other-services-section {
        padding: 75px 0;
    }

    .ml-service-cta {
        grid-template-columns: 75px minmax(0, 1fr);
        padding: 35px;
    }

    .ml-service-cta__icon {
        width: 70px;
        height: 70px;
    }

    .ml-service-cta__actions {
        padding-left: 97px;
    }

}


/* =========================================
MOBILE
========================================= */

@media (max-width: 767px) {

    .ml-service-hero {
        padding: 70px 0 90px;
    }

    .ml-service-hero h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .ml-service-hero__content > p {
        font-size: 14px;
    }

    .ml-service-hero__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ml-primary-service-btn,
    .ml-secondary-service-btn {
        width: 100%;
    }

    .ml-service-hero__image,
    .ml-service-hero__image img {
        min-height: 420px;
    }

    .ml-service-hero__image {
        border-radius: 75px 20px 75px 20px;
    }

    .ml-service-icon-card {
        right: 12px;
        bottom: 20px;
        min-width: 225px;
    }

    .ml-service-main-card {
        padding: 27px 20px;
        border-radius: 21px;
    }

    .ml-service-main-card__header {
        align-items: flex-start;
    }

    .ml-service-heading-icon {
        flex: 0 0 56px;
        width: 56px;
        height: 56px;
    }

    .ml-service-main-card__header h2 {
        font-size: 27px;
    }

    .ml-service-introduction {
        padding: 21px 20px 21px 52px;
    }

    .ml-service-introduction i {
        top: 23px;
        left: 19px;
    }

    .ml-service-introduction p {
        font-size: 16px;
    }

    .ml-service-full-content {
        font-size: 14px;
    }

    .ml-service-full-content h2 {
        font-size: 28px;
    }

    .ml-service-full-content h3 {
        font-size: 24px;
    }

    .ml-other-services-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .ml-other-services-heading h2 {
        font-size: 35px;
    }

    .ml-service-cta {
        display: block;
        padding: 28px 21px;
        text-align: center;
    }

    .ml-service-cta__icon {
        margin: 0 auto 20px;
    }

    .ml-service-cta__content h2 {
        font-size: 29px;
    }

    .ml-service-cta__actions {
        margin-top: 23px;
        padding: 0;
        flex-direction: column;
    }

    .ml-service-cta__primary,
    .ml-service-cta__secondary {
        width: 100%;
    }

}


/* =========================================
SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .ml-service-hero h1 {
        font-size: 36px;
    }

    .ml-service-hero__image,
    .ml-service-hero__image img {
        min-height: 350px;
    }

    .ml-service-icon-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 25px);
        min-width: 0;
        margin: -32px auto 0;
    }

    .ml-service-decor {
        display: none;
    }

    .ml-service-main-card__header {
        flex-direction: column;
    }

    .ml-service-main-card__header h2 {
        font-size: 25px;
    }

    .ml-service-side-card {
        padding: 23px 20px;
    }

}
/******************************ABOUT US*****************************/
/* ==================================================
SHARED SECTION STYLES
================================================== */

.ml-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: var(--ml-gold-dark);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.ml-section-tag i {
    color: var(--ml-gold);
}

.ml-section-heading {
    max-width: 770px;
    margin-bottom: 48px;
}

.ml-section-heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ml-section-heading h2 {
    margin: 0;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(37px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -1.5px;
}

.ml-section-heading h2 span {
    color: var(--ml-gold-dark);
}

.ml-section-heading > p {
    max-width: 650px;
    margin: 18px auto 0;
    color: var(--ml-body-text);
    font-size: 14px;
    line-height: 1.8;
}

.ml-section-heading--light h2 {
    color: var(--ml-white);
}

.ml-section-heading--light h2 span {
    color: var(--ml-gold-light);
}

.ml-section-heading--light > p {
    color: rgba(255, 255, 255, 0.66);
}

.ml-section-heading--light .ml-section-tag {
    color: var(--ml-gold-light);
}


/* ==================================================
ABOUT US
================================================== */

.ml-home-about {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: var(--ml-white);
}

.ml-home-about__decoration {
    position: absolute;
    border: 1px solid rgba(201, 154, 46, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.ml-home-about__decoration--one {
    top: -180px;
    right: -170px;
    width: 430px;
    height: 430px;
}

.ml-home-about__decoration--two {
    bottom: -210px;
    left: -190px;
    width: 470px;
    height: 470px;
}

.ml-home-about__visual {
    position: relative;
    min-height: 650px;
    padding-right: 45px;
}

.ml-home-about__main-image {
    position: relative;
    overflow: hidden;
    width: 82%;
    height: 580px;
    border-radius: 170px 25px 170px 25px;
    background: var(--ml-black);
    box-shadow: var(--ml-shadow);
}

.ml-home-about__main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: mlAboutZoom 14s ease-in-out infinite alternate;
}

@keyframes mlAboutZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.ml-home-about__image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02),
            rgba(0, 0, 0, 0.36)
        );
}

.ml-home-about__secondary-image {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 10px;
    overflow: hidden;
    width: 235px;
    height: 285px;
    border: 9px solid var(--ml-white);
    border-radius: 24px 90px 24px 90px;
    background: var(--ml-black);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.2);
}

.ml-home-about__secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ml-home-about__secondary-image:hover img {
    transform: scale(1.1);
}

.ml-home-about__floating-label {
    position: absolute;
    z-index: 4;
    bottom: 35px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px 13px 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 17px;
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(10px);
}

.ml-home-about__floating-label > span {
    display: grid;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    place-items: center;
}

.ml-home-about__floating-label small {
    display: block;
    margin-bottom: 3px;
    color: var(--ml-gold-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ml-home-about__floating-label strong {
    color: var(--ml-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
}

.ml-home-about__experience {
    position: absolute;
    z-index: 5;
    top: 65px;
    right: 5px;
    display: grid;
    width: 130px;
    height: 130px;
    padding: 15px;
    border: 5px solid var(--ml-white);
    border-radius: 50%;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    text-align: center;
    box-shadow: 0 17px 38px rgba(201, 154, 46, 0.25);
    place-content: center;
}

.ml-home-about__experience strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
}

.ml-home-about__experience span {
    font-size: 9px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.ml-home-about__gold-ring {
    position: absolute;
    z-index: 1;
    top: -25px;
    left: -28px;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(201, 154, 46, 0.34);
    border-radius: 50%;
}

.ml-home-about__gold-ring::after {
    position: absolute;
    inset: 20px;
    content: "";
    border: 1px solid rgba(201, 154, 46, 0.2);
    border-radius: 50%;
}

.ml-home-about__content h2 {
    max-width: 650px;
    margin: 0;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(39px, 5vw, 59px);
    font-weight: 500;
    line-height: 1.11;
    letter-spacing: -1.7px;
}

.ml-home-about__content h2 span {
    display: block;
    color: var(--ml-gold-dark);
}

.ml-home-about__lead {
    margin: 24px 0 16px;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.75;
}

.ml-home-about__text {
    margin: 0;
    color: var(--ml-body-text);
    font-size: 14px;
    line-height: 1.85;
}

.ml-home-about__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
    margin-top: 29px;
}

.ml-home-about__feature {
    display: flex;
    gap: 13px;
    padding: 17px;
    border: 1px solid var(--ml-border);
    border-radius: 16px;
    background: var(--ml-off-white);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.ml-home-about__feature:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 154, 46, 0.38);
    box-shadow: 0 17px 35px rgba(0, 0, 0, 0.07);
}

.ml-home-about__feature > span {
    display: grid;
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    border-radius: 13px;
    background: var(--ml-black);
    color: var(--ml-gold-light);
    place-items: center;
}

.ml-home-about__feature h3 {
    margin: 0 0 5px;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
}

.ml-home-about__feature p {
    margin: 0;
    color: var(--ml-body-text);
    font-size: 11px;
    line-height: 1.55;
}

.ml-home-about__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 19px;
    margin-top: 31px;
}

.ml-gold-button {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    gap: 14px;
    padding: 6px 7px 6px 22px;
    border-radius: 50px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(201, 154, 46, 0.22);
    transition: 0.35s ease;
}

.ml-gold-button span {
    display: grid;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ml-black);
    color: var(--ml-white);
    transition: transform 0.35s ease;
    place-items: center;
}

.ml-gold-button:hover {
    transform: translateY(-4px);
    color: var(--ml-black);
}

.ml-gold-button:hover span {
    transform: rotate(-35deg);
}

.ml-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ml-text);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.ml-text-link i {
    color: var(--ml-gold-dark);
    transition: transform 0.3s ease;
}

.ml-text-link:hover {
    color: var(--ml-gold-dark);
}

.ml-text-link:hover i {
    transform: translateX(5px);
}


/* ==================================================
WHY CHOOSE US
================================================== */

.ml-why-choose {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background: var(--ml-dark-gradient);
}

.ml-why-choose::before {
    position: absolute;
    top: -230px;
    right: -180px;
    width: 530px;
    height: 530px;
    content: "";
    border: 1px solid rgba(201, 154, 46, 0.12);
    border-radius: 50%;
}

.ml-why-choose::after {
    position: absolute;
    bottom: -260px;
    left: -190px;
    width: 570px;
    height: 570px;
    content: "";
    border: 1px solid rgba(201, 154, 46, 0.1);
    border-radius: 50%;
}

.ml-why-choose__glow {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 850px;
    height: 400px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            ellipse,
            rgba(201, 154, 46, 0.12),
            transparent 68%
        );
    filter: blur(15px);
}

.ml-choose-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    height: 100%;
    min-height: 355px;
    padding: 31px 28px 28px;
    border: 1px solid rgba(201, 154, 46, 0.18);
    border-radius: 21px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--ml-white);
    backdrop-filter: blur(12px);
    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        background 0.45s ease,
        box-shadow 0.45s ease;
}

.ml-choose-card::before {
    position: absolute;
    top: -95px;
    right: -95px;
    width: 190px;
    height: 190px;
    content: "";
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(201, 154, 46, 0.18),
            transparent 70%
        );
    transition: transform 0.5s ease;
}

.ml-choose-card:hover {
    transform: translateY(-10px);
    border-color: rgba(244, 215, 125, 0.4);
    background: rgba(255, 255, 255, 0.075);
    box-shadow: 0 27px 60px rgba(0, 0, 0, 0.27);
}

.ml-choose-card:hover::before {
    transform: scale(1.25);
}

.ml-choose-card__number {
    position: absolute;
    top: 23px;
    right: 25px;
    color: rgba(255, 255, 255, 0.09);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 49px;
    font-weight: 700;
}

.ml-choose-card__icon {
    position: relative;
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 25px;
    border-radius: 18px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 21px;
    box-shadow: 0 13px 31px rgba(201, 154, 46, 0.22);
    transition: transform 0.45s ease;
    place-items: center;
}

.ml-choose-card:hover .ml-choose-card__icon {
    transform: rotate(-8deg) scale(1.07);
}

.ml-choose-card h3 {
    position: relative;
    margin: 0 0 7px;
    color: var(--ml-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
}

.ml-choose-card__subtitle {
    position: relative;
    display: block;
    margin-bottom: 17px;
    color: var(--ml-gold-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.ml-choose-card p {
    position: relative;
    margin: 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    line-height: 1.75;
}

.ml-choose-card__line {
    position: absolute;
    right: 28px;
    bottom: 24px;
    left: 28px;
    height: 1px;
    transform: scaleX(0.3);
    transform-origin: left;
    background:
        linear-gradient(
            90deg,
            var(--ml-gold),
            transparent
        );
    transition: transform 0.45s ease;
}

.ml-choose-card:hover .ml-choose-card__line {
    transform: scaleX(1);
}


/* ==================================================
MISSION AND VISION
================================================== */

.ml-purpose-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: var(--ml-off-white);
}

.ml-purpose-intro h2 {
    margin: 0;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(39px, 5vw, 57px);
    font-weight: 500;
    line-height: 1.11;
    letter-spacing: -1.5px;
}

.ml-purpose-intro h2 span {
    display: block;
    color: var(--ml-gold-dark);
}

.ml-purpose-intro > p {
    margin: 22px 0 29px;
    color: var(--ml-body-text);
    font-size: 14px;
    line-height: 1.85;
}

.ml-purpose-intro__image {
    position: relative;
    overflow: hidden;
    height: 285px;
    border-radius: 22px 80px 22px 80px;
    box-shadow: var(--ml-shadow);
}

.ml-purpose-intro__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.ml-purpose-intro__image:hover img {
    transform: scale(1.08);
}

.ml-purpose-intro__image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(0, 0, 0, 0.58)
        );
}

.ml-purpose-intro__image > span {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--ml-white);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.ml-purpose-intro__image > span i {
    color: var(--ml-gold-light);
}

.ml-purpose-cards {
    display: grid;
    gap: 23px;
}

.ml-purpose-card {
    position: relative;
    overflow: hidden;
    padding: 33px;
    border: 1px solid var(--ml-border);
    border-radius: 23px;
    background: var(--ml-white);
    box-shadow: 0 17px 48px rgba(0, 0, 0, 0.06);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.ml-purpose-card:hover {
    transform: translateX(8px);
    border-color: rgba(201, 154, 46, 0.38);
    box-shadow: var(--ml-shadow);
}

.ml-purpose-card--vision {
    margin-left: 60px;
}

.ml-purpose-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.ml-purpose-card__icon {
    display: grid;
    width: 61px;
    height: 61px;
    border-radius: 18px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 21px;
    box-shadow: 0 13px 28px rgba(201, 154, 46, 0.21);
    place-items: center;
}

.ml-purpose-card__number {
    color: rgba(201, 154, 46, 0.14);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    font-weight: 700;
}

.ml-purpose-card__label {
    display: block;
    margin-bottom: 9px;
    color: var(--ml-gold-dark);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ml-purpose-card h3 {
    margin: 0 0 14px;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    line-height: 1.3;
}

.ml-purpose-card p {
    margin: 0;
    color: var(--ml-body-text);
    font-size: 13px;
    line-height: 1.8;
}

.ml-purpose-card__bottom {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 25px;
    color: var(--ml-gold-dark);
}

.ml-purpose-card__bottom span {
    width: 80px;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            var(--ml-gold),
            transparent
        );
}

.ml-purpose-card__bottom i {
    transition: transform 0.3s ease;
}

.ml-purpose-card:hover .ml-purpose-card__bottom i {
    transform: translateX(7px);
}


/* ==================================================
CALL TO ACTION
================================================== */

.ml-home-cta {
    position: relative;
    display: flex;
    overflow: hidden;
    min-height: 620px;
    align-items: center;
    background: var(--ml-black);
}

.ml-home-cta__background,
.ml-home-cta__overlay {
    position: absolute;
    inset: 0;
}

.ml-home-cta__background {
    z-index: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.02);
    animation: mlCtaImageZoom 16s ease-in-out infinite alternate;
}

@keyframes mlCtaImageZoom {
    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.1);
    }
}

.ml-home-cta__overlay {
    z-index: 2;
    background: rgba(0, 0, 0, 0.78);
}

.ml-home-cta__pattern {
    position: absolute;
    z-index: 3;
    top: -210px;
    right: -180px;
    width: 570px;
    height: 570px;
    border: 1px solid rgba(244, 215, 125, 0.17);
    border-radius: 50%;
}

.ml-home-cta__pattern::before,
.ml-home-cta__pattern::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(244, 215, 125, 0.13);
    border-radius: 50%;
}

.ml-home-cta__pattern::before {
    inset: 55px;
}

.ml-home-cta__pattern::after {
    inset: 115px;
}

.ml-home-cta .container {
    position: relative;
    z-index: 5;
}

.ml-home-cta__content {
    max-width: 770px;
    margin: auto;
    text-align: center;
}

.ml-home-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 19px;
    color: var(--ml-gold-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.ml-home-cta__content h2 {
    margin: 0;
    color: var(--ml-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(41px, 6vw, 68px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.ml-home-cta__description {
    max-width: 680px;
    margin: 24px auto 31px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.85;
}

.ml-home-cta__button {
    display: inline-flex;
    min-height: 57px;
    align-items: center;
    gap: 15px;
    padding: 6px 7px 6px 24px;
    border-radius: 50px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 17px 40px rgba(201, 154, 46, 0.28);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ml-home-cta__button span {
    display: grid;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--ml-black);
    color: var(--ml-white);
    transition: transform 0.35s ease;
    place-items: center;
}

.ml-home-cta__button:hover {
    transform: translateY(-5px);
    color: var(--ml-black);
    box-shadow: 0 22px 48px rgba(201, 154, 46, 0.36);
}

.ml-home-cta__button:hover span {
    transform: rotate(-35deg);
}


/* ==================================================
RESPONSIVE
================================================== */

@media (max-width: 1199px) {

    .ml-home-about__visual {
        min-height: 600px;
    }

    .ml-home-about__main-image {
        height: 535px;
    }

    .ml-purpose-card--vision {
        margin-left: 30px;
    }

}

@media (max-width: 991px) {

    .ml-home-about,
    .ml-why-choose,
    .ml-purpose-section {
        padding: 80px 0;
    }

    .ml-home-about__visual {
        max-width: 680px;
        min-height: 650px;
        margin: auto;
    }

    .ml-home-about__main-image {
        width: 83%;
        height: 570px;
    }

    .ml-home-about__content {
        text-align: center;
    }

    .ml-home-about__content h2 {
        margin-right: auto;
        margin-left: auto;
    }

    .ml-home-about__features {
        text-align: left;
    }

    .ml-home-about__actions {
        justify-content: center;
    }

    .ml-purpose-intro {
        text-align: center;
    }

    .ml-purpose-intro__image {
        max-width: 700px;
        margin: auto;
    }

    .ml-purpose-card--vision {
        margin-left: 0;
    }

    .ml-purpose-cards {
        margin-top: 5px;
    }

    .ml-home-cta {
        min-height: 560px;
    }

}

@media (max-width: 767px) {

    .ml-home-about,
    .ml-why-choose,
    .ml-purpose-section {
        padding: 68px 0;
    }

    .ml-home-about__visual {
        min-height: 525px;
        padding-right: 18px;
    }

    .ml-home-about__main-image {
        width: 86%;
        height: 460px;
        border-radius: 95px 20px 95px 20px;
    }

    .ml-home-about__secondary-image {
        width: 175px;
        height: 215px;
        border-width: 6px;
        border-radius: 19px 60px 19px 60px;
    }

    .ml-home-about__experience {
        top: 35px;
        width: 105px;
        height: 105px;
    }

    .ml-home-about__experience strong {
        font-size: 20px;
    }

    .ml-home-about__floating-label {
        bottom: 25px;
        left: 17px;
    }

    .ml-home-about__features {
        grid-template-columns: 1fr;
    }

    .ml-home-about__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .ml-gold-button {
        justify-content: space-between;
        width: 50%;
    }

    .ml-text-link {
        justify-content: center;
    }

    .ml-choose-card {
        min-height: 325px;
    }

    .ml-purpose-card {
        padding: 26px 21px;
    }

    .ml-purpose-card h3 {
        font-size: 24px;
    }

    .ml-home-cta {
        min-height: 570px;
        padding: 75px 0;
    }

    .ml-home-cta__content h2 {
        font-size: 40px;
    }

    .ml-home-cta__description {
        font-size: 14px;
    }

}

@media (max-width: 480px) {

    .ml-home-about__visual {
        min-height: 450px;
        padding: 0;
    }

    .ml-home-about__main-image {
        width: 100%;
        height: 400px;
        border-radius: 70px 18px 70px 18px;
    }

    .ml-home-about__secondary-image {
        right: 8px;
        bottom: -5px;
        width: 145px;
        height: 175px;
    }

    .ml-home-about__experience {
        top: 20px;
        right: 8px;
        width: 92px;
        height: 92px;
        border-width: 4px;
    }

    .ml-home-about__experience strong {
        font-size: 17px;
    }

    .ml-home-about__floating-label {
        right: 15px;
        bottom: 20px;
        left: 15px;
        max-width: 215px;
    }

    .ml-home-about__gold-ring {
        display: none;
    }

    .ml-home-about__content h2,
    .ml-purpose-intro h2 {
        font-size: 35px;
    }

    .ml-section-heading h2 {
        font-size: 34px;
    }

    .ml-purpose-intro__image {
        height: 235px;
    }

    .ml-purpose-card__top {
        margin-bottom: 19px;
    }

    .ml-purpose-card__number {
        font-size: 43px;
    }

    .ml-home-cta__content h2 {
        font-size: 35px;
    }

    .ml-home-cta__button {
        justify-content: space-between;
        width: 72%;
    }

}
/********************************BREADCRUMS**********************************/
/* ================================================
DYNAMIC BREADCRUMB
================================================ */

.ml-breadcrumb {
    position: relative;
    display: flex;
    overflow: hidden;
    min-height: 350px;
    align-items: center;
    padding: 50px 0 30px;
    background: var(--ml-black);
    isolation: isolate;
}

.ml-breadcrumb__background,
.ml-breadcrumb__overlay {
    position: absolute;
    inset: 0;
}

.ml-breadcrumb__background {
    z-index: -5;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.03);
    animation:
        mlBreadcrumbZoom
        16s
        ease-in-out
        infinite
        alternate;
}

@keyframes mlBreadcrumbZoom {

    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.11);
    }

}

.ml-breadcrumb__overlay {
    z-index: -4;
    background: rgba(0, 0, 0, 0.82);
}

.ml-breadcrumb__glow {
    position: absolute;
    z-index: -3;
    top: 50%;
    left: 47%;
    width: 760px;
    height: 280px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            ellipse,
            rgba(201, 154, 46, 0.16),
            transparent 70%
        );
    filter: blur(18px);
    pointer-events: none;
}

.ml-breadcrumb__ring {
    position: absolute;
    z-index: -2;
    border: 1px solid rgba(244, 215, 125, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.ml-breadcrumb__ring--one {
    top: -240px;
    right: -170px;
    width: 550px;
    height: 550px;
}

.ml-breadcrumb__ring--one::before,
.ml-breadcrumb__ring--one::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(244, 215, 125, 0.11);
    border-radius: 50%;
}

.ml-breadcrumb__ring--one::before {
    inset: 58px;
}

.ml-breadcrumb__ring--one::after {
    inset: 118px;
}

.ml-breadcrumb__ring--two {
    bottom: -280px;
    left: -220px;
    width: 520px;
    height: 520px;
}

.ml-breadcrumb .container {
    position: relative;
    z-index: 3;
}

.ml-breadcrumb__content {
    max-width: 820px;
}

.ml-breadcrumb__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 19px;
    color: var(--ml-gold-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ml-breadcrumb__eyebrow i {
    color: var(--ml-gold);
}

.ml-breadcrumb h1 {
    margin: 0;
    color: var(--ml-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 82px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -2px;
    text-shadow: 0 8px 35px rgba(0, 0, 0, 0.25);
}

.ml-breadcrumb__navigation {
    margin-top: 27px;
}

.ml-breadcrumb__navigation ol {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 11px;
    margin: 0;
    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: rgba(5, 5, 5, 0.48);
    list-style: none;
    backdrop-filter: blur(12px);
}

.ml-breadcrumb__navigation li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ml-gold-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}

.ml-breadcrumb__navigation a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.76);
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.ml-breadcrumb__navigation a i {
    color: var(--ml-gold-light);
}

.ml-breadcrumb__navigation a:hover {
    transform: translateY(-2px);
    color: var(--ml-white);
}

.ml-breadcrumb__separator {
    color: rgba(255, 255, 255, 0.35) !important;
    font-size: 8px !important;
}

.ml-breadcrumb__bottom-line {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            var(--ml-gold-dark) 20%,
            var(--ml-gold-light) 50%,
            var(--ml-gold-dark) 80%,
            transparent 100%
        );
}


/* ================================================
CENTERED BREADCRUMB OPTION
================================================ */

.ml-breadcrumb--center .ml-breadcrumb__content {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ml-breadcrumb--center
.ml-breadcrumb__navigation ol {
    justify-content: center;
}


/* ================================================
COMPACT BREADCRUMB OPTION
================================================ */

.ml-breadcrumb--compact {
    min-height: 330px;
    padding: 85px 0 70px;
}

.ml-breadcrumb--compact h1 {
    font-size: clamp(42px, 6vw, 67px);
}


/* ================================================
RESPONSIVE
================================================ */

@media (max-width: 991px) {

    .ml-breadcrumb {
        min-height: 300px;
        padding: 40px 0 30px;
    }

    .ml-breadcrumb__content {
        max-width: 700px;
    }

    .ml-breadcrumb h1 {
        letter-spacing: -1.5px;
    }

}

@media (max-width: 767px) {

    .ml-breadcrumb {
        min-height: 300px;
        padding: 30px 0 25px;
        text-align: center;
    }

    .ml-breadcrumb__content {
        max-width: 100%;
    }

    .ml-breadcrumb__eyebrow {
        justify-content: center;
    }

    .ml-breadcrumb h1 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .ml-breadcrumb__navigation ol {
        justify-content: center;
        padding: 10px 15px;
    }

    .ml-breadcrumb__ring--one {
        top: -210px;
        right: -250px;
    }

    .ml-breadcrumb__ring--two {
        bottom: -350px;
        left: -290px;
    }

}

@media (max-width: 480px) {

    .ml-breadcrumb {
        min-height: 280px;
        padding: 30px 0 25px;
    }

    .ml-breadcrumb h1 {
        font-size: 39px;
    }

    .ml-breadcrumb__eyebrow {
        margin-bottom: 15px;
        font-size: 9px;
    }

    .ml-breadcrumb__navigation {
        margin-top: 22px;
    }

    .ml-breadcrumb__navigation ol {
        gap: 8px;
        padding: 9px 13px;
    }

    .ml-breadcrumb__navigation li {
        font-size: 9px;
    }

}


/*******************************FOOTER************************************/
/* ==================================================
MOTHERLAND FOOTER
================================================== */

.ml-footer {
    position: relative;
    overflow: hidden;
    background: var(--ml-black);
    color: var(--ml-white);
    isolation: isolate;
}

.ml-footer__background,
.ml-footer__overlay {
    position: absolute;
    inset: 0;
}

.ml-footer__background {
    z-index: -5;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.03);
    animation: mlFooterZoom 18s ease-in-out infinite alternate;
}

@keyframes mlFooterZoom {
    from {
        transform: scale(1.03);
    }

    to {
        transform: scale(1.1);
    }
}

.ml-footer__overlay {
    z-index: -4;
    background: rgba(5, 5, 5, 0.95);
}

.ml-footer__glow {
    position: absolute;
    z-index: -3;
    top: 30%;
    left: 50%;
    width: 900px;
    height: 400px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            ellipse,
            rgba(201, 154, 46, 0.12),
            transparent 70%
        );
    filter: blur(18px);
    pointer-events: none;
}

.ml-footer__ring {
    position: absolute;
    z-index: -2;
    border: 1px solid rgba(244, 215, 125, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.ml-footer__ring--one {
    top: -250px;
    right: -180px;
    width: 570px;
    height: 570px;
}

.ml-footer__ring--one::before,
.ml-footer__ring--one::after {
    position: absolute;
    content: "";
    border: 1px solid rgba(244, 215, 125, 0.08);
    border-radius: 50%;
}

.ml-footer__ring--one::before {
    inset: 55px;
}

.ml-footer__ring--one::after {
    inset: 115px;
}

.ml-footer__ring--two {
    bottom: -360px;
    left: -260px;
    width: 620px;
    height: 620px;
}


/* ==================================================
NEWSLETTER
================================================== */

.ml-footer-newsletter {
    position: relative;
    z-index: 5;
    padding-top: 35px;
}

.ml-footer-newsletter__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.8fr);
    align-items: center;
    gap: 40px;
    overflow: hidden;
    padding: 38px 42px;
    border: 1px solid rgba(201, 154, 46, 0.32);
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.075),
            rgba(255, 255, 255, 0.035)
        );
    box-shadow: 0 27px 75px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(15px);
}

.ml-footer-newsletter__inner::before {
    position: absolute;
    top: -95px;
    right: -80px;
    width: 250px;
    height: 250px;
    content: "";
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(201, 154, 46, 0.25),
            transparent 70%
        );
}

.ml-footer-newsletter__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 18px;
}

.ml-footer-newsletter__icon {
    display: grid;
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    border-radius: 21px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 24px;
    box-shadow: 0 15px 38px rgba(201, 154, 46, 0.25);
    place-items: center;
}

.ml-footer-newsletter__label {
    display: block;
    margin-bottom: 6px;
    color: var(--ml-gold-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.ml-footer-newsletter h2 {
    margin: 0;
    color: var(--ml-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 500;
}

.ml-footer-newsletter p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    line-height: 1.65;
}

.ml-footer-newsletter__form {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    background: rgba(5, 5, 5, 0.55);
}

.ml-footer-newsletter__input {
    position: relative;
    display: flex;
    flex: 1;
    min-width: 0;
    align-items: center;
}

.ml-footer-newsletter__input i {
    position: absolute;
    left: 18px;
    color: var(--ml-gold-light);
}

.ml-footer-newsletter__input input {
    width: 100%;
    height: 52px;
    padding: 0 15px 0 48px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ml-white);
    font-size: 13px;
}

.ml-footer-newsletter__input input::placeholder {
    color: rgba(255, 255, 255, 0.47);
}

.ml-footer-newsletter__form button {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 52px;
    align-items: center;
    gap: 13px;
    padding: 5px 6px 5px 20px;
    border: 0;
    border-radius: 50px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition:
        transform 0.35s ease,
        opacity 0.35s ease;
}

.ml-footer-newsletter__form button:hover {
    transform: translateY(-2px);
}

.ml-footer-newsletter__form button:disabled {
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

.ml-footer-newsletter__form .btn-icon {
    display: grid;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    background: var(--ml-black);
    color: var(--ml-white);
    transition: transform 0.35s ease;
    place-items: center;
}

.ml-footer-newsletter__form button:hover .btn-icon {
    transform: rotate(-35deg);
}


/* ==================================================
MAIN FOOTER
================================================== */

.ml-footer-main {
    position: relative;
    z-index: 4;
    padding: 40px 0 25px;
}

.ml-footer-brand {
    max-width: 390px;
}

.ml-footer-logo {
    display: inline-block;
    margin-bottom: 23px;
}

.ml-footer-logo img {
    width: 210px;
    max-width: 100%;
    height: auto;
}

.ml-footer-brand > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.85;
}

.ml-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 27px;
}

.ml-footer-social {
    position: relative;
    display: grid;
    overflow: hidden;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.055);
    color: var(--ml-white);
    font-size: 14px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
    place-items: center;
}

.ml-footer-social:hover {
    transform: translateY(-5px);
    border-color: var(--ml-gold);
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    box-shadow: 0 14px 28px rgba(201, 154, 46, 0.2);
}

.ml-footer-widget__toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ml-white);
    cursor: default;
    text-align: left;
}

.ml-footer-widget__toggle > span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ml-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 600;
}

.ml-footer-widget__toggle > span i {
    color: var(--ml-gold-light);
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
}

.ml-footer-toggle-icon {
    display: none;
}

.ml-footer-widget__content {
    margin-top: 23px;
}

.ml-footer-links {
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 13px;
    list-style: none;
}

.ml-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    font-weight: 600;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.ml-footer-links a i {
    color: var(--ml-gold);
    font-size: 9px;
    transition: transform 0.3s ease;
}

.ml-footer-links a:hover {
    transform: translateX(5px);
    color: var(--ml-white);
}

.ml-footer-links a:hover i {
    transform: translateX(3px);
}


/* ==================================================
CONTACTS
================================================== */

.ml-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ml-footer-contact {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 12px;
    color: inherit;
}

.ml-footer-contact > span {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(201, 154, 46, 0.23);
    border-radius: 13px;
    background: rgba(201, 154, 46, 0.08);
    color: var(--ml-gold-light);
    font-size: 13px;
    transition:
        transform 0.35s ease,
        background 0.35s ease;
    place-items: center;
}

a.ml-footer-contact:hover > span {
    transform: rotate(-7deg);
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
}

.ml-footer-contact div {
    min-width: 0;
}

.ml-footer-contact small {
    display: block;
    margin-bottom: 4px;
    color: var(--ml-gold-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.ml-footer-contact p,
.ml-footer-contact strong {
    display: block;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

a.ml-footer-contact:hover strong {
    color: var(--ml-white);
}


/* ==================================================
BOTTOM FOOTER
================================================== */

.ml-footer-bottom {
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(5, 5, 5, 0.65);
    backdrop-filter: blur(10px);
}

.ml-footer-bottom::before {
    position: absolute;
    top: -1px;
    left: 0;
    width: 220px;
    height: 2px;
    content: "";
    background:
        linear-gradient(
            90deg,
            var(--ml-gold),
            transparent
        );
}

.ml-footer-bottom__inner {
    display: flex;
    min-height: 56px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.ml-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
}

.ml-footer-bottom p i {
    margin-right: 4px;
    color: var(--ml-gold-light);
}

.ml-footer-bottom p strong {
    color: var(--ml-white);
}

.ml-footer-bottom__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
}

.ml-footer-bottom__links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.ml-footer-bottom__links a:hover {
    color: var(--ml-gold-light);
}

.ml-footer-bottom__links span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--ml-gold);
}


/* ==================================================
BACK TO TOP
================================================== */

.ml-back-to-top {
    position: fixed;
    z-index: 1050;
    right: 24px;
    bottom: 24px;
    display: flex;
    visibility: hidden;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    transform: translateY(20px);
    border: 1px solid rgba(201, 154, 46, 0.28);
    border-radius: 50px;
    opacity: 0;
    background: var(--ml-black);
    color: var(--ml-white);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        visibility 0.35s ease;
}

.ml-back-to-top.is-visible {
    visibility: visible;
    transform: translateY(0);
    opacity: 1;
}

.ml-back-to-top span {
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    place-items: center;
}

.ml-back-to-top small {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}


/* ==================================================
TABLET
================================================== */

@media (max-width: 1199px) {

    .ml-footer-newsletter__inner {
        grid-template-columns: 1fr;
    }

    .ml-footer-newsletter__form {
        max-width: 680px;
    }

}


/* ==================================================
MOBILE COLLAPSIBLE FOOTER
================================================== */

@media (max-width: 767px) {

    .ml-footer-newsletter {
        padding-top: 55px;
    }

    .ml-footer-newsletter__inner {
        gap: 25px;
        padding: 27px 20px;
        border-radius: 20px;
    }

    .ml-footer-newsletter__content {
        align-items: flex-start;
    }

    .ml-footer-newsletter__icon {
        flex: 0 0 54px;
        width: 54px;
        height: 54px;
        border-radius: 16px;
        font-size: 18px;
    }

    .ml-footer-newsletter h2 {
        font-size: 25px;
    }

    .ml-footer-newsletter__form {
        align-items: stretch;
        flex-direction: column;
        padding: 8px;
        border-radius: 17px;
    }

    .ml-footer-newsletter__input input {
        height: 51px;
    }

    .ml-footer-newsletter__form button {
        width: 100%;
        justify-content: space-between;
    }

    .ml-footer-main {
        padding: 60px 0 42px;
    }

    .ml-footer-brand {
        max-width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }

    .ml-footer-logo img {
        margin: auto;
    }

    .ml-footer-socials {
        justify-content: center;
    }

    .ml-footer-widget {
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    }

    .ml-footer-widget__toggle {
        min-height: 60px;
        cursor: pointer;
    }

    .ml-footer-widget__toggle > span {
        font-size: 18px;
    }

    .ml-footer-toggle-icon {
        display: block;
        color: var(--ml-gold-light);
        font-size: 11px;
        transition: transform 0.35s ease;
    }

    .ml-footer-widget.is-open
    .ml-footer-toggle-icon {
        transform: rotate(180deg);
    }

    .ml-footer-widget__content {
        display: none;
        margin: 0;
        padding: 5px 0 25px;
    }

    .ml-footer-widget.is-open
    .ml-footer-widget__content {
        display: block;
    }

    .ml-footer-bottom__inner {
        min-height: auto;
        padding: 25px 0;
        flex-direction: column;
        text-align: center;
    }

    .ml-footer-bottom__links {
        justify-content: center;
    }

    .ml-back-to-top {
        right: 14px;
        bottom: 14px;
    }

    .ml-back-to-top small {
        display: none;
    }

    .ml-back-to-top {
        padding: 5px;
    }

}


/* ==================================================
SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .ml-footer-newsletter__content {
        flex-direction: column;
    }

    .ml-footer-newsletter h2 {
        font-size: 23px;
    }

    .ml-footer-brand > p {
        font-size: 12px;
    }

    .ml-footer-bottom__links {
        gap: 8px;
    }

    .ml-footer-bottom__links span {
        display: none;
    }

    .ml-footer-bottom__links a {
        padding: 4px 6px;
    }

}
/********************NEW HERO*************/
/* ==================================================
MOTHERLAND DYNAMIC HERO
================================================== */

.ml-dynamic-hero {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    min-height: 650px;
    background: var(--ml-black);
}

.mlHeroSwiper {
    width: 100%;
    height: 100%;
}

.ml-hero-slide {
    position: relative;
    display: flex;
    overflow: hidden;
    width: 100%;
    height: 100%;
    align-items: center;
    background: var(--ml-black);
    isolation: isolate;
}


/* ==================================================
BACKGROUND MEDIA
================================================== */

.ml-hero-slide__media,
.ml-hero-slide__overlay,
.ml-hero-slide__glow {
    position: absolute;
    inset: 0;
}

.ml-hero-slide__media {
    z-index: -5;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ml-hero-slide__media::before {
    position: absolute;
    inset: 0;
    content: "";
}

.ml-hero-slide__media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Image zoom animation */

.ml-hero-slide[data-bg-type="image"]
.ml-hero-slide__media {
    transform: scale(1.02);
}

.ml-hero-slide.swiper-slide-active[data-bg-type="image"]
.ml-hero-slide__media {
    animation:
        mlHeroImageZoom
        12s
        ease-in-out
        infinite
        alternate;
}

@keyframes mlHeroImageZoom {

    from {
        transform: scale(1.02);
    }

    to {
        transform: scale(1.12);
    }

}


/* ==================================================
OVERLAY
================================================== */

.ml-hero-slide__overlay {
    z-index: -4;
    background: rgba(0, 0, 0, 0.75);
}

.ml-hero-slide__glow {
    z-index: -3;
    width: 800px;
    height: 500px;
    top: 50%;
    left: 20%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            ellipse,
            rgba(201, 154, 46, 0.17),
            transparent 70%
        );
    filter: blur(20px);
    pointer-events: none;
}


/* ==================================================
DECORATIVE ELEMENTS
================================================== */

.ml-hero-slide::before {
    position: absolute;
    z-index: -2;
    top: -270px;
    right: -200px;
    width: 620px;
    height: 620px;
    content: "";
    border: 1px solid rgba(244, 215, 125, 0.14);
    border-radius: 50%;
    pointer-events: none;
}

.ml-hero-slide::after {
    position: absolute;
    z-index: -2;
    right: -80px;
    bottom: -340px;
    width: 580px;
    height: 580px;
    content: "";
    border: 1px solid rgba(244, 215, 125, 0.1);
    border-radius: 50%;
    pointer-events: none;
}


/* ==================================================
CONTENT
================================================== */

.ml-hero-slide .container {
    position: relative;
    z-index: 5;
}

.ml-hero-slide__content {
    max-width: 850px;
    padding-top: 70px;
}

.ml-hero-slide__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 21px;
    color: var(--ml-gold-light);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.ml-hero-slide__eyebrow i {
    color: var(--ml-gold);
}

.ml-hero-slide__content h2 {
    max-width: 850px;
    margin: 0;
    color: var(--ml-white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 7vw, 94px);
    font-weight: 500;
    line-height: 1.01;
    letter-spacing: -3px;
    text-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.ml-hero-slide__content h2 span {
    display: block;
    color: var(--ml-gold-light);
}

.ml-hero-slide__description {
    max-width: 700px;
    margin: 27px 0 32px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.85;
}

.ml-hero-slide__button {
    display: inline-flex;
    min-height: 58px;
    align-items: center;
    gap: 16px;
    padding: 6px 7px 6px 25px;
    border-radius: 50px;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 17px 40px rgba(201, 154, 46, 0.28);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.ml-hero-slide__button span {
    display: grid;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ml-black);
    color: var(--ml-white);
    transition: transform 0.35s ease;
    place-items: center;
}

.ml-hero-slide__button:hover {
    transform: translateY(-5px);
    color: var(--ml-black);
    box-shadow: 0 23px 48px rgba(201, 154, 46, 0.36);
}

.ml-hero-slide__button:hover span {
    transform: rotate(-35deg);
}


/* ==================================================
CONTENT ANIMATION
================================================== */

.ml-hero-slide__eyebrow,
.ml-hero-slide__content h2,
.ml-hero-slide__description,
.ml-hero-slide__button {
    visibility: hidden;
    transform: translateY(38px);
    opacity: 0;
}

.ml-hero-slide.swiper-slide-active
.ml-hero-slide__eyebrow {
    visibility: visible;
    animation:
        mlHeroContentReveal
        0.75s
        0.15s
        forwards;
}

.ml-hero-slide.swiper-slide-active
.ml-hero-slide__content h2 {
    visibility: visible;
    animation:
        mlHeroContentReveal
        0.85s
        0.3s
        forwards;
}

.ml-hero-slide.swiper-slide-active
.ml-hero-slide__description {
    visibility: visible;
    animation:
        mlHeroContentReveal
        0.85s
        0.48s
        forwards;
}

.ml-hero-slide.swiper-slide-active
.ml-hero-slide__button {
    visibility: visible;
    animation:
        mlHeroContentReveal
        0.85s
        0.65s
        forwards;
}

@keyframes mlHeroContentReveal {

    from {
        transform: translateY(38px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }

}


/* ==================================================
PAGINATION
================================================== */

.ml-hero-pagination {
    position: absolute;
    z-index: 20;
    right: 50px !important;
    bottom: 42px !important;
    left: auto !important;
    display: flex;
    width: auto !important;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.ml-hero-pagination
.swiper-pagination-bullet {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    opacity: 1;
    background: rgba(5, 5, 5, 0.5);
    color: rgba(255, 255, 255, 0.75);
    font-size: 20px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
    backdrop-filter: blur(10px);
    place-items: center;
}

.ml-hero-pagination
.swiper-pagination-bullet i {
    width: 20px;
    height: 20px;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
}

.ml-hero-pagination
.swiper-pagination-bullet:hover {
    transform: translateY(-4px);
    border-color: var(--ml-gold);
    color: var(--ml-gold-light);
}

.ml-hero-pagination
.swiper-pagination-bullet-active {
    transform: scale(1.08);
    border-color: var(--ml-gold-light);
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    box-shadow: 0 12px 28px rgba(201, 154, 46, 0.28);
}


/* ==================================================
PROGRESS LINE
================================================== */

.ml-hero-progress {
    position: absolute;
    z-index: 20;
    right: 50px;
    bottom: 29px;
    overflow: hidden;
    width: 198px;
    height: 2px;
    background: rgba(255, 255, 255, 0.18);
}

.ml-hero-progress__bar {
    display: block;
    width: 0;
    height: 100%;
    background: var(--ml-gold-gradient);
}


/* ==================================================
PAUSED INDICATOR
================================================== */

.mlHeroSwiper.is-paused
.ml-hero-pagination::before {
    display: inline-flex;
    align-items: center;
    align-self: center;
    margin-right: 5px;
    content: "\f04c";
    color: var(--ml-gold-light);
    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: 900;
}


/* ==================================================
LARGE TABLET
================================================== */

@media (max-width: 1199px) {

    .ml-hero-slide__content {
        max-width: 760px;
    }

    .ml-hero-slide__content h2 {
        font-size: clamp(50px, 7vw, 80px);
    }

    .ml-hero-pagination {
        right: 30px !important;
    }

    .ml-hero-progress {
        right: 30px;
    }

}


/* ==================================================
TABLET AND MOBILE
================================================== */

@media (max-width: 991px) {

    .ml-dynamic-hero {
        height: 80vh;
        min-height: 620px;
    }

    .ml-hero-slide {
        text-align: center;
    }

    .ml-hero-slide__content {
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
        padding-top: 40px;
    }

    .ml-hero-slide__eyebrow {
        justify-content: center;
    }

    .ml-hero-slide__content h2 {
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(47px, 8vw, 72px);
        letter-spacing: -2px;
    }

    .ml-hero-slide__description {
        margin-right: auto;
        margin-left: auto;
    }

    .ml-hero-pagination {
        right: 50% !important;
        bottom: 29px !important;
        transform: translateX(50%);
        justify-content: center;
    }

    .ml-hero-progress {
        right: 50%;
        bottom: 17px;
        width: 180px;
        transform: translateX(50%);
    }

    .ml-hero-slide__glow {
        left: 50%;
    }

}


/* ==================================================
MOBILE
================================================== */

@media (max-width: 767px) {

    .ml-dynamic-hero {
        width: 100vw;
        height: 80vh;
        min-height: 580px;
        max-height: 760px;
    }

    .ml-hero-slide {
        align-items: center;
    }

    .ml-hero-slide .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .ml-hero-slide__content {
        padding-top: 20px;
    }

    .ml-hero-slide__eyebrow {
        margin-bottom: 15px;
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .ml-hero-slide__content h2 {
        font-size: clamp(38px, 10vw, 55px);
        line-height: 1.06;
        letter-spacing: -1.4px;
    }

    .ml-hero-slide__description {
        max-width: 570px;
        margin-top: 19px;
        margin-bottom: 25px;
        font-size: 13px;
        line-height: 1.75;
    }

    .ml-hero-slide__button {
        min-height: 53px;
        padding-left: 21px;
    }

    .ml-hero-slide__button span {
        width: 41px;
        height: 41px;
    }

    .ml-hero-pagination {
        bottom: 24px !important;
        gap: 7px;
    }

    .ml-hero-pagination
    .swiper-pagination-bullet {
        width: 37px;
        height: 37px;
        font-size: 17px;
    }

    .ml-hero-pagination
    .swiper-pagination-bullet i {
        width: 20px;
        height: 20px;
        font-size: 18px;
        line-height: 20px;
    }

    .ml-hero-progress {
        bottom: 13px;
        width: 155px;
    }

}


/* ==================================================
SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .ml-dynamic-hero {
        min-height: 560px;
    }

    .ml-hero-slide__content h2 {
        font-size: 37px;
    }

    .ml-hero-slide__description {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }

    .ml-hero-slide__button {
        justify-content: space-between;
        width: min(100%, 230px);
    }

    .ml-hero-pagination
    .swiper-pagination-bullet {
        width: 34px;
        height: 34px;
    }

}


/* ==================================================
SHORT HEIGHT SCREENS
================================================== */

@media (max-height: 700px) and (min-width: 992px) {

    .ml-dynamic-hero {
        min-height: 650px;
    }

    .ml-hero-slide__content {
        padding-top: 60px;
    }

    .ml-hero-slide__content h2 {
        font-size: 66px;
    }

    .ml-hero-slide__description {
        margin-top: 18px;
        margin-bottom: 23px;
    }

}


/* ==================================================
REDUCED MOTION ACCESSIBILITY
================================================== */

@media (prefers-reduced-motion: reduce) {

    .ml-hero-slide__media,
    .ml-hero-slide__content > *,
    .ml-hero-slide__button span {
        animation: none !important;
        transition: none !important;
    }

    .ml-hero-slide__eyebrow,
    .ml-hero-slide__content h2,
    .ml-hero-slide__description,
    .ml-hero-slide__button {
        visibility: visible;
        transform: none;
        opacity: 1;
    }

}

/*****************************HOME BLOG********************/
/* ==================================================
HOME BLOG SECTION
================================================== */

.ml-home-blog {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background: var(--ml-off-white);
}

.ml-home-blog::before {
    position: absolute;
    top: -220px;
    right: -190px;
    width: 510px;
    height: 510px;
    content: "";
    border: 1px solid rgba(201, 154, 46, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.ml-home-blog::after {
    position: absolute;
    bottom: -250px;
    left: -210px;
    width: 540px;
    height: 540px;
    content: "";
    border: 1px solid rgba(201, 154, 46, 0.11);
    border-radius: 50%;
    pointer-events: none;
}

.ml-home-blog__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 850px;
    height: 420px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(
            ellipse,
            rgba(201, 154, 46, 0.1),
            transparent 70%
        );
    filter: blur(18px);
    pointer-events: none;
}


/* ==================================================
SECTION HEADING
================================================== */

.ml-home-blog__heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 45px;
}

.ml-home-blog__heading > div {
    max-width: 760px;
}

.ml-home-blog__heading h2 {
    margin: 0;
    color: var(--ml-text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -1.6px;
}

.ml-home-blog__heading h2 span {
    display: block;
    color: var(--ml-gold-dark);
}

.ml-home-blog__heading p {
    max-width: 650px;
    margin: 18px 0 0;
    color: var(--ml-body-text);
    font-size: 14px;
    line-height: 1.8;
}

.ml-home-blog__view-all {
    display: inline-flex;
    flex: 0 0 auto;
    min-height: 52px;
    align-items: center;
    gap: 14px;
    padding: 5px 6px 5px 21px;
    border-radius: 50px;
    background: var(--ml-black);
    color: var(--ml-white);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.ml-home-blog__view-all span {
    display: grid;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    transition: transform 0.35s ease;
    place-items: center;
}

.ml-home-blog__view-all:hover {
    transform: translateY(-4px);
    color: var(--ml-white);
}

.ml-home-blog__view-all:hover span {
    transform: rotate(-35deg);
}


/* ==================================================
SWIPER
================================================== */

.mlHomeBlogSwiper {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 8px 3px 70px;
}

.mlHomeBlogSwiper .swiper-slide {
    height: auto;
}


/* ==================================================
BLOG CARD
================================================== */

.ml-home-blog-card {
    position: relative;
    display: flex;
    overflow: hidden;
    
    min-height: 350px;
    flex-direction: column;
    border: 1px solid var(--ml-border);
    border-radius: 5px;
    background: var(--ml-white);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.07);
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;
}

.ml-home-blog-card::before {
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    content: "";
    background: var(--ml-gold-gradient);
    transition: width 0.55s ease;
}

.ml-home-blog-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 154, 46, 0.42);
    box-shadow: var(--ml-shadow-hover);
}

.ml-home-blog-card:hover::before {
    width: 100%;
}


/* ==================================================
CARD IMAGE
================================================== */

.ml-home-blog-card__media {
    position: relative;
    overflow: hidden;
    height: 255px;
    background: var(--ml-black);
}

.ml-home-blog-card__media > a:first-child {
    display: block;
    width: 100%;
    height: 100%;
}

.ml-home-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation:
        mlHomeBlogImageZoom
        12s
        ease-in-out
        infinite
        alternate;
    transition:
        filter 0.6s ease,
        transform 0.8s ease;
}

@keyframes mlHomeBlogImageZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}

.ml-home-blog-card:hover
.ml-home-blog-card__media img {
    filter: brightness(0.78);
    transform: scale(1.12);
}

.ml-home-blog-card__media-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(0, 0, 0, 0.48)
        );
}

.ml-home-blog-card__category {
    position: absolute;
    z-index: 4;
    top: 17px;
    right: 17px;
    display: inline-flex;
    max-width: calc(100% - 34px);
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    background: rgba(5, 5, 5, 0.8);
    color: var(--ml-gold-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    backdrop-filter: blur(9px);
    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.ml-home-blog-card__category:hover {
    transform: translateY(-3px);
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
}


/* ==================================================
CARD BODY
================================================== */

.ml-home-blog-card__body {
    display: flex;
    /**flex: 2;**/
    flex-direction: column;
    padding: 25px 24px 21px;
}

.ml-home-blog-card__date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 13px;
    color: var(--ml-gold-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.ml-home-blog-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 13px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ml-home-blog-card h3 a {
    color: var(--ml-text);
    transition: color 0.3s ease;
}

.ml-home-blog-card:hover h3 a {
    color: var(--ml-gold-dark);
}

.ml-home-blog-card__body > p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 22px;
    color: var(--ml-body-text);
    font-size: 13px;
    line-height: 1.78;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ml-home-blog-card__read-more {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 11px;
    
    color: var(--ml-black);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.ml-home-blog-card__read-more span {
    display: grid;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: var(--ml-gold-gradient);
    color: var(--ml-black);
    transition: transform 0.35s ease;
    place-items: center;
}

.ml-home-blog-card:hover
.ml-home-blog-card__read-more span {
    transform: translateX(6px) rotate(-35deg);
}


/* ==================================================
CARD FOOTER
================================================== */

.ml-home-blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
    border-top: 1px solid var(--ml-grey-light);
    background: #fcfcfc;
}

.ml-home-blog-card__stats {
    display: flex;
    align-items: center;
    gap: 17px;
}

.ml-home-blog-card__stats span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ml-grey);
    font-size: 10px;
    font-weight: 800;
}

.ml-home-blog-card__stats i {
    color: var(--ml-gold-dark);
}

.ml-home-blog-card__mark {
    color: var(--ml-gold);
    font-size: 11px;
}


/* ==================================================
SQUARE PAGINATION
================================================== */

.ml-home-blog-pagination {
    position: absolute;
    right: 0 !important;
    bottom: 10px !important;
    left: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.ml-home-blog-pagination
.swiper-pagination-bullet {
    position: relative;
    width: 12px;
    height: 12px;
    margin: 0 !important;
    border: 1px solid rgba(201, 154, 46, 0.42);
    border-radius: 2px;
    opacity: 1;
    background: transparent;
    transition:
        width 0.35s ease,
        background 0.35s ease,
        transform 0.35s ease,
        border-color 0.35s ease;
}

.ml-home-blog-pagination
.swiper-pagination-bullet:hover {
    transform: translateY(-3px);
    border-color: var(--ml-gold-dark);
    background: rgba(201, 154, 46, 0.2);
}

.ml-home-blog-pagination
.swiper-pagination-bullet-active {
    width: 30px;
    border-color: var(--ml-gold-dark);
    background: var(--ml-gold-gradient);
    box-shadow: 0 7px 18px rgba(201, 154, 46, 0.22);
}


/* ==================================================
EMPTY STATE
================================================== */

.ml-home-blog__empty {
    position: relative;
    z-index: 2;
    padding: 60px 20px;
    border: 1px dashed rgba(201, 154, 46, 0.35);
    border-radius: 22px;
    background: var(--ml-white);
    text-align: center;
}

.ml-home-blog__empty > span {
    display: grid;
    width: 75px;
    height: 75px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--ml-gold-soft);
    color: var(--ml-gold-dark);
    font-size: 26px;
    place-items: center;
}

.ml-home-blog__empty h3 {
    margin: 0 0 9px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
}

.ml-home-blog__empty p {
    margin: 0;
    color: var(--ml-body-text);
    font-size: 13px;
}


/* ==================================================
TABLET
================================================== */

@media (max-width: 991px) {

    .ml-home-blog {
        padding: 80px 0;
    }

    .ml-home-blog__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .ml-home-blog__view-all {
        align-self: flex-start;
    }

    .ml-home-blog-card {
        min-height: 535px;
    }

}


/* ==================================================
MOBILE
================================================== */

@media (max-width: 767px) {

    .ml-home-blog {
        padding: 68px 0;
    }

    .ml-home-blog__heading {
        margin-bottom: 31px;
        text-align: center;
    }

    .ml-home-blog__heading h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .ml-home-blog__heading p {
        font-size: 13px;
    }

    .ml-home-blog__view-all {
        align-self: center;
    }

    .mlHomeBlogSwiper {
        padding-bottom: 58px;
    }

    .ml-home-blog-card {
        min-height: 0;
    }

    .ml-home-blog-card__media {
        height: 260px;
    }

    .ml-home-blog-card__body {
        padding: 23px 21px 20px;
    }

    .ml-home-blog-card h3 {
        font-size: 23px;
    }

    .ml-home-blog-card__footer {
        padding: 14px 21px;
    }

}


/* ==================================================
SMALL MOBILE
================================================== */

@media (max-width: 480px) {

    .ml-home-blog__heading h2 {
        font-size: 34px;
    }

    .ml-home-blog__view-all {
        justify-content: space-between;
        width: min(100%, 200px);
    }

    .ml-home-blog-card__media {
        height: 235px;
    }

}


.lvm-whatsapp-float{
  position:fixed;
  left:22px;
  bottom:75px;

  width:58px;
  height:58px;

  border-radius:50%;
  background:#25D366;
  color:#fff;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:32px;
  text-decoration:none;

  z-index:99999;

  box-shadow:0 12px 30px rgba(37,211,102,.35);

  animation:lvmWhatsappShake 2.2s infinite;
  transition:.3s ease;
}

.lvm-whatsapp-float:hover{
  color:#fff;
  transform:scale(1.08);
  box-shadow:0 18px 40px rgba(37,211,102,.45);
}

@keyframes lvmWhatsappShake{
  0%,100%{ transform:translateX(0) rotate(0deg); }
  8%{ transform:translateX(-3px) rotate(-6deg); }
  16%{ transform:translateX(3px) rotate(6deg); }
  24%{ transform:translateX(-2px) rotate(-4deg); }
  32%{ transform:translateX(2px) rotate(4deg); }
  40%{ transform:translateX(0) rotate(0deg); }
}

@media(max-width:600px){
  .lvm-whatsapp-float{
    right:16px;
    bottom:18px;
    width:52px;
    height:52px;
    font-size:28px;
  }
}

.body-bg{
background: var(--ml-off-white)!important;
}
p{
    font-size:16px !important;
}