.heroImageHeadlineContainer {
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
}
.heroImageContainer {
    position: relative;
}
.heroImageContainer picture {
    display: inline-block;
}
.heroImageContainer img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
}
.heroImage {
    display: block;
    height: auto;
    max-width: 100%;
}
.heroContent {
	left: 60px;
	margin: 0;
	padding: 0;
    position: absolute;
	top: 50%;
    transform: translate(0, -50%);
    /* The transform: translate(0, -50%) shifts the text back top by half its
    own size, which is what makes the centering accurate even when the text
    block has different number of rows.
    */
	width: 50%;
    z-index: 1;
}


@font-face {
	font-family: 'GM';
	font-style: normal;
	font-weight: normal;
	src: url('/resource/site_GothamMediumFont') format('opentype');
}

.heroContent h1 {
    color: var(--primary-white-color);
	font-family: GM, sans-serif !important;

    margin: 0;
    padding: 0;

	text-transform: uppercase;

	overflow-wrap: break-word;
}

h1.h1Light {
    color: var(--primary-white-color);
}

h1.h1Dark {
    color: var(--primary-dark-blue-color);
}


/* 1920px and wider */
@media (min-width: 1919px) {
    .heroImageHeadlineContainer {
        padding-bottom: 60px;
    }
    .heroContent {
		left: 100px;
        width: 50%;
    }
	.heroContent h1 {
		font-size: 54px;
		line-height: 100% !important;
	}
}
/* 1920px and wider */

/* 1280 - 1920 */
@media (min-width: 1279px) and (max-width: 1918px) {
    .heroImageHeadlineContainer {
        padding-bottom: 40px;
    }
    .heroContent {
		left: 60px;
        width: 50%;
    }
	.heroContent h1 {
		font-size: 36px;
		line-height: 120%;
	}
}
/* 1280 - 1920 */

/* 768 - 800 */
/* mobile landscape */
@media (min-width: 767px) and (max-width: 801px) and (orientation: landscape) {
    .heroImageHeadlineContainer {
        padding-bottom: 20px;
    }
    .heroContent {
		top: 40px;
		left: 60px;
        width: 42%;
        transform: none;
    }
	.heroContent h1 {
		font-size: 20px;
		line-height: 120%;
	}
}

/* mobile portrait */
@media (max-width: 820px) and (orientation: portrait) {
    .heroImageHeadlineContainer {
        padding-bottom: 20px;
    }
    .heroContent {
		top: 20px;
		left: 20px;
		width: 90%;
        transform: none;
    }
	.heroContent h1 {
		font-size: 22px;
		line-height: 120%;
	}
}