* {
  box-sizing: border-box;
}

/* Set a background color */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #d0d0cf;
  background-image: url("images/bg text 01.png");
  background-repeat: repeat;
  font-family: "Helvetica Neue Light", sans-serif;
}
h1 {
  color:  rgb(106, 106, 106);
  font-family: "Helvetica Neue", sans-serif;
  font-size: 40px;
  font-stretch: condensed;
  text-align: center;
  margin: 0px;
}
h2 {
    color: rgb(75, 75, 75);
    font-family: "Helvetica Neue Light", sans-serif;
    font-size: 20px;
    text-align: center;
    outline-style: none;
    padding: 2px;
    font-weight: lighter;
}
h3 {
    font-family: "Helvetica Neue Light", sans-serif;
    font-size: 15px;
    text-align: center;
    font-weight: lighter;
    padding: 2px;
    color: grey
}

/* Container holding the image and menu */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Style the image as a button */
.dropbtn {
    width: 100px;
    height: auto;
    border-radius: 10%; 
    cursor: pointer;
    padding-top: 15%;
}

/* Hidden dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 14px;
    text-align: center;
}

/* Show content on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
  background-color: #e3e3e3;
}

.header {
  text-align: center;
  padding: 10px 0;
  font-size: 25px;
  margin: 0px;
  padding: 30px;
}
.header h1{
  margin: 0px;
  
}

/* 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: 3px;
  background-color: #6b6b6b;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

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

/* The circles on the timeline */
/*.container::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  right: -10px;
  background-color: #6b6b6b;
  border: 1px solid #6b6b6b;
  top: 15px;
  border-radius:60%;
  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 rgb(223, 50, 50);
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent rgb(32, 193, 102);
}*/

/* 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 rgb(247, 75, 124);
  border-width: 10px 10px 10px 0;
  border-color: transparent rgb(244, 15, 15) transparent transparent;
}*/

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

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

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
/* Place the timelime to the left */
  .timeline::after {
    left: 31px;
  }

/* Full-width containers */
  .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

/* Make sure that all arrows are pointing leftwards */
  .container::before {
    left: 60px;
    border: medium solid rgb(184, 255, 18);
    border-width: 10px 10px 10px 0;
    border-color: transparent rgb(170, 8, 8) transparent transparent;
  }

/* Make sure all circles are at the same spot */
  .left::after, .right::after {
    left: 15px;
  }

/* Make all right containers behave like the left ones */
  .right {
    left: 0%;
  }
}

.center {
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider {
  width: 100%;
  height: fit-content;
  padding: 30px 0;
  overflow: auto;
}

.slider::-webkit-scrollbar {
  width: 80px;
  height: 5px;
}
.slider::-webkit-scrollbar-thumb {
  background: rgb(255, 255, 255);
  border-radius: 10px;
}
.slider::-webkit-scrollbar-track {
  background: rgba(200, 200, 200, 0.4)
}
.card {
  width: 300px;
  height: 300px;
  background: white;
  box-shadow: 0 30px 30px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: "Helvetica Neue";
  position: relative;
  margin: 0 20px;
}

.title {
  font-size: 40px;
  font-weight: 100;
}

.subtitle {
  font-size: 14px;
}

.cards {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}
