/* Color Codes 

- Primary: #0125F6
- Secundairy: #FFBE43
- Grey Tone: #EBEBEB
- Dark Tone: #262626
*/

@import url(font/font.css);
  
/* ::selection { 
  background: #0126f629;
} */


::selection { 
    background: #0126f6;
    color: #fff;
  }

    /* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.067);
  }
  
  /* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.181);
    border-radius: 20px;
  }
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.194);
  }

  /* width */
.dark  ::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  .dark  ::-webkit-scrollbar-track {
    background: #ffffff11;
  }
  
  /* Handle */
  .dark  ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.181);
    border-radius: 20px;
  }
  
  /* Handle on hover */
  .dark  ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.194);
  }

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
.no-desktop{
    display: none !important;
}
.desktop{
    display: inherit;
}
a{
    text-decoration: none;
    transition: all .35s;
    color: #262626;
}
a:hover{
    color: #0125F6;
}
.knop{
    border-radius: 3px;
    padding: 9px 14px;
    font-weight: 400;
    display: inline-flex;
}
.primary{
    background-color: #0125F6;
    color: #fff;
    border: 1px solid #0125F6;
}
.primary:hover{
    background-color: transparent;
    color: #0125F6;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.secundaire{
    color: #d3d3d3;
    border: 1px solid #d3d3d3;
}
.secundaire:hover{
    background-color: transparent;
    color: #262626;
    border: 1px solid #262626;
    opacity: 1;
}
.badge{
    border-radius: 3px;
    padding: 9px 14px;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
    width: fit-content;
}
.blanco{
    background-color: transparent;
    padding: 0px;
}
.zwart{
    background-color: black;
    color: #fff;
}
.toptekst{
    display: flex;
    text-align: center;
    justify-content: center;
}
.ondertekst{
    display: flex;
    text-align: center;
    justify-content: center;
    width: 100%;
    opacity: 0.7;
    margin-top: 10px;
}

body, 
html {
    font-family: 'Arboria', sans-serif;
    font-weight: 300;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
    transition: all 0.1s linear;
}
body{
    background-color: #fdfdfd;
}
html.dark  body{
  color: #fff !important;
  background-color: #000;
}
.theme-toggle {
  cursor: pointer;
  display: inline-flex;
}
.sun {
  background: transparent;
  font-size: 25px;
  margin-left: 20px;
}
.moon {
  background: transparent;
  font-size: 25px;
  margin-left: 20px;
  display: none;
}
.dark  .moon{
  display: block;
}
.dark  .sun{
  display: none;
}

header {
    width: 100%;
    height: 150px;
    padding: 30px 80px;
    display: inline-flex;
    position: fixed;
    z-index: 999;
    transition: all 0.35s;
}
header.transparantHeader{
    background-color: transparent;
}
header.scrolledHeader {
    height: 100px;
    background-color: #ffffff;
    box-shadow: 0px -9px 20px #00000052;
    padding: 0px 80px;
}
.dark  header.scrolledHeader {
    height: 100px;
    background-color: #161616;
    padding: 0px 80px;
}
header  .links{
    position: relative;
    display: inherit;
    align-items: center;
    width: 50%;
}
img.logo {
  width: 15%;
}
.logo-donker{
  display: block;
}
.logo-licht{
  display: none;
}
.dark  .logo-donker{
  display: none;
}
.dark  .logo-licht{
  display: block;
}
p.logo-tekst{
    font-weight: 500;
    font-size: 20px;
    padding: 10px 10px;
}
nav{
    display: flex;
    flex-direction: row;
}
li.menu-item{
    list-style: none;
    padding-left: 20px;
    font-weight: 400;
}
nav  a{
    color: #d3d3d3;
}
.dark  nav  a{
  color: rgba(255, 255, 255, 0.764);
}
nav  a:hover{
    color: #262626;
}
.dark  nav  a:hover{
  color: rgba(255, 255, 255, 0.467);
}
nav  li.active  a{
    color: #262626;
}
.dark  nav  li.active  a{
  color: rgb(255, 255, 255);
}
header  .rechts {
    width: 50%;
    position: relative;
    align-items: center;
    display: inherit;
    justify-content: end;
}
.login i::before{
    transform: rotate(0deg);
    transition: transform 0.35s;
}
.login:hover i::before{
   transform: rotate(-180deg);
}
#mobiel-menu {
    display: inline-flex;
    border-radius: 10px 10px 0px;
    background-color: #ebebeb;
    position: fixed;
    left: 0;
    bottom: 0;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    padding: 20px;
    overflow: hidden;
    width: 100%;
}
#mobiel-menu  li {
    padding: 10px;
    margin: 0px 15px;
    position: relative;
    z-index: 999;
}
#mobiel-menu  li.active {
    border-radius: 10px;
}
#mobiel-menu  li.active  a{
    color: #0125F6;
}
.dark  #mobiel-menu {
    background-color: white;
}
.dark  #mobiel-menu  .moon{
    color: #262626;
}
#mobiel-menu  .mobiel-logo {
    width: 40%;
    z-index: -1;
    opacity: 0.05;
    position: absolute;
    margin-left: -80%;
}

