*{
	margin: 0;
	padding: 0;
}

body{

	/* Ubicación de la imagen */

	background-image: url(../img/landing-08-full-hd.png);

	/* Para dejar la imagen de fondo centrada, vertical y

	horizontalmente */

	background-position: center center;

	/* Para que la imagen de fondo no se repita */

	background-repeat: no-repeat;

	/* La imagen se fija en la ventana de visualización para que la altura de la imagen no supere a la del contenido */

	background-attachment: fixed;

	/* La imagen de fondo se reescala automáticamente con el cambio del ancho de ventana del navegador */

	background-size: cover;

	/*color de fondo en lo que se carga la imagen*/
	background-color: #AED6F1;

}

#cabecera{
	margin-bottom: 60px;
	padding: 0;
	border: 0;
	text-align: center;
}

#cabecera img{
	margin: 0px;
	padding: 0;
}

h1{
	text-align: center;
	font-size: 30px;
	font-family: Arial;
	font-weight: 530;
	color: #ffffff;
	text-shadow: 0 0 0.15em #000, 0 0 0.15em #000, 0 0 0.15em #000;
	letter-spacing: 0.07em;
}

#centro{
	position: center;
}

#barra-carga{
	text-align: center;
}

#iconos{
	width: 100%;
	height: 55px;
	margin-top: 40px;
}

#iconos ul{
	list-style: none;
	display: flex;
	justify-content: center;
}

#iconos ul li{
	margin: 0 10px;
	float: left;
	position: center
}

#boton-contacto{
	width: auto;
	height: auto;
	text-align: center;
}

#boton-contacto img{
	cursor: pointer;
}

#pie_de_pagina{
	text-align: center;
	height: 85px;
	margin-top: 28px;
	margin-bottom: 20px;
}

h4{
	color: #ffffff;
	text-align: center;
	font-family: Arial;
	font-weight: 200;
	font-size: 13px;
	padding: 5px 0px;
}

h5{
	color: #ffffff;
	text-align: center;
	font-family: Arial;
	font-weight: 200;
	font-size: 12px;
	padding: 5px 0px;
}

/* ventana modal*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

/*:::Ventana Modal:::*/
#btn-modal{
    display: none;
}
.container-modal{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0; left: 0;
    background-color: rgba(144, 148, 150, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
#btn-modal:checked ~ .container-modal{
    display: flex;
}

.content-modal{
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #f8f8ff;
    border-radius: 4px;
    text-align: left;
}
.content-modal h2{
    margin-bottom: 5px;
    text-align: center;
}
.content-modal h3{
	margin-bottom: 10px;
	text-align: center;
	font-family: Arial;
	font-weight: 200;
}
.content-modal .etiqueta{
	font-size: 14px;
	font-family: Arial;
}
.content-modal input, textarea {
  width: 100%;
  padding: 12px 20px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px; 
}

#boton-enviar{
	padding: 7px 10px;
    background-color: #5488a3;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: Arial;
    width: 30%;
    margin-left: 35%;
}
#boton-enviar:hover{
	background-color:#185E83;
}
#boton-enviar:focus{
    outline: none;
}
#boton-enviar:active{
    transform: scale(0.98);
}
/*
.content-modal .btn-cerrar{
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}
.content-modal .btn-cerrar label{
    padding: 7px 10px;
    background-color: #5488a3;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
    font-family: Arial;
}
.content-modal .btn-cerrar label:hover{
    background-color:#185E83;
}
.cerrar-modal{
    width:100%;
    height: 100vh;
    position: absolute;
    top:0; left: 0;
    z-index: -1;
}
*/
@media screen and (max-width:800px) {
    .content-modal{
        width: 90%;
    }
}
/*:::Fin Ventana Modal:::*/

/*Notificaciones*/
.toast{
    width: 300px;
    height: 70px;
    border-radius: 5px;
    margin: 0.5rem;
    color: #ffffff;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    
}

.info{
    background-color: #2196f3;
}

.success{
    background-color: #4caf50;
}

.error{
    background-color: #ff5252;
}

.warning{
    background-color: #ffc107;
}

span{
    color: #ffffff;
    margin: 0 20px 0 0;
    font-size: 1.5rem;
}