.dt-c-Header {
    display: flex;
    min-height: 836px;
    color: var(--color-white);
    background-color: var(--color-blue);
}

.dt-c-Header-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
}

.dt-c-Header-content {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 70px;
}

.dt-c-Header-content-description,
.dt-c-Header-content-image {
    flex: 1 1 0; /** 50% / 50% */
}

.dt-c-Header-content-description {
    max-width: 562px;
}

.dt-c-Header-content-description p {
 margin-top: 20px;
}

.dt-c-Header-content-description .dt-c-Button {
 margin-top: 40px;
}

.dt-c-Header-content-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dt-c-Header-content-image img {
    max-width: 100%;
    height: auto;
    transform: translateY(-10%);
}

/** Décoration */
.dt-c-Header-content-image::after {
    content: '';
    z-index: 1;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 195px;
    height: 219px;
    background-image: url('../../img/icon/dots-grey.svg');
    background-position: center;
    background-size: contain;
}

@media only screen and (max-width: 999px) {
    .dt-c-Header-content {
        flex-direction: column-reverse;
    }
}