nav.global-nav {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 100;
	padding: 8px 30px 0px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.global-nav .header-left {
    flex: 0 35%;
    flex-wrap: wrap;
    display: flex;
    justify-content: flex-start;
}

nav.global-nav .header-left ul li {
	padding: 0 0.5em;
}

nav.global-nav .header-left ul li a {
	color: #ffffff;
	border-bottom: 3px solid transparent;
	cursor: pointer;
}

nav.global-nav .header-left ul li:hover a, nav.global-nav .header-left ul li:focus a {
	color: #ffffff;
	border-bottom: 3px solid #ed1c24;
}

 nav.global-nav .header-left ul {
 	margin-top: auto;
 	margin-bottom: auto;
 }

nav.global-nav .header-center {
    flex: 0 30%;
    display: flex;
    flex-direction: column; 
    justify-content: center;
}

nav.global-nav .header-center > img {
	margin-bottom: -0.5em;
}

nav.global-nav .header-center > * {
	text-align: center;
}

nav.global-nav .header-center > p {
	white-space: nowrap;
    letter-spacing: 3px;
    margin-bottom: 0;
}

nav.global-nav .header-right {
	flex: 0 35%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
 }

 nav.global-nav .header-right > * {
 	margin: auto 0.25em;
 }

section.hero {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    padding: 0;
}

section.hero img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}


section.hero .hero-text-container {
	position: absolute;
	left: 0;
	bottom: 8%;
	z-index: 100;
	width: 56%;
	padding-left: calc(30px + 80 * ((100vw - 661px) / 1339));
}

section.hero .hero-text {
	font-size: calc(34px + 80 * ((100vw - 661px) / 1339));
	font-weight: 600;
	/*color: #ed1c24;*/
	color: #ffffff;
	text-shadow: 4px 4px #192942;
	text-align: left;
}

.contact-us .logo{    
	position: absolute;
    right: -10em;
    margin-top: -4em;
    height: 110%;
    width: auto;
    opacity: 0.1;
}

.supporters {
    margin-top: 1.618033988749895em;
    margin-bottom: 1.618033988749895em;
}

.supporters i {
    color: #3079A1;
    font-weight: 200;
}

footer {
	background-color: #C4C8D3;
    text-align: center;
    padding: 2em 1.5em;
    /*padding-top: calc(2em + 80 * ((100vw - 661px) / 1339));*/
    padding-right: calc(1.5em + 80 * ((100vw - 661px) / 1339));
    /*padding-bottom: calc(2em + 80 * ((100vw - 661px) / 1339));*/
    padding-left: calc(1.5em + 80 * ((100vw - 661px) / 1339));
    color: #1B2B44;
    margin-top: 0;
}

footer p {
	color: #1B2B44;
}

footer .logo {
	width: 150px;
	height: auto;
	margin-bottom: 0.5em;
}

footer .left-column {
	text-align: left;
}

footer .right-column {
	text-align: right;
}

footer .footer-menu {
    padding-top: 1.5em;
}

footer .footer-menu li a {
    color: #1B2B44;
    border-bottom: 3px solid transparent;
    cursor: pointer;
}

footer .footer-menu li:hover a, footer .footer-menu li:focus a {
    border-bottom: 3px solid #1B2B44;
    cursor: pointer;
}

footer .footer-menu li {
	padding-left: 1em;
}

footer .paidforby {
	display: inline-block;
    text-align: center;
    margin: 0px auto 20px auto;
    border: 1px solid #1B2B44;
    padding: 10px 16px 7px 16px;
    font-size: 14px;
    line-height: 1.45;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: #1B2B44;
    text-transform: uppercase;
}



/*=======================================
               BREAKPOINTS
=========================================*/

/* 500px and below – Desktop */
@media only screen and (max-width: 500px) {

    nav.global-nav .header-center {
        width: 230px;
    }

    nav.global-nav .header-center p {
        font-size: 0.75em;
    }

    nav.global-nav .header-center > img {
        margin-bottom: -0.25em;
    }

}