* {
    margin: 0;
}
  
body{
    font-family: 'Barlow Semi Condensed', sans-serif;
    background-color: #1F2039;
}

header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
    margin-top: 20px;
    margin-bottom: 50px;
}

header a{
    background-color: #A4A6B1;
    color: #1F2039;
    text-decoration: none;
    padding: 10px 70px;
    font-weight: 600;
}

a{
    text-decoration: none;
    color: #1F2039;
}

.boutonGauche{
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.boutonDroite{
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
}

footer{
    background-color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
}

.logoLinkedin{
    height: 40px;
    width: 40px;
    margin-right: 20px;
}

a:hover {
    opacity: 0.5;
}

h1{
    color: #A4A6B1;
    font-size: 3.5em;
    margin-bottom: 30px;
}

.titreOnglet{
    margin-left: 100px;
}

.frise{
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
    padding: 40px 60px;
    overflow: auto;
}

.frise:after{
    content: "";
    position: absolute;
    left: 35px;
    right: 35px;
    top: 50%;
    height: 8px;
    background: #A4A6B1;
    border-radius: 3px;
    z-index: 1;
    transform: translateY(-50%);
}

.frise article{
    display: inline-block;
    position: relative;
    background: #A4A6B1;
    width: auto;
    height: 75px;
    padding: 10px;
    margin: 0 0 50px 80px;
    vertical-align: top;
    border-radius: 15px;
    text-align: center;
}

.frise article:not(:first-child){
    margin-left: -20px;
}

.frise article:not(:last-child){
    margin-right: -20px;
}

.frise article:before{
    content: "";
    display: block;
    position: absolute;
    top: calc( 100% + 14px );
    left: 50%;
    background: #A4A6B1;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.frise article:after {
    content: "";
    position: absolute;
    top: calc( 100% - 10px );
    left: 50%;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 20px solid #A4A6B1;
    transform: translateX(-50%);
}
  
.frise article:nth-child(even) {
    margin-top: 140px;
    margin-bottom: 0;
}

.frise article:nth-child(even):before {
    top: auto;
    bottom: calc( 100% + 14px );
}

.frise article:nth-child(even):after {
    top: -10px;
    bottom: 100%;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 20px solid #A4A6B1;
    border-top: none;
}