.main-container-inner
{
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.lost-voices-col
{
    min-height: 400px;
    width: 27%;
    flex-wrap: wrap;
    /*background: rgb(255, 255, 255);*/
    background: rgb(83,112,255);
background: -moz-linear-gradient(357deg, rgba(83,112,255,1) 0%, rgba(142,218,255,1) 100%);
background: -webkit-linear-gradient(357deg, rgba(83,112,255,1) 0%, rgba(142,218,255,1) 100%);
background: linear-gradient(357deg, rgba(83,112,255,1) 0%, rgba(142,218,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5370ff",endColorstr="#8edaff",GradientType=1);
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid rgb(226, 226, 226);
    box-shadow: rgba(185, 185, 185, 0.363) 1px 0px 5px 4px;
    overflow: hidden;
    position: relative;
}
.lost-voices-image
{
    background-image: url("https://image.freepik.com/free-vector/abstract-classic-blue-background-design_23-2148437740.jpg");
    height: 200px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition:0.5s ease-in-out;
    margin-bottom: 25px;
}

.lost-voices-title
{
    z-index: 5;
    color: white;
    font-size: 25px;
    font-weight: 600;
    width: 84%;
    margin: auto;
    text-align:center;
    /*min-height: 50px;*/
}
.lost-voices-description
{
    font-size: 16px;
    padding: 10px 10px;
  color:   #ffffffe0;
    font-weight: 500;
    margin-bottom: 50px;
}
.lost-voices-link
{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    max-width: 100%;
}

.shutdown-play-btn
{
    width: 40%;
    width: 60px;
    height: 60px;
    cursor: pointer;
}
.shutdown-play-btn:hover
{
    width: 45%;
    transition: 0.5s ;
}

@media(max-width:600px)

{
    .main-container-inner
{
flex-wrap: wrap;
}
    .lost-voices-col
    {
        width: 100%;
    }
}