/* GLOBAL STYLES */
* {
	margin: 0px;
	padding: 0px;
}

body {
    background: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #333333;
    line-height: 28px;
    text-align: center;
    overflow-x: hidden !important;
    margin: auto !important;
}

a, a:hover, a:active, a:focus {
    border: 0 none;
    outline: 0 none;
    text-decoration: none;
}

/* TYPOGRAPHIE */

h1,
h2 {
	font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

h1 {
    font-size: 42px;
    line-height: 62px;
}

h2 {
    font-size: 32px;
    line-height: 42px;
}

h3 {
    font-size: 22px;
    line-height: 38px;
    font-weight: 300;
}

h4 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
}

h5 {
    font-size: 18px;
    font-weight: 300;
}

p {
    font-size: 18px;
    font-weight: 300;
	margin-top: 10px;
	margin-bottom: 10px;
	font-family: inherit;
	line-height: 1.1;
}

ul li {
	color: white;
}


/* FORM GROUPS */

.form-control {
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.6);
	border-radius: 0px;
    box-shadow: none;
    height: 57px;
    padding-left: 20px;
}

/* CUSTOM CLASSES */

.white-text {
	color: #fff;
}
.black-text {
	color: #000;
}
.red-text {
	color: #f00;
}
.green-text {
	color: #0f0;
}
.half-green-text {
	color: #080;
}

.colored-line-small-center {
	background: #00d600;
	display: block;
	margin: auto;
    height: 1px;
    width: 25%;
    z-index: 1;
	margin-bottom: 5px;
}

.colored-line-right {
/*	background: #008ed6;*/
	background: #00d600;
	display: block;
	float: right;
    height: 1px;
    width: 165px;
    z-index: 1;
}

.button-leweb {
	background: none repeat scroll 0 0 rgba(21, 235, 21, 0.5);
    border: 1px solid #fff;
	color: #fff;
	border-radius: 0px;
    box-shadow: none;
	height: 57px;
	padding-left: 18px;
	padding-right: 18px;
	
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease; 
}


.button-leweb:hover {
	background: #00d600;
}

.link {
	color: #00FF0088;
	text-decoration: underline;
}

.link:hover {
	color: #00FF00FF;
	transition: all 0.3s ease;
}

.image-link:hover {
	filter: contrast(170%);
	transition: all 0.6s ease;
}

.icontop {
	position: absolute;
	color: #00FF00;
	margin: -30px auto;
	right: 0;
	left: 0;
	font-size: 25px;
	border-radius: 50%;
	line-height: 65px;
	height: 65px;
	width: 65px;
	background: rgba(0, 161, 29, 0.7);	
	box-shadow: 0 0 0 1px #00FF00;
}

#button-top {
	position: fixed;
	height: 65px;
	width: 65px;
	bottom: 50px;
	right: 30px;
	color: #00FF00;
	background: rgba(0, 161, 29, 0.7);	
	font-size: 25px;
	border-radius: 50%;
	line-height: 65px;
	box-shadow: 0 0 0 2px #00FF00;
	z-index: 999;
}

#button-top:hover {
	box-shadow: 0 0 0 5px #00FF00;
	transition: all 0.3s ease;
}



/* SECTIONS */

section {
	padding: 120px 0px;
}

/* HEADER */

#header {
	background-color: black;
	/*background: url(../images/second_background.png) no-repeat center center;*/
	background-image: url(../images/second_background.png);
	background-size: cover;
	min-height: 100vh;
	padding: 0px;
}

#header .container {
	/*background: url(../images/body-bg2.png) repeat 0 0;*/
	background: rgba(0, 0, 0, 0.2);
	min-height: 100vh;
	width: 100% !important;
	padding: 0px;	
	z-index: 998;
}

#header .col-md-8 {
	top: 20%;
	right: 0;
	bottom: 0;
	left: 0;
	position: absolute;
	display: block;
	margin-left: auto;
	margin-right: auto;
	z-index: 999;
}

#header h2 {
    font-size: 42px;
    line-height: 62px;
}

#header p {
    font-size: 22px;
    line-height: 38px;
    font-weight: 300;
}

#header .logo {
	margin-bottom: 15px;
	max-width: 90%;
}

