#how {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 40%;
    margin-left: 25%;
    margin-right: 25%;
    margin-top: 50px;
    border-radius: 30%;
    padding: 5%;
}

#how-title {
    font-size: 30px;
    margin-bottom: 0;
    text-transform: uppercase;
}

#how  {
    font-size: 20px;
}

#how i {
    font-size: 35px;
}

#benefits {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;

}

#benefits-title p {
    font-size: 30px;
    text-transform: uppercase;
}

#benefits-content {
    margin-left: 10%;
    max-width: 80%;
    margin-right: 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

#benefits-content p {
    text-transform: capitalize;
}

.benefit {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 30%;
    margin: 10px;
    padding: 10px;
    border: 1px solid rgb(210,214,220);
    border-radius: 10px;
    background-color: rgb(0,175,239);
    transition: background-color 0.5s;
    transition: padding 0.2s ease-in-out;
    color: white;
    font-size: 20px;
    box-shadow: 0 3px 10px grey;

}

.benefit:hover {
    background-color: rgb(62,185,242);
    padding: 15px;
}

@media screen and (max-width: 854px) {
    #benefits-content {
        flex-direction: column;

    }

    #how {
        border-radius: 0;
        margin-left: 10%;
        margin-right: 10%;
        width: 70%;
    }

    .benefit {
        width: 80%;
    }

    .benefit:hover {
        padding: 10px;
        background-color: rgb(0,175,239);
    }

    #benefits-title {
        text-align: center;
    }
}

