* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 1.1s;
  margin: 0px;
  padding: 0px;
}

span {
  font-size: inherit;
}

/* Border radius */
/* Translate */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flexbox-middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flexbox-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.flexbox-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 1500px) {
  .container {
    max-width: 1500px;
  }
}

h1 {
  font-size: 40px;
}

@media (min-width: 1200px) {
  h1 {
    font-size: 50px;
  }
}

@media (min-width: 1500px) {
  h1 {
    font-size: 60px;
  }
}

h2 {
  font-size: 30px;
}

@media (min-width: 1200px) {
  h2 {
    font-size: 40px;
  }
}

@media (min-width: 1500px) {
  h2 {
    font-size: 50px;
  }
}

pre {
  font-family: monospace !important;
  margin: 17.5px 0 25px !important;
}

.black {
  color: black;
}

.text-center {
  text-align: center;
}

.text-light {
  color: #b6b6b6;
}

.text-small {
  font-size: 16px;
  line-height: 22px !important;
}

hr {
  border: 1px solid #d8d8d8;
}

.text-success {
  color: green;
}

.text-alert {
  color: orange;
}

.text-danger {
  color: red;
}

.content ul {
  list-style-type: none;
}

.content ul li {
  margin-left: 30px;
  position: relative;
}

.content ul li::before {
  content: '-';
  display: block;
  left: -15px;
  position: absolute;
}

.content ul.no-dash li::before {
  display: none;
}

.btn {
  width: auto;
  display: inline-block;
  border: 1px solid white;
  height: 60px;
  line-height: 58px;
  padding: 0px 25px;
  text-decoration: none;
  color: white;
  border-radius: 30px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: none;
  cursor: pointer;
  font-size: 20px;
}

.btn.btn-primary {
  background: #006cff;
  border-color: #006cff;
}

.btn.btn-primary:hover {
  background: #000518;
  border-color: #000518;
}

.btn.btn-primary:hover a {
  text-decoration: none;
}

.btn.btn-primary a {
  color: white;
}

.btn.btn-secondary {
  border: none;
}

.btn:hover {
  background: white;
  color: #fcfcfc;
}

.btn .fa {
  font-size: 0.9em;
  line-height: inherit;
  position: relative;
}

.blauw {
  color: #006cff;
}

.nav {
  display: table;
  width: 100%;
}

.nav ul {
  list-style: none;
}

.nav ul li {
  float: left;
}

.intro {
  background: #000518;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 95vh;
  overflow: hidden;
  padding-top: 94px;
  width: 100%;
}

.intro canvas {
  left: 0px;
  opacity: 0.3;
  position: absolute;
  top: 0px;
}

@media (min-width: 768px) {
  .intro {
    height: 80vh;
  }
}

.intro .blue {
  background: #006cff;
  height: 150%;
  left: 0;
  position: absolute;
  top: -25%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 40%;
}

.intro .intro_inner {
  width: 100%;
}

.intro .svg {
  display: none;
}

@media (min-width: 768px) {
  .intro .svg {
    display: block;
  }
}

.intro .text {
  padding: 0px;
  position: relative;
  z-index: 1;
}

.intro .text a {
  margin-top: 30px;
}

.intro video {
  height: auto;
  min-height: 100%;
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  width: auto;
}

.intro h1 {
  font-size: 40px;
}

.intro h1 span {
  color: #006cff;
}

@media (min-width: 1200px) {
  .intro h1 {
    font-size: 60px;
  }
}

@media (min-width: 1500px) {
  .intro h1 {
    font-size: 80px;
  }
}

.intro h2 {
  font-size: 30px;
}

.intro p {
  font-size: 30px;
}

@media (min-width: 1500px) {
  .intro p {
    font-size: 40px;
  }
}

.intro .box {
  display: inline-block;
  height: 40px;
  overflow: hidden;
  position: relative;
  position: relative;
  top: 10px;
  width: 200px;
}

@media (min-width: 1500px) {
  .intro .box {
    height: 50px;
  }
}

.intro .box .box__inner {
  position: absolute;
  width: 200px;
}

.intro .box .box__inner span {
  font-size: 30px;
}

@media (min-width: 1500px) {
  .intro .box .box__inner span {
    font-size: 40px;
  }
}

.intro .buttons {
  display: table;
  margin-top: 25px;
  width: 100%;
}

.intro .buttons .btn {
  margin-right: 10px;
}

