* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
/* Handle */
::-webkit-scrollbar-thumb {
  background: black;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: black;
}

main {
  display: none;
  overflow-x: hidden;
}

dd {
  display: block;
  margin-left: 40px;
}

.footer-title-border {
  border-color: #e4002b;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #e4002b;
  width: 200px;
  height: 200px;
  -webkit-animation: spin 2s linear infinite;
  /* Safari */
  animation: spin 2s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -100px;
}

#toTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background: radial-gradient(circle 11.66667px at 26% 26%, rgba(255, 255, 255, 0.8) 5%, rgba(67, 61, 61, 0) 60%), radial-gradient(circle farthest-side at 26% 26%, #e4002b 0, #f3244a 40%, #e4002b 60%, #e4002b 70%, #e4002b 110%);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
}

.vacature-bg-gradient {
  background: linear-gradient(-45deg, #e4002b, #DC1C13, #F6BDC0, #F1959B);
  background-size: 400% 400%;
  -webkit-animation: colorchange 10s ease infinite;
          animation: colorchange 10s ease infinite;
}

@-webkit-keyframes colorchange {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes colorchange {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*# sourceMappingURL=style.css.map */