/* =====================================================
   1. GLOBAL TYPOGRAPHY & BASE
===================================================== */

body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #4a4a4a;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* HEADINGS */
h1, h2, h3, h4, h5, h6,
.heading__title {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #1a1a1a;
}

/* MAIN TITLE */
.heading__title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* SUB HEADINGS */
h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

h5 {
    font-size: 16px;
    font-weight: 600;
    color: #810081;
    letter-spacing: 1px;
}

/* PARAGRAPHS */
p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
    text-align: justify;
}

/* TEXT WIDTH */
.container p {
    max-width: 95%;
}

/* IMPORTANT TEXT */
p b, p strong {
    color: #810081;
    font-weight: 700;
}

/* SECTION SPACING */
.section {
    padding: 40px 0 !important;
}

/* GRID SPACING FIX */
.row > div {
    margin-bottom: 20px;
}

/* SMOOTH UNDERLINE */
a {
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #d946ef;
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

/* REMOVE EXTRA SCROLLBAR */
html, body {
    overflow-x: hidden;
}

/* ENSURE NO INNER SCROLL */
.page-wrapper {
    overflow: hidden;
}


/* =====================================================
   2. GLOBAL COMPONENTS
===================================================== */

/* HEADING ACCENT LINE */
.heading--primary .heading__title {
    position: relative;
    padding-left: 18px;
}

.heading--primary .heading__title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 80%;
    background: linear-gradient(180deg, #810081, #d946ef);
    border-radius: 4px;
}

/* CARDS */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.card-title {
    font-family: 'Quicksand';
    font-weight: 700;
}


/* =====================================================
   3. HEADER / NAV
===================================================== */

.logo__img {
    height: 90px; /* increase this */
}

.header__top {
    padding: 8px 0 !important; /* reduce from theme default */
}

.header {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
}

.main-menu__item {
    margin-left: 20px;
}

.main-menu__item:last-child .main-menu__link {
    font-weight: 600;
}

.main-menu__link span {
    font-size: 16px !important;  /* increase size */
    font-weight: 600 !important; /* bold */
}

.main-menu__list {
    display: flex;
    align-items: center;
}


/* DONATE BUTTON */
.main-menu__item--donate {
    margin-left: 25px;
    display: flex;
    align-items: center;
}

/* FINAL DONATE BUTTON */
/* .header .donate-btn {
    background: #8e24aa;
    color: #fff !important;

    padding: 10px 22px;
    border-radius: 6px;

    font-weight: 600;
    font-size: 14px;

    display: inline-block;   
    line-height: normal;

    height: auto !important;
    min-height: unset !important;

    text-align: center;

    transition: all 0.3s ease;
} */

.header .donate-btn {
    background: #8e24aa;
    color: #fff !important;

    padding: 10px 22px;
    border-radius: 6px;

    font-weight: 600;
    font-size: 14px;

    display: inline-block;

    /* 👇 FLOAT EFFECT */
    position: relative;
    top: -4px; /* lifts it up */

    box-shadow: 0 6px 15px rgba(0,0,0,0.15);

    transition: all 0.3s ease;
}

/* HOVER */
/* .header .donate-btn:hover {
    background: #6a1b9a;
} */

.header .donate-btn:hover {
    background: #6a1b9a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


/* BIG DONATE */
.donate-btn-big {
    background: #1b5e20;
    color: #fff;
    padding: 4px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.donate-btn-big:hover {
    background: #2e7d32;
}

@media (max-width: 768px) {
    .hamburger {
        margin-right: 15px !important;
    }
}


/* =====================================================
   HERO SECTION (FINAL – FORCE WHITE + NO FADE BUG)
===================================================== */

.promo {
    position: relative;
}

/* OVERLAY */
.promo::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.05);
}

/* CONTENT ABOVE OVERLAY */
.promo .container,
.promo .promo-slider__nav,
.promo .promo__anchor {
    position: relative;
    z-index: 2;
}

/* =========================================
   🔥 FORCE ACTIVE SLIDE TO BE FULLY VISIBLE
========================================= */

/* THIS IS THE REAL FIX */
.promo-slider__item.slick-active,
.promo-slider__item.slick-current {
    opacity: 1 !important;
}

/* KILL FADE ANIMATION FROM THEME */
.promo-slider__item.slick-active .promo-slider__wrapper-1,
.promo-slider__item.slick-active .promo-slider__wrapper-2,
.promo-slider__item.slick-current .promo-slider__wrapper-1,
.promo-slider__item.slick-current .promo-slider__wrapper-2 {
    opacity: 1 !important;
    transform: none !important;
}

/* =========================================
   🔥 FORCE TEXT TO PURE WHITE ALWAYS
========================================= */

.promo-slider__title,
.promo-slider__title span,
.promo-slider__subtitle,
.promo__anchor span {
    color: #ffffff !important;
    opacity: 1 !important;
}

/* =========================================
   🔥 TITLE (SHARP + PREMIUM)
========================================= */

.promo-slider__title {
    font-family: 'Quicksand';
    font-weight: 800;
    font-size: 54px;
    line-height: 1.15;
    letter-spacing: 0.5px;
    margin-bottom: 20px;

    text-shadow:
        0 2px 6px rgba(0,0,0,0.9),
        0 8px 25px rgba(0,0,0,0.7);
}

/* =========================================
   🔥 SUBTITLE
========================================= */

.promo-slider__subtitle {
    font-size: 18px;
    line-height: 1.75;
    max-width: 520px;

    text-shadow:
        0 1px 4px rgba(0,0,0,0.9),
        0 4px 12px rgba(0,0,0,0.6);
}

/* =========================================
   🔥 REMOVE ANY DIMMING FILTERS
========================================= */

.promo-slider__item * {
    filter: none !important;
}


/* =====================================================
   5. INTRO SECTION
===================================================== */

#intro {
    padding-top: 100px;
    padding-bottom: 60px;
}