.contact {
  background: #f7f7f7;
  color: #222;
  width: 100%;
}

.contact h2 {
  font-size: 30px;
  margin-bottom: 25px;
}

@media (min-width: 1200px) {
  .contact h2 {
    font-size: 1.9vw;
  }
}

.contact h2 span {
  font-weight: normal;
}

.contact form {
  margin-bottom: 25px;
}

.contact .card {
  background: white;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  margin-bottom: 25px;
}

.contact .adres {
  font-size: 20px;
  padding: 25px;
  width: 100%;
}

.contact .adres h3 {
  font-size: 30px;
  margin-bottom: 30px;
}

.contact .maps {
  height: 200px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.input-row {
  margin-bottom: 10px;
}

.input-row label {
  display: block;
}

.input-row label.error {
  color: red;
  font-size: 12px;
}

.input-row input, .input-row textarea {
  background: white;
  border: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  height: 50px;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
}

.input-row input.error, .input-row textarea.error {
  border: 1px solid red;
}

.input-row textarea {
  height: 150px;
}

h1 {
  font-size: 2em;
  font-weight: 700;
  margin-bottom: 15px;
}

h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
}

h3 {
  font-size: 1.3em;
  font-weight: 700;
  margin-bottom: 0;
}

h4 {
  font-size: 1em;
  font-weight: 700;
}

p {
  line-height: 1.3em;
  font-size: 1em;
  font-weight: 300;
}

a {
  background-color: transparent;
  color: #006cff;
  text-decoration: none;
  font-size: 1em;
  font-weight: 300;
}

.content {
  color: #222;
}

.content p {
  margin-bottom: 25px;
  font-size: 1.1em;
  line-height: 1.5em;
}

.section {
  padding: 50px 25px;
}

@media (min-width: 768px) {
  .section {
    padding: 100px 0;
  }
}

.section.small-spacing {
  padding: 25px;
}

.font-small {
  font-size: 16px;
  line-height: 20px;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 45px;
}

.top-bar {
  background: #f5f6fa;
  border-bottom: 1px solid #d8d8d8;
  color: black;
  padding: 30px 0;
  width: 100%;
}

.documentation {
  color: black;
  position: relative;
}

.documentation__link {
  color: black;
  cursor: pointer;
  line-height: 28px;
  text-decoration: none;
}

.documentation__link:hover {
  color: #006cff;
  text-decoration: none;
}

.documentation__link.active {
  color: #006cff;
  font-weight: bold;
}

.documentation__sidebar ul {
  list-style-type: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.documentation__sidebar ul.list__level-2 {
  display: none;
}

.documentation__sidebar ul li {
  margin-left: 0;
}

.documentation__sidebar ul li a {
  line-height: 50px;
  text-align: left;
  padding: 0px 25px;
  border-bottom: 1px solid #fcfcfc;
  display: block;
}

.documentation__sidebar ul li a:hover {
  background: #fcfcfc;
}

.documentation__sidebar ul li:last-child a {
  border-bottom: none;
}

.documentation__sidebar ul.list__level-2 {
  margin-left: 15px;
}

.documentation__content div {
  display: none;
}

.documentation__content p {
  margin: 7.5px 0;
}

.documentation__tableofcontents {
  background: white;
  border-radius: 8px;
  border: 1px solid #d8d8d8;
  padding: 15px;
}

.documentation__card {
  background: #f5f6fa;
  cursor: pointer;
  height: 300px;
  margin-top: 30px;
  border-radius: 8px;
  -webkit-transition: transform 0.1s linear;
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  width: 100%;
}

.documentation__card:hover {
  -webkit-transition: transform 0.1s linear;
  -webkit-transition: -webkit-transform 0.1s linear;
  transition: -webkit-transform 0.1s linear;
  transition: transform 0.1s linear;
  transition: transform 0.1s linear, -webkit-transform 0.1s linear;
  -webkit-box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.1);
  -webkit-transform: scale(1.015);
          transform: scale(1.015);
}

.documentation__card-image {
  margin-bottom: 30px;
}

.documentation__card-title {
  font-size: 22px;
  margin-bottom: 15px;
}

.documentation__card a {
  color: black;
  height: 100%;
  width: 100%;
}

.related-articles ul {
  list-style-type: none;
}

.related-articles__heading {
  font-size: 22px;
  font-weight: 700;
}

