.certifications{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.certifications-block, .certifications-text{
    display: inline-block;
}

.certifications-text{
    width: 30%;
    font-size: 15px
}

.certifications-blocks{
    width: 65%;
}

.certifications-block{
    width: 24.5%;
    padding: 15px 19px 18px 19px;
    border: 1px solid #f7f7f7;
    background-color: white;
    border-top: none;
    -webkit-box-shadow: 0 2.3px 2px 0.1px #f1f1f1;
    -moz-box-shadow: 0 2.3px 2px 0.1px #f1f1f1;
    -ms-box-shadow: 0 2.3px 2px 0.1px #f1f1f1;
    box-shadow: 0 2.3px 2px 0.1px #f1f1f1;
    -webkit-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
}

.certifications-block > i{
    color: #ffc527;
    font-size: 25px;
}

.certifications-block > p{
    margin-top: 5px;
    font-weight: bold;
}

@media only screen and (max-width: 1319px){
    .certifications-text{
        width: 45%;
    }

    .certifications-blocks{
        width: 50%;
    }

    .certifications-block{
        margin: 2px 0;
        width: 49%;
    }
}

@media only screen and (max-width: 480px){
    .certifications-text{
        width: 100%;
    }

    .certifications-blocks{
        display: flex;
        width: 100%;
    }

    .certifications-block{
        width: 100%;
    }

    .certifications{
        display: block;
    }
}

@media only screen and (max-width: 330px){
    .certifications-blocks{
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        flex-basis: 30%;
    }
}