.animation {
	width: 100%;
	bottom: 0;
	height: 50px;
	overflow: hidden;
	position: absolute;
	z-index: 999;
	text-align:center;
	text-decoration: none;
}

#header .fa-angle-down {
	text-align: center;
	font-size: 48px;
	color: #fff;
	
	-webkit-animation: leweb_fade_move_down 2s ease-in-out infinite;
	-moz-animation: leweb_fade_move_down 2s ease-in-out infinite;
	animation: leweb_fade_move_down 2s ease-in-out infinite;
   }

	/* Animated Arrow Down Header */
	
@-webkit-keyframes leweb_fade_move_down {
  0%   { -webkit-transform:translate(0,-20px); opacity: 0;  }
  50%  { opacity: 1;  }
  100% { -webkit-transform:translate(0,20px); opacity: 0; }
}
@-moz-keyframes leweb_fade_move_down {
  0%   { -moz-transform:translate(0,-20px); opacity: 0;  }
  50%  { opacity: 1;  }
  100% { -moz-transform:translate(0,20px); opacity: 0; }
}
@keyframes leweb_fade_move_down {
  0%   { transform:translate(0,-20px); opacity: 0;  }
  50%  { opacity: 1;  }
  100% { transform:translate(0,20px); opacity: 0; }
}

/* TRAILER */

#trailer {
	/*background: #92d092;*/
	/*background: #0F0;*/
	/*background: url(../images/captures/yellow_death_cubes.png) no-repeat fixed center center / cover rgba(0, 0, 0, 0);*/
	/*background: url(../images/v0.11_steam_page/5_LearnEndEvent_Capture_english.png) no-repeat fixed center center / cover rgba(0, 0, 0, 0);*/
	background: url(../images/v0.11_steam_page/11_SondesOptimisation_Capture_english.png) no-repeat fixed center center / cover rgba(0, 0, 0, 0);
	padding: 0;
}

#trailer .pre-container {
	background: rgba(0, 0, 0, 0.6);
	height: 100%;
	width: 100%;
	z-index: 998;
}

#trailer .container {
	padding-top: 120px;
	padding-bottom: 120px;
}

.video-border {
	border-style: solid;
	border-width: 5px;
	border-color: #00a11d;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.video-border-green {
	border-style: solid;
	border-width: 5px;
	border-color: #00a11d;
	box-shadow: 0 4px 8px 0 rgba(0, 255, 0, 0.2), 0 6px 20px 0 rgba(0, 255, 0, 0.19);
}

.video-responsive { 
	overflow:hidden; 
	padding-bottom:56.25%; 
	position:relative; 
}

.video-responsive iframe {
	left:0; 
	top:0; 
	height:100%;
	width:100%;
	position:absolute;
}

#trailer h2 {
    font-size: 42px;
    line-height: 62px;
}

/* ABOUT */

#about {
	background-color: black;
}

#about i {
	color: #00FF00;
	font-size: 75px;
	background: #00a11d;
	border-radius: 50%;
	line-height: 175px;
	height: 175px;
	width: 175px;
}

#about #dynamique {
	font-size: 100px;
}


#about h3,
#about p {
	color: white;
}

@media (min-width: 1200px) { 
	#about .gif {
		margin-right: 1em;
	}
}

.gif { 
	overflow:hidden; 
	position:relative; 
	max-width: 540px;
	max-height: 255px;
}

.gif img {
	width: 100%;
	height: auto;
}

/* STEAM */

#steam {
	/*background: url(../images/captures/green_outside_2.png) no-repeat fixed center center / cover rgba(0, 0, 0, 0);*/
	background: url(../images/v0.11_steam_page/7.2_ConstantDestruction_Capture_english.png) no-repeat fixed center center / cover rgba(0, 0, 0, 0);
	padding: 0px;
	/*min-height: 430px;*/
}

#steam .container {
	background: rgba(0, 0, 0, 0.6);
	height: 100%;
	width: 100%;
	z-index: 998;
}

#steam .row {
	padding: 100px 0px 120px 0px;
}

#steam p {
	margin-bottom: 45px;
}

#steam .form-control {
	display: inline-block;
	border: 1px solid #fff;
    width: 320px;
}

