@charset "UTF-8";

/*!
 * ITVM-Development
 * Copyright (c) 2016 Daniel Eden
 */


/* ---- Timeline ---- */
.timeline ol {
  position: relative;
  display: block;
  margin: 100px;
  height: 4px;
  background: #31708F;
  width: 1050px;
}
.timeline ol::before,
.timeline ol::after {
  content: "";
  position: absolute;
  top: -8px;
  display: block;
  width: 0;
  height: 0;
  border-radius: 10px;
  border: 10px solid #31708F;
}
.timeline ol::before {
  left: -5px;
}
.timeline ol::after {
  right: -10px;
  border: 10px solid transparent;
  border-right: 0;
  border-left: 20px solid #31708F;
  border-radius: 3px;
}

/* ---- Timeline elements ---- */
.timeline li {
  position: relative;
  display: inline-block;
  float: left;
  width: 250px;
  font: bold 14px arial;
  height: 50px;
}
.timeline li .diplome {
  position: absolute;
  top: -27px;
  left: 51%;
  color: #31708F;
  font: bold 22px arial;
  z-index: 5;
}
.timeline li .diplome2 {
  position: absolute;
  top: -59px;
  left: 111%;
  color: #31708F;
  font: bold 22px arial;
  z-index: 5;
}
.timeline li .point {
  content: "";
  top: -22px;
  left: 43.5%;
  display: block;
  width: 50px;
  height: 50px;
  border: 4px solid #31708F;
  border-radius: 50px;
  background: #fff;
  position: absolute;
}
.timeline li .description {
  display: block;
  background-color: #f4f4f4;
  padding: 10px;
  margin-top: 50px;
  margin-left: 30px;
  position: relative;
  font-weight: normal;
  z-index: 1;
}
.description::before {
  content: '';
  width: 0; 
  height: 0; 
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #f4f4f4;
  position: absolute;
  top: -5px;
  left: 43%;
}

/* ---- Hover effects ---- */
.timeline li:hover {
  cursor: pointer;
  color: #48A4D2;
}
.timeline li:hover .description {
  display: block;
}



@media (max-width: 1000px) {

.timeline ol {
  margin: 50px;
  margin-bottom: 100px;
  margin-left: 5px;
  width: 95%;
}

/* ---- Timeline elements ---- */
.timeline li {
  position: relative;
  display: inline-block;
  float: left;
  width: 4.9rem;
  font: bold 14px arial;
  height: 50px;
}

.timeline li .description {
  display: block;
  padding: 5px;
  margin-top: 50px;
  margin-left: 20px;
  position: relative;
  font-weight: normal;
  z-index: 1;
  left: 1%;
  width: 110px;
}

.timeline li .diplome {
  left: 65%;
  z-index: 100;
}

.timeline li .diplome2 {
  left: 70%;
}

 }