.b-ePediaDef{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.b-ePediaDef__card{
    width: calc(33% - 8px);
    /*height: calc(33% - 8px);*/
    margin: 4px;
    position: relative;

}
.b-ePediaDef__img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
}
.b-ePediaDef__content{
    z-index: 10;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: 100%;
    top: 0;
    color: #fff;
    padding: 10px;
}
.b-ePediaDef__name{
    font-size: 23px;
    /*margin-top: 30px;*/
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}
.b-ePediaDef__description{
    text-align: center;
    font-size: 18px;
}
.b-ePediaDef__btn{
    background: #00a4eb;
    padding: 15px 36px;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    display: inline-block;
    box-shadow: 1px 1px 2px 0px #4c4b4b;
    border: none;
}
.b-ePediaDef__btn:hover{
    color: #fff;
    background-color: #16b4ef;
}
.b-ePediaDef__card:before{
    content: "";
    background: #0000008a;
    z-index: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

/*---Responsive---*/
@media screen and (max-width: 1550px) {
    .b-ePediaDef__name{
        font-size: 18px;
    }
    .b-ePediaDef__description{
        text-align: center;
        font-size: 12px;
    }
    .b-ePediaDef__btn{
        font-size: 14px;
        padding: 5px 16px;
    }

}

@media screen and (max-width: 1200px) {
    .b-ePediaDef__card {
        width: calc(50% - 8px);
    }
}

@media screen and (max-width: 768px) {
    .b-ePediaDef__card {
        width: calc(100% - 8px);
    }
}