.push__wrapper-items {
    display: flex;
    flex-direction: column;
    gap : 16px;
}

.push__wrapper-texts {
    display: flex;
    padding: 0 24px 17px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    align-self: stretch;
    text-transform: uppercase;
}



@media all and (min-width : 750px) {

    .push__wrapper-items {
        display: grid;
        justify-content: center;
        grid-template-areas: "a a"
                             "b c"
                             "d d";
    }

    .push__wrapper-items .push:nth-child(1) {
        grid-area : a;
    }
    .push__wrapper-items .push:nth-child(2) {
        grid-area : b;
    }
    .push__wrapper-items .push:nth-child(3) {
        grid-area : c;
    }
    .push__wrapper-items .push:nth-child(4) {
        grid-area : d;
    }
}

@media all and (min-width: 1000px) {
    .push__wrapper-items {
        grid-template-areas: "a b d"
                             "a c d";

        gap : 32px;
    }

}

@media all and (min-width: 1400px) {

    .push__wrapper-informations {
        position: relative;
    }

    .push__wrapper-texts {
        position: absolute;
        top : -5px;
        padding: 0 0px 17px 0px;
    }

    .push__wrapper {
        padding-top: 60px;
    }

    .push__wrapper-items {
        grid-template-columns: fit-content(509px) fit-content(297px) fit-content(402px);
    }

    .push__wrapper-items .push:nth-child(1) {
        max-height: 404px;
        align-self: end;
    }

}