.ibw {
    width: 100%;
    max-width: 1275px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto 5px;
    padding: 0 10px;
}

.ibw .card {
    position: relative;
    margin: 0 0 40px;
    padding: 0 5px;
    max-width: 395px;
}

.ibw .img-cont {
    border-radius: 4px;
    overflow: hidden;
}

.ibw img {
    width: 100%;
    height: auto;
    vertical-align: middle;
}
.ibw .card:hover .content-container {
    background-color: #cb545b;
}
.ibw .card .content {
    position: absolute;
    left: 5px;
    bottom: -15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 94%;
    padding: 12px 24px 12px 0;
    background-color: #fff;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
    transition: 0.3s background-color;
    min-height: 64px;
}

.ibw .bar {
    width: 5px;
    height: 40px;
    background-color: #cb545b;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.ibw .content h5 {
    margin-left: 15px;
    margin-bottom: 0;
    color: #33332e;
    transition: 0.3s color;
}

@media only screen and (min-width: 641px) {
    .ibw {
        margin-bottom: 70px;
        justify-content: flex-start;
    }

    .ibw .card {
        max-width: calc(50% - 20px);
        margin: 0 10px 40px;
        flex: auto;
        width: calc(50% - 20px);
    }

    .ibw .card .content {
        width: 88%;
    }

    .ibw .card:hover .content {
        background-color: inherit !important;
        transition: 0.3s background-color;
    }

    .ibw .card:hover .content h5 {
        color: #f5f5f0;
        transition: 0.3s color;
    }
}

@media only screen and (min-width: 1025px) {
    .ibw .card {
        margin: 0 13px 40px;
        max-width: calc(33.3333% - 26px);
        width: calc(33.3333% - 26px);
    }
}

                