@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

/*:::Boton-Acerca:::*/
.boton-Acerca{
    padding: 40px;
    background-color: #fff;
}

.boton-Acerca label{
    padding: 10px 15px;
    background-color: #5488a3;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
}

.boton-Acerca label:hover{
    background-color: #185E83;
}

/*:::Boton-Contacto:::*/
.boton-Contacto{
    padding: 40px;
    background-color: #fff;
}

.boton-Contacto label{
    padding: 10px 15px;
    background-color: #5488a3;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
}


.boton-Contacto label:hover{
    background-color: #185E83;
}
/*:::Fin Botones:::*/

/*:::Ventana Modal Acerca:::*/

#btn-Acerca{
    display: none;
}

.container-Acerca{
    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-Acerca:checked ~ .container-Acerca{
    display: flex;
}

.content-Acerca{
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 4px;
}
.content-Acerca h2{
    margin-bottom: 15px;
    color: #000000;
}
.content-Acerca p{
    padding: 15px 0px;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    color: #000000;
}
.content-Acerca .btn-cerrar-Acerca{
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}
.content-Acerca .btn-cerrar-Acerca label{
    padding: 7px 10px;
    background-color: #5488a3;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
}
.content-Acerca .btn-cerrar-Acerca label:hover{
    background-color:#185E83;
}
.cerrar-Acerca{
    width:100%;
    height: 100vh;
    position: absolute;
    top:0; left: 0;
    z-index: -1;
}

@media screen and (max-width:800px) {
    .content-Acerca{
        width: 90%;
    }
}

/*:::Ventana Modal Contacto:::*/

#btn-Contacto{
    display: none;
}

.container-Contacto{
    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-Contacto:checked ~ .container-Contacto{
    display: flex;
}

.content-Contacto{
    width: 100%;
    max-width: 400px;
    padding: 20px;
    background-color: #fff;
    border-radius: 4px;
}
.content-Contacto h2{
    margin-bottom: 15px;
    color: #000000;
}
.content-Contacto p{
    padding: 15px 0px;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
    color: #000000;
}
.content-Contacto .btn-cerrar-Contacto{
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}
.content-Contacto .btn-cerrar-Contacto label{
    padding: 7px 10px;
    background-color: #5488a3;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
}
.content-Contacto .btn-cerrar-Contacto label:hover{
    background-color:#185E83;
}
.cerrar-Contacto{
    width:100%;
    height: 100vh;
    position: absolute;
    top:0; left: 0;
    z-index: -1;
}
@media screen and (max-width:800px) {
    .content-Contacto{
        width: 90%;
    }
}
/*:::Fin Ventana Modal:::*/