/* TITLE */
#intro .heading__title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    position: relative;
    margin-bottom: 20px;
}

/* PARAGRAPH FLOW */
#intro p {
    line-height: 1.85;
    margin-bottom: 18px;
}

/* FIRST PARA EMPHASIS */
#intro p:first-of-type {
    font-size: 17px;
    color: #222;
    font-weight: 500;
}

/* IMAGE */
#intro .about-front__img img {
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

#intro .about-front__img img:hover {
    transform: scale(1.02);
}

/* COLUMN SPACING */
#intro .col-lg-4 {
    padding-right: 40px;
}

#intro .col-lg-8 {
    padding-left: 20px;
}

/* ABOUT SECTION */
/* =====================================================
   7. ABOUT SECTION
===================================================== */

#about {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* TITLE CENTER FIX */
#about .heading__title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

/* REMOVE ACCENT LINE FROM CENTER TITLE */
#about .text-center .heading__title::before {
    display: none;
}

/* ADD UNDERLINE ACCENT INSTEAD */
#about .text-center .heading__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #810081, #d946ef);
}


/* ================= TEXT BLOCK ================= */

#about p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

/* FIRST PARAGRAPH EMPHASIS */
#about .row:first-of-type p:first-of-type,
#about .row:nth-of-type(2) p:first-of-type {
    font-size: 17px;
    font-weight: 500;
    color: #222;
}

/* CREATE READING FLOW */
#about p {
    max-width: 95%;
}


/* ================= IMAGE STYLING ================= */

#about img {
    border-radius: 10px;
    transition: all 0.4s ease;
}

/* MAIN IMAGE (RIGHT SIDE) */
#about .col-lg-6 > img {
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

/* IMAGE GRID */
#about .row.g-3 img {
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* HOVER EFFECT (SUBTLE PREMIUM FEEL) */
#about img:hover {
    transform: scale(1.02);
}


/* ================= SPACING BALANCE ================= */

#about .row.align-items-center {
    margin-top: 30px;
}

/* ADD BREATHING SPACE BETWEEN BLOCKS */
#about .row.mt-5 {
    margin-top: 60px !important;
}

/* TEXT COLUMN SPACING */
#about .col-lg-6:first-child {
    padding-right: 40px;
}

#about .col-lg-6:last-child {
    padding-left: 20px;
}


/* ================= VISUAL SEPARATION ================= */

/* SUBTLE DIVIDER BETWEEN 2 BLOCKS */
#about .row.mt-5 {
    position: relative;
}

#about .row.mt-5::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.08);
}


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

@media (max-width: 991px) {

    #about .col-lg-6:first-child,
    #about .col-lg-6:last-child {
        padding: 0 12px;
    }

    #about img {
        margin-top: 20px;
    }

}
/* #about {} */

/* OUR WORK */
/* =====================================================
   8. OUR WORK SECTION
===================================================== */

#our-work {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* ================= TITLE ================= */

#our-work .heading__title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* REMOVE LEFT ACCENT */
#our-work .text-center .heading__title::before {
    display: none;
}

/* ADD CENTER UNDERLINE */
#our-work .text-center .heading__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #810081, #d946ef);
}


/* ================= TUSKER HARMONY BLOCK ================= */

#our-work .row.align-items-center {
    margin-top: 50px;
}

