@media screen and (min-device-width: 901px){
    .why-are-we-doing-this {
        width: 100%;
        display: flex;
        justify-content: space-around;
    }
    .why-are-we-doing-this__item {
        width: 26rem;
        padding: 3rem;
    }
    .why-are-we-doing-this__item-image {
        width: 100%;
    }
    .why-are-we-doing-this__item-text {
        color: rgb(136, 136, 136);
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 2rem;
        padding-top: 3rem;
    }
}

@media screen and (min-device-width: 320px) and (max-device-width: 900px)  {
    .section:has(.why-are-we-doing-this) h2.title{
        font-size: 3rem;
        line-height: 1;
    }
    .why-are-we-doing-this {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .why-are-we-doing-this__item {
        width: 100%;
        padding: 3rem;
    }
    .why-are-we-doing-this__item-image {
        width: 100%;
    }
    .why-are-we-doing-this__item-text {
        color: rgb(136, 136, 136);
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 2rem;
        padding-top: 3rem;
    }
}