/* 
 * orange main: rgb(223,109,8)
 * dark grey:		rgb(44,42,44)
 * */

body {
	background-color: rgb(223,109,8);
	color: #fff;
	font-size: 26px;
	overflow-x: hidden; 
}

a,
a:link,
a:active,
a:visited {
	color: #fff;
}

img.main-logo {
	margin-left: auto;
	margin-right: auto;
	margin-top: calc(50vh - 210px);
}

/* Animations START */

@keyframes fadeIn {
	0% {
		opacity: 0;
		/* margin-top: calc(50vh - 230px); */ 
		width: calc(850px * 0.9);
	}

	100% {
		opacity: 1;
		/* margin-top: calc(50vh - 210px); */
		width: calc(850px * 1); /* 850px * 100% */
	}
}

@keyframes pulse {
	0% {
		opacity: 0.5;
	}
	25% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}

img.main-logo-fade-in {
	animation: fadeIn 1.8s ease forwards;
}

.pulse {
	animation-name: pulse;
	animation-duration: 3000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

/* Animations END */

div.overlay {
	background-image: url('../img/bg.png');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: right;
	background-size: auto 150%;
	transition: all 0.4s;
	height: 100vh;
	width: 100vw;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	pointer-events: none;
}

div.wrapper-body {
	overflow-y: hidden; 
	height: calc(100vh - 210px);
	min-height: 425px;
	transition: height 0.1s;
}

div.wrapper-footer {
	background-color: rgb(44,42,44);
	text-align: center;
	min-height: 210px;
	width: 100vw;
	bottom: 0;
	z-index: 2;
	padding-left: 50px;
	padding-right: 50px;
	transition: font-size 0.1s, height 0.1s;
}

div.wrapper-footer > div.footer-text {
	font-family: Verdana, Arial, sans-serif;
	white-space: nowrap;
}

div.footer-text .footer-icon {
	margin-right: 20px;
}

div.footer-text .footer-icon-lg {
	transition: width 0.2s;
}

@media screen and (max-width: 1599px) {
	body {
		font-size: 24px;
	}
	div.footer-text .footer-icon {
		width: 30px;
		margin-right: 15px;
	}
}

@media screen and (max-width: 1399px) {
	body {
		font-size: 20px;
	}
	div.overlay {
		background-size: auto 100%;
	}
	div.footer-text .footer-icon {
		width: 28px;
		margin-right: 10px;
	}
}

@media screen and (min-width: 1200px) {
	div.wrapper-footer > div.footer-text {
		line-height: 210px;
	}
}

@media screen and (max-width: 1199px) {
	/*body {
		font-size: 18px;
	}*/
	div.footer-text .footer-icon {
		width: 24px;
		margin-right: 8px;
	}
	div.wrapper-footer {
		line-height: 52px;
		text-align: left;
	}

	div.wrapper-footer {
		padding-top: 10px;
	}
	img.footer-icon-lg {
		margin-top: 15px;
		margin-bottom: 15px;
	}
}

@media screen and (max-width: 999px) {
	img.main-logo {
		max-width: 86.5vw;
	}
	div.overlay {
		background-size: auto 90%;
	}
	div.wrapper-footer {
		padding-left: calc(13.5vw / 2);
	}
	div.footer-text .footer-icon-lg {
		width: 120px;
	}
}


@media screen and (max-width: 767px) {
	div.wrapper-body {
		height: calc(90vh - 210px);
		min-height: 0px;
	}
	div.overlay {
		background-size: auto 75%;
	}
	div.footer-text .footer-icon {
		margin-right: 12px;
	}
	div.footer-text .footer-icon-lg {
		width: 100px;
	}
}

@media screen and (max-width: 576px) {
	div.wrapper-body {
		height: calc(80vh - 210px);
		min-height: 0px;
	}
}

@media screen and (max-width: 383px) {
	div.wrapper-body {
		height: calc(75vh - 210px);
		min-height: 0px;
	}
	img.main-logo {
	}
	div.overlay {
		background-size: auto 60%;
	}
}

@media (max-height: 420px) {
	img.main-logo {
		margin-top: 0px !important;
	}
	div.wrapper-body {
		min-height: 250px;
	}
}
