/* ============================================
   DONRESOURCES TANZANIA COMPANY LIMITED
   File: assets/css/donresources-v3.css
   Version: 3.1 Premium Corporate UI
   ============================================ */

:root {
    --dtcl-blue: #003366;
    --dtcl-blue-dark: #001f3f;
    --dtcl-gold: #c9a227;
    --dtcl-gold-light: #e9ca57;
    --dtcl-white: #ffffff;
    --dtcl-bg: #f6f8fb;
    --dtcl-text: #405064;
    --dtcl-muted: #748094;
    --dtcl-border: #e5ebf3;
    --dtcl-shadow: 0 22px 60px rgba(0, 31, 63, 0.14);
    --dtcl-shadow-soft: 0 12px 34px rgba(0, 31, 63, 0.08);
    --dtcl-radius: 24px;
    --dtcl-radius-sm: 14px;
    --dtcl-transition: 0.32s ease;
    --dtcl-font-main: 'Poppins', sans-serif;
    --dtcl-font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    font-family: var(--dtcl-font-body);
    color: var(--dtcl-text);
    background: var(--dtcl-white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--dtcl-transition);
}

img {
    max-width: 100%;
    display: block;
}

button {
    font: inherit;
}

.dtcl-container {
    width: min(1220px, calc(100% - 36px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    top: -60px;
    left: 16px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--dtcl-blue);
    color: var(--dtcl-white);
}

.skip-link:focus {
    top: 16px;
}

/* Header */
.dtcl-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(0,0,0,.06);
    transition: var(--dtcl-transition);
}

.dtcl-header.scrolled {
    box-shadow: var(--dtcl-shadow-soft);
}

.dtcl-header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.dtcl-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.dtcl-logo img {
    height: 70px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
}

.dtcl-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.dtcl-nav-link,
.dtcl-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 13px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--dtcl-blue);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    line-height: 1;
    transition: var(--dtcl-transition);
}

.dtcl-nav-link:hover,
.dtcl-nav-link.active,
.dtcl-dropdown.active > .dtcl-dropdown-toggle,
.dtcl-dropdown-toggle:hover {
    background: rgba(201,162,39,.12);
    color: var(--dtcl-gold);
}

.dtcl-invest-link {
    color: var(--dtcl-gold);
}

.dtcl-contact-link {
    padding-left: 18px;
    padding-right: 18px;
    background: linear-gradient(135deg, var(--dtcl-blue), var(--dtcl-blue-dark));
    color: var(--dtcl-white);
}

.dtcl-contact-link:hover,
.dtcl-contact-link.active {
    background: linear-gradient(135deg, var(--dtcl-gold), var(--dtcl-gold-light));
    color: var(--dtcl-white);
}

.dtcl-dropdown {
    position: relative;
}

.dtcl-dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 250px;
    padding: 10px;
    background: var(--dtcl-white);
    border: 1px solid var(--dtcl-border);
    border-radius: 16px;
    box-shadow: var(--dtcl-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--dtcl-transition);
}

.dtcl-dropdown:hover .dtcl-dropdown-menu,
.dtcl-dropdown.open .dtcl-dropdown-menu,
.dtcl-dropdown:focus-within .dtcl-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dtcl-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 10px;
    color: var(--dtcl-text);
    font-size: 14px;
    font-weight: 650;
}

.dtcl-dropdown-menu a:hover {
    background: var(--dtcl-bg);
    color: var(--dtcl-gold);
}

.dtcl-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 12px;
    background: var(--dtcl-blue);
    color: var(--dtcl-white);
    font-size: 22px;
}

/* Hero */
.dtcl-hero {
    position: relative;
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    background: var(--dtcl-blue-dark);
    overflow: hidden;
}

.dtcl-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0,31,63,.96), rgba(0,51,102,.72)),
        url('../images/hero-banner.jpg') center/cover no-repeat;
    transform: scale(1.04);
}

.dtcl-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -45% -10%;
    height: 55%;
    background: radial-gradient(circle, rgba(201,162,39,.27), transparent 65%);
}

.dtcl-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 54px;
    align-items: center;
    padding: 116px 0;
}

.dtcl-eyebrow,
.dtcl-eyebrow-dark,
.dtcl-section-heading span,
.dtcl-award span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--dtcl-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.dtcl-hero h1 {
    margin: 0;
    color: var(--dtcl-white);
    font-family: var(--dtcl-font-main);
    font-size: clamp(3rem, 7vw, 6.2rem);
    font-weight: 950;
    line-height: .98;
    letter-spacing: -2.6px;
}

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

