.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-aca9504 *//* =========================================================
   LAS VIXENS HEADER
========================================================= */

.lv-header {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #ededed;
    z-index: 9999;
}

.lv-header-inner {
    width: 100%;
    max-width: 1480px;
    height: 94px;
    margin: 0 auto;
    padding: 0 34px;

    display: grid;
    grid-template-columns: 230px 1fr 230px;
    align-items: center;

    box-sizing: border-box;
}


/* =========================================================
   LOGO
========================================================= */

.lv-header-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    text-decoration: none;
}

.lv-header-logo img {
    display: block;
    width: auto;
    max-width: 190px;
    max-height: 58px;
    object-fit: contain;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.lv-header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 31px;
}

.lv-header-nav a {
    position: relative;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.65px;

    color: #171717;
    text-decoration: none;
    text-transform: uppercase;

    padding: 41px 0;

    transition: color 0.2s ease;
}

.lv-header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 31px;

    width: 0;
    height: 1px;

    background: #c99a1c;

    transition: width 0.25s ease;
}

.lv-header-nav a:hover {
    color: #a77b0e;
}

.lv-header-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   RIGHT CTA
========================================================= */

.lv-header-action {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.lv-header-join {
    min-height: 45px;
    padding: 0 24px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #151515;
    background: #151515;

    font-family: "Montserrat", Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    text-decoration: none;

    color: #ffffff;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.lv-header-join:hover {
    background: #c99a1c;
    border-color: #c99a1c;
    color: #ffffff;
    transform: translateY(-1px);
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.lv-menu-toggle {
    display: none;

    width: 46px;
    height: 46px;

    padding: 0;
    margin: 0;

    border: 0;
    background: transparent;

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 7px;
}

.lv-menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background: #111111;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.lv-mobile-menu {
    display: none;
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1180px) {

    .lv-header-inner {
        grid-template-columns: 190px 1fr 170px;
        padding: 0 25px;
    }

    .lv-header-logo img {
        max-width: 165px;
    }

    .lv-header-nav {
        gap: 20px;
    }

    .lv-header-nav a {
        font-size: 9px;
        letter-spacing: 1.25px;
    }

    .lv-header-join {
        padding: 0 18px;
    }
}


/* =========================================================
   MOBILE / TABLET MENU
========================================================= */

@media (max-width: 980px) {

    .lv-header {
        border-bottom: 1px solid #e9e9e9;
    }

    .lv-header-inner {
        height: 82px;
        grid-template-columns: 1fr auto;
        padding: 0 22px;
    }

    .lv-header-logo img {
        max-width: 175px;
        max-height: 52px;
    }

    .lv-header-nav,
    .lv-header-action {
        display: none;
    }

    .lv-menu-toggle {
        display: flex;
    }


    /* MOBILE MENU PANEL */

    .lv-mobile-menu {
        position: fixed;
        top: 82px;
        left: 0;

        width: 100%;
        height: calc(100vh - 82px);

        padding: 35px 24px 45px;

        background: #ffffff;

        box-sizing: border-box;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-10px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;

        z-index: 9998;
    }

    .lv-menu-open .lv-mobile-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }


    /* MOBILE LINKS */

    .lv-mobile-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .lv-mobile-nav a {
        display: block;

        padding: 18px 0;

        border-bottom: 1px solid #ebebeb;

        font-family: "Cormorant Garamond", Georgia, serif;
        font-size: 32px;
        line-height: 1.05;
        font-weight: 500;

        color: #111111;
        text-decoration: none;
    }

    .lv-mobile-nav a:hover {
        color: #c99a1c;
    }


    /* MOBILE CTA */

    .lv-mobile-apply {
        width: 100%;
        min-height: 56px;

        margin-top: 35px;

        display: flex;
        align-items: center;
        justify-content: center;

        box-sizing: border-box;

        background: #111111;
        border: 1px solid #111111;

        font-family: "Montserrat", Arial, sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        text-decoration: none;

        color: #ffffff;
    }


    /* X ANIMATION */

    .lv-menu-open .lv-menu-toggle span:first-child {
        transform: translateY(4px) rotate(45deg);
    }

    .lv-menu-open .lv-menu-toggle span:last-child {
        transform: translateY(-4px) rotate(-45deg);
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .lv-header-inner {
        height: 76px;
        padding: 0 18px;
    }

    .lv-header-logo img {
        max-width: 152px;
        max-height: 46px;
    }

    .lv-mobile-menu {
        top: 76px;
        height: calc(100vh - 76px);
        padding: 28px 20px 40px;
    }

    .lv-mobile-nav a {
        font-size: 29px;
        padding: 16px 0;
    }

    .lv-menu-toggle {
        width: 42px;
        height: 42px;
    }
}/* End custom CSS */