html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}

@media(min-width:576px) {
    .container {
        max-width: 95%
    }
}

@media(min-width:768px) {
    .container {
        max-width: 95%
    }
}

@media(min-width:992px) {
    .container {
        max-width: 982px
    }
}

@media(min-width:1200px) {
    .container {
        max-width: 1140px
    }
}

@media(min-width:1300px) {
    .container {
        max-width: 1290px
    }
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 25%, 0);
        transform: translate3d(0, 25%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 25%, 0);
        transform: translate3d(0, 25%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-duration: 1.2s;
}

@keyframes fadeInUpDelay {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 25%, 0);
        transform: translate3d(0, 25%, 0);
    }
    50% {
        opacity: 0;
        -webkit-transform: translate3d(0, 25%, 0);
        transform: translate3d(0, 25%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUpDelay {
    -webkit-animation-name: fadeInUpDelay;
    animation-name: fadeInUpDelay;
    animation-duration: 1.5s;
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
    animation-duration: 1.2s;
}

.red {
    color: #bc472d;
    font-weight: 700;
}


/* Timeline */

.bulle {
    border-radius: 50%;
    padding: 2px 0 0px;
    text-align: center;
    height: 50px;
    width: 50px;
    line-height: 38px;
    font-size: 18px;
    z-index: 2;
    position: relative;
}

.progress.extremite {
    width: calc(16.66% - 60px);
}

.progress {
    height: 5px;
    width: calc(16.66% - 32.5px);
    margin-top: 23px;
    border-radius: 0px;
    z-index: 1;
    position: relative;
    background: repeating-linear-gradient( 90deg, #E9ECEF, #E9ECEF 10px, #ffffff 15px, #ffffff 20px);
}

.progress.green {
    background: #8CBA4A;
    border-radius: 10px;
}

.progress.here {
    background: #00A9D7;
    border-radius: 10px;
}

.bulle.check {
    background: #8CBA4A;
    color: white;
    border: 5px solid white;
}

.bulle.unckeck {
    margin: 5px;
    width: 40px;
    height: 40px;
    /*background: #F2F4F5;
    color:#F2F4F5;*/
    background: white;
    color: white;
    border: 5px solid #E9ECEF;
}

.bulle.here {
    margin: 5px;
    width: 40px;
    height: 40px;
    line-height: 28px;
    background: #F2F4F5;
    color: #00A9D7;
    border: 5px solid #00A9D7;
}

.label {
    width: 10%;
    white-space: nowrap;
    text-align: center;
    margin-left: calc(6.66% + 18px);
}

.label.extremite {
    margin-left: calc(11.66% - 37.5px);
}

.label.text-lighter {
    color: #dbdee0;
}

#organisme a {
    text-decoration: none;
}

#organisme h3 {
    transition: 0.3s all;
}

#organisme h3:hover {
    color: #00A9D7;
}

#charte li {
    list-style: none;
    line-height: 200%;
    font-size: 1.15em;
}