@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');

* {
  box-sizing: border-box;
  margin: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.25;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, p {
  color: #2881FA;
}

.wrapper-timeline {
  max-width: 960px;
  margin: 20px auto;
  //background-color: blue;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.box-timeline {
  margin: 30px 10px;
}

.triangleContainer {
  width: 500px;
  height: 130px;
  display: block;
  position: relative;
  background-color: white;
  padding: 20px;
  border-radius: 6px;
}

.spaceContainer {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  //background-color: gold;
}

.triangleContainer h6{
  font-size: 1.2em;
  font-weight: 700;
}

.triangleCircle {
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  background: #2881FA;
  position: absolute;
  top:-20px;
  left:43%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.triangleCircle h6{
  font-size: 1em;
  font-weight: 700;
  color: white;
}

.triangleContainer p{
  text-align: center;
  font-weight: 500;
  font-size: 1em;
}

.triangleContainer .triangle {
  width: 30px;
  height: 30px;
  //border:2px solid red;
  transform:rotate(45deg);
  border-top:0;
  border-left:0;
  position:absolute;
  bottom:-10px;
  left:43%;
  z-index:10;
  background-color: white;
}

/*** START : MOBILE ***/
@media screen and (max-width: 480px) {


  .triangleContainer {
    width: 330px;
    height: 120px;
    display: block;
    position: relative;
    background-color: white;
    padding: 20px;
    padding-top: 35px;
    padding-left: 20px;
    border-radius: 6px;
  }


}
