:root {
  --color1: rgba(4,9,40,0.7);
  --color2: rgba(4,9,45,0.7);
  --color3: hsla(240,97%,17%,.51);
  --color4: white;
  --color5: rgba(200,200,255,0.4);
  --color6: rgba(100,100,200,0.4);
  --color7: hsla(240,97%,17%,1);
  --colorText1: white;
  --colorText2: white;
  --colorText3: whitesmoke;
  --colorText4: whitesmoke;
  --colorFormBorders: hsla(240,97%,17%,1);
  --color-bg: #FFF;
  --color1: rgba(255,255,255,0.9);
  --color2: rgba(200,200,200,0.9);
  --colorText1: rgba(4,9,45,1);
  --colorText2: rgba(4,9,40,1);
  --colorText3: #333;
  --btn-bg: var(--color1);
  --btn-fg: var(--color7);
  --btn-hv-bg: var(--color7);
  --btn-hv-fg: var(--color2);
  --hero-fg: var(--colorText4);
  --bg-accent: darkOrange;
  --nav-witdh:85px;
  --grad-from:var(--color5);
  --grad-to: var(--color6);
  --grad-secLight:linear-gradient(var(--color1),var(--color2) );
  --grad-secDark-from:var(--color2);
  --grad-secDark-to: var(--color1);
  --sec-HeaderBG:var(--color4);
  --sec-HeaderFG:var(--color3);
  --contentBG: whitesmoke;
  --contentFG: var(--color2);
}

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background: var(--color-bg);
}

.header {
  --grad-from: #0006;
  --grad-to: #222A;
  min-height: calc(100vh - 25px);
  width: 100%;
  background-image: linear-gradient(var(--grad-from), var(--grad-to)), url(../images/u4Kantoor.jpg);
  background-origin: content-box;
  background-position: left top;
  background-size: cover;
  position: relative;
}

.column {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.columnDuo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: flex-start;
}

.section {
  width: 100%;
  background-position: center;
  background-size: cover;
  color: var(--colorText2);
}
.section div {
  min-width: 25%;
  padding: 5rem 3rem;
}
.section h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1;
}
.section p {
  line-height: 1.55;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 500;
  color: var(--colorText3);
}

#btnToTop {
  z-index: 1000;
  display: none;
  position: fixed;
  bottom: 50px;
  right: 0;
  width: 64px;
  height: 45px;
  background: var(--sec-HeaderBG);
  color: var(--sec-HeaderFG);
  font-weight: 900;
  border: 0;
  box-shadow: var(--sec-HeaderFG) -2px -2px 3px;
  border-radius: 10px 0 0 0;
  outline: 0;
  cursor: pointer;
  opacity: 0.8;
}
#btnToTop:hover {
  opacity: 1;
}

.ml1 {
  margin-left: 2em;
}

.sectionHeader {
  background: var(--sec-HeaderBG);
  width: inherit;
  padding: 2rem;
  color: var(--sec-HeaderFG);
  font-size: 48px;
  font-weight: 600;
  text-align: center;
}

.section1 {
  scroll-behavior: smooth;
  background-image: var(--grad-secLight), url(../images/switch.jpg);
}

.section2 {
  scroll-behavior: smooth;
  background-image: var(--grad-secLight), url(../images/werkplek.jpg);
}

.section3 {
  scroll-behavior: smooth;
  background-image: var(--grad-secLight), url(../images/telefoon.jpg);
}

#navContainer {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: rgba(10, 10, 10, 0.3);
  z-index: 9999;
  transition: 500ms ease-in-out;
}

nav {
  display: flex;
  padding: 1rem 0.5rem;
  justify-content: space-between;
  align-items: center;
}
nav img {
  width: 150px;
}
nav #btnHamburgerClose {
  display: none;
}
nav #btnHamburger {
  display: none;
  color: white;
  cursor: pointer;
  opacity: 0.8;
}
nav #btnHamburger:hover {
  opacity: 1;
}

