*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;

}

p{
    font-weight: 300;
    color: #000;
    line-height: 2.5;
}

header{
    position: relative;
    top: 0%;
    left: 0%;
    padding: 20px 10px;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    transition: 0.5s;
}

.logo{
    color: #000;
    font-weight: bold;
    font-size: 2em;
    text-decoration: none;
}
.logo img{
    max-width: 350px;
    max-height: 250px;
}
.logo span{
    color: #fb911f;
}

.navbar{
    display: flex;
    position: relative;
}
.navbar ol{
    list-style: none;
}
.navbar a {
    color: #000;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 700;
}

header .navbar ol a:hover{
    color: #fb911f;
    border-bottom: 2px solid #fb911f;
    
}

.grid {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 270px);
	justify-content: center;
}
.w{
	grid-column: span 2;
	text-align: center;
	border-radius: 65px;
	color: #fff;
	font-weight: bold;
	font-size: 25px;
	line-height: 1.5em;
	font-family: sans-serif;
	position: relative;
	padding: 20px;
	border: 20px solid #0000;
	background: linear-gradient(#fff 0 0) content-box,
		linear-gradient(var(--c, #e2961c) 0 0) padding-box,
		linear-gradient(var(--d, 90deg), #0000 75%, #F3FFB9 0) border-box;
}
li:nth-child(even) {
	grid-column-end: -1;
	--d: -90deg;
	--c: #c2674c;
}
li:not(:last-child) {
	margin-bottom: -20px;
}
li:before,
li:after {
	content: "";
	display: block;
	height: 0.6em;
}

time {
	position: absolute;
	font-size: 0.65em;
	left: calc(100% + 50px);
	top: 50%;
	transform: translateY(-50%);
	white-space: nowrap;
}
li:nth-child(even) time {
	left: auto;
	color: #000;
	right: calc(100% + 50px);
}
time:before {
	content: "";
	position: absolute;
	height: 10px;
	top: calc(50% - 5px);
	right: calc(100% + 5px);
	width: 65px;
	background: repeating-linear-gradient(-90deg, #e2961c 0 5px, #0000 0 10px) 50%/100%
		2px no-repeat;
}
li:nth-child(even) time:before {
	right: auto;
	left: calc(100% + 5px);
	background: repeating-linear-gradient(90deg, #c2674c 0 5px, #0000 0 10px) 50%/100%
		2px no-repeat;
}


.container {
	position: relative;
	background: 
		radial-gradient(farthest-side at bottom right, #F3FFB9 98%, #0000)
			calc(50% - 10px) 100%/20px 20px no-repeat,
		linear-gradient(90deg, #e2961c 50%, #c2674c 0);
}

body {
	margin: 0;
}


.card_reference{
    display:inline-block;
    
    border-bottom: 1px solid transparent;
    color:#0099ff;
    text-decoration:none;
    transition: ease-in .3s;
    &:hover{
       border-bottom-color: #0099ff;
    }
}

.titre span {
	flex-direction: column;
	align-items: flex-end;
	font-size: 2em;
	line-height: 1.2em;
	font-weight: bold;
	color: #000;
	margin-right: 700px;
  }
.titre2 span {
	flex-direction: column;
	align-items: flex-end;
	font-size: 2em;
	line-height: 1.2em;
	font-weight: bold;
	color: #000;
	margin-right: 500px;
  }
.endbar{
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.endbar li{
    list-style: none;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-left: 15px;
    margin-right: 20px;
}

.endbar li img {
    display: block; 
    margin-bottom: 5px; 
    width: 50px;
    height: auto;
    margin-right: 10px;
}
footer{
    position: relative;
    top: 0%;
    left: 0%;
    padding: 20px 10px;
    width: 100%;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: 0.5s;
}