@media (max-width: 480px){
    .profile-box.style5{
        margin-bottom: 2px;
    }
    .profile-box.style5 .profile-image{
        opacity: 0;
        visibility: hidden;
        height: 0;
    }
    
    .profile-box.style5 .profile-info{
        opacity: 1;
        visibility: visible;
        position: relative;
    }
    
    .profile-box.style5.active .profile-image{
        opacity: 1;
        visibility: visible;
        height: auto;
    }
    
    .profile-box.style5.active .profile-image {
        transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
    }
    
    .profile-box.style5.active .profile-info {
        transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
    }
}