.dtcl-hero p {
    max-width: 700px;
    margin: 26px 0 0;
    color: rgba(255,255,255,.86);
    font-size: clamp(1rem, 2vw, 1.26rem);
}

.dtcl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.dtcl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 27px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 900;
    transition: var(--dtcl-transition);
}

.dtcl-btn:hover {
    transform: translateY(-3px);
}

.dtcl-btn-gold {
    background: linear-gradient(135deg, var(--dtcl-gold), var(--dtcl-gold-light));
    color: var(--dtcl-blue-dark);
    box-shadow: 0 16px 36px rgba(201, 162, 39, 0.28);
}

.dtcl-btn-primary {
    background: linear-gradient(135deg, var(--dtcl-blue), var(--dtcl-blue-dark));
    color: var(--dtcl-white);
    box-shadow: 0 16px 36px rgba(0, 51, 102, 0.18);
}

.dtcl-btn-light {
    background: rgba(255,255,255,.12);
    color: var(--dtcl-white);
    border-color: rgba(255,255,255,.28);
    backdrop-filter: blur(12px);
}

.dtcl-hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 720px;
    margin-top: 46px;
}

.dtcl-hero-trust div {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 17px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(12px);
}

.dtcl-hero-trust strong {
    display: block;
    color: var(--dtcl-gold-light);
    font-size: 31px;
    font-weight: 950;
    line-height: 1;
}

.dtcl-hero-trust span {
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 750;
}

.dtcl-hero-card {
    padding: 32px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: var(--dtcl-radius);
    background: rgba(255,255,255,.13);
    color: var(--dtcl-white);
    box-shadow: var(--dtcl-shadow);
    backdrop-filter: blur(19px);
    animation: dtclFloat 6s ease-in-out infinite;
}

.dtcl-hero-card-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--dtcl-gold), var(--dtcl-gold-light));
    color: var(--dtcl-blue-dark);
    font-size: 31px;
}

.dtcl-hero-card h3 {
    margin: 0 0 12px;
    color: var(--dtcl-white);
    font-size: 25px;
    font-weight: 900;
}

.dtcl-hero-card p {
    margin: 0 0 20px;
    color: rgba(255,255,255,.78);
}

.dtcl-hero-card a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--dtcl-gold-light);
    font-weight: 900;
}

/* Sections */
.dtcl-section {
    padding: 104px 0;
}

.dtcl-section-heading {
    max-width: 780px;
    margin: 0 auto 58px;
    text-align: center;
}

.dtcl-section-heading h2,
.dtcl-split-content h2 {
    margin: 0;
    color: var(--dtcl-blue-dark);
    font-family: var(--dtcl-font-main);
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.dtcl-section-heading p,
.dtcl-split-content p {
    margin: 18px auto 0;
    color: var(--dtcl-muted);
    font-size: 17px;
}

.dtcl-opportunities,
.dtcl-services,
.dtcl-process,
.dtcl-insights {
    background: var(--dtcl-bg);
}

.dtcl-trust-strip {
    background: var(--dtcl-blue-dark);
    color: rgba(255,255,255,.78);
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.dtcl-trust-strip-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    overflow-x: auto;
    scrollbar-width: none;
}

.dtcl-trust-strip-inner::-webkit-scrollbar {
    display: none;
}

.dtcl-trust-strip span {
    white-space: nowrap;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

/* Cards */
.dtcl-opportunity-grid,
.dtcl-service-grid,
.dtcl-process-grid,
.dtcl-project-grid,
.dtcl-insight-grid {
    display: grid;
    gap: 24px;
}

.dtcl-opportunity-grid,
.dtcl-service-grid,
.dtcl-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dtcl-project-grid,
.dtcl-insight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dtcl-opportunity-card,
.dtcl-service-card,
.dtcl-process-grid article,
.dtcl-project-card,
.dtcl-insight-card {
    position: relative;
    overflow: hidden;
    padding: 31px;
    border: 1px solid var(--dtcl-border);
    border-radius: var(--dtcl-radius);
    background: var(--dtcl-white);
    box-shadow: var(--dtcl-shadow-soft);
    transition: var(--dtcl-transition);
}

.dtcl-opportunity-card:hover,
.dtcl-service-card:hover,
.dtcl-process-grid article:hover,
.dtcl-project-card:hover,
.dtcl-insight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dtcl-shadow);
    border-color: rgba(201,162,39,.45);
}

