


.environment {
	overflow: hidden;
  position: relative;
}

.environment-img {
	width: 100%;
	height: 400px;
  position: relative;
}

.environment-content {
	position: absolute;
	width: 100%;
  left: 0;
  top: 0;
	height: 100%;
	background: rgba(0, 0, 0,0.5);
	opacity: 0;
	text-align: center;
}

.environment-content-box {
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.environment-content-title {
	font-size: 34px;
	color: rgb(255, 255, 255);
}

.environment-content-target {
	font-size: 20px;
	color: rgb(188, 188, 188);
}

.environment-content-button-box {
	margin-top: 10px;
}

.environment-content-button {
	border-radius: 0px;
	border: 1px solid rgb(102, 204, 255);
	color: rgb(102, 204, 255);
}

.environment-content-button:hover {
	border-radius: 0px;
	border: 1px solid rgb(102, 204, 255);
	color: rgb(255, 255, 255);
	background-color: rgb(102, 204, 255);
}

.environment-img:hover .environment-content {
	opacity: 1;
	transition: all 0.5s;
}

@media screen and (max-width: 1600px) {
	.environment-img {
		width: 100%;
		height: 300px;
	}
	
	.environment-content {
		position: absolute;
		width: 100%;
		height: 300px;
		background: rgba(0, 0, 0,0.5);
		opacity: 0;
		text-align: center;
	}

	.environment-content-box {
		display: flex;
		height: 300px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.environment-content-title {
		font-size: 26px;
		color: rgb(255, 255, 255);
	}
}

@media screen and (max-width: 800px) {
	.environment-img {
		width: 100%;
		height: 200px;
	}
	
	.environment-content {
		position: absolute;
		width: 100%;
		height: 200px;
		background: rgba(0, 0, 0,0.5);
		opacity: 0;
		text-align: center;
	}

	.environment-content-box {
		display: flex;
		height: 200px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	
	.environment-content-title {
		font-size: 24px;
		color: rgb(255, 255, 255);
	}

	.environment-content-target {
		font-size: 16px;
		color: rgb(188, 188, 188);
	}
}

@media screen and (max-width: 1150px) { 
	.environment-img {
		width: 100%;
		height: 230px;
	}
}


@media screen and (max-width: 767px) { 
	.environment-img {
		width: 100%;
		height: 350px;
	}
}

@media screen and (max-width: 500px) { 
	.environment-img {
		width: 100%;
		height: 230px;
	}
}
