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

@font-face
{
	font-family: "Poppins";
	font-style: normal;
	font-weight: 300;
	src: url("../fonts/poppins-v23-latin-300.woff2") format("woff2"),
	url("../fonts/poppins-v23-latin-300.ttf") format("truetype")
}

@font-face
{
	font-family: "Poppins";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/poppins-v23-latin-regular.woff2") format("woff2"), url("../fonts/poppins-v23-latin-regular.ttf") format("truetype")
}

@font-face
{
	font-family: "Poppins";
	font-style: normal;
	font-weight: 600;
	src: url("../fonts/poppins-v23-latin-600.woff2") format("woff2"), url("../fonts/poppins-v23-latin-600.ttf") format("truetype")
}

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

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

body
{
	font-family: Poppins, serif;
	font-weight: 400;
	overflow: auto;
	margin: 0;
	font-size: 15px;
	color: #333;
	background: url("fondo.jpg");
	background-size: cover;
	background-position: center;
	min-height: 100vh;
	display: flex;
	align-items: center;
	text-align: center;
}

#section
{
	width: 1004px;
	max-width: 100%;
	border-radius: 15px;
	border: 3px solid #FFF;
	background: rgba(255, 255, 255, 0.85);
	margin-left: auto;
	margin-right: auto;
	padding-top: 60px;
	padding-bottom: 60px;
	padding-left: 30px;
	padding-right: 30px;
}

#logo{max-width: 100%; height: auto}

.titulo2
{
	font-size: 25px;
	font-weight: 600;
	text-transform: capitalize;
	margin-top: 35px;
	color: #1474B9;
	margin-bottom: 5px;
}

.texto p {
	margin: 0;
}

#datos-localizacion
{
	list-style: none;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, minmax(0,1fr));
	gap: 50px;
	margin: 55px 0 0 0;
}

.item-localizacion
{
	display: flex;
	align-items: flex-start;
	gap: 20px;
	text-align: left;
}
.item-localizacion-titulo
{
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 6px;
	color: #1474B9;
	font-size: 17px;
}
.item-localizacion-texto a{color: #333;text-decoration: none}
@media only screen and (max-width: 992px)
{
	body{
		padding: 15px;
	}
}
@media only screen and (max-width: 1199px)
{
	body{
		background-position: center;
	}
	#datos-localizacion
	{
		display: flex;
		flex-direction: column;
		gap: 35px;
		margin-top: 60px;
	}
}

@media only screen and (max-width: 575px)
{
	#section{
		text-align: center;
	}

	.titulo2{font-size: 20px; line-height: normal; margin-top: 30px}
	.texto{font-size: 15px; margin-top: 0}

	#datos-localizacion{text-align: start; margin-top: 35px;}

	#logo{width: 300px;}
}