body {
  background-color: #f3f5fa;
}



@-moz-document url-prefix() {
  /* Disable scrollbar Firefox */
  html {
    scrollbar-width: none;
  }
}





/* card css */

.spanFont {
  font-size: 15px;
}

.aBox {
  text-decoration: none;
  color: #0062cc;
  border-bottom: 2px solid #0062cc;
}

.box-part {
  background: #FFF;
  border-radius: 0;
  padding: 60px 10px;
  margin: 30px 0px;
}

.fa {
  color: #67B0D1;
}

.title {
  color: #37517e;
}

/* card css end*/

.card-img-overlay {
  /* background-color: rgba(0, 0, 0, 0.2); */
  background-image: linear-gradient(rgba(0, 0, 0, 0.025), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.025));
}

/* scroll down */

#hero a {
  padding-top: 60px;
}

#hero a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #D2D2D2;
  border-radius: 50px;
  box-sizing: border-box;
}

#hero a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #D2D2D2;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}

@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* scroll down */


/* Entrances/boxes on front page to deliverables, data etc. */

.entrance {
  background-color: white;
  padding: 1rem 2.25rem;
  border-radius: 0.5rem;
}

@media screen and (max-width: 500px) {
  .entrance {
    min-width: 236px;
  }
}

.entrance img {
  max-width: 110px;
  margin-bottom: 0.25rem;
}

.entrance a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}