.histoire{
    .heading{
        text-align: start;
        .label{
            text-align: start;
        }
    }
    @media (max-width: 768px){
        .subtitle{
            br{
                display: none;
            }
        }
    }
}


.history-container{
    display: flex;
    gap: 48px;
    text-align: end;
    position: relative;
    
    .content, .empty-content{
        width: 50%;
        margin-top: 15px;
    }

    .headline{
        font-weight: 300;
        color: #2F5BEA;
        font-size: 42px;
    }

    h3{
        margin-bottom: 16px;
    }

    img{
        width: 86%;
        margin: 0 auto;
    }

    @media (max-width: 768px){
        padding-top: 40px;
        flex-direction: row-reverse;
        text-align: start;
        margin-top: 15px;
        .empty-content{
            display: none;
        }

        .content, .empty-content{
            width: 100%;
            margin-top: 0;
        }

        .history-titles{
            grid-row: 2;
            padding-top: 20px;
            text-align: center;
        }
        &::before{
            content: "";
            height: 40px;
            width: 2px;
            background-color: #2F5BEA;
            display: block;
            position: absolute;
            top: 0;
            margin: auto;
            left: 0;
            right: 0;
        }
    }
    
}

.history-left {
    flex-direction: row-reverse;
    text-align: start;

}

.history-timeline{
    height: -webkit-fill-available;
    width: 20px;
    position: relative;

    .timeline-dot{
        width: 20px;
        height: 20px;
        border-radius: 50px;
        background-color: #2F5BEA;
        display: block;
        transform: translateY(20px);
    }

    &::after{
        content: "";
        height: 100%;
        position: absolute;
        width: 2px;
        margin: 0 auto;
        top: 0;
        left: 0;
        right: 0;
        background-color: #2F5BEA;
    }
    
    @media (max-width: 768px){
        display: none;    
    }
}