/* RESPONSIVE */
@media (orientation: landscape) {

}
@media (orientation: portrait) {	

}
@media (max-width: 899px) {	
	#support {
		width: 100%;
	}
}
@media (min-width: 900px) and (max-width: 1199px) {	
	#support {
		width: 850px;
	}
}
@media (min-width: 1200px) and (max-width: 1399px) {
	#support {
		width: 1150px;
	}
}
@media(min-width: 1400px) and (max-width: 2099px) {	
	#support {
		width: 1350px;
	}
}
@media(min-width: 2100px) {	
	#support {
		width: 2050px;
	}
}

/* BODY */
#first_body {
	padding-bottom: 50px;
	position: relative;
	padding-top: 120px;
	margin-bottom: 150px;
	min-height: 100%;
}

/* support */
#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;
}

#support {
	margin: auto;
    margin-top: auto;
	color: #efeff1;
	margin-top: 50px;
}
#support_logo {
	width: 55%;
	position: relative;
	margin: auto;
}
#support_logo > img {
    width: 100%;
    margin: auto;
    display: block;
    position: relative;
}
#support_description {
	text-align: center;
	font-size: 24px;
	padding-bottom: 60px;
	min-height: 58px;
	padding-top: 40px;
	font-family: AvenirNextCyrLight;
}
#contents {
	display: flex;
	font-family: AvenirNextCyrLight;
	text-align: center;
	font-size: 24px;
}
#content {
	flex: 1 auto;
	padding: 30px;
	flex-direction: column;
	display: flex;
	width: 50%;
}
#content:hover#content > a > img {
	transform: scale(1.05);
}
#content > a > img {
	width: 50%;
	margin: auto;
	transition: 0.6s ease-in-out;
}
#content > p > a {
	text-decoration: none;
	color: #efeff1;
	margin-top: 30px;
	height: 0px;
}
#after_content {
	margin-top: 100%;
}