/***
* Estos estilos aplican para el index del sitio
***/

                /* ------------------ QUALITY (CONTENT 1) -------------*/
#quality{
    padding-top: 15px;
    padding-bottom: 15px;
    width: 100%;
    /*height: 20%;
    max-height: 130px;*/
    background: #F7F7F7;
    font-family: 'Hind-Bold';
    font-size: 15pt;
    color: #3F3F3F;
}

#qua-container{
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qua-item{
    display: flex;
    width: 20%;
    max-width: 300px;
    height: 60%;
    max-height: 100px;
    justify-content: flex-start;
    align-items: center;
    /*line-height: 100px;*/
    
    /*vertical-align: top;*/
}
.qua-item div{
    width: 45%;
    max-width: 65px;
    height: 80%;
    background-size: auto 100%;
    background-position: left center;
    background-repeat: no-repeat;
}

.qua-item p{
    width: 80%;
    /*margin-top: 5%;*/
    display: block;
    /*vertical-align: middle;
    line-height: normal;*/
}

.person-icon{
    background-image: url('../img/icon-person.png');
}

.global-icon{
    background-image: url('../img/icon-global.png');
}

.manufactured-icon{
    background-image: url('../img/icon-manufacturado.png');
}

                /* ------------------ FILTROS -------------*/
#filtros{/*
    left: 10%;
    padding-top: 3%;*/
}

.quick-filter{
    display: inline-block;
    padding: 15px 20px 15px 20px;
    min-width: 20%;

}

                /* ------------------ EXPERIENCIA -------------*/
#experience{
    width: 100%;
}

#experience div{
    margin-top: 7%;
}

.certification{
    background-image: url('../img/ej-cert.jpg');
    background-repeat: no-repeat;
    background-position: 10% 10%;
    background-size: 90% auto;
    padding: 5%;
    margin: 0 1% 0 1%;
}

/****************************       SMALL SCREENS       *******************/
@media screen and (max-width: 800px){
    /* QUALITY */
    #quality{
        width: 100%;
        /*height: 50%;*/
        max-height: 280px;
        background: #F7F7F7;
        font-family: 'Hind-Bold';
        font-size: 15pt;
        color: #3F3F3F;
    }

    #qua-container{
        flex-direction: column;
        justify-content: space-around;
        height: 250px;
    }

    .qua-item{
        display: flex;
        justify-content: center;
        /*margin: 10% 0 10% 0;*/
        width: 100%;
        height: 20%;
        background-size: auto 100%;
        background-position: 10% center;
        background-repeat: no-repeat;
        /*padding-left: 0;
        vertical-align: initial;*/
    }

    .qua-item div{
        height: 100%;
        max-height: 50px;
    }

    .qua-item p{
        width: 50%;
        /*margin-top: 5%;*/
        /*padding-left: 40%;*/
        line-height: 1;
    }

    /* FILTROS */

    #filtros{
        width: 100%;
        padding: 5% 0 5% 0;
    }

    .quick-filter {
        display: block;
        padding: 5% 10% 5% 10%;
        margin: 1%;
    }

    #filter-container{
        padding-left: 5%;
        padding-right: 5%;
    }
    

    /* EXPERIENCE */
    #experience div {
        margin-top: 15%;
    }

    #experience .certification{
        padding: 10%;
    }

}
/**********************************     MEDIUM SCREENS      ****************/
@media screen and (min-width: 801px){
    
    /* QUALITY */
    #qua-container{
        max-height: 130px;
    }

}