// DIPLOMA
//------------------------------------
.list-links-diploma {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    margin: 70px 0;

    li {
        width: 32%;
        border: 3px solid #0099cc;
        text-align: center;
        padding: 20px;
        margin-right: 2%;
        margin-bottom: 20px; 

        a {
            display: block;
            width: 50%;
            margin: 0 auto;
            background: #0099cc;
            padding: 20px 0;
            color: #fff;
            border: 3px solid #0099cc;
            -webkit-transition: all 0.2s ease-in-out;
            -moz-transition: all 0.2s ease-in-out;
            -ms-transition: all 0.2s ease-in-out;
            -o-transition: all 0.2s ease-in-out;
            transition: all 0.2s ease-in-out;
        }

        a:hover {
            background: #e7f7f7;
            color: #0099cc;
        }
    }

    li:nth-child(3), li:nth-child(6) {
        margin-right: 0;
    }
}
@media (max-width: 959px) {
    .list-links-diploma {
        flex-direction: column;

        li {
            width: 100%;
            margin-right: 0;
            margin-bottom: 2%;
        }
    }
}