.dtcl-opportunity-card i,
.dtcl-service-card i {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 19px;
    background: rgba(201,162,39,.14);
    color: var(--dtcl-gold);
    font-size: 29px;
}

.dtcl-opportunity-card h3,
.dtcl-service-card h3,
.dtcl-process-grid h3,
.dtcl-project-card h3,
.dtcl-insight-card h3 {
    margin: 0 0 12px;
    color: var(--dtcl-blue-dark);
    font-size: 21px;
    font-weight: 950;
    line-height: 1.2;
}

.dtcl-opportunity-card p,
.dtcl-service-card p,
.dtcl-process-grid p,
.dtcl-project-card p,
.dtcl-insight-card p {
    margin: 0 0 20px;
    color: var(--dtcl-muted);
}

.dtcl-opportunity-card a,
.dtcl-insight-card a {
    color: var(--dtcl-gold);
    font-weight: 950;
}

.dtcl-process-grid article span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--dtcl-gold);
    font-size: 34px;
    font-weight: 950;
    line-height: 1;
}

.dtcl-project-card {
    padding: 0;
}

.dtcl-project-card > div:last-child {
    padding: 27px;
}

.dtcl-project-card span,
.dtcl-insight-card span {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--dtcl-gold);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.dtcl-project-image {
    height: 235px;
    background: linear-gradient(135deg, rgba(0,51,102,.86), rgba(201,162,39,.45)), var(--dtcl-bg);
    background-position: center;
    background-size: cover;
}

.dtcl-project-image-one {
    background-image: linear-gradient(135deg, rgba(0,51,102,.72), rgba(201,162,39,.42)), url('../images/project-1.jpg');
}

.dtcl-project-image-two {
    background-image: linear-gradient(135deg, rgba(0,51,102,.72), rgba(201,162,39,.42)), url('../images/project-2.jpg');
}

.dtcl-project-image-three {
    background-image: linear-gradient(135deg, rgba(0,51,102,.72), rgba(201,162,39,.42)), url('../images/project-3.jpg');
}

/* Split */
.dtcl-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.dtcl-check-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.dtcl-check-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dtcl-blue);
    font-weight: 850;
}

.dtcl-check-list i {
    color: var(--dtcl-gold);
}

.dtcl-feature-panel {
    display: grid;
    gap: 22px;
}

.dtcl-feature-panel > div {
    padding: 36px;
    border-radius: var(--dtcl-radius);
    color: var(--dtcl-white);
    background:
        radial-gradient(circle at top right, rgba(201,162,39,.25), transparent 35%),
        linear-gradient(135deg, var(--dtcl-blue), var(--dtcl-blue-dark));
    box-shadow: var(--dtcl-shadow);
}

.dtcl-feature-panel i {
    margin-bottom: 18px;
    color: var(--dtcl-gold-light);
    font-size: 42px;
}

.dtcl-feature-panel h3 {
    margin: 0 0 10px;
    color: var(--dtcl-white);
    font-size: 24px;
}

.dtcl-feature-panel p {
    margin: 0;
    color: rgba(255,255,255,.78);
}

.dtcl-center {
    text-align: center;
    margin-top: 46px;
}

.dtcl-mt {
    margin-top: 28px;
}

/* Award and CTA */
.dtcl-award {
    padding: 78px 0;
    background:
        radial-gradient(circle at top left, rgba(201,162,39,.32), transparent 32%),
        linear-gradient(135deg, var(--dtcl-blue), var(--dtcl-blue-dark));
    color: var(--dtcl-white);
}

.dtcl-award-inner {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    gap: 30px;
    align-items: center;
}

.dtcl-award-icon {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--dtcl-gold), var(--dtcl-gold-light));
    color: var(--dtcl-blue-dark);
    font-size: 38px;
}

.dtcl-award h2 {
    margin: 0;
    color: var(--dtcl-white);
    font-size: clamp(1.8rem, 3vw, 2.75rem);
    line-height: 1.12;
}

.dtcl-award p {
    margin: 12px 0 0;
    color: rgba(255,255,255,.78);
}

.dtcl-final-cta {
    padding: 110px 0;
    text-align: center;
    color: var(--dtcl-white);
    background:
        radial-gradient(circle at top right, rgba(201,162,39,.28), transparent 35%),
        linear-gradient(135deg, rgba(0,31,63,.96), rgba(0,51,102,.86)),
        url('../images/hero-banner.jpg') center/cover no-repeat;
}

.dtcl-final-cta h2 {
    max-width: 880px;
    margin: 0 auto;
    color: var(--dtcl-white);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -1.4px;
}

