*,
*:before,
*:after {
	box-sizing: border-box;
}
@font-face {
	font-family: "Macklin Display";
	src: url("../../assets/fonts/MacklinDisplay-Regular.eot");
	src: url("../../assets/fonts/MacklinDisplay-Regular?#iefix") format("embedded-opentype"), url("../../assets/fonts/MacklinDisplay-Regular.woff2") format("woff2"),
		url("../../assets/fonts/MacklinDisplay-Regular.woff") format("woff"), url("../../assets/fonts/MacklinDisplay-Regular.ttf") format("truetype"),
		url("../../assets/fonts/MacklinDisplay-Regular.svg#MacklinDisplay-Regular") format("svg");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: "Montserrat", system-ui;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/**/
#mainteniencePage {
	width: 100%;
	height: 100vh;
	background-color: #222;
	position: relative;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
.circleBg {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	overflow: hidden;
}
.circleBg > div {
	width: 55vw;
	height: 55vw;
	border-radius: 50%;
	border: 1px solid #666;
	opacity: 0.3;
	position: absolute;
}
.circleBg > div:nth-child(1) {
	top: -40vw;
	left: 0;
	right: 0;
	margin: 0px auto;
	transform: translateX(-100%);
	animation: topCircle 4.5s infinite;
	transition-timing-function: ease-in-out;
}
.circleBg > div:nth-child(2) {
	top: -15vw;
	left: -20vw;
	animation: leftCircle 4.5s infinite;
	transition-timing-function: ease-in-out;
}
.circleBg > div:nth-child(3) {
	top: -15vw;
	right: -20vw;
	animation: rightCircle 4.5s infinite;
	transition-timing-function: ease-in-out;
}
.circleBg > div:nth-child(4) {
	border: 2px solid #b70738;
	left: 0;
	right: 0;
	margin: 0px auto;
	top: 5vh;
	animation: downCircle 4.5s infinite;
	transition-timing-function: ease-in-out;
}
@keyframes topCircle {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-8px);
	}
	100% {
		transform: translateY(0px);
	}
}
@keyframes downCircle {
	0% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(8px);
	}
	100% {
		transform: translateY(0px);
	}
}
@keyframes leftCircle {
	0% {
		transform: translateX(0px);
	}
	50% {
		transform: translateX(-8px);
	}
	100% {
		transform: translateX(0px);
	}
}
@keyframes rightCircle {
	0% {
		transform: translateX(0px);
	}
	50% {
		transform: translateX(8px);
	}
	100% {
		transform: translateX(0px);
	}
}


#maintenienceHeader {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	width: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1;
}
#maintenienceHeader svg,
#maintenienceHeader img {
	max-width: 180px;
	margin-top: 80px;
}
#maintenienceMain {
	text-align: center;
	position: relative;
	z-index: 1;
}
#maintenienceMain h1 {
	font-family: "Macklin Display";
	font-size: 80px;
	color: #fff;
}
#maintenienceMain .contactBox {
	padding: 20px 10px 10px;
	color: #fff;
}

#maintenienceFooter {
	width: 100%;
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 1;
	text-align: center;
	padding: 20px;
	font-size: 13px;
	color: #666;
	text-transform: uppercase;
	line-height: 16px;

}



@media screen and (max-width: 1600px) {
	.circleBg > div {
		width: 60vw;
		height: 60vw;
	}
	.circleBg > div:nth-child(2) {
		left: -30vw;
	}
	.circleBg > div:nth-child(3) {
		right: -30vw;
	}
}


@media screen and (max-width: 1200px) {

	.circleBg > div {
		width: 80vw;
		height: 80vw;
	}
	.circleBg > div:nth-child(1) {
		top: -55vw;
	}
	.circleBg > div:nth-child(2) {
		left: -60vw;
	}
	.circleBg > div:nth-child(3) {
		right: -60vw;
	}
	.circleBg > div:nth-child(4) {
		top: 15vh;
	}

	#maintenienceMain h1 {
		font-size: 48px;
	}
	#maintenienceHeader img {
		margin-top: 0px;
	}

}

@media screen and (max-width: 768px) {

	.circleBg > div {
		width: 95vw;
		height: 95vw;
	}
	.circleBg > div:nth-child(1) {
		top: -55vw;
	}
	.circleBg > div:nth-child(2) {
		top: 30vw;
		left: -60vw;
	}
	.circleBg > div:nth-child(3) {
		top: 30vw;
		right: -60vw;
	}
	.circleBg > div:nth-child(4) {
		top: auto;
		bottom: -30vw;
	}

	#maintenienceMain h1 {
		font-size: 48px;
	}
	#maintenienceHeader img {
		margin-top: 0px;
		width: 100%;
		max-width: 140px;
	}
	#maintenienceFooter {
		font-size: 11px;
	}
	#maintenienceFooter br {
		display: none;
	}


}