.hpb-hero {
	position: relative;
	width: 100%;
	min-height: var(--hpb-h, 100vh);
	display: flex;
	overflow: hidden;
	isolation: isolate;
}

/* --- backgrounds --- */
.hpb-hero__bg {
	position: absolute;
	inset: -12% 0;
	z-index: 0;
	will-change: transform;
}

.hpb-hero__slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity var(--hpb-fade, 1200ms) ease-in-out;
}

.hpb-hero__slide.is-active {
	opacity: 1;
}

/* --- overlay --- */
.hpb-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: var(--hpb-overlay, #000);
	opacity: var(--hpb-overlay-op, 0.25);
	pointer-events: none;
}

/* --- content --- */
.hpb-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	align-items: var(--hpb-align-v, center);
	justify-content: center;
    padding: 120px 20px;
	min-height: var(--hpb-h, 100vh);
	box-sizing: border-box;
}

.hpb-hero__content {
	max-width: 1140px;
	width: 100%;
	text-align: var(--hpb-align-h, center);
	will-change: transform, opacity;
}

.hpb-hero__eyebrow {
    line-height: 120%;
    text-align: center;
    color: #fff !important;
    font-family: Georgia;
    font-size: 18px;
    font-style: italic;
}

.hpb-hero__title {
    display: block;
    font-family: "Lato", Arial, Helvetica, sans-serif!important;
    margin-top: 10px!important;
    font-size: 60px !important;
    font-weight: 600!important;
    color: #fff!important;
    text-transform: uppercase!important;
    font-style: normal!important;
}

.hpb-hero__typed {
	white-space: pre-wrap;
}

.hpb-hero__caret {
	display: none;
	width: 2px;
	height: 1em;
	margin-left: 3px;
	background: currentColor;
	vertical-align: baseline;
	transform: translateY(0.14em);
	animation: hpb-blink 1s step-end infinite;
}

.hpb-has-caret .hpb-hero__caret {
	display: inline-block;
}

@keyframes hpb-blink {
	0%, 100% { opacity: 1; }
	50%      { opacity: 0; }
}

.hpb-hero__text {
	color: #fff;
	margin-bottom: 24px;
}

.hpb-hero__btn {
    display: inline-block;
    text-decoration: none;
    transition: background .25s ease, transform .25s ease;
    background-color: #0257A7;
    color: #fff;
    border-radius: 5px;
    padding: 5px 30px 5px 30px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
}

.hpb-hero__btn:hover,
.hpb-hero__btn:focus {
	background: #17578f;
	color: #fff;
	transform: translateY(-2px);
}

@media (max-width: 767px) {
	.hpb-hero__title { font-size: calc(var(--hpb-title-size, 30px) * 0.65); }
	.hpb-hero__eyebrow { font-size: calc(var(--hpb-eyebrow-size, 16px) * 0.85); }
	.hpb-hero__inner { padding: 40px 16px; }
}

@media (prefers-reduced-motion: reduce) {
	.hpb-hero__slide,
	.hpb-hero__caret {
		animation: none !important;
		transition: none !important;
	}
}