

.solution-links-cell{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 30%;
    margin-bottom: 5rem;
    height: 40rem;
}

.solution-row{
    position: relative;
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-bottom: 4rem;
}

.img-top{
    background-color: #3155a4;
    height: 12rem;
    background-position: center;
    background-size: cover;
}

.info-center{
    flex: 1;
    border: 1px solid #eeeeee;
    position: relative;
}
.info-center p{
    margin: 2rem;
}

.info-rest{
    position: absolute;
    border-bottom: 1px solid #ddd;
    width: 3rem;
    transform: translateY(-1rem);
    left: 2rem;
}

.info-center h2{
    font-weight: 600;
    margin: 2rem;
    margin-right: 0;
}

.info-center a h2{
    color: black;
}
.link-bottom{
    height: 4rem;
    background-color: #3155a4;
    color: white;
    text-align: center;
    display: flex;
    align-content: center;
    padding: 25px 0;
    justify-content: center;
    flex-direction: column;
    text-transform: uppercase;
}


@media only screen and (min-width: 992px) and (max-width: 1200px){

    .solution-row{
        gap: 3rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px){

    .solution-row{
        gap: 1rem;
    }
}


/* mobile */
@media only screen and (max-width: 767px){

    .solution-links-cell{
        position: relative;
        display: flex;
        flex-direction: column;
        width: 95%;
        margin-bottom: 4rem;
        height: 32rem;
    }
    
    .solution-row{
        position: relative;
        display: block;
        justify-content: space-between;
        
    }
    
}