p {
	margin: 0;
	padding: 0;
	line-height: 1.2rem;
}

.home_content {
	z-index: 500;
	margin: 0;
	overflow: hidden;
}

.home_img {
	width: 100%;
	height: auto;
}

.home_img img {
	display: block;
	width: 100%;
	height: auto;
	transition-duration: var(--tr_du);
	opacity: 1;
}

.home_text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-top: -150px;
	width: 100%;
	height: 150px;
	min-height: 100%;
	text-align: center;
	transition-duration: var(--tr_du);
	opacity: 0;
}
.home_title {
	padding-bottom: 5px;
}
.home_title h2{
	margin: 0;
	padding: 0;
	font-size: 18px;
	font-weight: 400;
}

.home_tag {	
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
	padding-top: 5px;
	text-align: center;
	border-top: 1px solid #000;
}
.home_tag p {text-align:center;}

.home_img:hover img {opacity: 0.3;}
.home_img:hover .home_text {opacity: 1;
transform: translateY(60px);}

.home_intro {
	display: flex;
	flex-direction: row;
	justify-content: center;
	justify-content: space-between;

	width: 100%;
	margin-top: 15px;
}

.home_intro_content {
	width: 30%;
/*	margin-top: 40px;
	margin-bottom: 50px;*/
}
.home_intro_content h2 {
	font-size: 18px;
	width: 100%;
	text-align: center;
}

/* ------ RESPONSIVE ----- */

@media only screen and (max-width: 1000px){
	.home_intro{
		flex-direction: column;
	}
	.home_intro_content {
		width: 100%;
		margin-bottom: 25px;
	}
	.footer_home_content footer {
		z-index: 900;
		position: relative;
		height: 100px;
		line-height: 60px;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
		background-color: var(--bg);
	}
}

@media (hover:none) {
	.home_text{display: none}
}