body {
	scroll-behavior: default;
}

.timeline-container, .timeline-sidebar {
	transition: opacity .3s ease-in-out;
	opacity: 0;
}

.loaded .timeline-container, .loaded .timeline-sidebar { 
	opacity: 1;
}

.timeline-container .interieur {
	max-width: 1317px;
	margin: 0 auto;
}

@media (min-width: 320px) and (max-width: 1400px) {
	.timeline .interieur {
		padding: 0 20px;
	}
}

.timeline {
	box-sizing: border-box;
	position: relative;
}

.timeline *,
.timeline :after,
.timeline :before {
	-webkit-box-sizing: inherit;
	box-sizing: inherit
}

.timeline:before {
	background: hsl(35, 30%, 68%);
	bottom: 0;
	content: '';
	left: 50%;
	margin-left: -1px;
	position: absolute;
	top: 0;
	width: 2px;
	z-index: 1
}

.timeline__wrap {
	position: relative;
	z-index: 2
}

/* .timeline__items {
	display: flex;
	flex-wrap: wrap;
} */

.timeline__item {
	font-size: 16px;
	font-size: 1rem;
	padding: .625rem 2.5rem 2rem 0;
	position: relative;
	width: 50%;
	z-index: 2
}

@media (max-width: 767px) {
	.timeline__item {
		padding: .625rem 2.5rem .625rem 0;
	}
}

.timeline__item:after {
	transition: all .3s ease-in-out 1.5s;
	background: none;
	border-radius: 50%;
	content: '';
	height: 20px;
	position: absolute;
	right: -10px;
	transform: translateY(-50%);
	top: 50%;
	width: 20px;
	z-index: 1
}

.timeline__item.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
	opacity: 0
}

.timeline__item.animated:after {
	background-color:#b7182a;
}

.timeline__item.fadeIn {
	animation-name: fadeIn
}

.timeline__item--left {
	left: 0
}

.timeline__item--right {
	left: 50%;
	padding: .625rem 0 .625rem 2.5rem
}

.timeline__item--right:after {
	left: -10px
}

.timeline__content {
	display: block;
	padding: 1.25rem;
	position: relative
}

.timeline__content h2 {
	color: #b7182a;
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
	padding: 3rem 0 1.25rem;
}

@media (max-width: 767px) {
	.timeline__content h2 {
		padding: 1.25rem 0 1.25rem;
	}
}

.timeline__content h3 {
	font-size: 1.675rem;
	font-weight: 500;
	margin: 0;
	padding: 0 0 .5rem;
}

.timeline__content p, .timeline__content li {
	font-size: 1rem;
	line-height: 1.5;
	padding: 0;
	margin: 0;
}

.timeline__caption {
	font-size: .875rem;
	padding: .75rem 0 0;
}

.timeline--mobile {
	padding: 0
}

.timeline--mobile:before {
	left: 10px !important;
	margin: 0 !important
}

.timeline--mobile .timeline__item {
	left: 0;
	padding-left: 32px;
	padding-right: 0;
	width: 100%
}

.timeline--mobile .timeline__item:after {
	left: 2px;
	margin: 0
}

.timeline__item .bouton {
    display: inline-block;
    padding: 10px 20px 8px;
    border: 2px solid #b7182a;
    color: #b7182a;
    font-weight: 300;
    font-size: 18px;
    text-transform: uppercase;
    margin: 10px 0;
    transition: all 0.5s ease-out;	
}

.timeline__item .bouton:hover {
    background-color: #b7182a;
    color: #fff;
}

.timeline-inner {
	display: flex;
	padding: 1.25rem;
}

.timeline-sidebar {
	flex-shrink: 0;
    width: 100px;
    margin: 0;
}

.timeline-sidebar ul {
	position: sticky;
	top: 10rem;
    width: 100px;
}

@media (max-width: 767px) {
	.timeline-sidebar {
		display: none;
	}
}

@media (min-width: 1680px) {
	.timeline-sidebar {
		margin: 0 -20px 0 -20px;
		width: 0;
	}
	
	.timeline-sidebar ul {
		transform: translateX(-100%);
	}
}

.timeline-sidebar a {
	transition: color .3s ease-in-out;
	color: #302e2d;
	display: block;
	padding: 0 0 1rem 0;
	text-align: left;
}

.timeline-sidebar a.active, .timeline-sidebar a:hover {
	color: #b7182a;
}

.timeline-sidebar a.active {
	font-weight: bold;
}

.timeline-inner .timeline {
	flex: 1 1 0%;
}

@media (min-width: 767px) {
	.timeline__items .timeline__item:last-child {
		background: #fff;
		left: 0;
		width: 80%;
		text-align: center;
		margin: 100px auto 0;
	}

	.timeline__items .timeline__item:last-child:after {
		left: 50%;
		top: 0;
		right: 0;
		transform: translate3d(-50%, -75px, 0);
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		top: 70px
	}

	100% {
		opacity: 1;
		top: 0
	}
}

@keyframes liftUp {
	0% {
		top: 0
	}

	100% {
		top: -15px
	}
}