@charset "UTF-8";
/* CSS Document */

html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

html {
    --x: 110;
    --scrollbarBG: #CFD8DC;
    --thumbBG: #90A4AE;
}

body::-webkit-scrollbar {
  width: 11px;
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #333;
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}

body::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG) ;
  border-radius: 6px;
  border: 3px solid var(--scrollbarBG);
}

a {
    -webkit-transition: color 0.15s ease-in, background 0.15s ease-in, border-color 0.15s ease-in;
    -moz-transition: color 0.15s ease-in, background 0.15s ease-in, border-color 0.15s ease-in;
    transition: color 0.15s ease-in, background 0.15s ease-in, border-color 0.15s ease-in;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #2c3e50;
    padding: 3em 1em 0 1em;
}

h1.title {
    font-family: 'Bebas Neue', cursive;
    color: #4d21fc;
  background: linear-gradient(45deg,#fff070 0%,#fff070 35%,#00c9d3 66%,#00c9d3 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-position: 0;
  animation: shine 3s 1 linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  text-decoration: none;
    font-size: 6em;
}

@-moz-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 600px;
  }
  100% {
    background-position: 1030px;
  }
}
@-webkit-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 600px;
  }
  100% {
    background-position: 1030px;
  }
}
@-o-keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 600px;
  }
  100% {
    background-position: 1030px;
  }
}
@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 600px;
  }
  100% {
    background-position: 1030px;
  }
}

header h2 {
    color: #fff;
    font-style: italic;
    font-weight: 300;
    display: flex;
    align-items: center;
    width: 50%;
}

header h2:after, header h2:before {
    background-color: #eee;
    content: "";
    flex-grow: 1;
    height: 4px;
}

header h2:before {
    margin-right: 1em;
}

header h2:after {
    margin-left: 1em;
}

.divider {
  position: relative;
  background-color: #2c3e50;
  height: 100px;
}

.divider-top::after {
  content: '';
  position: absolute;
  right: 0;
  left: -0%;
  top: 100%;
  z-index: 10;
  display: block;
  height: 50px;
  background-size: 50px 100%;
  background-image: linear-gradient(135deg, #2c3e50 25%, transparent 25%), linear-gradient(225deg, #2c3e50 25%, transparent 25%);
  background-position: 0 0;
}

.divider-bottom::before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    z-index: 10;
    display: block;
    height: 50px;
    background-size: 50px 100%;
    background-image: linear-gradient(135deg, lightblue 25%, transparent 25%), linear-gradient(225deg, lightblue 25%, transparent 25%);
    background-position: 0 0;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #2c3e50;
    padding: 3em 1em 0 1em;
}

#timeline {
    background-color: lightblue;
    padding: 4em 2em;
}

/* 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: #2c3e50;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

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

.card-header {
    position: relative;
    display: flex;
    align-items: center;
}

.card-header .number-box {
    display: inline;
    float: left;
    font-size: 35px;
    line-height: 35px;
    font-weight: 600;
    margin: 15px 15px 15px 0;
    padding: 10px;
    background: rgba(0, 0, 0, 0.25);
}

.card-header span.small {
    display: block;
    font-size: 0.8rem;
}

/* The circles on the timeline */
.card::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: white;
  border: 4px solid #FF9F55;
  top: 15px;
  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: 18px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid white;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #2c3e50;
}

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

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

/* The actual content */
.card-content {
  padding: 20px 30px;
  background-color: #2c3e50;
  position: relative;
  border-radius: 6px;
  color: #fff;
}

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

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