.header {
  display: table;
  padding: 20px 25px;
  position: absolute;
  width: 100%;
  z-index: 999;
}

.header.background {
  background: #000518;
}

@media (min-width: 768px) {
  .header {
    padding: 20px 0px;
    z-index: 999;
  }
}

.header .logo {
  float: left;
  height: 54px;
}

.header .menu-icon {
  border: 2px solid white;
  float: right;
  height: 54px;
  line-height: 54px;
  text-align: center;
  width: 54px;
  color: white;
  border-radius: 8px;
  margin-left: 20px;
}

@media (min-width: 768px) {
  .header .menu-icon {
    display: none;
  }
}

.header nav {
  display: none;
  float: right;
  width: 100%;
}

.header nav ul {
  display: table;
  list-style: none;
  width: 100%;
}

.header nav ul li a {
  color: white;
  display: block;
  padding: 15px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  width: 100%;
}

.header nav ul li a::before {
  background: white;
  bottom: 6px;
  content: '';
  height: 3px;
  left: 12.5%;
  position: absolute;
  width: 0%;
  -webkit-transition: width 0.2s linear;
  transition: width 0.2s linear;
}

.header nav ul li a:hover::before {
  width: 75%;
}

.header nav ul li.current-menu-item a::before {
  background: white;
  bottom: 6px;
  content: '';
  height: 3px;
  left: 12.5%;
  position: absolute;
  width: 75%;
  -webkit-transition: width 0.2s linear;
  transition: width 0.2s linear;
}

@media (min-width: 992px) {
  .header nav {
    display: table;
    width: auto;
  }
  .header nav ul {
    width: auto;
  }
  .header nav ul li {
    float: left;
  }
}

.header .btn {
  float: right;
  margin-left: 20px;
  line-height: 50px;
  height: 50px;
  font-size: 0.9em;
  mgin-right: 20px;
}

@media (min-width: 768px) {
  .header .btn {
    margin-right: 0;
  }
}

.header__spacer {
  height: 94px;
  width: 100%;
}

@media (min-width: 768px) {
  .header__spacer {
    display: none;
  }
}

.title {
  background: #000518;
  color: white;
  padding: 150px 25px 50px;
}

.title h1 {
  font-size: 40px;
}

@media (min-width: 1500px) {
  .title h1 {
    font-size: 2.5vw;
  }
}

.breadcrumbs {
  color: white;
  font-size: 0.8em;
}

.breadcrumbs a {
  color: white;
  font-size: inherit;
  opacity: 0.5;
}

.breadcrumbs a:hover {
  opacity: 1;
}

.breadcrumbs .breadcrumb_last {
  opacity: 0.5;
}

.breadcrumbs i {
  font-size: inherit;
  position: relative;
  top: -0.5px;
  font-size: 0.8em;
  opacity: 0.5;
}

footer {
  background: #191a1a;
  padding-top: 50px;
  position: relative;
  color: white;
}

@media (min-width: 768px) {
  footer {
    padding-top: 100px;
  }
}

footer .copy {
  background: #000;
  padding: 5px;
  line-height: 40px;
  margin-top: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  footer .copy {
    margin-top: 100px;
  }
}

footer h3 {
  margin-bottom: 25px;
}

footer ul {
  list-style: none;
  color: white;
  line-height: 30px;
}

footer ul a {
  color: white;
}

footer ul a:hover {
  color: #ccc;
}

footer a {
  color: white;
}

footer a:hover {
  color: #ccc;
}

footer #map {
  border: none;
  height: 100%;
  opacity: 1;
  position: absolute;
  width: 35%;
  position: absolute;
  top: 0px;
  right: 0px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown:hover .dropdown__content {
  display: block;
}

.dropdown:hover .dropdown__btn {
  background-color: #006cff;
  color: white;
}

.dropdown__btn {
  background: #f5f6fa;
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  position: absolute;
  top: -35px;
  min-width: 160px;
}

