/* Start Page */
* {
	outline: none;
}
html {
	height: 100%;
}
body {
	height: 100%;
	margin: 0;
	font-family: 'Open Sans', sans-serif;
}
.nav a,
a,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	color: #000;
	border-bottom: 1px solid #fff;
  transition: border 500ms ease;
}
.nav a:hover,
.nav a:focus,
.nav a:active {
	border-bottom: 1px solid #969696;
  transition: border 500ms ease;
}
.middot {
    padding: 0 4px;
}
.comingsoon {
	margin-top: 50px;
	color: #8c8c8c;
}
.container {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
}
.container > a {
	text-align: center;
}
.logo {
	max-width: 90%;
	height: auto;
	z-index: 10;
	transition: all 800ms ease;
  margin-top: -50px;
}
.logo:hover {
	transform: scale(1.03);
	transition: all 800ms ease;
}
.nav {
	position: absolute;
	width: 100%;
	bottom: 10px;
	left: 0;
	text-align: center;
	color: #000;
}
h2 {
	margin-top: 0;
	text-transform: uppercase;
}
.space {
	margin-top: 20px;
}


/** Contact Flag **/
.contact-flag {
	position: fixed;
	left: 0;
	top: 25px;
	z-index: 20;
	transition: all 0.4s ease;
}
.stickytop .contact-flag {
	top: 10px;
	transition: all 0.4s ease;
}
.contact-flag p {
	background: #000;
	color: #fff;
	height: 30px;
	width: 30px;
	text-align: center;
	vertical-align: center;
	transition: all 0.4s ease;
}
.contact-flag p:hover {
	width: 40px;
}
.stickytop .contact-flag p {
	margin-bottom: 2px;
	transition: all 0.4s ease;
}
.flag-phone {
	font-size: 16px !important;
	padding-top: 2px;
}
.flag-phone:hover {
	font-size: 18px !important;
	padding-top: 1px;
}
.flag-mail {
	font-size: 14px !important;
	padding-top: 4px;
}
.flag-mail:hover {
	font-size: 16px !important;
	padding-top: 2px;
}

/* Line */
.line-container {
    position: relative;
    margin-top: 55px;
    transition: all 0.4s ease;
    z-index: 10;
		width: 30%;
}
.line-container .line {
    font-size: 30px;
    background: #fff;
    width: 16px;
    height: 1px;
    margin: 0 auto;
}
.line-container .line::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    height: 10px;
    width: 1px;
    background: #969696;
}
.line-container .line::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background: #969696;
    z-index: -1;
}
/* OVERLAY */
.overlay {
	pointer-events: none;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: #fff;
	z-index: 100;
	animation: 2s ease-out 0s 1 overlayfade;
}
@keyframes overlayfade {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* MEDIA QUERIES */

@media screen and (max-width: 768px) {
	.logo {
		max-width: 80%;
	}
	h2 {
		font-size: 15px;
	}
	.modal__inner {
		width: 90%;
		height: 90%;
		box-sizing: border-box;
	}
	.comingsoon {
		padding: 0 30px;
		text-align: center;
	}
	.line-container {
    margin-top: 30px;
		width: 80%;
	}
}
