*{
    border: 0;
    padding: 0;
    box-sizing: border-box;
	cursor: url('../cursor/red.cur'), url('cursor/red.cur'), url('../cursor/red.png'), url('cursor/red.png'), url('../cursor/red.gif'), url('cursor/red.gif'), pointer;
}

body{
    padding-top: 70px;
}

@font-face {
    font-family: geosans;
    src: url(../fonts/GeosansLight.ttf);
}

body{
    display: flex;
    flex-direction: column;
    background-color: #ECF0F5;
    font-family:geosans;
}


/* Menú superior ----------------------------------------- */

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background:  #FF5E5B;
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.59);
    z-index: 2; /* Para superponer menú, pues las imágenes, por alguna razón, estaban por encima del menú. */
}

.menu{
    width: 90%;
    margin: auto;
    max-width: 1920px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.menu > #logo{
    display: inline-block;
    margin-right: 1em;
    flex-grow: 3;
    font-size: 1.005em;
}

.menu > #logo a{
    color: #FFF;
    text-decoration: none;
    font-size: 2em;
    padding: 0.7em 0.5em 0.71em 0.5em;
}

.menu > #enlaces {
    flex-grow: 2;

}

.menu > #enlaces ul{
    display: flex;
    flex-direction: row;
    list-style: none;
}

.menu > #enlaces a{
    color: #FFF;
    text-decoration: none;
    font-size: 1.3em;
    padding: 1.79em 1.8em 1.79em 1.8em;
}

.menu > #enlaces a:hover{
    background-color: #C64947;
}

.menu > #sesion{
    flex-grow: 0;
}


.menu > #sesion ul{
    list-style: none;
}

.menu > #sesion a{
    color: #FFF;
    text-decoration: none;
    padding: 1.79em 0.2em 1.79em;
    font-size: 1.3em;
}
.menu > #sesion a:hover{
    color: #FFF;
    background-color: #C64947;
}

.icon-menu{
    display: none;
}

/* ------------------------------------------------------- */


/* Descripción ------------------------------------------- */

#descripcion{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    background-color: white;
    padding: 1em;
    margin: 20px -8.4px 0px -8.4px;
    color: #FF5E5B;
}
/* ------------------------------------------------------- */


/* Efectos Menu -------------------------------------------*/

.headroom{
    transition: transform .3s ease;
}

.headroom--pinned{
    transform: translateY(0%);
    box-shadow: 0px 2px 3px 0px rgba(0,0,0,0.59);
}

.headroom--unpinned{
    transform: translateY(-100%);
}

/*-----------------------------------------------------------*/


/* Articlos --------------------------------- */

article h2{
    margin-top: 100px;
    text-align: center;
    letter-spacing: 30px;
    border-bottom: 2px solid #FF5E5B;
}

#articulos{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.articulo{
    display: flex;
    flex-direction: column;
    margin: 1em;
    border-radius: 5px;
    overflow: hidden;
    width: 290px;
    height: 100px;
    -webkit-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.28);
	-moz-box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.28);
	box-shadow: 0px 0px 11px 0px rgba(0,0,0,0.28);
}

.imagen{
    overflow: hidden;
    width: 500px;
    height: 400px;
    filter: blur(0px);
    transition: filter 0.3s linear;
}

.imagen:hover{
    overflow: hidden;
    width: 500px;
    height: 400px;
    filter: blur(2.5px);
    transition: filter 0.3s linear;
}

.descrip {
    text-decoration:none;
    background-color: white;
    padding: 1em;
    width: 500px;
    height: 200px;
    text-align: justify;
}

.articulo a{
    text-decoration:none;
    padding: 0px;
    margin: 0px;
    text-align: justify;
    color: black;
}

.descrip p{
    width: auto;
    height: auto;
}

/* --------------------------------------------- */

/* Footer --------------------------------- */

footer{
    background-color: #8B8B8B;
    text-align: center;
    padding: 1em;
    margin: -8.4px;
    margin-top: 1em;
}

.social{
    margin-top: 20px;
}
.social a{
    margin-right: 14px;
    margin-left: 5px;
    text-decoration: none;
    color: white;
}

.a2a_kit{
    display: flex;
    flex-direction: row;
    margin-top: 2em;
    justify-content: center;
    width: 100%;
}

.a2a_kit a{
    margin-right: 20px;
    margin-left: 20px;
}

/* --------------------------------------------- */

/* Movil ----------------------------------------*/

@media screen and (max-width:1090px){
    .menu{
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 20px;
    }

    .menu #logo{
        display: flex;
        flex-direction: row;
        flex-grow: 1;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

   #logo #icon-menu{
        display: inline-block;
    }

    #logo #icon-menu img{
        height: 20px;
        width: 20px;
    }

    .menu #enlaces ul{
        display: flex;
        justify-content: space-between;
        width: 100%;
        flex-grow: 1;
        margin: 1em;
        align-items: center;
        font-size: 25px;
		flex-wrap: wrap;
    }

    .menu #enlaces a{
        text-decoration: none;
        padding: 10px 50px;
		margin-top: 300px;
    }

    .menu #enlaces a:hover{
        text-decoration: none;
        padding: 10px 60px;
        border-radius: 20px;
    }

    .menu #sesion{
        flex-grow: 1;
        margin: 10px;
        font-size: 25px;
    }

    .menu #sesion a{
        font-weight: bolder;
        color: white;
        background-color: #BF4040;
        text-decoration: none;
        padding: 7px 170px;
        border-radius: 20px;
    }

    .menu #sesion a:hover{
        font-weight: bolder;
        color: white;
        background-color: black;
        text-decoration: none;
        padding: 7px 170px;
    }

    section{
        margin-top: 20px;
    }

    #descripcion{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        padding: 5%;
        margin: 25px -8.4px 0px -8.4px;
    }

    #descripcion .izquierda{
        flex-basis: 35%;
        text-align: center;
    }

    #descripcion .centro{
        flex-basis: 35%;
        text-align: center;
    }

    #descripcion .derecha{
        flex-basis: 35%;
        text-align: center;
    }

    #articulos{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .articulo{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

}
