html,
body {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
	display: inline;
	height: 100%;
    color: white;
    text-align: center;
	background-color: black;
	/* overflow: hidden; */
}

/* NAVBAR */

.navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: black;
    color: white;
	padding: 10px 20px;
}

.navbarLeft {
	font-family: 'Barlow', sans-serif;
	font-weight: 500;
}

.navbarLeft a {
    color: white;
}

.navbar {
	overflow: hidden;
	height: 47px;
	transition: height 0.3s ease;
	overflow: hidden;
}

.navbar a {
	float: left;
	display: block;
	color: white;
	text-align: left;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
}

.navbar a:hover {
	background-color: #0099CC;
	transition-duration: 0.5s;
	color: white;
}

.navbar .icon {
	display: none;
}

.contacto {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-image: url(../img/fondo_formulario.png);
	background-size: cover;
	background-position: center;
	padding: 20px;
	border-radius: 8px;
    height: 100%;
}

.titulo, .subtitulo {
	margin-bottom: 10px;
}

.titulo h1 {
	font-size: 50px;
}

.subtitulo h3 {
	font-size: 20px;
}

.form {
	background-color: rgba(0, 153, 204, 0.5);
	width: 100%;
	max-width: 50%;
	padding: 20px;
	border-radius: 8px;
	text-align: left;
}

.form label {
	display: block;
	margin-top: 5px;
	font-size: 18px;
}

.form input, textarea {
	font-family: 'Open Sans', sans-serif;
	width: 100%;
	padding: 8px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

#mensaje {
	height: 100px;
	word-wrap: break-word;
}

#enviar {
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	background-color: #FE9147;
	color: white;
	border: none;
	padding: 10px;
	cursor: pointer;
	width: 20%;
	border-radius: 6px;
	font-weight: bold;
	margin: 0 auto;
	display: block;
	text-align: center;
}

#enviar:hover {
	background-color: #0056b3;
	transition-duration: 0.5s;
}

.footer {
	height: 120px;
	background-color: black;
	color: white;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: space-around;
	margin-top: auto;
	padding: 15px;
	font-size: 20px;
	font-family: 'Barlow', sans-serif;
}

.footer img {
	height: 80%;
}

.links {
	display: flex;
	flex-direction: row;
	text-align: center;
}

.links a {
	text-decoration: none;
	color: white;
	margin: 5px;
}

.links a:hover {
	color: #FE9147;
	transition-duration: 0.3s;
}

.links i {
	font-size: 40px;
	margin: 15px;
}

/* --- MEDIA QUERIES MOBILE --- */

@media screen and (max-width: 767px) {
	body {
		overflow: auto;
	}

    /* --- NAVBAR --- */

	.navbar-container {
		display: block;
	}

	.navbar a:not(:first-child) {
		display: none;
	}

	.navbar.responsive {
		position: relative;
		height: 200px;
	}

	.navbar.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
	}

	.navbarLeft {
		display: none;
	}

	.navbar a.icon {
		float: inline-end;
		display: block;
	}

	.navbar.responsive a {
		float: none;
		display: block;
		text-align: left;
	}

    /* --- CONTACTO --- */

	.contacto {
		padding: 10px;
		height: auto;
	}

	.titulo h1 {
		font-size: 30px;
	}

	.subtitulo h3 {
		font-size: 16px;
	}

	.form {
		max-width: 90%;
		padding: 15px;
	}

	.form label {
		font-size: 16px;
	}

	.form input, 
	textarea {
		font-size: 12px;
	}

	#enviar {
		width: 60%;
		font-size: 16px;
		padding: 12px;
		margin-bottom: 50px;
	}

	.footer {
		height: 50px;
	}

	.footer p, .footer img {
		display: none;
	}

	.footer i {
		font-size: 28px;
	}
}

/* --- MEDIA QUERIES TABLET --- */

@media screen and (min-width: 768px) and (max-width: 1024px) {
	body {
		overflow: auto;
	}
	/* NAVBAR */
	.navbar-container {
		display: block;
	}

	.navbar a:not(:first-child) {
		display: none;
	}

	.navbar.responsive {
		position: relative;
		height: 200px;
	}

	.navbar.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
	}

	.navbarLeft {
		display: none;
	}

	.navbar a.icon {
		float: inline-end;
		display: block;
	}

	.navbar.responsive a {
		float: none;
		display: block;
		text-align: left;
	}

	/* --- CONTACTO --- */

	.contacto {
		padding: 30px;
		height: auto;
	}

	.titulo h1 {
		font-size: 40px;
	}

	.subtitulo h3 {
		font-size: 20px;
	}

	.form {
		max-width: 80%;
		padding: 25px;
	}

	.form label {
		font-size: 16px;
	}

	.form input,
	textarea {
		font-size: 16px;
	}

	#mensaje {
		height: 150px;
	}

	#enviar {
		width: 40%;
		font-size: 18px;
		padding: 10px;
		margin: 20px auto;
	}

	.footer {
		height: 50px;
		font-size: 18px;
	}

	.footer img {
		display: none;
	}

	.footer i {
		font-size: 28px;
	}
}
