.realizations-container {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 50vh;
    width: 100% !important;
    max-width: 100% !important;
    scroll-snap-type: y mandatory;
    position: relative;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE et Edge */
}

.realizations-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari et Opera */
}

.realizations-section {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
    height: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.realizations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.60) 100%);
    z-index: 1;
    pointer-events: none;
}

.realization-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 100px;
    padding-left: calc((100vw - 1240px) / 2);
}

.realization-content-left {
    flex: 1;
}

.realization-title {
    color: #FFF;
    font-family: "Questrial", sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.48px;
}