/* LEFT TEXT */
#our-work h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

#our-work h5 {
    font-size: 14px;
    letter-spacing: 1.5px;
    color: #810081;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* PARAGRAPH FLOW */
#our-work p {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
    margin-bottom: 18px;
}

/* FIRST PARA EMPHASIS */
#our-work .col-lg-6 p:first-of-type {
    font-size: 17px;
    font-weight: 500;
    color: #222;
}

/* IMAGE */
#our-work .col-lg-6 img {
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

#our-work .col-lg-6 img:hover {
    transform: scale(1.02);
}


/* ================= PROGRAMMES TITLE ================= */

#our-work h3 + p.text-center {
    margin-top: 5px;
    color: #666;
}


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

#our-work .card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
    background: #fff;

    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* HOVER EFFECT */
#our-work .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* IMAGE */
#our-work .card-img-top {
    height: 180px;
    object-fit: cover;
}

/* BODY */
#our-work .card-body {
    padding: 20px;
}

/* TITLE */
#our-work .card-title {
    font-family: 'Quicksand';
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #810081;
}

/* TEXT */
#our-work .card-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}


/* ================= GRID BALANCE ================= */

#our-work .row.mt-4 {
    margin-top: 30px;
}

#our-work .col-md-6.col-lg-3 {
    padding-left: 12px;
    padding-right: 12px;
}


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

@media (max-width: 991px) {

    #our-work .col-lg-6 {
        padding: 0 5px;
    }

    #our-work img {
        margin-top: 20px;
    }

}
/* #our-work {} */

/* GET INVOLVED */
/* =====================================================
   9. GET INVOLVED SECTION
===================================================== */

#get-involved {
    padding-top: 80px;
    padding-bottom: 80px;
}


/* ================= TITLE ================= */

#get-involved .heading__title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

/* REMOVE LEFT LINE */
#get-involved .text-center .heading__title::before {
    display: none;
}

/* ADD UNDERLINE */
#get-involved .text-center .heading__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    margin: 12px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #810081, #d946ef);
}

/* SUBTITLE */
#get-involved .heading p {
    color: #666;
    margin-top: 5px;
}


/* ================= INTRO TEXT FIX ================= */

/* REMOVE YOUR INLINE STYLE EFFECT */
#get-involved > .container > .row.align-items-center > p {
    margin-left: 0 !important;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
    color: #444;
}


/* ================= LEFT CONTENT ================= */

#get-involved h5 {
    font-size: 14px;
    letter-spacing: 1.5px;
    color: #810081;
    text-transform: uppercase;
    margin-top: 25px;
    margin-bottom: 10px;
}

/* TEXT */
#get-involved p {
    font-size: 16px;
    line-height: 1.85;
    color: #444;
}

/* FIRST PARA EMPHASIS */
#get-involved .col-lg-6 > p:first-of-type {
    font-size: 17px;
    font-weight: 500;
    color: #222;
}


/* ================= IMAGE ================= */

#get-involved img {
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

#get-involved img:hover {
    transform: scale(1.02);
}


/* ================= CONTACT TITLE ================= */

#get-involved h3 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
}


/* ================= CONTACT BLOCK ================= */

#get-involved ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

/* CONTACT ITEMS */
#get-involved ul li {
    background: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;

    box-shadow: 0 5px 15px rgba(0,0,0,0.05);

    font-size: 15px;
}

/* LABEL */
#get-involved ul li strong {
    color: #810081;
}


/* ================= MAP ================= */

#get-involved iframe {
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}


/* ================= SPACING ================= */

#get-involved .row.mt-4 {
    margin-top: 30px;
}

#get-involved .row.mt-3 {
    margin-top: 30px;
}

/* FIX INTRO TEXT ALIGNMENT */
#get-involved .intro-text {
    margin: 0 0 20px;
    text-align: left;
    max-width: 100%;
}

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

@media (max-width: 991px) {

    #get-involved .col-lg-6 {
        padding: 0 12px;
    }

    #get-involved img,
    #get-involved iframe {
        margin-top: 20px;
    }

}
/* #get-involved {} */

/* DONATE */
/* =====================================================
   10. DONATE SECTION
===================================================== */

/* ================= IMPACT LIST ================= */

#donate ul {
    list-style: none;
    padding: 0;
    margin: 0;

    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 PER ROW */
    gap: 15px 30px;
}

/* EACH ITEM */
#donate ul li {
    position: relative;

    background: #fff;
    padding: 14px 16px 14px 45px;
    border-radius: 10px;

    font-size: 15px;
    line-height: 1.6;
    color: #444;

    box-shadow: 0 8px 25px rgba(0,0,0,0.06);

    transition: all 0.3s ease;
}

