.voir_offres {
    display: grid;
    margin-top: 64px;
    margin-bottom: 64px;
}

.voir_offres_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    position: relative;

    width: calc(100% - 64px);
    gap: 32px;
    padding: 32px;

    grid-column: 1;
    grid-row: 1;
    z-index: 3;

    border-radius: 10px;
    background-color: #042a62;
}

.voir_offres_content p {
    color: var(--fake-white);
    font-weight: 600;
    text-align: center;
}

.big-btn-container-voir_offres {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.big-btn_voir_offres {
    font-weight: 600;
    border-radius: 5px;
    color: var(--fake-white);
    padding: 10px 20px;
    text-align: center;
    background-color: var(--brand-tertiary);
}

@media only screen and (max-width: 1100px) {
    .voir_offres {
        display: grid;
        margin-top: 48px;
        margin-bottom: 32px;
    }
}