.resources-wrapper{
    display:flex;
    flex-wrap: wrap;
    padding-top: 50px;
}
.resources {
    display: inline-block;
    width: 30%;
    float: left;
    background-color: #f2f2f2;
    padding: 20px;
    position: relative;
    margin-right: 5%;
    margin-bottom: 30px;
    padding-bottom: 50px;
    margin-top: 30px;
}
.resources:nth-child(3n){
    margin-right:0;
}
.resources .type {
    position: absolute;
    top: -15px;
    left: -10px;
    background-color: #1dcad3;
    color: white;
    padding: 5px 10px;
    line-height: 1.2em;
    font-weight:800;
}

.resources .name{
    font-size:20px;
	font-weight:700 !important;
}

.explore a {
    position: absolute;
    bottom: 10px;
    right: 20px;
}

@media(max-width:980px){
    .resources{
        width:48%;
        margin-right:4%;
    }
    .resources:nth-child(3n){
        margin-right:4%;
    }
    .resources:nth-child(2n){
        margin-right:0;
    }
}

@media(max-width:768px){
    .resources{
        width:100%;
        margin-right:0;
    }
    .resources:nth-child(3n){
        margin-right:0;
    }
    .resources:nth-child(2n){
        margin-right:0;
    }
}