header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* border-bottom: 1px solid gray; */
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.315);
    background-color: #242424;
    max-width: 1520px;
    width: 100%;
    padding: 0px 10px;

    position: -webkit-sticky;
    position: sticky;
    top: 0;

    z-index: 100;

    .navbar-toggle {
        display: none;
    }
}

footer {
    max-width: 1520px;
    width: 100%;
    margin-bottom: 10px;
    margin-top: 100px;
    
    padding: 20px 40px 0 40px;

    border-top: 1px solid rgba(128, 128, 128, 0.308);
    display: flex;
    justify-content: space-between;

    color: lightgray;

    h3 {
        margin-top: 0;
        margin-bottom: 5px;
    }

    hr {
        opacity: 0.2;
    }

    .links {
        /* padding: 20px; */
        display: flex;
        flex-direction: column;
        gap: 10px;

        a {
            font-size: medium;
            color: rgb(105, 101, 101);
        }
    }

    @media screen and (max-width: 450px) {
        flex-direction: column;
        gap: 20px;

        .info {
            padding-left: 15px;
        }
    }

    @media screen and (max-width: 800px) {
        padding: 20px 20px 0 20px;
    }
}

#mlb2-27820720.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
    width: 100%;
    background: linear-gradient(#d26935, #aa1820);
    text-align: center;
}

/* .ml-form-recaptcha { 
  float: right !important;

  margin: 0 auto;

  width: 304px;
}  */

/* Also ensure the g-recaptcha inside also respects this */
/* .ml-form-recaptcha .g-recaptcha {
  margin: 0 auto;
  width: 304px; 
} */

/* ================= Mobile Nav  ================= */

.navMenuMobile {
    position: absolute; 
    top: 90px; 
    left: 0; 
    width: 100%; 
    background-color: #242424; 
    padding: 5px;
}

.navMenuMobile ul {
    list-style-type: none; 
    display: flex; 
    flex-direction: column; 
    gap: 10px;

    a {
        font-family: 'Gill Sans';
        letter-spacing: 2px;
        font-variant: small-caps;
        font-size: 20px;

        text-decoration: none;
        color: rgb(238, 206, 197);
    }
}

/* ================= Mobile Nav Animation Classes ================= */

.menuEnterActive {
    transition-property: opacity, transform;
    transition-duration: 300ms;
    transition-timing-function: ease-out;
}

.menuEnterFrom {
    opacity: 0;
    transform: translateY(-20px);
}

.menuEnterTo {
    opacity: 1;
    transform: translateY(0px);
}

.menuExitActive {
    transition-property: opacity, transform;
    transition-duration: 200ms;
    transition-timing-function: ease-in;
}

.menuExitFrom {
    opacity: 1;
    transform: translateY(0);
}

.menuExitTo {
    opacity: 0;
    transform: translateY(-20px);
}

/* ================= Mobile Nav Animation Classes ================= */

/* ================= Mobile Nav  ================= */

header .logo {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

header .logo img {
    width: 70px;
}

header nav {
    display: flex;
    gap: 15px;
}

header nav a {
    font-family: 'Gill Sans';
    letter-spacing: 2px;
    font-variant: small-caps;
    font-size: 20px;

    text-decoration: none;
    color: rgb(238, 206, 197);
}

header h1 {
    font-size: 20px;
    background: -webkit-linear-gradient(#d26935, #aa1820);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    padding: 0;

    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    letter-spacing: 3px;
    font-variant: small-caps;
}

@media screen and (max-width: 800px) {
        
        header {
            width: 100%;
            padding: 0 10px;
        }

        header nav {
            display: none;
        }

        header nav.open {
            display: flex;
            flex-direction: column;
            position: absolute;

            top: 90px;
            padding: 5px;

            left: 0;
            width: 100%;
            background-color: #242424;
        }

        header .navbar-toggle {
            display: block;

            width: 30px;
            height: 25px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            cursor: pointer;
        }

        header .line {
            width: 100%;
            height: 3px;
            background-color: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        footer {
            flex-direction: column;
            gap: 20px;

            .info {
                padding-left: 15px;
            }
        }

        div.navbar-toggle.open {
            .line-1 {
                transform: rotate(45deg) translateY(16px);
            }
            .line-2 {
                opacity: 0;
            }
            .line-3 {
                transform: rotate(-45deg) translateY(-16px);
            }
        }
        
    }