#whatWeDo {
    background-color: var(--light-color);
    padding: 6rem 1.5rem;
}

#whatWeDo .container {
    padding: 0;
}


/* Header */
#whatWeDo .header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

#whatWeDo .header h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    color: var(--dark-color);
    text-align: center;
    margin: 0 0 2rem;
}

#whatWeDo .header p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: var(--dark-light-color);
    max-width: 800px;
    margin-bottom: 0;
}


/* Content */
#whatWeDo .content {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: center;
}

#whatWeDo .content .content-item {
    padding: 1rem;
    width: 100%;
}

#whatWeDo .content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1;
    color: var(--dark-color);
}

#whatWeDo .content p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: var(--dark-light-color);
}

#whatWeDo .content p:last-child {
    margin-bottom: 0;
}

#whatWeDo .content .content-item.image {
    display: flex;
    justify-content: center;
    align-items: center;
}

#whatWeDo .content .content-item.image .parcel-box-heart {
    max-width: 250px;
    margin-left: 2rem;
}

@media (min-width: 992px) {
    #whatWeDo {
        padding: 6rem 4rem;
    }

    #whatWeDo .content {
        flex-direction: row;
    }

    #whatWeDo .content .content-item {
        padding: 2rem;
        width: 50%;
    }

    #whatWeDo .content .content-item.image {
        justify-content: end;
    }

    #whatWeDo .content .content-item.image .parcel-box-heart {
        max-width: 400px;
    }
}