*{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: open;
    src: url('open.woff2');
}

header{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: fixed;
    background-color: white;
}
.header{
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
    padding: 0px 19.5px 0px 39px;
    width: 100%;
    min-height: 50px;
    box-sizing: border-box;
    display: grid;
    grid-column-gap: 20px;
    grid-template-columns: auto auto;
}

.hOptions{
    display: flex;
    box-sizing: border-box;
    height: auto;
    width: 100%;
}

.hImg{
    box-sizing: border-box;
    height: auto;
    width: 100%;
    margin: 5px 0px;
    padding: 18px 0px 13px;
}


.opImg, .opImg2{
    align-items: center;
    align-content: center;
    padding-top: 5px;
}

.opImg > svg{
    width: 30px;
    height: 30px;

    color: #123551;
    fill: #004a77;
}

.opImg_close{
    display: none;
    color: #123551;
    fill: #004a77;
}

.opImg2{
    width: 67%;
    text-align: right;
    justify-content: right;
}

.opImg2 > svg{
    background-color: #CEF2F1;
    fill: #004a77;
    color: #004a77;
    padding: 10px;
    width: 25px;
    border-radius: 100%;
}

.menu{
    background-color: #f2f5f7;
    box-sizing: border-box;
    height: auto;
    width: 100%;
    margin-top: 1px;
    display: none;
    transition: all .7s;
    font-family: open, sans-serif;

    /* Nombre de la animación, duración, función de tiempo y forwards */
    animation: mostrarDiv 0.3s ease-in-out forwards;

    /* Estado inicial oculto */
    opacity: 0;
}


/* Definición de la animación */
@keyframes mostrarDiv {
0% {
    opacity: 0;
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}

.menu > a{
    padding: 15px;
    box-sizing: border-box;
    height: auto;
    
    font-size: 18px;
    color: #004A77;
    text-decoration: none;
    width: 100%;
    border-bottom: 1px solid #929393;
}
.menu > a:focus, .menu > a:hover{
    background-color: #cef2f1;
}
