.elementor-121 .elementor-element.elementor-element-b8a2f01{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-b8a2f01 *//* =========================================================
   ISKCON VRINDAAVAN
   PREMIUM HEADER
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background:
        rgba(255, 253, 247, 0.92);

    border-bottom:
        1px solid
        rgba(36, 59, 100, 0.08);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    transition:
        background .35s ease,
        box-shadow .35s ease,
        transform .35s ease;
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.site-header.scrolled {
    background:
        rgba(255, 253, 247, 0.97);

    box-shadow:
        0 8px 30px
        rgba(36, 59, 100, 0.07);
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.header-container {
    width: min(1180px, 92%);

    min-height: 82px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.site-logo {
    display: flex;

    flex-direction: column;

    flex-shrink: 0;

    text-decoration: none;

    line-height: 1;
}


/* MAIN LOGO */

.logo-main {
    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 27px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #243B64;
}


/* SUB LOGO */

.logo-sub {
    margin-top: 5px;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 4px;

    color: #D97706;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 28px;

    margin-left: auto;
}


/* NAV LINK */

.nav-link {
    position: relative;

    padding: 31px 0;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 11px;

    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    color: #4E5663;

    transition:
        color .3s ease;
}


/* UNDERLINE */

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 24px;

    width: 100%;
    height: 1px;

    background: #D97706;

    transform:
        scaleX(0);

    transform-origin:
        center;

    transition:
        transform .3s ease;
}


/* HOVER */

.nav-link:hover {
    color: #243B64;
}


.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}


/* ACTIVE */

.nav-link.active {
    color: #243B64;

    font-weight: 600;
}


/* =========================================================
   HEADER CTA
========================================================= */

.header-cta {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    flex-shrink: 0;

    min-height: 42px;

    padding: 0 17px;

    background: #243B64;

    color: #FFFFFF;

    font-family:
        "Poppins",
        sans-serif;

    font-size: 10px;

    font-weight: 600;

    text-decoration: none;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.header-cta span {
    font-size: 15px;

    transition:
        transform .3s ease;
}


.header-cta:hover {
    background: #D97706;

    transform: translateY(-1px);

    box-shadow:
        0 8px 20px
        rgba(217, 119, 6, .16);
}


.header-cta:hover span {
    transform: translateX(4px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid
        rgba(36, 59, 100, 0.12);

    background: #FFFFFF;

    cursor: pointer;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;
}


.menu-toggle span {
    display: block;

    width: 18px;
    height: 1.5px;

    background: #243B64;

    transition:
        transform .3s ease,
        opacity .3s ease;
}


/* =========================================================
   MOBILE MENU ACTIVE
========================================================= */

.menu-toggle.active span:nth-child(1) {
    transform:
        translateY(6.5px)
        rotate(45deg);
}


.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-6.5px)
        rotate(-45deg);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .header-container {
        min-height: 76px;
    }


    .main-nav {
        gap: 19px;
    }


    .nav-link {
        font-size: 10px;
    }


    .header-cta {
        padding: 0 14px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .header-container {
        min-height: 72px;

        width: 90%;
    }


    /* LOGO */

    .logo-main {
        font-size: 25px;
    }


    .logo-sub {
        font-size: 6.5px;

        letter-spacing: 3.5px;
    }


    /* DESKTOP NAV HIDDEN */

    .main-nav {
        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        margin: 0;

        padding: 8px 5% 18px;

        background:
            rgba(255, 253, 247, 0.98);

        border-bottom:
            1px solid
            rgba(36, 59, 100, 0.08);

        box-shadow:
            0 15px 30px
            rgba(36, 59, 100, 0.07);

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        transition:
            opacity .3s ease,
            visibility .3s ease,
            transform .3s ease;
    }


    /* MOBILE NAV OPEN */

    .main-nav.mobile-open {
        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);
    }


    /* MOBILE LINKS */

    .nav-link {
        width: 100%;

        padding: 15px 5px;

        border-bottom:
            1px solid
            rgba(36, 59, 100, 0.06);

        font-size: 11px;
    }


    .nav-link:last-child {
        border-bottom: none;
    }


    .nav-link::after {
        display: none;
    }


    /* CTA */

    .header-cta {
        display: none;
    }


    /* MENU */

    .menu-toggle {
        display: flex;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .header-container {
        min-height: 68px;
    }


    .logo-main {
        font-size: 23px;
    }


    .logo-sub {
        font-size: 6px;

        letter-spacing: 3px;
    }


    .menu-toggle {
        width: 39px;

        height: 39px;
    }

}/* End custom CSS */