.container-slide-header {
    /* Positioning */
    position: relative;
    bottom: 400px;
    z-index: 11;

    /* Box-model */
    max-width: 900px;

    /* Visual */
    background-color: yellow;
}

.img-slide-header {
    /* Positioning */
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;

    /* Box-model */
    margin: auto;
    width: 100%;
    height: 100%;

    /* Visual */
    object-fit: cover;
}

.carousel-indicators-header{
    /* Positioning */
    bottom: -47px;
}

.custom-item-slider{
    height: 100%;
}

@media only screen and (max-width: 1199px) {
    .container-slide-header {
        /* Positioning */
        bottom: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .container-slide-header {
        /* Positioning */
        bottom: 50px;

        /* Box-model */
        width: calc(100vw - 30px);
    }
}