@charset "utf-8";
/* ==========================================================================
   Transition Overlay
   Danny Lewin Mann -> Gelfand, Rennert & Feldman
   ========================================================================== */
.transition-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 100000;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.transition-overlay__bg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	background: #0a0d12 url("../images/building5.jpg") center center / cover no-repeat;
}
.transition-overlay__bg:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(4,8,14,0.85) 0%, rgba(4,8,14,0.72) 45%, rgba(4,8,14,0.92) 100%);
}
.transition-overlay__content {
	position: relative;
	z-index: 1;
	max-width: 720px;
	width: 90%;
	margin: 60px auto 30px;
	padding: 50px 40px;
	text-align: center;
	font-family: open-sans, Arial, sans-serif;
}
.transition-overlay__logo {
	width: 270px;
	max-width: 65%;
	height: auto;
	margin: 0 auto 40px;
	display: block;
}
.transition-overlay__title {
	color: #FFFFFF;
	font-family: open-sans, Arial, sans-serif;
	font-weight: 600;
	font-size: 2.6em;
	line-height: 1.35em;
	letter-spacing: 0.02em;
	text-transform: none;
	margin-bottom: 0.7em;
}
.transition-overlay__text {
	color: #E7ECF2;
	font-size: 1.4em;
	line-height: 1.65em;
	letter-spacing: 0.02em;
	margin-bottom: 2em;
}
.transition-overlay__button {
	display: inline-block;
	background-color: #FFFFFF;
	color: #10161F;
	font-family: open-sans, Arial, sans-serif;
	font-weight: 700;
	font-size: 1.05em;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 19px 44px;
	border-radius: 3px;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.transition-overlay__button:hover,
.transition-overlay__button:focus {
	background-color: #E7ECF2;
	color: #000000;
}
body.has-overlay {
	overflow: hidden !important;
	height: 100%;
}
@media screen and (max-width: 767px) {
	.transition-overlay__content {
		padding: 30px 24px;
		margin: 40px auto 20px;
	}
	.transition-overlay__logo {
		width: 210px;
		margin-bottom: 30px;
	}
	.transition-overlay__title {
		font-size: 2em;
	}
	.transition-overlay__text {
		font-size: 1.25em;
	}
	.transition-overlay__button {
		padding: 17px 36px;
		font-size: 1em;
	}
}
@media screen and (max-width: 480px) {
	.transition-overlay__logo {
		width: 175px;
	}
	.transition-overlay__title {
		font-size: 1.7em;
		line-height: 1.3em;
	}
	.transition-overlay__text {
		font-size: 1.2em;
	}
}
