body {
    font-family: "Montserrat", sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}
h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
}
        
        .hero {
            background-image:url("/img/homeBack.jpg");
        }
        header {
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 9;
}

.header-inner {
    display: flex;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

.nav-wrap {
    width: 60%;
}

.sponsor-wrap {
    width: 40%;
}

img {
    max-width: 100%;
}

.hero {
    padding-top: 200px;
    padding-bottom:50px;
    position: relative;
    min-height: calc(100vh - 250px);
}

.nav-wrap-inner {
    display: flex;
}

.nav-wrap-inner p {
    color: white;
    font-size: 36px;
    margin-right: 50px;
    font-weight: 300;
}

.sponsor-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

h1 {
    font-family: "League Spartan", sans-serif;
    text-transform: uppercase;
    color: white;
    font-size: 80px;
    line-height: 1.2em;
    max-width: 55% !important;
}

.hero-inner {
    padding: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}



h1 strong {
    color: #43b9ee;
}

.hero-actions {
    display: flex;
}

span.login-trigger {
    background: #43b9ee;
    color: white;
    padding: 20px 50px;
    font-size: 24px;
    cursor: pointer;
}

.hero-actions p {
    margin: 0 !important;
    margin-left: 25px !important;
}

img.homePhone {
    position: absolute;
    left: 55%;
    bottom: 0;
    max-height: calc(100vh - 200px);
}

.hero-actions {
    align-items: center;
}

.hero-actions p a {
    color: white;
    font-size: 20px;
}

.loginPop {
    position: fixed;
    top: 0;
    opacity: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .95);
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
    overflow: hidden;
    pointer-events: none;
}
        
        .login-open .loginPop {
            left:0;
            opacity: 1;
            pointer-events: all;
            overflow: auto;
        }        
        
.sponsor-wrap img {
    max-width: 200px;
}

.sponsor-wrap p {
    color: #cdcdcd;
    font-size: 20px;
}
        
        a.activeA {
    border-bottom: solid 1px #43b9ee;
}
        
        .form-fields label {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

.form-fields input {
    background: transparent;
    color: white;
    padding: 15px;
    border: none;
    border-bottom: solid 1px white;
    margin-left: 20px;
    font-size: 20px;
}

.form-fields span {
    margin-right: 25px;
    margin-left: 25px;
}

.form-fields {
    margin-bottom: 50px;
}

.form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-actions button {
    background: #43b9ee;
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 50px;
    margin-right: 25px;
}

span.login-cancel {
    color: white;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
}

.form-fields input:focus-within {
    outline: none !important;
}

body.portalBody header {
    position: static !important;
}

main.admin {
    padding: 25px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

body.portalBody {
    background: #2b2b2b;
    overflow:auto;
}

.ajaxMessage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events:none;
    opacity:0;
    transition:all .5s ease;
    z-index:999999999999999;
}

.ajaxMessageUp .ajaxMessage {
    pointer-events:all;
    opacity:1;
}

.ajaxMessageBack {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #0000008a;
}

.ajaxMessageWrap {
    background: white;
    position: relative;
    z-index: 99;
    padding:20px;
}

span.ajaxContinue {
    background: #43b9ee;
    color: white;
    padding: 13px;
    display: inline-block;
    cursor: pointer;
}

.ajaxMessageWrap {
    text-align: center;
}


.submitting main {
    opacity: .4;
    pointer-events: none;
}

.waitingText {
    display:none;
}

.submitting .waitingText {
    display: block;
    position: fixed;
    top:50%;
    left: 50%;
    transform:translate(-50%, -50%);
    color: white;
    font-size:50px;
}