.certificates {
    display: flex;
    justify-content: center;
    margin: 60px;
    padding: 10px;
}

.images {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.images img {
    width: 400px;
    height: auto;
    margin: 30px;
    box-shadow: 1px 1px 5px #000;
}

#eaton {
    width: auto;
    height: 392px;
    margin: auto auto;
}

@media screen and (max-width: 767px) {
    .images img {
        width: 300px;
        margin: 20px auto;
    }

    .certificates {
        margin: 10px 12px;
        padding: 0;
    }

    .images {
        justify-content: space-between;
    }

    #eaton {
        width: 100%;
        height: auto;
        margin: 10px auto;
    }

}

@media screen and (min-width: 768px) and (max-width:912px) {
    #eaton {
        width: 80%;
    }

    .images img {
        width: 300px;
        margin: 20px auto;
    }

    .certificates {
        margin: 10px 12px;
        padding: 0;
    }

    .images {
        justify-content: space-between;
    }
}