.ip-recommended-feed {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.ip-recommended-feed-item {
    width: 50%;
    position: relative;
    padding: 5px;
}

.ip-recommended-feed-item a {
    display: block;
    position: relative;
}

.ip-recommended-feed-item a .ip-recommended-feed-img {
    width: 100%;
    position: relative;
}

.ip-recommended-feed-item a .ip-recommended-feed-img canvas.ip-recommended-feed-canvas-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.ip-recommended-feed-item a .ip-recommended-feed-img img {
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ip-recommended-feed-info {
    height: 110px;
    width: 100%;
    position: absolute;
    bottom: 0px;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.ip-recommended-feed-line {
    width: 49px;
    height: 110px;
    border-right: solid 1px #fff;
    background: transparent;
}

#content .ip-recommended-feed-info h2 {
    width: calc(100% - 49px - 163px);
    font-size: 35px;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    padding-left: 47px;
}

.ip-recommended-feed-explore {
    width: 163px;
    text-transform: uppercase;
}

.ip-recommended-feed-explore span {
    width: 134px;
    height: 68px;
    color: #fff;
    font-size: 15px;
    line-height: 68px;
    text-align: center;
    font-weight: 700;
    display: block;
    transition: all 0.6s ease;
}

.ip-recommended-feed-explore span:hover {
    background: #047e93;
}

@media only screen and (max-width: 991px) {
    #inner-page-wrapper > .container{
        width: 100%;
    }
    .ip-recommended-feed-item{
        width: 100%;
    }

    .ip-recommended-feed-info{
        height: auto;
        display: block;

    }

    .ip-recommended-feed-line{
        display: none;
    }

    #content  .ip-recommended-feed-info h2{
        width: 100%;
        padding-left: 0;
        font-size: 20px;
        text-align: center;
    }

    .ip-recommended-feed-explore{
        width: 100%;
        text-align: center;
    }

    .ip-recommended-feed-explore span{
        display: block;
        margin: 0 auto;
    }
}