@charset "utf-8";
/* CSS Document */

@font-face
{
	font-family: InkFree;
	src: url('../fonts/InkFree.woff2') format('woff2'),
	url('../fonts/InkFree.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

::-moz-selection { /* Code for Firefox */
	color: #FFF;
	background: #E2639F;
}
::selection {
	color: #FFF;
	background: #E2639F;
}

*, *::before, *::after {
	box-sizing: border-box;
}

body
{
	font-family: InkFree, serif;
	font-weight: 400;
	overflow: auto;
	margin: 0;
	padding: 15px 12px 100px;
	font-size: 18px;
	color: #666666;
	min-height: 100vh;
	background-image: url(fondo.jpg);
	background-size: cover;
	background-attachment: fixed;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	line-height: normal;
}

a, a:hover
{
	color: currentColor;
	text-decoration: none;
}

#bloque
{
	width: 1400px;
	max-width: 100%;
	border-radius: 30px;
	border: 5px solid #FFF;
	background: rgba(255, 255, 255, 0.80);
	padding: 40px 40px 45px;
}

#bloque-logo
{
	display: flex;
	align-items: center;
	gap: 30px;
	margin-bottom: 70px;
}

#titulo
{
	color: #E2639F;
	font-size: 43px;
	margin-bottom: 36px;
	-webkit-text-stroke-width: 0.5px;
}

#texto
{
	font-size: 25px;
	line-height: 46px;
	-webkit-text-stroke-width: 0.5px;
}
#localizacion
{
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
}
.item-localizacion
{
	display: flex;
	align-items: center;
	gap: 10px;
	-webkit-text-stroke-width: 0.25px;
}

.item-localizacion-titulo
{
	font-size: 25px;
	margin: 0;
	font-weight: 400;
}

.item-localizacion-texto
{
	font-weight: 400;
	line-height: normal;
	margin: 0;
}
@media only screen and (max-width: 1199px)
{
	body{padding-bottom: 15px; align-items: center}
	#bloque-logo{margin-bottom: 40px;}
	.item-localizacion{flex-direction: column; text-align: center}
}
@media only screen and (max-width: 991px)
{
	#bloque-logo{flex-direction: column; text-align: center}
}

@media only screen and (max-width: 767px)
{
	#localizacion{flex-direction: column; text-align: center}
	#titulo{font-size: 25px;}
	.item-localizacion-titulo {font-size: 22px}
	#texto {font-size: 20px;line-height: 33px;}
}