

/* ----------------------Timeline--------------------------- */

* {
  box-sizing: border-box;
}



/* The actual timeline (the vertical ruler) */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* The actual timeline (the vertical ruler) */
.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #ff860a;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 22px;
}

/* Container around content */
.container-timeline {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/* The circles on the timeline */
.container-timeline::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #FFE1C4;
  border: 4px solid #ff860a;
  top: 23px;
  border-radius: 50%;
  z-index: 1;
}

/* Place the container to the left */
.left {
  left: 0;
}

/* Place the container to the right */
.right {
  left: 50%;
}

/* Add arrows to the left container (pointing right) */
.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #ffffff;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #ffedda;
}

/* Add arrows to the right container (pointing left) */
.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #ffffff;
  border-width: 10px 10px 10px 0;
  border-color: transparent #ffedda transparent transparent;
}

/* Fix the circle for containers on the right side */
.right::after {
  left: -10px;
}

/* The actual content */
.content-timeline {
  padding: 15px 15px;
  background-color: #ffedda;
  position: relative;
  border-radius: 6px;
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 25000px) {
  /* Place the timelime to the left */
  .timeline::after {
  left: 21px;
  }
  
  /* Full-width containers */
  .container-timeline {
  width: 100%;
  padding-left: 70px;
  padding-right: 25px;
  }
  
  /* Make sure that all arrows are pointing leftwards */
  .container-timeline::before {
  left: 60px;
  border: medium solid #ffedda;
  border-width: 10px 10px 10px 0;
  border-color: transparent #ffedda transparent transparent;
  }

  /* Make sure all circles are at the same spot */
  .left::after, .right::after {
  left: 11px;
  }
  
  /* Make all right containers behave like the left ones */
  .right {
  left: 0%;
  }
}









/* ----------------------Quotes--------------------------- */


/* center the blockquote in the page GREEN */
.blockquote-green-wrapper {
   display: flex;
   padding: 0 20px;
}

/* Blockquote main style */
.blockquote-green {
    position: relative;
    font-family: inherit;
    max-width: 620px;
    margin: 30px auto;
    align-self: center;
}

/* Blockquote header */
.blockquote-green h1 {
    font-family: inherit;
    position: relative; /* for pseudos */
    color: #54B847;
    font-size: 2.8rem;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    border: 2px solid #54B847;
    border: solid 4px;
    border-radius:20px;
    padding: 25px;
}

/* Blockquote right double quotes */
.blockquote-green h1:after {
    content:"";
    position: absolute;
    border: 4px solid #54B847;
    border-radius: 0 100% 0 0;
    width: 60px;
    height: 60px;
    bottom: -60px;
    left: 50px;
    border-bottom: none;
    border-left: none;
    z-index: 3; 
}

.blockquote-green h1:before {
    content:"";
    position: absolute;
    width: 80px;
    border: 6px solid #fff;
    bottom: -4px;
    left: 50px;
    z-index: 2;
}

/* increase header size after 600px */
@media all and (min-width: 600px) {
    .blockquote-green h1 {
        font-size: 3rem;
        line-height: 1.2;
   }

}

/* Blockquote subheader */
.blockquote-green h4 {
    position: relative;
    color: #54B847;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding-top: 15px;
    z-index: 1;
    margin-left:150px;
    padding-left:12px;
}

 
.blockquote h4:first-letter {
  margin-left:-12px;
}




















/* center the blockquote in the page ORANGE */
.blockquote-wrapper {
   display: flex;
   padding: 0 20px;
}

/* Blockquote main style */
.blockquote {
    position: relative;
    font-family: inherit;
    max-width: 620px;
    margin: 30px auto;
    align-self: center;
}

/* Blockquote header */
.blockquote h1 {
    font-family: inherit;
    position: relative; /* for pseudos */
    color: #f6891f;
    font-size: 2.8rem;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    border: 2px solid #f6891f;
    border: solid 4px;
    border-radius:20px;
    padding: 25px;
}

/* Blockquote right double quotes */
.blockquote h1:after {
    content:"";
    position: absolute;
    border: 4px solid #f6891f;
    border-radius: 0 100% 0 0;
    width: 60px;
    height: 60px;
    bottom: -60px;
    left: 50px;
    border-bottom: none;
    border-left: none;
    z-index: 3; 
}

.blockquote h1:before {
    content:"";
    position: absolute;
    width: 80px;
    border: 6px solid #ffeedd;
    bottom: -4px;
    left: 50px;
    z-index: 2;
}

/* increase header size after 600px */
@media all and (min-width: 600px) {
    .blockquote h1 {
        font-size: 3rem;
        line-height: 1.2;
   }

}

/* Blockquote subheader */
.blockquote h4 {
    position: relative;
    color: #f6891f;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding-top: 15px;
    z-index: 1;
    margin-left:150px;
    padding-left:12px;
}

 
.blockquote h4:first-letter {
  margin-left:-12px;
}








/* center the blockquote in the page PURPLE */
.blockquote-purple-wrapper {
   display: flex;
   padding: 0 20px;
}

/* Blockquote main style */
.blockquote-purple {
    position: relative;
    font-family: inherit;
    max-width: 620px;
    margin: 30px auto;
    align-self: center;
}

/* Blockquote header */
.blockquote-purple h1 {
    font-family: inherit;
    position: relative; /* for pseudos */
    color: #663090;
    font-size: 2.8rem;
    font-weight: normal;
    line-height: 1;
    margin: 0;
    border: 2px solid #663090;
    border: solid 4px;
    border-radius:20px;
    padding: 25px;
}

/* Blockquote right double quotes */
.blockquote-purple h1:after {
    content:"";
    position: absolute;
    border: 4px solid #663090;
    border-radius: 0 100% 0 0;
    width: 60px;
    height: 60px;
    bottom: -60px;
    left: 50px;
    border-bottom: none;
    border-left: none;
    z-index: 3; 
}

.blockquote-purple h1:before {
    content:"";
    position: absolute;
    width: 80px;
    border: 6px solid #fff;
    bottom: -4px;
    left: 50px;
    z-index: 2;
}

/* increase header size after 600px */
@media all and (min-width: 600px) {
    .blockquote-purple h1 {
        font-size: 3rem;
        line-height: 1.2;
   }

}

/* Blockquote subheader */
.blockquote-purple h4 {
    position: relative;
    color: #663090;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding-top: 15px;
    z-index: 1;
    margin-left:150px;
    padding-left:12px;
}

 
.blockquote h4:first-letter {
  margin-left:-12px;
}





/* hide stuff */
.hide {
   display: none;
}



















