/* KEYS */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@keyframes discover_car {
  0%, 100%{
	transform: translatey(0px);
  }
  50% {
	transform: translatey(-40px);
  }
}
@keyframes discover_text {
  0%{
    text-shadow: 0px 0px 0px #de0505;
  }
  50% {
    text-shadow: 0px 0px 20px #de0505;
  }
  100% {
    text-shadow: 0px 0px 0px #de0505;
  }
}
@keyframes run {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(1050%);
  }
}

/* RESPONSIVE */
@media (orientation: landscape) {

}
@media (orientation: portrait) {

}
@media (max-width: 899px) {
	#discover_car {
		display: none;
	}
	#third_body_presentation, #fifth_body_presentation, #seventh_body_presentation, #four_body_presentation, #sixth_body_presentation {
		width: 90%;
	}
	#first_body {
		display: none;
	}
	#third_body_presentation {
		margin-top: 150px;
	}
	#discover_car_image {
		scale: 1;
	}
	#discover_create {
		font-size: 50px;
	}
	#last_body {
		height: auto;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {
	#discover_car {
		display: block;
	}
	#third_body_presentation, #fifth_body_presentation, #seventh_body_presentation, #four_body_presentation, #sixth_body_presentation {
		width: 45%;
	}
	#first_body {
		display: block;
	}
	#third_body_presentation {
		margin-top: 0px;
	}
	#discover_car_image {
		scale: 0.8;
	}
	#discover_create {
		font-size: 75px;
	}
	#last_body {
		height: 30%;
	}
}
@media (min-width: 1200px) and (max-width: 1399px) {
	#discover_car {
		display: block;
	}
	#third_body_presentation, #fifth_body_presentation, #seventh_body_presentation, #four_body_presentation, #sixth_body_presentation {
		width: 45%;
	}
	#first_body {
		display: block;
	}
	#third_body_presentation {
		margin-top: 0px;
	}
	#discover_car_image {
		scale: 1;
	}
	#discover_create {
		font-size: 100px;
	}
	#last_body {
		height: 40%;
	}
}
@media(min-width: 1400px) and (max-width: 2099px) {
	#discover_car {
		display: block;
	}
	#third_body_presentation, #fifth_body_presentation, #seventh_body_presentation, #four_body_presentation, #sixth_body_presentation {
		width: 45%;
	}
	#first_body {
		display: block;
	}
	#third_body_presentation {
		margin-top: 0px;
	}
	#discover_car_image {
		scale: 1;
	}
	#discover_create {
		font-size: 100px;
	}
	#last_body {
		height: 40%;
	}
}
@media(min-width: 2100px) {
	#discover_car {
		display: block;
	}
	#third_body_presentation, #fifth_body_presentation, #seventh_body_presentation, #four_body_presentation, #sixth_body_presentation {
		width: 45%;
	}
	#first_body {
		display: block;
	}
	#third_body_presentation {
		margin-top: 0px;
	}
	#discover_car_image {
		scale: 1;
	}
	#discover_create {
		font-size: 100px;
	}
	#last_body {
		height: 40%;
	}
}

/* BODY */
#background_lines {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	margin: auto;
	background-color: #171717;
}
#background_line {
	position: absolute;
	width: 1px;
	height: 100%;
	top: 0;
	left: 50%;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
}
#background_line::after {
	content: '';
	display: block;
	position: absolute;
	height: 15vh;
	width: 100%;
	top: -50%;
	left: 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 75%, #ffffff 100%);
	animation: run 7s 0s infinite;
	animation-fill-mode: forwards;
	animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
#background_line:nth-child(1) {
	margin-left: -25%;
}
#background_line:nth-child(1)::after {
	animation-delay: 2s;
}
#background_line:nth-child(3) {
	margin-left: 25%;
}
#background_line:nth-child(3)::after {
	animation-delay: 2.5s;
}
#discover_car {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}
#discover_car_image {
	height: 350px;
	animation: discover_car 5.5s ease-in-out infinite;
    -webkit-transform: translatey(0px);
	transform: translatey(0px);
	transition: 0.5s;
}
#background_shadow {

}	

