.whatWeDoAndWhatWeCreatedSlide {
    background: var(--greyPageBackground);
    align-content: space-around;
    align-items: stretch;
    justify-content: space-around;
    height: auto !important;
    padding: 0;
    margin-bottom: 300px;

    @media (max-width: 1400px) { /* todo use the --mobileMaxWidth env variable when they'll be available */
        flex-direction: column;
    }
    @media (min-width: 1401px) { /* todo use the --desktopMinWidth env variable when they'll be available */
        flex-direction: row
    }
}

.weDoTextBox {
    color: gray;
    display: inline-block;
    padding: 10px 20px;

    @media (min-width: 1000px) {
        font-size: 96px;
        margin: 150px 200px 50px;
    }
    @media (max-width: 999px) {
        font-size: 48px;
        margin: 150px 10px 50px;
    }
}

.weCreatedTextBox {
    color: gray;
    display: block;
    padding: 10px 20px;
    width: fit-content;

    @media (min-width: 1000px) {
        font-size: 96px;
        margin: 150px 200px 50px auto;
    }
    @media (max-width: 999px) {
        font-size: 48px;
        margin: 150px 10px 50px auto;
    }
}

.whatWeDoAndWhatWeCreatedContainer {
    align-content: stretch;
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    justify-content: stretch;
    justify-items: stretch;
}

.whatWeDoAndWhatWeCreatedBox {
    background: #a4a4a4;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: end;
    flex: 1;
    font-size: 48px;
    height: 30vh;
    margin: 1px;
    min-width: 280px;
    padding: 10px;
    text-align: center;
    vertical-align: center;
    background-size: cover;

    @media (max-width: 999px) { /* todo use the --desktopMinWidth env variable when they'll be available */
        width: 50px;
        height: 20vh;
        font-size: 16px;
        min-width: 100px;
    }
}

.whatWeDoAndWhatWeCreatedBox * {
    font-size: 24px;
}

.whatWeDoAndWhatWeCreatedIcon {
    font-size: 30px;

    @media (max-width: 999px) {
        font-size: 20px;
    }
}
