
.feed-row{
    display:flex;
    flex-wrap: wrap;
    gap:20px;
}
.redeemcard{
    height:100%;
    width:100%;
    flex: 0 0 calc(33.33% - 20px);
}

/* .imagecard{
    border: 1px solid rgb(190, 187, 187);
    border-radius: 10px;
    text-align: left;
    height:100%;
    width:100%;
    margin-top:20px;
}
.videocard{
    border: 1px solid rgb(190, 187, 187);
    border-radius: 10px;
    text-align: left;
    height:100%;
    width:100%;
    margin-top:20px;
} */
.imagecard,
.videocard {
    border: 1px solid rgb(190, 187, 187);
    border-radius: 10px;
    text-align: left;
    height: 800px;
    width: 100%;
    margin-top: 20px;
}
.imagecard img{
    width:100%;
    height:75%;
    border-radius: 10px;
    padding:5px;
}

.videocard iframe{
    border-radius: 10px;
    padding:5px;
    width:100%;
    height:75%;
}

.imagecard h5,p{
    margin-left:10px;
}
.videocard h5,p{
    margin-left:10px;
}


@media (max-width: 768px) {
    .imagecard,
    .videocard {
        height: 700px;
        width: 100%;
    }
    .redeemcard{
        height:auto;
    }
    .feed-row {
        display: block;
    }
    /* .videocard iframe {
        height: 50%;
    } */
    .videocard-text{
        margin-bottom:10px;
    }
    .imagecard-text{
        margin-bottom:10px;
    }
    .videocard iframe{
        height:70%;
    }
    .imagecard img{
        height:70%;
    }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
    .imagecard,
    .videocard {
        height: 600px; 
    }
    .imagecard img {
        height: 300px;
    }
    .videocard iframe {
        height: 300px;
    }
}

@media screen and (min-width: 901px) and (max-width: 1200px) {
    .imagecard,
    .videocard {
        height: 600px;
    }
    .videocard iframe{
        height:50%;
    }
    .imagecard img{
        height:50%;
    }
}