#first_body {
	height: calc(100% - 120px);
	position: relative;
	top: 120px;	
	margin-bottom: -19%;
}
#arrow_scroll {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%,0%);
	transition: 0.3s;
}
#arrow_scroll > img {
	width: 50px;
	animation: bounce 2s infinite;
}

#second_body {
	display: block;
	position: relative;
	z-index: 2;
	margin-bottom: 1000px;
	top: 500px;
}
#second_body_presentation {
	position: relative;
	top: 100%;
	width: 50%;
	margin: auto;
	background-color: rgba(61,61,61,0.9);
}
#second_body_text {
	color: #FFFFFF;
	text-align: center;
	font-family: Prototype;
	height: 100%;
	padding: 20px;
}
#second_body_text > a {
	font-size: 50px;
}
#second_body_text > p {
	font-size: 30px;
}


#third_body, #fifth_body, #seventh_body {
	display: flow-root;
	position: relative;
	z-index: 2;
	margin-bottom: 100px;
}
#third_body_presentation, #fifth_body_presentation, #seventh_body_presentation {
	float: left;
	text-align: left;
}
#third_body_image, #fifth_body_image, #seventh_body_image {
	width: 100%;
	float: left;
	margin-bottom: 1%;
}
#third_body_image > img, #fifth_body_image > img, #seventh_body_image > img{
	max-width: 50%;
	float: left;
	left: 5%;
	position: relative;
	display: block;
}
#third_body_text , #fifth_body_text, #seventh_body_text {
	width: 95%;
	float: left;
	left: 5%;
	position: relative;
}
#third_body_text > a, #fifth_body_text > a, #seventh_body_text > a {
	font-size: 40px;
	font-family: Prototype;
	color: #FFFFFF;
	float: left;
	width: 100%;
}
#third_body_text > p, #fifth_body_text > p, #seventh_body_text > p {
	font-size: 25px;
	font-family: AvenirNextCyrLight;
	color: #FFFFFF;
	float: left;
}
#four_body, #sixth_body {
	display: flow-root;
	position: relative;
	z-index: 2;
	margin-bottom: 100px;
}
#four_body_presentation, #sixth_body_presentation {
	float: right;
	text-align: right;
}
#four_body_image, #sixth_body_image {
	width: 100%;
	float: right;
	margin-bottom: 1%;
}
#four_body_image > img, #sixth_body_image > img{
	max-width: 50%;
	float: right;
	right: 5%;
	position: relative;
	display: block;
}
#four_body_text , #sixth_body_text {
	width: 95%;
	float: right;
	right: 5%;
	position: relative;
}
#four_body_text > a, #sixth_body_text > a {
	font-size: 40px;
	font-family: Prototype;
	color: #FFFFFF;
	float: right;
	width: 100%;
}
#four_body_text > p, #sixth_body_text > p {
	font-size: 25px;
	font-family: AvenirNextCyrLight;
	color: #FFFFFF;
	float: right;
}
#last_body {
	position: relative;
}
#discover_create {
	text-align: center;
	color: #FFF;
	font-family: airstrikebold;
	position: relative;
	display: block;
	left: 50%;
	top: 60%;
	transform: translate(-50%,-50%);
	z-index: 1;
}
#discover_create > a {
	-webkit-text-stroke: 1px #3d3d3d;
	color: #FFFFFF;
	text-decoration: none;
}
.discover_link {
	font-size: 30px; 
	text-decoration: none; 
	color: #28c5ff;
	display: inline;
	position: relative;
}
.discover_link:hover::before {
	right: 0;
	z-index: 0;
}
.discover_link::before {
	content: "";
	position: absolute;
	z-index: -1;
	left: 0;
	right: 100%;
	bottom: -3px;
	background: #28c5ff;
	height: 2px;
	transition-property: right;
	transition-duration: 0.3s;
	transition-timing-function: ease-out;
}