
    .timeline {
  position: relative;
  width: 660px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 1em 0;
  list-style-type: none;
}

.timeline:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: ' ';
  display: block;
  width: 6px;
  height: 100%;
  margin-left: -3px;
  background: rgb(80,80,80);
  background: -moz-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(100%,rgba(125,185,232,1)));
  background: -webkit-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  background: -o-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  background: -ms-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  background: linear-gradient(to bottom, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  z-index: 5;
}

.timeline li {
  padding: 1em 0;
}

.timeline li:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.direction-l {
  position: relative;
  width: 300px;
  float: left;
  text-align: right;
}

.direction-r {
  position: relative;
  width: 300px;
  float: right;
}
.flag-wrapper {
  position: relative;
  display: inline-block;
  text-align: center;
}

.flag {
  position: relative;
  display: inline;
  background: rgb(248,248,248);
  padding: 6px 10px;
  border-radius: 5px;
  font-weight: 600;
  text-align: left;
}

.direction-l .flag {
  -webkit-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  -moz-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
}

.direction-r .flag {
  -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
}

.direction-l .flag:before,
.direction-r .flag:before {
  position: absolute;
  top: 50%;
  right: -22px;
  content: ' ';
  display: block;
  width: 6px;
  height: 6px;
  margin-top: -5px;
  background: #fff;
  border-radius: 10px;
  border: 4px solid #ff5e14;
  z-index: 10;
}

.direction-r .flag:before {
  left: -22px;
}

.direction-l .flag:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -8px;
  border: solid transparent;
  border-left-color: rgb(248,248,248);
  border-width: 8px;
  pointer-events: none;
}

.direction-r .flag:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -8px;
  border: solid transparent;
  border-right-color: rgb(248,248,248);
  border-width: 8px;
  pointer-events: none;
}

.time-wrapper {
  display: inline;
  line-height: 1em;
  font-size: 0.66666em;
  color: #ff5e14;
  vertical-align: middle;
}

.direction-l .time-wrapper {
  float: left;
}

.direction-r .time-wrapper {
  float: right;
}

.time {
  display: inline-block;
  padding: 4px 6px;
  background: rgb(248,248,248);
}

.desc {
  margin: 1em 0.75em 0 0;
  line-height: 1.5em;
}

.direction-r .desc {
  margin: 1em 0 0 0.75em;
	text-align:left;
}

.direction-l .desc {
  margin: 1em 0 0 0.75em;
	text-align:right;
}

/* ================ Timeline Media Queries ================ */
@media (max-width: 660px) {
    .row{
        display:inherit;
    }
}

@media screen and (max-width: 660px) {

.timeline {
 	width: 100%;
	padding: 4em 0 1em 0;
}

.timeline li {
	padding: 2em 0;
}

.direction-l,
.direction-r {
	float: none;
	width: 100%;

	text-align: center;
}

.flag-wrapper {
	text-align: center;
}

.flag {
	background: rgb(255,255,255);
	z-index: 15;
}

.direction-l .flag:before,
.direction-r .flag:before {
  position: absolute;
  top: -30px;
	left: 50%;
	content: ' ';
	display: block;
	width: 12px;
	height: 12px;
	margin-left: 0px;
	background: #fff;
	border-radius: 10px;
	border: 10px solid rgb(255,80,80);
	z-index: 10;
}

.direction-l .flag:after,
.direction-r .flag:after {
	content: "";
	position: absolute;
	left: 50%;
	top: -8px;
	height: 0;
	width: 0;
	margin-left: -8px;
	border: solid transparent;
	border-bottom-color: rgb(255,255,255);
	border-width: 8px;
	pointer-events: none;
}


.desc {
	position: relative;
	margin: 1em 0 0 0;
	padding: 1em;
	background: rgb(245,245,245);
	-webkit-box-shadow: 0 0 1px rgba(0,0,0,0.20);
	-moz-box-shadow: 0 0 1px rgba(0,0,0,0.20);
	box-shadow: 0 0 1px rgba(0,0,0,0.20);
	
  z-index: 15;
}

.direction-l .desc,
.direction-r .desc {
	position: relative;
	margin: 1em 1em 0 1em;
	padding: 1em;
	
  z-index: 15;
}

}

@media screen and ( max-width: 660px) {

.direction-l .desc,
.direction-r .desc {
	margin: 1em 4em 0 4em;
}
}
@media (max-width: 660px) {
    p,h1,h2,h3,h4,h5{
    	    overflow-wrap: break-word; 
    }
}

/* ================ CSS Formulaire ================ */
.custom-input{
    box-sizing: border-box;
    padding: 14px 25px;
    height: auto;
    width: 100%;
    position: relative;
    outline: 0;
    border: solid 1px #d8d8d8;
    margin: 0;
        margin-bottom: 0px;
    color: #000000;
    background: #ffffff;
    margin-bottom: 10px;
    transition: all .4s;
    line-height: 1.1em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.custom-input:hover{
    border: solid 1px #ff5e14;
}
.custom-submit{
    display: inline-block;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 0;
    vertical-align: middle;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    text-decoration: none;
    text-shadow: none;
    transition: color .3s ease-out,border .3s ease-out,background .3s ease-out,box-shadow .3s ease-out !important;
    border-radius: 0;
    border: none;
    padding: 16px 30px;
    -webkit-font-smoothing: auto;
    background: #ff5e14;
    color: #ffffff;
    box-shadow: 0 0 25px -14px #ff5e14;
    width:auto;
}
.custom-submit{
    background: #000000;
    box-shadow: 0 0 25px -14px #000000;
}




.descriptionAcceuil{
    background-color:#F2F2F2;
    padding:40px;
    border-right:1px solid #ccc;
}
.descriptionAcceuilWrapper{
    background-color:#F1F1F1;
    max-width:1380px;
    min-width:initial;
    margin:auto;
    margin-top:100px;
    padding:10px
}
.caseMenuInterm{
    height:400px;
    padding:50px;
    margin:20px;
    border-style:solid;
    background-clip:border_box;
    border-color:#bfbfbf;
    border-width:1px;
}
.divIntermediaire{
    margin:auto;
    padding:20px;
    width:1280px;
}
.divIntermediaire.second{
    margin-top:100px;
}
.buttonCustomMade{
    width: 20vw;
    bottom: 12vh;
    position: absolute;
}
.buttonCustomMade.last{
    left: 66vw;
}
@media (min-width: 1280px){
    .buttonCustomMade{
        width: 290px;
        bottom: 12vh;
        position: absolute;
    }
    .buttonCustomMade.last{
        left:calc(calc(100% - 1280px)/2 + 890px);
    }
}

@media (max-width: 660px) {
    .descriptionAcceuil{
        background-color:#FFF;
        padding:0px;
        border:none;
    }
    .descriptionAcceuilWrapper{
        background-color:#FFF;
        max-width:100%;
        min-width:initial;
        margin:auto;
        margin-top:10px;
        padding:0px;
    }
    .caseMenuInterm{
        height:auto;
        padding:10px;
        margin:10px;
        border-style:solid;
        background-clip:border_box;
        border-color:#bfbfbf;
        border-width:1px;
    }
    .divIntermediaire{
        margin:auto;
        padding:10px;
        width:100%;
    }
    .divIntermediaire.second{
        margin-top:10px;
    }
    .divIntermediaire.second img {
        width:100%;
    }
    .buttonCustomMade{
        width: 100%;
        bottom: inherit;
        position: inherit;
    }
    .buttonCustomMade.last{
        left: inherit;
    }
}
.descriptionAcceuil.last{
    border:none;
}
