header {
	background-size: cover;
	background-position: bottom;
	position: relative;
	height: 720px;
	width: 100%;
}

	header .header-content {
		position: absolute;
		top: 320px;
		text-align: center;
		color: #012A4B;
		width: 100%;
	}

		header .header-content h1,
		header .header-content h2,
		header .header-content h3,
		header .header-content h4 {
			color: #012A4B;
			font-weight: bold;
		}

			header .header-content h2 {
				font-size: 32px;
				line-height: 40px;
				text-transform: uppercase;
			}

			header .header-content h1 {
				font-size: 48px;
				line-height: 60px;
				margin-top: 30px;
				margin-bottom: 50px;
				text-shadow: 0px 5px 25px #000;
			}

	header .button {
		padding: 13px 70px 13px 20px;
		font-size: 30px;
		color: #E1F1FA;
		font-size: 20px;
		border: 3px solid #012A4B;
		font-family: 'Montserrat', sans-serif;
		text-transform: uppercase;
		font-weight: 600;
		border-radius: 100px;
		background-repeat: no-repeat;
		background-image: url('/img/arrow-right-white.svg');
		background-position: 92% center;
		cursor: pointer;
		background-color: #012A4B;
		box-shadow: 0px 5px 25px #0006;
	}
	
	/*
		header .button:hover {
			background-image: url('/img/arrow-right-white.svg');
			background-color:  #012A4B;
			color: #E1F1F9;
		}
	*/


    .header-items {
            position: fixed;
            top: 0;
            z-index: 9999;
            max-width: 100%;
        }

.legacy-bar {
    display: flex;
    position: relative;
    top: 0;
    width: 100vw;
    background-color: #5AB4E1;
    padding: 10px 20px;
    z-index: 1;
    color: #fff;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    font-weight: bold;
    font-size: 18px;
    z-index: 5000;
}


.legacy-bar a { 
    background-color: rgba(255,255,255, 0.2);
    padding: 3px 15px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
    font-weight: normal;
    margin-left: 15px;
    text-transform: uppercase;
}

@media screen and (max-width: 680px) {
    .legacy-bar {
        display: inline-block;
        line-height: 1.4;
        font-size: 16px;
    }

    .legacy-bar a {
        align-self: flex-start;
        margin-left: 0;
        margin-top: 10px;
    }
}