.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-links ul li::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--sec-HeaderFG);
  background-position: center;
  background-size: cover;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  content: "";
  width: 100%;
}
.nav-links ul li a {
  font-family: "Poppins", sans-serif;
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.text-box {
  width: 90%;
  color: var(--hero-fg);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.text-box h1 {
  font-size: 4em;
  color: var(--hero-fg);
}
.text-box p {
  margin: 10px 0 40px;
  font-size: 16px;
  font-weight: 500;
  color: var(--hero-fg);
}
.text-box .hero-btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  border: 1px solid white;
  padding: 12px 34px;
  font-size: 13px;
  background: transparent;
  cursor: pointer;
}
.text-box .hero-btn:hover {
  border: 1px solid var(--bg-accent);
  background: var(--bg-accent);
  transition: 1s;
}

.sectionHeader {
  font-size: 2em;
}

footer {
  display: flex;
  justify-content: space-between;
  position: relative;
  bottom: 55px;
  left: 0;
  background: #333;
  color: whitesmoke;
  width: 100%;
}
footer div {
  padding: 1rem;
}
footer div img {
  width: 150px;
}
footer div p {
  padding: 0;
  margin: 5px;
}
footer div a {
  text-decoration: none;
  opacity: 0.65;
  color: whitesmoke;
  transition: 750ms;
}
footer div a:hover {
  opacity: 1;
}

.livePage {
  min-height: 300px;
}

@media (max-width: 1400px) {
  .text-box h1 {
    font-size: 3rem;
  }

  .section div {
    padding: 1em;
  }

  footer {
    position: relative;
  }
}
@media (max-width: 1050px) {
  .nav-links ul li {
    padding: 2px 4px;
  }
  .nav-links ul li a {
    font-size: 13px;
  }

  #navContainer nav {
    padding: 0.25rem;
  }
  #navContainer img {
    width: 60px;
  }
}
@media (max-width: 700px) {
  #btnHamburgerClose {
    position: absolute;
    display: block !important;
    color: white;
    top: 10px;
    right: 10px;
    cursor: pointer;
    opacity: 0.8;
  }
  #btnHamburgerClose:hover {
    opacity: 1;
  }

  #btnHamburger {
    display: block !important;
  }

  .text-box h1 {
    font-size: 3rem;
  }

  .column,
.columnDuo {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section div {
    padding: 1.5em;
  }

  .nav-links {
    position: absolute;
    background-image: linear-gradient(var(--color7), var(--color6));
    height: 250px;
    width: var(--nav-width);
    top: 5px;
    left: -220px;
    text-align: left;
    transition: 1s;
    z-index: 1;
    box-shadow: 0.25rem 0.25rem 5px #999;
  }
  .nav-links ul {
    padding: 30px;
  }
  .nav-links ul li {
    display: block;
  }

  footer {
    position: relative;
    flex-direction: column;
  }
}
#btnPaginaTerug,
.btnMeer {
  display: inline-block;
  text-decoration: none;
  color: var(--btn-fg);
  border: 1px solid var(--btn-fg);
  border-radius: 25px;
  padding: 0.25rem 1rem;
  font-size: 13px;
  background: transparent;
  cursor: pointer;
}
#btnPaginaTerug:hover, #btnPaginaTerug:focus,
.btnMeer:hover,
.btnMeer:focus {
  border: 1px solid var(--btn-hv-bg);
  background: var(--btn-hv-bg);
  color: var(--btn-hv-fg);
  transition: 500ms;
}

.posMeer {
  display: block;
  margin-right: 0;
}

.cmsHeadNav {
  margin: 1rem 0;
}

.card {
  display: flex;
  flex-direction: column;
}
.card .posMeer {
  display: block;
  margin-right: 0;
}

@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker-wrap {
  position: fixed;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  height: 4rem;
  background-color: #eeeeee;
  padding-left: 100%;
  box-sizing: content-box;
  z-index: 99999;
}
.ticker-wrap .ticker {
  display: inline-block;
  height: 4rem;
  line-height: 4rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 30s;
}
.ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 3rem;
  color: var(--color7);
}
.ticker-wrap .ticker__item a {
  color: var(--color7);
  padding: 0.25rem 5rem;
  border-radius: 15px;
  border: 1px solid #BBB;
  box-shadow: 1px 1px 2px #333;
  opacity: 0.8;
  text-decoration: none;
}
.ticker-wrap .ticker__item a:hover {
  background-color: var(--color7);
  color: var(--color4);
  opacity: 1;
}

#contactForm {
  display: flex;
  flex-direction: column;
  border: #660000 1px solid;
  align-items: center;
  align-content: center;
  gap: 0.25rem;
  max-width: 800px;
  padding: 0;
  margin: 0 auto;
}
#contactForm h1 {
  width: 100%;
  background-color: var(--color7);
  color: var(--color4);
  text-align: center;
  font-weight: normal;
}
#contactForm button {
  width: 80%;
  text-align: center;
}

.contact_inpField {
  width: calc(100% - 25px);
  padding: 0.5rem 0.25rem;
}
.contact_inpField input {
  border: 1px solid var(--colorFormBorders);
  border-left: solid 2em var(--colorFormBorders);
  width: calc(100% - 50px);
  padding: 0.5rem;
}
.contact_inpField textarea {
  border: 1px solid var(--colorFormBorders);
  border-left: solid 2em var(--colorFormBorders);
  width: calc(100% - 50px);
  padding: 0.5rem;
  height: 200px;
}

/*# sourceMappingURL=onePagemain.css.map */
