

.mobile_content{
    display: none;
}

.mobile_content.visible{
    display: inline;
}

.first_array_for_mobile{
    display: none;
    opacity:0;
    transition: all 1s;
}

.top_mobile_title{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.top_mobile_title h5{
    margin-bottom:4px;
}

@media (max-width:500px)  { 
    .first_array_for_desktop{
        display: none;
    }

    .first_array_for_mobile{
        margin-top:8px;
        display:block;
        opacity:100%;
        transition: all 1s;
    }
}