/* HOVER */
#donate ul li:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* CUSTOM ICON (INSTEAD OF BULLET) */
#donate ul li::before {
    content: "₹";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);

    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #810081, #d946ef);
    color: #fff;

    font-size: 14px;
    font-weight: bold;

    border-radius: 50%;
}


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

@media (max-width: 767px) {

    #donate ul {
        grid-template-columns: 1fr; /* 1 PER ROW */
    }

}

/* OR DIVIDER */
.or-divider {
    font-weight: 600;
    font-size: 14px;
    color: #666;

    position: relative;
    padding: 10px 0;
}

/* LINES LEFT & RIGHT */
.or-divider::before,
.or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #ccc;
}

.or-divider::before {
    right: 100%;
    margin-right: 10px;
}

.or-divider::after {
    left: 100%;
    margin-left: 10px;
}


/* MOBILE */
@media (max-width: 767px) {

    .or-divider {
        margin: 20px 0;
    }

    .or-divider::before,
    .or-divider::after {
        width: 30px;
    }

}
/* #donate {} */

/* =====================================================
   11. FOOTER (PREMIUM V2)
===================================================== */

.footer {
    background: radial-gradient(circle at 20% 0%, rgba(129,0,129,0.15), transparent 40%),
                radial-gradient(circle at 80% 0%, rgba(217,70,239,0.12), transparent 40%),
                linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    
    color: #bbb;
    padding: 55px 0 20px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

/* TOP ACCENT LINE */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #810081, #d946ef);
}

/* SOFT GLOW DOT (PREMIUM TOUCH) */
.footer::after {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(217,70,239,0.15), transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}


/* ================= GRID ================= */

.footer .row {
    align-items: flex-start;
}

.footer .row > div {
    margin-bottom: 12px;
}


/* ================= LOGO ================= */

.footer img {
    max-width: 130px;
    margin-bottom: 12px;
    opacity: 0.95;
}


/* ================= TITLE ================= */

.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 15px;
    letter-spacing: 0.5px;
}


/* ================= TEXT ================= */

.footer p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 8px;
    font-size: 13.5px;
}


/* ================= LINKS ================= */

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 13.5px;
    transition: 0.25s ease;
}

/* CLEAN PREMIUM HOVER */
.footer-links a:hover {
    color: #d946ef;
}


/* ================= CONTACT ================= */

/* CONTACT COLUMN */
.footer .row > div:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* EACH LINE */
.footer .row > div:nth-child(3) p {
    display: flex;
    justify-content: center;   /* TRUE CENTER */
    gap: 6px;

    width: 100%;
    max-width: 260px;          /* KEY FIX */

    margin: 0 auto 6px;
    text-align: center;        /* FORCE PERFECT CENTER */
}

/* OPTIONAL LABEL STYLE */
.footer .row > div:nth-child(3) p strong {
    color: #fff;
}


/* ================= SOCIAL ================= */

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 50%;
    background: rgba(255,255,255,0.05);

    color: #aaa;
    font-size: 14px;

    transition: all 0.3s ease;
}

/* PREMIUM HOVER */
.footer-social a:hover {
    background: linear-gradient(135deg, #810081, #d946ef);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217,70,239,0.3);
}


/* ================= DIVIDER ================= */

.footer hr {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 25px 0 15px;
}


/* ================= COPYRIGHT ================= */

.footer .text-center p {
    color: #777;
    font-size: 12.5px;
}


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

@media (max-width: 767px) {

    .footer {
        padding: 40px 0 15px;
    }

    /* PERFECT CENTER ALIGN */
    .footer .row > div {
        text-align: center !important;
        margin-bottom: 22px;
    }

    /* CENTER LINKS */
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* CENTER SOCIAL */
    .footer-social {
        justify-content: center;
    }

}

/* ================= MICRO ANIMATIONS ================= */

/* HIDDEN STATE */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

/* VISIBLE */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

#our-work .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#our-work .card:hover {
    transform: translateY(-8px) scale(1.01);
}

.donate-btn,
.donate-btn-big {
    transition: all 0.2s ease;
}

/* CLICK FEEL */
.donate-btn:active,
.donate-btn-big:active {
    transform: scale(0.96);
}

.promo-slider__title,
.promo-slider__subtitle {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


header.header.header-common .header__top {
    padding-top: 5px !important;
    padding-bottom: 0 !important;
    min-height: unset !important;
}

header .logo__img {
    height: 90px !important;
    max-height: 90px !important;
}

header .row.align-items-center {
    min-height: unset !important;
}