.offre {
    padding-top: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offre_scribble {
    width: 30%;
    padding-left: 85%;
}

.offre_grid {
    width: 100%;
    display: grid;
    gap: 16px;
    grid-row-gap: 48px;
    margin-bottom: 64px;
    grid-template-columns: repeat(3, 1fr);
}

.offre_item {
    flex: 1;
    padding: 16px 16px 0 16px;
}

.offre h3 {
    font-weight:600;
    margin-top: 10px;
    height: fit-content;
}

.offre_descript {
    padding-top: 5px;
}

.offre_title {
    margin-bottom: 10px;
}

.offre p {
    text-align:left;
}

.offre_backlink {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin-right: 32px;
    margin-top: 48px;
    align-items: center;
}

.offre_backlink img {
    height: 100%;
    margin-left: 10px;
}

.offre_grid {
}

@media only screen and (max-width: 1100px) {
    .offre {
        padding-top: 64px;
    }

    .offre_grid {
        margin-bottom: 32px;
    }
}

@media only screen and (max-width: 950px) {
    .offre_item {
        margin-top: 0;
    }
    
    .offre_grid {
        grid-template-columns: repeat(2, 1fr);
        grid-row-gap:0;
        gap:16px;
    }
}

@media only screen and (max-width: 700px) {
    .offre_item {
        margin-top: 0;
    }

    .offre_grid {
        grid-template-columns: repeat(1, 1fr);
        grid-row-gap:0;
        gap:32px;
    }

    .offre_backlink img {
        margin-left: 0;
        margin-right: 16px;
    }
}