#banner{
	padding-top: 50px;
	position: relative;
}

#banner img{
	width: 100%;
	height: 100%;
}

#banner .contenedor{
	position: absolute;
	top: 75%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	color: #fff;
}

#banner h5{
	font-size: 25px;
}
#banner p{
	font-size: 9px;
}
#banner a{
	display: block;
	width: 100px;
	color: #fff;
	text-decoration: none;
	padding: 10px;
	margin-top: 10px;
	border: 3px solid #fff;
}

#banner a:hover{
	background: rgba(51,51,51,0.5);
}

/*----------RESPONSIVE-------*/
@media(min-width: 950px){
	#banner{
		padding-top: 30px;
		position: relative;
	}

	#banner img{
		width: 100%;
		height: 100%;
	}

	#banner .contenedor{
		position: absolute;
		top: 75%;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);
		color: #fff;
	}

	#banner h5{ font-size: 35px; 
		padding-top: 130px;}
	#banner p{
		font-size: 15px;
	}
	#banner a{
		display: block;
		width: 100px;
		color: #fff;
		text-decoration: none;
		padding: 10px;
		margin-top: 10px;
		border: 3px solid #fff;
	}

	#banner a:hover{ background: rgba(51,51,51,0.5); }
}