.mod_product_webinar .title-box {
    margin-bottom: 34px;
    text-align: center;
}

.product-webinar .content-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0;
}
.product-webinar .item {
    width: 48%;
    position: relative;
    margin-bottom: 20px;
    max-height: 350px;
    
    padding-top: 27%;
    background-color: cyan;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.product-webinar .name-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 20%;
    text-align: center;
    background-color: rgba(27, 20, 100, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-webinar .name {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
}
@media screen and (max-width: 769px) {
    .product-webinar .item {
        width: 100%;
        margin-bottom: 30px;
        padding-top: 56%;
    }
    .product-webinar .name {
        font-size: 16px;
    }
}