.dtcl-final-cta p {
    max-width: 720px;
    margin: 22px auto 0;
    color: rgba(255,255,255,.82);
    font-size: 18px;
}

/* Footer */
.dtcl-footer {
    padding: 78px 0 24px;
    background: #08121d;
    color: rgba(255,255,255,.70);
}

.dtcl-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 38px;
}

.dtcl-footer-brand img {
    height: 72px;
    width: auto;
    margin-bottom: 18px;
}

.dtcl-footer h3,
.dtcl-footer h4 {
    margin: 0 0 18px;
    color: var(--dtcl-white);
}

.dtcl-footer p {
    color: rgba(255,255,255,.68);
}

.dtcl-footer-links {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dtcl-footer-links a:hover {
    color: var(--dtcl-gold-light);
}

.dtcl-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.dtcl-footer-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: var(--dtcl-white);
}

.dtcl-footer-social a:hover {
    background: var(--dtcl-gold);
    color: var(--dtcl-blue-dark);
}

.dtcl-footer-bottom {
    margin-top: 50px;
    padding-top: 22px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.10);
}

.dtcl-footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.dtcl-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 88px;
    z-index: 998;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 15px 35px rgba(37,211,102,.35);
}

.dtcl-back-top {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 998;
    width: 48px;
    height: 48px;
    border: 0;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--dtcl-gold);
    color: var(--dtcl-blue-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--dtcl-transition);
}

.dtcl-back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Animation */
@keyframes dtclFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* Responsive */
@media (max-width: 1120px) {
    .dtcl-nav-link,
    .dtcl-dropdown-toggle {
        padding: 11px 9px;
        font-size: 13px;
    }

    .dtcl-logo img {
        height: 62px;
        max-width: 160px;
    }

    .dtcl-opportunity-grid,
    .dtcl-service-grid,
    .dtcl-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .dtcl-header-inner {
        min-height: 74px;
    }

    .dtcl-logo img {
        height: 54px;
        max-width: 145px;
    }

    .dtcl-menu-toggle {
        display: grid;
        place-items: center;
    }

    .dtcl-nav {
        position: absolute;
        top: 100%;
        left: 18px;
        right: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        padding: 14px;
        background: #fff;
        border: 1px solid var(--dtcl-border);
        border-radius: 0 0 18px 18px;
        box-shadow: var(--dtcl-shadow);
    }

    .dtcl-nav.open {
        display: flex;
    }

    .dtcl-nav-link,
    .dtcl-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 14px 16px;
    }

    .dtcl-contact-link {
        justify-content: center;
    }

    .dtcl-dropdown-menu {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        border-left: 2px solid var(--dtcl-border);
        border-radius: 0;
        margin: 0 0 0 14px;
        padding: 4px 0 4px 10px;
    }

    .dtcl-dropdown.open .dtcl-dropdown-menu {
        display: block;
    }

    .dtcl-hero-inner,
    .dtcl-split-grid,
    .dtcl-award-inner {
        grid-template-columns: 1fr;
    }

    .dtcl-hero-card {
        max-width: 560px;
    }

    .dtcl-project-grid,
    .dtcl-insight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dtcl-award-inner {
        text-align: center;
    }

    .dtcl-award-icon {
        margin: 0 auto;
    }

    .dtcl-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .dtcl-container {
        width: min(100% - 28px, 1220px);
    }

    .dtcl-hero {
        min-height: auto;
    }

    .dtcl-hero-inner {
        padding: 78px 0;
    }

    .dtcl-hero h1 {
        letter-spacing: -1.2px;
    }

    .dtcl-hero-actions,
    .dtcl-final-cta .dtcl-hero-actions {
        flex-direction: column;
    }

    .dtcl-btn {
        width: 100%;
    }

    .dtcl-hero-trust,
    .dtcl-opportunity-grid,
    .dtcl-service-grid,
    .dtcl-process-grid,
    .dtcl-project-grid,
    .dtcl-insight-grid,
    .dtcl-footer-grid {
        grid-template-columns: 1fr;
    }

    .dtcl-section {
        padding: 72px 0;
    }

    .dtcl-hero-card,
    .dtcl-opportunity-card,
    .dtcl-service-card,
    .dtcl-process-grid article,
    .dtcl-insight-card {
        padding: 24px;
    }

    .dtcl-whatsapp {
        right: 16px;
        bottom: 82px;
    }

    .dtcl-back-top {
        right: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
