html,body{
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.parallax1 {
    /* The image used */
    background-image: url('../images/parallax-1-blur.jpg');
    /* Full height */
    height: 100%; 
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax2 {
    /* The image used */
    background-image: url('../images/parallax-2.jpg');
    /* Full height */
    height: 100%; 
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax3 {
    /* The image used */
    background-image: url('../images/parallax-3.jpg');
    /* Full height */
    height: 100%;   

    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax4 {
    /* The image used */
    background-image: url('../images/parallax-4.jpg');
    /* Full height */
    height: 100%; 
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax5 {
    /* The image used */
    background-image: url('../images/parallax-5.jpg');
    /* Full height */
    height: 100%; 
    /* Create the parallax scrolling effect */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-header .title{
    font-size: 64px;
}
.main-header .subtitle{
    font-size: 40px;
}
.header .title{
    opacity: 0;
}

.main-container{
    z-index: 100;
}

.card-overlay{
    display: none;
}

.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.6;
}

.card-content{
    position: absolute;
}

.custom-button{
    transition: all 0.5;
}

.custom-button span {
    display: inline-block;
    position: relative;
    transition: 0.5s;
    font-size: 32px;
}

.custom-button span:after{
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: -30px;
    right: -20px;
}

.custom-button:hover span {
    padding-right: 25px;
  }
  
  .custom-button:hover span:after {
    opacity: 1;
    right: 0;
  }

  .card-columns{
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    orphans: 1;
    widows: 1;
  }

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #FF9F55;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }

  .custom-timeline-card{
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
  }

  .custom-timeline-card::after{
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: white;
    border: 4px solid #FF9F55;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }
  
  .custom-timeline-left{
      left: 0;
  }
  .custom-timeline-right{
    left: 50%;
}

.custom-timeline-left::before{
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent white;
}

.custom-timeline-right::before{
    content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid white;
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

.custom-timeline-right::after{
    left: -16px;
}

.custom-timeline-content{
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 6px;
}

@media screen and (max-width: 600px) {
    /* Place the timelime to the left */
    .timeline::after {
    left: 31px;
    }
    
    /* Full-width containers */
    .custom-timeline-card {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
    }
    
    /* Make sure that all arrows are pointing leftwards */
    .custom-timeline-card::before {
    left: 60px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
    }
  
    /* Make sure all circles are at the same spot */
    .custom-timeline-left::after, .custom-timeline-right::after {
    left: 15px;
    }
    
    /* Make all right containers behave like the left ones */
    .custom-timeline-right {
    left: 0%;
    }
}

.custom-a{
    color: black;
}