.dropdown__btn i {
  float: right;
  -webkit-transition: transform 0.2s linear;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.dropdown__btn:hover i {
  -webkit-transition: transform 0.2s linear;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.dropdown__content {
  text-align: center;
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  top: 14px;
}

.dropdown__content a {
  color: black;
  padding: 12px 15px;
  text-decoration: none;
  display: block;
}

.dropdown__content a:hover {
  background: #d8d8d8;
}

.faq {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  cursor: pointer;
  margin: 7.5px;
  max-height: 51px;
  overflow: hidden;
  padding: 15px;
  position: relative;
  -webkit-transition: all 3s;
  transition: all 3s;
  -webkit-transition: max-height .5s ease-in;
  transition: max-height .5s ease-in;
  width: 100%;
}

.faq i {
  color: #006cff;
  position: absolute;
  right: 15px;
  top: 15px;
  -webkit-transition: transform 0.2s linear;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.faq:hover .faq__question {
  font-weight: 700;
}

.faq.active {
  max-height: 9999px;
  -webkit-transition: max-height 3s ease-in;
  transition: max-height 3s ease-in;
}

.faq.active .faq__question {
  font-weight: 700;
}

.faq.active i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: transform 0.2s linear;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.faq:first-child {
  margin-top: 30px;
}

.faq__question {
  color: #006cff;
}

.faq__answer {
  max-width: 1200px;
}

.faq__answer p {
  margin-bottom: 0;
  margin-top: 7.5px;
}

.offerings h1 {
  margin-bottom: 70px;
  text-align: center;
}

.offerings a.card {
  padding: 35px;
  text-align: center;
  -webkit-box-shadow: 0 0 15px 0 rgba(182, 182, 182, 0.2);
          box-shadow: 0 0 15px 0 rgba(182, 182, 182, 0.2);
  border-radius: 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 30px;
}

@media (min-width: 991px) {
  .offerings a.card {
    margin-top: 0;
  }
}

.offerings a.card img {
  width: 100%;
  max-width: 200px;
}

.offerings a.card h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: black;
}

.offerings a.card p {
  margin-bottom: 35px;
  color: #666;
}

.offerings a.card a {
  font-size: 1em;
  margin-top: auto;
}

.card {
  padding: 35px;
  text-align: center;
  -webkit-box-shadow: 0 0 15px 0 rgba(182, 182, 182, 0.2);
          box-shadow: 0 0 15px 0 rgba(182, 182, 182, 0.2);
  border-radius: 5px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 30px;
}

@media (min-width: 991px) {
  .card {
    margin-top: 0;
  }
}

.card img {
  width: 100%;
  max-width: 200px;
}

.card h3 {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: black;
}

.card p {
  margin-bottom: 35px;
  color: #666;
}

.card a {
  font-size: 1em;
  margin-top: auto;
}

section.quote {
  background: #000518;
  position: relative;
}

section.quote h2 {
  text-align: center;
}

section.quote h2 span {
  color: #006cff;
}

section.quote canvas {
  left: 0px;
  opacity: 0.3;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

section.servers {
  padding-top: 0;
}

section.servers ul li {
  list-style: none;
}

section.heading {
  padding-top: 150px;
}

.servers-list {
  border: 1px solid #d8d8d8;
  margin-top: 30px;
  padding-top: 15px;
}

@media (min-width: 992px) {
  .servers-list {
    margin-top: 0;
  }
}

.server {
  border-bottom: 1px solid #d8d8d8;
  cursor: pointer;
  padding: 10px;
}

.server:last-child {
  border-bottom: 0;
}

.server .icon {
  float: right;
}

.server p {
  margin: 0;
}

.server.active .server__name {
  font-weight: bold;
}

.server .fa, .server .fas {
  text-align: center;
  width: 18px;
}

.server__status-details {
  display: none;
  font-size: 14px;
  margin: 5px 0 0 10px;
}

.server__url {
  color: #b6b6b6;
  font-size: .85em;
}

.server-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 10px;
  padding: 0 15px;
}

.server-buttons span {
  background: #d8d8d8;
  border-radius: 50%;
  cursor: pointer;
  height: 25px;
  line-height: 25px;
  text-align: center;
  width: 25px;
}

.server-buttons span.expand {
  margin-left: 5px;
}

.post-type-archive-status header {
  background: black;
}

section.heading {
  padding-bottom: 50px;
}

.update__list {
  margin-bottom: 30px;
}

.update {
  border: 1px solid #d8d8d8;
  font-size: 16px;
}

.update .date {
  background: #d8d8d8;
  width: 100%;
  display: block;
  padding-left: 10px;
  line-height: 30px;
  font-weight: bold;
}

.update .update__date {
  padding: 5px 10px;
  width: 100%;
  font-size: .8em;
}

.update .update__content {
  padding: 10px;
}

#cookiewall {
  display: none !important;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: initial !important;
}
/*# sourceMappingURL=style.css.map */