*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html{
	scroll-behavior: smooth;
}

:root {

	--purple-dark: #F97A0B;
	--purple-medium: #F7A257;
	--purple-light: #FFBE85;
	--gray-light: #eaeaea;
	--white: #f4fffd;
}

body{
	font-size: 20px;
	font-family: "Open Sans", sans-serif;
}

p{
	font-size: 22px;
}

/*Header*/

.content-header{
	width: 100%;
	height: 100vh;
	background-image: url(../img/plano.jpg);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

.content-header .fondo{
	width: 0%;
	height: 100%;
	max-width: 100%;
	background-image: url(../img/lineas.png);
}

.content-header .text{
	width: calc(100vw - 20px);
	height: 100vh;
	font-size: 90px;
	font-weight: bold;
	font-family: "Noto Serif", serif;
	
	font-style: italic;

	

	display: flex;
	align-items: center;
	justify-content: center;
	color: #F97A0B;

}

/*Nav Bar*/


.menu{
	background-color: var(--purple-medium);
	width: 100%;
	position: sticky;
	top: 0;
	padding: 5px;
	z-index: 999;
	text-align: center;
	display: flex;
	justify-content: center;
	font-family: "Noto Serif", serif;
	font-style: italic;
	margin-bottom: 60px; 

}

.menu a {
	display: inline-block;
	padding: 10px 30px;
	font-size: 26px;
	background-color: var(--purple-medium);
	margin: 0 10px;
	transition: .5s ease all;
	color: var(--gray-light);
	text-decoration: none;
}
.menu a:hover{
	transform: translateY(18px);
	background-color: var(--purple-light);
}

/*Nosotros*/

.nosotros{
	margin-bottom: 60px;
}

.subtitulo{
	font-size: 20px;
	color: var(--purple-dark);
	font-family: "Noto Serif", serif;
	font-weight: 700;
	z-index: 2;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.subtitulo span{
 	background-color: var(--gray-light);
 	padding: 0px 15px;
 	z-index: 99;
 	position:relative;
}

.subtitulo:after{
	content: "";
	display: inline-block;
	height: 2px;
	width: 100%;
	background-color: var(--purple-dark);
	position: relative;
	top:-29px;
	z-index: 1;
}

.nosotros .titulo{
	width: 70%;
	font-size: 44px;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 50px;
}


.nosotros .enlace {
	display: inline-block;
	margin-top: 40px;
	color: var(--purple-light);
	font-weight: 700;
	border-bottom: 1px solid transparent;
	transition: .3s ease all;
}

.nosotros .enlace:hover {
	text-decoration: none;
	letter-spacing: 3px;
	border-bottom: 1px solid var(--purple-light);
}

/*Servicios*/


.servicios{
	background: var(--gray-light);
	padding: 20px;
	margin-bottom: 60px;
}

.servicios .titulo{
	width: 70%;
	font-size: 44px;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 50px;
	}

.servicios .servicio{
	position: relative;
	width: 100%;
}

.servicios .overlay{
	width: 0%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--purple-light);
	overflow: hidden;
	transition: .5s ease;
}

.servicios .servicio:hover .overlay{
	width: 100%;
	opacity: .8;
}


.servicios .servicio .overlay-texto {
	top: 50%;
	left: 50%;
	position: absolute;
	white-space: nowrap;
	color: var(--white);
	font-size: 18px;
	transform: translate(-50%, -50%);
	overflow: hidden;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
}


.servicios .btn-servicios{
	background-color: var(--purple-light);
	color: #fff;
	padding: 7px 20px;
	text-transform: uppercase;
	font-size: 16px;
	border: 2px solid transparent;
	transition: .3s ease;

}

.servicios .btn-servicios:hover{
	background-color: transparent;
	border: 2px solid var(--purple-light);
	color: var(--purple-light);
}



/*Separador*/

.separador{
	width: 100%;
	height:250px;
	background-image: url("../img/plano.jpg");
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	margin-bottom: 60px;

}

.separador p{
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-family: "Noto Serif", serif;
	padding: 10px;
	color: #F97A0B;
	font-weight: bold;
}

/*Acerca de*/



.icon {
	width: 50px;
	height: 50px;
}


.acerca-de {
	margin-bottom: 60px;
}


/*Galeria*/



.galeria {
	margin-bottom: 60px;
}

.galeria img{
	height: 100%;
	width: 100%;
	object-fit: cover;
}




.contacto{
	margin-bottom: 60px;
}


.redes-sociales {
	padding: 10px;
	background-color: var(--purple-light);
}

.redes-sociales img{
	padding: 5px;
	border-radius: 100%;
	width: 50px;
	transition: .3s ease all;
}

.redes-sociales img:hover{
	transform: scale(1.2);
}

/*Mediaqueries*/


@media screen and (max-width:992px){
	p{
		font-size: 18px;
	}

	.content-header .text {
		font-size: 60px;
	}

	.menu a{
		font-size: 20px;
	}

	.nosotros .titulo,
	.servicios .titulo {
		font-size: 30px;
	}
}

@media screen and (max-width:992px){
	p{
		font-size: 16px;
	}

	.content-header .text {
		font-size: 58px;
	}

	.menu a{
		font-size: 18px;
	}

	.nosotros .titulo,
	.servicios .titulo {
		font-size: 30px;
	}
}