#steam .form-control::-moz-placeholder {
	color: #fff;
}

#steam .button-leweb {
	display: inline-block;
}

#steam #mc_form label {
	display: block;
	font-size: 12px !important;
	margin-top: 10px;
	font-weight: normal;
	position: relative;
	color: #fff;
}

#steam #mc_form .valid:before {
        font-family: FontAwesome;
        top:0;
        content: "\f058";
		font-size: 14px;
		margin-right: 4px;
		color: #b8c000;
}

#steam #mc_form .error:before {
        font-family: FontAwesome;
        top:0;
        content: "\f071";
		font-size: 14px;
		margin-right: 4px;
		color: #bb1720;
}

.steam-logo {
	color: #171a21;
	/*margin: -30px auto;*/
	/*right: 0;*/
	/*left: 0;*/
	font-size: 250px;
	border-radius: 50%;
	/*line-height: 65px;*/
	/*height: 65px;*/
	/*width: 65px;*/
	background: rgba(255, 255, 255, 1);	
	box-shadow: 0 0 0 5px #fff;
}
/* NEWSLETTER */

#newsletter {
	/*background: url(../images/bg-subscribe.jpg) no-repeat fixed center center / cover rgba(0, 0, 0, 0);*/
	background: black;
	padding: 0px;
}

#newsletter .row {
	padding: 100px 0px 120px 0px;
}

#newsletter p {
	margin-bottom: 45px;
    font-size: 18px;
    font-weight: 300;
}

#newsletter .form-control {
	display: inline-block;
	border: 1px solid #fff;
    width: 320px;
    color: #000;
}

#newsletter .form-control::-moz-placeholder {
	color: #fff;
}

#newsletter .button-leweb {
	display: inline-block;
}

#newsletter #mc_form label {
	display: block;
	font-size: 12px !important;
	margin-top: 10px;
	font-weight: normal;
	position: relative;
	color: #fff;
}

#newsletter #mc_form .valid:before {
        font-family: FontAwesome;
        top:0;
        content: "\f058";
		font-size: 14px;
		margin-right: 4px;
		color: #b8c000;
}

#newsletter #mc_form .error:before {
        font-family: FontAwesome;
        top:0;
        content: "\f071";
		font-size: 14px;
		margin-right: 4px;
		color: #bb1720;
}

#form-confirmation,
#mot-de-passe-ultime {
	background: #00d60033;
	margin: 1em;
	padding: 1em;
}

#mot-de-passe-ultime .mb0 {
	margin-bottom: 0em;
}

#form-confirmation i,
#mot-de-passe-ultime i {
	font-size: 50px;
	border-radius: 50%;
	line-height: 65px;
	height: 65px;
	width: 65px;
}

#form-confirmation i,
#mot-de-passe-ultime i {
	color: #00FF00;
}

/* DISCORD */

#discord {
	/*background: url(../images/captures/blue_furtive_grid.png) no-repeat fixed center center / cover rgba(0, 0, 0, 0);*/
	background: url(../images/v0.11_steam_page/10_FurtiveGrid_Capture_english.png) no-repeat fixed center center / cover rgba(0, 0, 0, 0);
	padding: 0px;
}

#discord .pre-container {
	background: rgba(0, 0, 0, 0.6);
	height: 100%;
	width: 100%;
	z-index: 998;
}

#discord .row {
	padding: 100px 0px 120px 0px;
}

#discord-widget { 
	overflow:hidden; 
	position:relative; 
}

#discord-widget iframe {
	height: : 100%;
	width: : auto;
}

#discord h5{
	margin-bottom: 45px;
}

/* TEAM */

#team {
	background: black;
	padding: 0px;
}

#team .row {
	padding: 100px 0px 120px 0px;
}

#team p {
	margin-bottom: 45px;
    font-size: 18px;
    font-weight: 300;
}

/* CONTACT */

#contact {
	/*background: url(../images/captures/green_outside.png) no-repeat fixed center center / cover rgba(0, 0, 0, 0);*/
	background: url(../images/v0.11_steam_page/6_DashTraining_Capture_english.png) no-repeat fixed center center / cover rgba(0, 0, 0, 0);
	padding: 0px;
}

