@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;
}
body{
    background: #efefef;
}
/*:::Boton-Modal:::*/

.caja-fondo{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: beige;
    width: 500px;
    align-items: 500px;
}

.caja-fondo img{
    width: 250px;
    height: 250px;
}

.boton-modal{
    padding: 0px;
}
.boton-modal label{
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
}
.boton-modal label:hover{
    background-color: #185E83;
}
/*:::Fin Boton-Modal:::*/

/*:::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);
    /* background-color: rgba(144, 148, 150, 0); */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
#btn-modal:checked ~ .container-modal{
    display: flex;
}
.content-modal{
    /* width: 100%; */
    max-width: 100%;
    padding: 0px;
    /* background-color: #fff; */
    border-radius: 4px;
}
.content-modal h2{
    margin-bottom: 15px;
}
.content-modal p{
    padding: 15px 0px;
    border-top: 1px solid #dbdbdb;
    border-bottom: 1px solid #dbdbdb;
}
.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;
}
.content-modal .btn-cerrar label:hover{
    background-color:#185E83;
}
.cerrar-modal{
    width:100%;
    height: 100vh;
    position: absolute;
    top:0; left: 0;
    z-index: -1;
}
.img_grande{
    position: relative;
    width: 96%;
    max-width: 80%;
    height: 96%;
    max-height: 50%;
    margin-top: 0px;
  }
  .logogrande {
    margin-top: 0px;
    margin-right: 10%;
    margin-left: 10%;
      padding: 0px;
    border-radius: 10px;
  }

/* @media screen and (max-width:1320px) {
    .content-modal{
        width: 50%;
    }
}
@media screen and (max-width:800px) {
    .content-modal{
        width: 100%;
    }
}*/
@media screen and (max-width:1000px) {
    .content-modal{
        width: 60%;
    }
} 
@media screen and (max-width:800px) {
    .content-modal{
        width: 100%;
    }
}
@media screen and (max-width:320px) {
    .content-modal{
        width: 120%;
    }
}
/*:::Fin Ventana Modal:::*/

