.container-container-solutions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-container-solutions h2 {
    text-align: center;
}

.container-solutions {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-bottom: 50px;
    align-items: center;
    flex-direction: column;
    
}

.solution {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;

}

.solution-content {
    width: 350px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    background-color: #7067ff;
    color: white;
    border: 5px solid;
    padding: 24px;
    border-image: linear-gradient(to right, grey 25%, yellow 25%, yellow 50%,red 50%, red 75%, teal 75%) 5;
    box-sizing: border-box;
}

.pricing-solution {
    width: 350px;
    height: 80px;
    background-color: white;
    color: black;
    border-radius: 0px 0px 40px 40px;
    -moz-border-radius: 0px 0px 40px 40px;
    -webkit-border-radius: 0px 0px 40px 40px;
    border: 5px solid #d6d6d6;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    font-size: 15px;
    padding: 24px;
    box-sizing: border-box;
}

.solution h3 {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

@media only screen and (min-width: 1080px) {
    .container-solutions {
        flex-direction: row;
        align-items: baseline;
    }
    .solution {
        margin-top: 0;
        margin-bottom: 0;
    }
}