#contact .pre-container {
	background: rgba(0, 0, 0, 0.7);
	height: 100%;
	width: 100%;
	z-index: 998;
}

#contact .container {
	padding-top: 120px;
	padding-bottom: 120px;
}

#contact .button-leweb {
	border: 1px solid #ccc;
}

#contact .form-control{
	color: #000;
}

#contact .form-control::-moz-placeholder {
	color: #fff;
}

#form-success ,
#form-error {
	background: rgba(0, 0, 0, 0.6);
	margin: 1em;
	padding: 1em;
}

#form-success i,
#form-error i {
	font-size: 50px;
	border-radius: 50%;
	line-height: 65px;
	height: 65px;
	width: 65px;
}

#form-success i {
	color: #00FF00;
}

#form-error i {
	color: #FF0000;
}

/* FOOTER */

#footer {
	background: black;
	/*border-top: 1px solid #00a11d;*/
	border-top: 1px solid #00FF00;
	padding: 25px 0px;
}

#footer p {
	margin: 0px 0px -5px;
}

#footer .fa,
#footer .fab {
	font-size: 28px;
}

/* PRESSKIT-HEADER */

#presskit-header {
	/*background: url(../images/second_background.png) no-repeat center center;*/
	background: black;
	background-size: cover;
	min-height: 100vh;
	/*padding: 0px;*/
}

#presskit-header .container {
	background: rgba(0, 0, 0, 0.2);
	min-height: 100vh;
	width: 100% !important;
	z-index: 998;
}

#presskit-header h2 {
    font-size: 22px;
    line-height: 38px;
    font-weight: 300;
}

#presskit-header .col-md-8 {
	top: 20%;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
	z-index: 999;
}

.presskit-icone {
	color: #00FF00;
	font-size: 30px;
	background: #00a11d;
	border-radius: 50%;
	line-height: 75px;
	height: 75px;
	width: 75px;
}

.presskit-icone:hover {
	color: #00a11d;
	background: #00FF00;
	transition: all 0.5s ease;
}

#menu-container {
	text-align: center;
}

.menu-item {
	/* Inline Block */
	display: inline-block;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

@media (max-width: 700px) { 
	#menu-container {
		display: inline-flex;
		flex-direction: column;
		align-items: flex-start;
	}
}


/* PRESSKIT-SECTIONS */

.presskit-section {
	background: black;
	padding: 0px;
	/*border-top: solid 1px #00a11d;*/
}

.presskit-section .row {
	padding: 30px 0px 120px 0px;
}

.presskit-section h5 {
	margin-bottom: 45px;
}

/* RECAPTCHA V3 */
.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
  position: absolute !important;
  visibility: hidden;
}

.grecaptcha-badge:hover {
  width: 256px !important;
}


/* RESPONSIVE DESIGN */

/* Extra Small devices (tablets, 446px and less) */
@media (max-width: 456px) { 
	
	#mc_form .form-control {
		width: 100%;
		margin-bottom: 15px;
	}
	
	.button-leweb {
		width: 100%;
	}
	
	#header .logo {
		width: 100%;
	}
	
	#header h1 {
		font-size: 32px;
		line-height: 48px;
	}

}
/* Small devices (tablets, 768px and less) */
@media (max-width: 768px) { 

	body {
		font-size: 14px;
		line-height: 20px;
	}
	h1 {
		font-size: 44px;
		line-height: 58px;
	}

	h2 {
		font-size: 24px;
		line-height: 38px;
	}

	h3 {
		font-size: 18px;
		line-height: 30px;
	}

	h4 {
		font-size: 16px;
		line-height: 26px;
	}

	h5 {
		font-size: 14px;
		line-height: 20px;
	}

	p {
		font-size: 14px;
		line-height: 20px;
	}
	
	.clocktitle{
		font-size: 11px;
	}

	.numbers {
		font-size: 44px;
	}
	
	#header .col-md-8 {
		top: 5%;
	}
}

/* Medium devices (desktops, 992px and up) */
@media (max-width: 992px) {	
	
	#about .middle {
		margin-top: 65px;
		margin-bottom: 65px;
	}
}

