@import url(fontello.css);
@import url('https://fonts.googleapis.com/css2?family=Raleway&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: Arial, 'Franklin Gothic Medium', 'Arial Narrow', sans-serif;*/
    font-family: 'Raleway', sans-serif;
    background-color: white;
}

header {
    padding-top: 10px;
    width: 100%;
    height: 90px;
    background: #FFF;
    color: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor {
    width: 98%;
    margin: auto;
}

/* ESTILOS DEL MENÚ*/

#logo {
    height: 70px;
    margin-top: 5px;
    margin-left: 5px;
    float: left;
}

#menu-bar {
    display: none;
}

header label {
    float: right;
    font-size: 40px;
    margin: 15px 0;
    cursor: pointer;
}

.menu {
    position: absolute;
    top: 90px;
    width: 100%;
    height: 100vh;
    background: rgba(230,230,230,0.9);
    transition: all 0.5s;
    transform: translateX(-100%);
}

header .contenedor {
    width: 100%;
    display: table;
}

.menu a {
    text-align: center;
    display: block;
    font-size: 20px;
    color: rgb(0,68,23);
    height: 60px;
    text-decoration: none;
    padding: 18px;
    border-bottom: 1px solid rgba(180,180,180,1);
    font-weight: bold;
}

.menu a:hover {
    background-image: linear-gradient(rgb(170, 194, 88),rgb(201, 211, 129));
    font-style: italic;
}

#menu-bar:checked ~ .menu {
    transform: translateX(0%);
}

main {
    margin-top: 90px;
}

.imagen img {
    margin-top: -9px;
}

/* FOOTER */

footer {
    background: rgb(39, 71, 53);
    color: #fff;
}

footer .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: Arial, 'Franklin Gothic Medium', 'Arial Narrow', sans-serif;
}

.seccionpie {
    margin: 17px;
}

#logopie img {
    max-width: 150px;
}

#contactospie h3 {
    text-align: center;
    font-size: 17px;
}

#contactospie p {
    text-align: left;
    margin-top: 5px;
    font-size: 15px;
}

#contactospie i {
    margin-right: 10px;
    font-size: 17px;
}

#notaspie {
    text-align: center;
}

#notaspie h4 {
    font-size: 15px;
}

#notaspie img {
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 5px;
    height: 40px;
    margin-top: 10px;
}

/* RESPONSIVE */

@media (min-width:612px) {
    #logopie img {
        max-width: 140px;
    }
}

@media (min-width:785px) {
    .menu {
        position: static;
        width: auto;
        height: auto;
        transform: translateX(0%);
        float: right;
        display: flex;
    }

    .menu a {
        border: none;
        height: 80px;
        padding-top: 30px;
        background-color: #FFF;
    }

    .menu .texto {
        border-left: 1px solid #000;
        text-align: center;
        font-weight: bolder;
    }

    .menu .ult {
        border-right: 1px solid #000;
    }

    .menu .imagen {
        padding-top: 22px;
    }

    .imagen img {
        margin-top: 0px;
    }

    header label {
        display: none;
    }
}

@media (min-width:1048px) {
    .contenedor {
        max-width: 1048px;
    }
}

@media (min-width:1060px) {
    .menu .texto {
        width: 188px;
        font-size: 22px;
    }
}