.solution-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;

    background-color: white;
    text-decoration: none;
}

.solution-card .img-wrapper {
    background-color: #ffb8b7;
    width: 165px;
    height: 165px;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card img {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: 20vw;
    margin: 20px;
}

.solution-card .big-card-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    width: 375px;
    height: 165px;

    text-align: left;
}

.solution-card .big-card-text-title {
    font-size: 1.75em;
    font-weight: 700;
    text-align: left;
    
    width: 80%;
    margin-top: 15px;
    margin-bottom: 5px;
    color: black;
}

.solution-card .big-card-text-info {
    font-size: 1.1em;
    font-weight: 500;

    color: grey;
    width: 80%;

    margin-top: 0px;
}

@media (max-width:600px) {
    .solution-card {
        flex-direction: column;
    }

    .solution-card .img-wrapper {
        width: 100%;
        height: fit-content;
    }

    .solution-card .big-card-text {
        width: 65vw;
        height: fit-content;
    }

    .solution-card img {
        width: 20vw;
        height: auto;
    }
}