/* --  HERO SECTION  --  */
section#hero
{
	width: 100%;
	height: 80vh;
	max-height: 900px;
	padding: 1rem;
	text-align: center;
	position: relative;
	background: url(../img/web/global/bg-about-us.png) no-repeat;
	background-size: cover;
	background-position: center;
}


#hero .info
{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center; 
}

#hero .info h1
{
	font-size: var(--text-4);
	font-family: font1-bold;
	letter-spacing: 5px;
}

#hero .info .line
{
	width: 150px;
	margin: 0.7rem 0 1.4rem;
}
#hero .info .line img
{
	width: 100%;
}

#hero .info p
{
	max-width: 800px;
	font-size: var(--text-8);
}

#hero .cuadrado-lineas
{
	display: none;
	position: absolute;
}

@media(min-width: 767px)
{
	#hero .info h1
	{
		font-size: var(--text-3);
	}

	#hero .info .line
	{
		width: 200px;
		padding-bottom: 0.3rem;
	}

	#hero .info p
	{
		font-size: var(--text-7);
	}
}

@media(min-width: 996px)
{
	#hero .cuadrado-lineas
	{
		display: initial;
	}
}