.elza-bold {
	font-family: elza-text,sans-serif;
	font-weight: 700;
	font-style: normal;
}

.elza-bold-oblique {
	font-family: elza-text,sans-serif;
	font-weight: 700;
	font-style: italic;
}

.elza-regular {
	font-family: elza-text,sans-serif;
	font-weight: 400;
	font-style: normal;
}

.elza-regular-oblique {
	font-family: elza-text,sans-serif;
	font-weight: 400;
	font-style: italic;
}

/* Site Popup */
.page-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	opacity: 0;
	opacity: 1;
	transition: visibility .3s,opacity .3s;
/*	visibility: hidden;*/
	visibility: visible;
	z-index: 10000;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #ffff;
	background-color: #fff;
}

.page-overlay::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(25, 47, 65, .65);
	z-index: 1;
}

 .without-image {
 	background-color: #ccc;
 }

.page-overlay .container {
	padding-top: 10vw;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	z-index: 2;
	height: 100%;
}

.page-overlay h1 {
	margin-top: 3rem;
	margin-bottom: 3rem;
	font-size: 8rem;
	line-height: 8.5rem;
}

.page-overlay .popup-content {
	margin-bottom: 1rem;
	padding: 3rem 1rem 0;
	max-width: 60rem;
	border-top: 1px solid #ffff;
	font-size: 2rem;
	line-height: 1.5;

}

.page-overlay .popup-content p {
	font-weight: 700 !important;
}

.page-overlay .popup-link {
	color: #fff;
	font-size: 1.8rem;
	line-height: 2.3rem;
}

.page-overlay .popup-link:hover {
	text-decoration: none;
}

.page-overlay .popup-link img {
	margin-left: 2rem;
}

@media (max-width: 769px) {
	.page-overlay .container {
		align-items: flex-start;
		padding: 12rem 2.5rem 5rem;
	}
	.page-overlay .popup-content {
		padding: 2rem 0 0;
		max-width: 100%;
		text-align: initial;
		font-size: 1.8rem;
	}
	.page-overlay h1 {
		margin-bottom: 2rem;
		font-size: 4rem;
		line-height: 4.5rem;
		text-align: initial;
	}
	.page-overlay .popup-link img {
		margin-left: 1rem;
	}
	.button-icon {
		max-height: 5.5rem;
	}
}
@media (max-width: 480px) {
	.popup-logo {
		max-width: 40%;
	}
}

/* END Site Popup */