
/* --------------------------------------------
	GENERAL RULES
-------------------------------------------- */

* {
	-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
	-webkit-font-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #FFF;
}
::-moz-selection {
    background: #000;
    color: #fff;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased
}
::selection {
    background: #000;
    color: #fff;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased
}



/* --------------------------------------------
	TYPE INFOS
-------------------------------------------- */

html {
	font-size: 16px;
}
@media (min-width: 768px) {
	html {
		font-size: 18px;
	}
}

body {
	background: #004477;
	background: -moz-linear-gradient(180deg, #004477 0%, #0088cc 60%, #0fbbff 100%);
	background: -webkit-linear-gradient(180deg, #004477 0%, #0088cc 60%, #0fbbff 100%);
	background: linear-gradient(180deg, #004477 0%, #0088cc 60%, #0fbbff 100%);
	background-attachment: fixed;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#004477",endColorstr="#0fbbff",GradientType=1);
	color: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1rem;
	font-weight: normal;
	line-height: 1.2;
	text-shadow: 0px 1px #004477;
}

p {
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	line-height: 1;
	margin: 0;
}

/*h1 {
	font-size: 7rem;
}
@media (max-width: 767px) {
	h1 {
		font-size: 6rem;
	}
}*/
h1 {
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 0.5rem;
}
h2 {
	font-size: 4rem;
	font-weight: bold;
	margin-bottom: 1rem;
}
h3 {
	font-size: 2.5rem;
	font-weight: normal;
}
h4 {
	font-size: 1.5rem;
	font-weight: normal;
	margin-bottom: 0.5rem;
}

a {
	text-decoration: none;
}
a:active,
a:focus,
a:hover {
	text-decoration: underline;
}



/* --------------------------------------------
	STRUCTURE
-------------------------------------------- */

html,
body,
#main {
	height: 100%
}
body {
	min-height: 100%
}

#main {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 20px 20px 10px;
	position: relative;
	z-index: 5;
}
@media (min-width: 768px) {
	#main {
		padding: 30px;
	}
}

#header {
	text-align: center;
}

#coming {
	margin: 4.8rem 0;
	text-align: center;
}

#footer {
	display: flex;
	flex-direction: column;
	padding-bottom: 1.2rem;
}
@media (min-width: 992px) {
	#footer {
		align-items: flex-end;
		flex-direction: row;
		justify-content: space-between;
		padding-bottom: 0rem;
	}
}



/* --------------------------------------------
	ELEMENTS
-------------------------------------------- */

#contacts {
	margin-bottom: 1.2rem;
	text-align: center;
}

#mail {
	margin-bottom: 2.4rem;
	text-align: center;
}

#company {
	text-align: center;
}

@media (min-width: 992px) {
	#contacts {
		margin-bottom: 0;
		text-align: left;
	}
	
	#mail {
		margin-bottom: 0;
		text-align: center;
	}
	
	#company {
		text-align: right;
	}
}



/* --------------------------------------------
	BUBBLES
-------------------------------------------- */

.bubbles {
	position: fixed;
	overflow: hidden;
	top: 0;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	z-index: 5;
}

.bubble-container {
	position: absolute;
	bottom: 0;
	will-change: transform;
	-webkit-animation: bubblerise 4s infinite ease-in;
	-moz-animation: bubblerise 4s infinite ease-in;
	-ms-animation: bubblerise 4s infinite ease-in;
	animation: bubblerise 4s infinite ease-in;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	z-index: 6;
}

.bubble {
	width: 6px;
	height: 6px;
	margin: 0 auto;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: rgba(255, 255, 255, 0.25);
	will-change: transform;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
}

@keyframes bubblerise {
  0% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    transform: translateY(0);
  }
  5% {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    transform: translateY(0);
  }
  99% {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
  100% {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    opacity: 0;
    transform: translateY(-110vh);
  }
}
