.global-header {
    display: flex;
    align-items: stretch;
    gap: 50px;
}

.header_contenu {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 65%;
}

.header_image {
    width: 35%;
    display: flex;
    align-items: stretch;
}

.header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.titre_header {
    font-size: 35px;
    font-weight: 500;
}

.breadcrumb_link {
    color: inherit;
}

.breadcrumb_link:hover {
    text-decoration: underline;
}


@media screen and (max-width: 768px) {
    .header_image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .global-header {
        display: flex;
        flex-direction: column;
    }

    .titre_header {
        font-size: 30px;
    }
}

@media screen and (max-width: 1024px) {
    .header_contenu {
        gap: 20px;
        width: 100%;
    }
}