/* ----- ----- HEADER ----- ----- */

header {
	width: 100%;
	/* height: 150px; */
	position: fixed;
	top: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 20px 80px;
	background: #fff;
	transition: all .3s ease;
	z-index: 10;
}
.hd-sm {
	height: 100px;
	box-shadow: 0px 0px 20px 5px rgba(0, 0, 0, .1);
	background: #fff;
}
.icono-diez {
	width: 100px;
	position: absolute;
	left: 45%;
}
.icono-diez img {
	width: 100%
}
.img-logo {
	width: 160px;
	transition: all .5s ease;
}
.img-logo img {
	width: 100%;
}
header i.fa-bars {
	display: none;
}
.opciones > i {
	display: none;	
}
.opciones > a {
	margin: 0 15px;
	font-weight: bold;
	color: #333333;
	text-decoration: none;
	letter-spacing: -.3px;
}
/* ----- ----- WHATSAPP EMERGENTE ----- ----- */

.wa-cont {
	width: 60px;
	height: 60px;
	position: fixed;
	left: 10px;
	bottom: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #1bd741;
	border-radius: 100%;
	box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.1);
	z-index: 20;
}
.wa-cont a {
	text-decoration: none;
	color: #fff;
	font-size: 35px;
}


/* ----- MEDIA QUERIES ----- */
@media screen and (max-width: 720px) {

	header {
		height: auto;
		padding: 20px 40px;
		background: #fff;
	}
	header .img-logo {
		width:120px;
	}
	header i.fa-bars {
		display: block;
	}

	.opciones {
		height: 100vh;
		width: 300px;
		position: absolute;
		top: 0;
		right: -300px;
		display: flex;
		flex: wrap;
		flex-direction: column;
		background: #fff;
		transition: all .5s ease;
	}
	.active {
		box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, .1);
		right: 0px;
	} 
	.opciones > i {
		display: block;
		margin: 40px 0 60px 30px;
		font-size: 20px;
	}
	.opciones > a {
		width: 100%;
		font-size: 25px;
		padding: 10px 20px;
		border-bottom: 1px solid #cecece;
	}
	.redes-sociales {
		display: flex;
	}
	.redes-lateral {
		display: none;
	}


}