.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
}
.hero-bg{
    position: absolute;
    z-index: 1;
    opacity: 0.05;
    z-index: -1;
    display: block;
    width: 70%;
    top: -20%;
}
.hero-bg-licht{
    display: none;
}
.dark  .hero-bg-licht{
    display: block;
}
.dark  .hero-bg-donker{
    display: none;
}
.hero-bg-donker{
    display: block;
}
.vlag-icoon{
    width: 40px;
}

.hero-titel {
    width: 40%;
    font-size: 50px;
    line-height: 1;
}
.subtekst-hero {
    width: 40%;
    margin-top: 20px;
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: 400;
}
.onbeperkt{
    color: #0125F6;
    font-size: 20px;
    padding-left: 20px;
}
.startend{
    margin-top: 30px;
    font-weight: 300;
}
.startend  .bedrag{
    font-weight: 600;
    font-size: 18px;
    /* background: -webkit-linear-gradient(159deg, rgba(1,37,246,1) -60%, rgba(255,190,67,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}
.dark  .startend{
    color: #fff;
}

.driestaps {
    margin-top: 150px;
    width: 100%;
    display: inline-block;
}
.tussentitel{
    font-weight: 400;
}
.stap-een {
    width: 100%;
    margin-top: 20%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.nummer{
    position: absolute;
    font-size: 100px;
    color: #000;
    opacity: 0.05;
    font-weight: 800;
    font-size: 700px;
}
.dark  .nummer{
    color: #fff;
}
.stappen  .links{
    display: flex;
    width: 50%;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.stappen  .rechts{
    display: flex;
    width: 50%;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.stapnummer1 {
    margin-top: -20%;
    margin-left: 34%;
}
.illustraties-stappen {
    width: 80%;
    margin-top: -80px;
    display: block;
}
.stap-titel {
    width: 60%;
    margin-left: -20%;
}
.subtekst-stap{
    width: 80%;
    font-size: 18px;
    font-weight: 300;
}
li.stappen{
    display: flex;
    align-items: center;
    list-style: none;
}
.iconstap{
    margin-top: 10px;
    color: #0125F6;
    font-size: 25px;
    margin-right: 10px;
}


.stap-twee {
    width: 100%;
    margin-top: 20%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.stapnummer2 {
    margin-top: -10%;
    margin-left: 42%;
}

.stap-drie {
    width: 100%;
    margin-top: 20%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.stapnummer3 {
    margin-top: -10%;
    margin-left: 30%;
}
.subtekst-stap{
    width: 80%;
    font-size: 18px;
    font-weight: 300;
}
li.stappen{
    display: flex;
    align-items: center;
    list-style: none;
}
.iconstap{
    margin-top: 10px;
    color: #0125F6;
    font-size: 25px;
    margin-right: 10px;
}

.cta-full {
    margin: 10% auto;
    width: 80%;
    background: #0125F6;
    background-image: url(../img/illu/cta-bg.svg);
    background-repeat: no-repeat;
    background-position: -60% 178%;
    background-size: 110%;
    border-radius: 10px;
}
.cta-container {
    padding: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-titel,
.cta-subtekst{
    color: #fff;
    text-align: center;
}
.cta-titel {
    width: 45%;
}
.cta-subtekst{
    margin-top: 10px;
    width: 60%;
}
.sub-container{
    width: 100%;
    margin-top: 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.cta-links,
.cta-rechts {
    display: flex;
    width: 50%;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.cta-item {
    background-color: rgba(0, 0, 0, 0.207);
    color: #fff;
    padding: 20px;
    margin: 10px;
    width: 98%;
    border-radius: 5px;
    display: flex;
    align-content: center;
}
.cta-item i{
    font-size: 20px;
    margin-right: 5px;
    color: #FFBE43;
}

.diensten-container {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.diensten-container  .diensten-item {
    flex: 1 1 30%;
    height: 400px;
    margin-left: 10px;
    background-color: rgba(0, 0, 0, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
}
.diensten-item {
    padding: 50px 10px;
  border-radius: 5px;
}
.dark  .diensten-item{
    background-color: rgba(255, 255, 255, 0.03);
}
.diensten-image {
    width: 30%;
    margin-bottom: 20px;
}
.webhost-illu{
    width: 20%;
}
.gameserver-illu {
    width: 25%;
}
.diensten-subtekst {
    text-align: center;
    width: 75%;
}
.diensten-knop{
    margin-top: 20px;
}


















/* ----- MOBILE CSS ----- */
@media only screen and (max-width: 768px) {
    html,
    body{
        overflow-x: hidden;
    }
    header{
        top: 0;
    }
    .logo img{
      width: 60%;
    }
    #mobiel-menu {
        visibility: visible;
    }
    .hero {
        width: 100%;
        height: 90vh;
        display: flex;
        flex-wrap: wrap;
        margin-top: 10vh;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        position: relative;
        z-index: 1;
    }
    .hero-bg{
        width: 240% !important;
        top: -20% !important;
    }
    .hero-titel{
        width: 100% !important;
        padding: 0px 15px !important;
    }
    .subtekst-hero {
        width: 60%;
        margin-top: 20px;
        margin-bottom: 50px;
        font-size: 18px;
        font-weight: 400;
    }
}

@media only screen and (max-width: 1340px) {
    .hero-titel{
        width: 100%;
        padding: 0px 15px;
    }

    .hero-bg{
        width: 150%;
        top: -20%;
    }
}