.hero-body .media-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image.is-60x60{
    height: 60px;
    width: 60px;
}

.solutions .card{
    display: block;
    height: 175px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05), 0 10px 20px 0 rgba(76, 94, 112, 0.05);
    cursor: pointer;
    padding: 24px 0px;
    overflow: hidden;
}

.solutions .card .card-banner{
    display:flex;
    flex-direction: row;
    padding: 0px 30px;
}

.solutions .card .card-title-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-left: 12px;
}

.solutions .card .card-title-wrapper .card-title{
    font-size: 18px;
    font-weight: 500;
    color: #3e464c;
    line-height: normal;
}

.solutions .card .card-title-wrapper .card-subtitle{
    font-size: 14px;
    letter-spacing: 0.32px;
    color: #a1a6ab;
    line-height: normal;
    margin-top: 8px;
}

.solutions .card .card-content{
    padding: 20px 30px 0px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.solutions .card .card-des{
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 0.32px;
    color: #68747f;
}

.solutions .card .more-link{
    width: 100%;
    height: 60px;
    opacity: 0;
    background-color: #02a973;
    margin-top: 23px;
    display:flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.42px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.solutions .card:hover{
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.05), 0 10px 20px 0 rgba(76, 94, 112, 0.05), 0 20px 20px 0 rgba(0, 0, 0, 0.05);
}

.solutions .card:hover .more-link{
    transform: translateY(-12px);
    opacity: 1;
}

.solutions .card:hover .card-content{
    height: 0;
    opacity: 0;
}
