@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');
:root{
    --marino: #0B2343;
    --gris: #595959;
    --azul: #007CC2;
}
body{
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--gris);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
section{
    padding: 20px 30px;
    max-width: 1266px;
    margin: 0 auto;
}
h1{
    color: #027BE4;
    font-size: 28pt;
}
p{
    font-size: 21pt;
}
h2{
    font-size: 14pt;
    margin-bottom: 10px;
}
.section{
    padding: 20px 40px;
}
.center{
    text-align: center;
}
article{
    background: #027BE4;
}
.footer{
	padding: 10px;
    color: #fff;
	display: grid;
    grid-template-columns: 20% 60% 20%;
    align-items: center;
}
.footer p, .footer a{
	font-size: 10px;
	color: #fff;
	margin: 0 10px;
}
.footer .flex{
	display: flex;
    justify-content: center;
    grid-gap: 25px;
}
.hide{
    display: none;
}
.show{
    display: block;
}
#tramites{
    font-size: 13pt;
    font-weight: 900;
    background: var(--marino);
    color: #fff;
    border: solid var(--marino);
    outline: none;
    background-image: url(../img/flecha.svg);
    background-repeat: no-repeat;
    background-position: right 28px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none; 
    width: -webkit-fill-available;
}
#tramites::-ms-expand {
    display: none;
}
.movil{
    display: none;
}
.menu-hide{
        display: none;
    }
    .menu-show{
        display: block;
        position: absolute;
        width: -webkit-fill-available;
        padding: 20px;
        background: var(--azul);
        z-index: 3;
        height: 100vh;
        color: #fff;
    }
@media (max-width: 820px){
    .desk{
        display: none;
    }
    .movil{
        display: block;
    }
    .head {
        grid-template-columns: 40% 50% 10%;
        padding: 20px;
    }
    .head img{
        width: 120px;
    }
    
    #divmenu p{
        font-size: 14pt;
        padding: 10px 0 5px;
        cursor: pointer;
        color: #fff;
        margin: 0;
    }
    #divmenu h2{
        justify-content: flex-start;
    }
    #divmenu hr{
        border-color: #fff;
    }
    section {
        padding: 20px;
    }
    .footer {
        grid-template-columns: 100%;
        padding: 20px;
        grid-gap: 20px;
    }
}