.livestream{
    position: relative;
}
.livestream_bg{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 15rem;
    background-color: rgba(231, 76, 60,0.8);
    z-index: -10;
}
.livestream_heading{
    font-family: 'Means Web,Georgia,Times,Times New Roman,serif';
    padding-top: 8rem;
    font-size: 3rem;
    font-weight: 400;
    color: white;
    margin-left: 3rem;
}
.livestream_container{
    margin: 8rem auto;
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.livestream_card{
    position: relative;
    width: 30%;
    height: 25rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    cursor: pointer;
}
.livestream_card::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
}
.livestream_card > .livestream_img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.livestream_card > .socailmedia{
    position: absolute;
    top: 4%;
    left: 5%;
    transform: translate(-5%,-4%);
    font-size: 1.5rem;
    border-radius: 20%;
    background: rgba(250, 250, 250, 0.7);
    padding: 0.6rem;
}

.livestream_card > .fa-play{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #dfdede;
    font-size: 1.5rem;
}
.livestream_card > span{
    font-size: 1.3rem;
    color: #fff;
    position: absolute;
    bottom: 5%;
    left: 3%;
}
.livestream_card > span > i{
    margin-right: 0.4rem;
}
.livestream_card:hover  .fa-play{
    border: 3px solid #fff;
    color: #fff;
    border-radius: 50%;
    padding: 0.7rem;
}
.livestream_card:hover::before{
    background-color: transparent;
}
.livestream_card > .fa-share{
    font-size: 1.3rem;
    color: #fff;
    position: absolute;
    bottom: 5%;
    right: 3%;
}