
/* ================================================================
 * css styling
 * ================================================================
 * purple :    8E59FF 142, 89,255  -  home
 * cyan :      3EDDDD  62,221,221  -  projecten / project single
 * red :       d61818 214, 24, 24  -  login
 * green :     399939  57,153, 57  -  over-mij
 * orange :    e39230 227,146, 48  -  contact
 * yellow :    e3e30e 227,227, 14  -  berichten / berichten single
 * blue :      0056b3   0, 86,179  -  404 / default
 * pink :      B40076 180,  0,118  -  Design / Develop / Lance
 */

:root {
  --global-purple: #8E59FF;
  --global-cyan: #3EDDDD;
  --global-red: #d61818;
  --global-green: #399939;
  --global-orange: #e39230;
  --global-yellow: #e3e30e;
  --global-blue: #0056b3;
  --global-pink: #B40076;

  --global-purple-rgb: 142, 89, 255;
  --global-cyan-rgb: 62,221, 221;
  --global-red-rgb: 214, 24, 24;
  --global-green-rgb: 57, 153, 57;
  --global-orange-rgb: 227, 146, 48;
  --global-yellow-rgb: 227, 227, 14;
  --global-blue-rgb: 0, 86, 179;
  --global-pink-rgb: 180, 0, 118;

  --global-white: #f4f4f4;
  --global-black: #131B25;
}

 /* oude paars: #8E59FF */

/* ================================================================
 * Font families
 * ================================================================ */

/* @font-face {
  font-family: "Cirth Erebor";
  src: url("../lib/cirtherebor/Erebor.eot?") format("eot"),
  url("../lib/cirtherebor/Erebor.woff") format("woff"),
  url("../lib/cirtherebor/Erebor.ttf") format("truetype"),
  url("../lib/cirtherebor/Erebor.svg#CirthErebor")
  format("svg");
}
@font-face {
  font-family: 'Tengwar Quenya';
  font-style: normal;
  font-weight: normal;
  src: local('Tengwar Quenya'), url('../lib/tengwarquenya/quencap1.woff') format('woff');
} */

@font-face {
    font-family: 'Open Sans';
    src: url('Open_Sans/OpenSans-VariableFont_wdth,wght.ttf');
}

@font-face {
    font-family: 'Josefin Sans';
    src: url('Josefin_Sans/JosefinSans-VariableFont_wght.ttf');
}

/* ================================================================
 *  Keyframes
 * ================================================================ */

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(75px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-75px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(75px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%   { transform: scale(1,1)    translateY(0); }
        10%  { transform: scale(1.1,.9) translateY(0); }
        30%  { transform: scale(.9,1.1) translateY(-100px); }
        50%  { transform: scale(1,1)    translateY(0); }
        100% { transform: scale(1,1)    translateY(0); }
}
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--global-white) /* white */ }
}

@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% {
    transform: translate3d(85px,0,0);
  }
}

@keyframes move-forever-reversed {
  0% {
   transform: translate3d(85px,0,0);
  }
  100% {
    transform: translate3d(-90px,0,0);
  }
}

/*Shrinking for mobile*/
@media (max-width: 768px) {

}

/* ================================================================
 *  CSS
 * ================================================================ */

#canvas {
  z-index: -1;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

* {
  outline: none !important;
}

html {
  height: 100%;
}
body {
  background-color: var(--global-black);
  background-image: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  background-attachment: fixed;
  font-family: 'Open Sans', sans-serif;
  position: relative;
  color: var(--global-white);
}

body.cirth,
body.cirth h1,
body.cirth h3,
body.cirth #headerText,
body.cirth .navbar .nav-link {
  font-family: "Cirth Erebor";
}
body.quenya,
body.quenya h1,
body.quenya h3,
body.quenya #headerText,
body.quenya .navbar .nav-link {
  font-family: 'Tengwar Quenya';
  letter-spacing: 1.5px;
}
h1 {
  font-family: 'Josefin Sans', sans-serif;
  color: var(--global-blue);
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1.2px;
}
h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
h3 {
  font-family: 'Josefin Sans', sans-serif;
  color: var(--global-blue);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
h4 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 15px 0 5px;
}
h5, h6 {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0 5px;
}
pre, span, li, td {
  color: inherit;
}
p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
  color: inherit;
  margin-bottom: 20px;
}
a {
  text-decoration: none;
  font-weight: 500;
  color: var(--global-white);
  letter-spacing: 0.8px;
  webkit-transition: all .1s ease-in-out;
  ms-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
a:hover {
  color: var(--global-blue);
  text-decoration: none;
}
strong, b {
  color: var(--global-blue);
}
dl, ol, ul {
  padding-left: 22px;
  list-style: none;
  margin-bottom: 20px;
}
ul li {
letter-spacing: 1px;
  font-weight: 300;
}
ul li::before {
  content: "\2022";
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
ul.ul-bold li {
  margin: 5px 0;
  font-weight: 400;
}
img {
  margin: 10px auto;
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  max-width: 100%;
  margin-bottom: 25px;
}
svg.logo {
  margin-bottom: 0;
}
.row {
  padding: 45px 0;
}
.center {
  text-align: center;
}
.centering {
  display: block;
  margin: 0 auto;
}
.valign {
  display: flex;
  align-items: center;
}

/* ---- confetti ---- */

#confetti {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
#slinger {
  background-image: url('../img/slinger.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
#slinger img {
  visibility: hidden;
  width: 100%;
  max-width: 100%;
}
#balloon-container {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  flex-wrap: wrap;
  overflow: hidden;
  z-index: -1;
}
.balloon {
  height: 125px;
  width: 105px;
  border-radius: 75% 75% 70% 70%;
  position: relative;
}
.balloon:before {
  content: "";
  height: 75px;
  width: 1px;
  padding: 1px;
  background-color: #FDFD96;
  display: block;
  position: absolute;
  top: 125px;
  left: 0;
  right: 0;
  margin: auto;
}
.balloon:after {
  content: "▲";
  text-align: center;
  display: block;
  position: absolute;
  color: inherit;
  top: 120px;
  left: 0;
  right: 0;
  margin: auto;
}
@keyframes float {
  from {
    transform: translateY(100vh);
  }
  to {
    transform: translateY(-200vh);
  }
}

/* ---- header / navigatie menu ---- */

#masthead {
  z-index: 1;
  position: relative;
  margin-bottom: 90px;
  background-color: var(--global-black);
}
#masthead::after {
  /* content: ''; */
  width: 100%;
  height: 120px;
  background-image: url('/img/shapes/masthead-blue-bottom.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: -110px;
}
#masthead .row {
  padding: 15px 0;
}
#masthead .logo {
  margin: 10px 0;
}
#masthead .logo .color {
  fill: var(--global-blue);
}
#masthead .logo .color-border {
  stroke: var(--global-blue);
}
.navigation {
  margin-right: -15px;
  margin-top: 50px;
  text-align: right;
  position: relative;
  text-align: right;
}
.navigation .navbar {
  padding-left: 0;
  padding-top: 4px;
}
.navbar-collapse {
  text-align: left;
  margin-left: 5px;
  /* position: absolute;
  left: 0;
  top: 50px;
  width: calc(100% - 30px);
  z-index: 10;
  background-color: rgba(0,0,0,0.5); */
}
.navbar-nav {
  margin-left: auto;
}
.navbar .nav-item::before,
.navbar .dropdown-menu li::before {
  content: none;
}
.navbar .nav-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 18px;
  color: var(--global-white);
  margin: 0 10px;

  position: relative;
  overflow: hidden;
}
.navbar .nav-link::before {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 0%;
  height: 2px;
  background: var(--global-white);
  transition: all 0.32s ease-out;
}
.navbar .nav-link:hover::before {
    left: 0;
    width: 100%;
}
.home .navbar .active .nav-link {
  color: var(--global-blue);
}
.navbar .dropdown-menu {
  background-color: rgba(0,0,0,0.5);
  border: 0;
}
.navbar .dropdown-menu .nav-link {
  padding: 5px;
  white-space: nowrap;
}
.navbar .dropdown-menu .nav-link::before {
  content: none;
}
.navbar-toggler .navbar-toggler-icon {
  margin: 1px 0px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-toggler:hover .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 86, 179, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.dropdown-menu li:hover .sub-menu {
  visibility: visible;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.nav-tabs .dropdown-menu,
.nav-pills .dropdown-menu,
.navbar .dropdown-menu {
  margin-top: 0;
}
.navbar .sub-menu:before {
  border-bottom: 7px solid transparent;
  border-left: none;
  border-right: 7px solid rgba(0, 0, 0, 0.2);
  border-top: 7px solid transparent;
  left: -7px;
  top: 10px;
}
.navbar .sub-menu:after {
  border-top: 6px solid transparent;
  border-left: none;
  border-right: 6px solid var(--global-white);
  border-bottom: 6px solid transparent;
  left: 10px;
  top: 11px;
  left: -6px;
}
.mob-nav-item {
  display: none;
}

/* ---- Social media buttons / buttons / form submit ---- */

form div.submit input,
.butn {
  padding: 7.5px 32.5px;
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--global-white);
  color: var(--global-white);
  border-radius: 50px;
  margin: 25px 20px 0 0;
}
form div.submit input:hover,
.butn:hover {
  background-color: transparent;
  color: var(--global-blue);
  border-color: var(--global-blue);
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}
.berichten-filter button.butn.is-checked,
form div.submit input:active,
.butn:active {
  background-color: var(--global-blue);
  border-color: var(--global-blue);
  color: var(--global-white);
}

.mediamenu {
  position: relative;
  display: flex;
  margin: 30px auto;
  width: max-content;
}
.mediamenu::before {
  content: " ";
  background-color: var(--global-blue);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 7.5px;
}
#masthead .mediamenu {
  position: absolute;
  right: 10px;
  top: 13px;
  margin: 0;
}
.mediamenu a.smediabutn {
  position: relative;
  margin: 0 5px;
  width: 32px;
  max-width: 32px;
  flex: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  text-align: center;
  background: #090a0f;
  border: 1.5px solid var(--global-white);
  color: var(--global-white);
  border-radius: 50px;
}
.mediamenu a.smediabutn:hover {
  background-color: #090a0f;
  color: var(--global-blue);
  border-color: var(--global-blue);
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}
.mediamenu a.smediabutn i {
  width: 100%;
  font-size: 16px;
}

/* ---- Main ---- */

#page {
  position: relative;
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
}

#content {
  min-height: 500px;
}

/* ---- tabs ---- */

.sticky {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 100;
}

/* ---- Home ---- */

.stage {
  display: flex;
  height: 330px;
  width: 100%;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.mascot {
  align-self: flex-end;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
  animation-name: bounce;
  animation-timing-function: ease;
}

.hover-card-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hover-card-container{
  max-width: 100%;
  position: relative;
  display: flex;
  padding: 0;
  justify-content: center;
}
.hover-card-container .hover-card {
  position: relative;
  /* cursor: pointer; */
  padding: 0 30px;
  opacity: 0;
}
.hover-card-container .hover-card.show {
  -webkit-animation: fadeInBottom both 1.5s;
  animation: fadeInBottom both 1.5s;
  animation-delay: .25s;
}
.hover-card-container .hover-card .face{
  width: 100%;
  height: 200px;
  transition: 0.3s;
}
.hover-card-container .hover-card .face.face1{
  position: relative;
  background-color: var(--global-black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(100px);
}
.hover-card-container .hover-card:hover .face.face1{
  background: var(--global-blue);
  transform: translateY(0);
}
.hover-card-container .hover-card .face.face1 .content img{
  max-width: 100px;
}
.hover-card-container .hover-card .face.face1 .content h3{
  margin: 10px 0 0;
  padding: 0;
  color: var(--global-white);
  text-align: center;
  font-size: 1.5em;
}
.hover-card-container .hover-card .face.face2{
  position: relative;
  background: var(--global-black);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
  transform: translateY(-100px);
}
.hover-card-container .hover-card:hover .face.face2{
  transform: translateY(0);
}
.hover-card-container .hover-card .face.face2 .content {
  text-align: center;
}
.hover-card-container .hover-card .face.face2 .content p{
  margin: 0;
  padding: 0;
}
.hover-card-container .hover-card .face.face2 .content a{
  margin: 30px auto 0;
}

.planets .row {
  padding: 0;
}
.planets-grid {
  position: relative;
  height: 500px;
  margin-top: -25px;
}

.background-thing {
  position: relative;
}
.background-thing::before {
  content: " ";
  background-color: transparent;
  box-shadow: 0px -5px 5px 0px rgba(0, 0, 0, 0.3);
  position: absolute;
  width: 100%;
  z-index: -1;
}
.home .background-thing.right::before {
  background-color: rgba(0,0,0,0.3);
  clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
  height: 550px;
  top: -275px;
}
.home .background-thing.left::before {
  background-color: rgba(0,0,0,0.3);
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 70%);
  height: 550px;
  top: -275px;
}
.over-mij .background-thing::before {
  background-color: rgba(27, 39, 53, 0.7);
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 70%);
  height: 300px;
  top: -150px;
}

.background-special {
  position: relative;
  background-color: var(--global-black);
  margin: 112.5px 0 90px;
  padding: 45px 0;
}
.background-special::before {
  /* content: ''; */
  width: 100%;
  height: 150px;
  background-image: url('/img/shapes/background-special-blue-top.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: -140px;
}
.background-special::after {
  /* content: ''; */
  width: 100%;
  height: 100px;
  background-image: url('/img/shapes/background-special-blue-bottom.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  bottom: -90px;
}

.scheidingslijn .row {
  padding: 22.5px 0;
}

/* ---- Projects ---- */

.projecten-categorie .pro-cat-item {
  border-top: 1.5px solid var(--global-blue);
  padding: 45px;
  padding-bottom: 90px;
  width: 100%;
}
.projecten-categorie .pro-cat-item.left {
  border-right: 1.5px solid var(--global-blue);
}
.projecten-categorie .pro-cat-item.right {
  border-left: 1.5px solid var(--global-blue);
}
img.project-logo,
.projecten-categorie .pro-cat-item img {
  width: 425px;
  max-width: 100%;
  margin: 0 auto 25px auto;
}
.projecten-categorie .p-img {
  margin-top: 0;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  width: 390px;
  max-width: 100%;
}

.knoppen .row {
  padding: 30px 0;
}
.knoppen .butn {
  margin: 15px;
}
.knoppen .butn.active,
.knoppen .butn.active:hover {
  border-color: var(--global-blue);
  color: var(--global-blue);
}
.knoppen .butn.active:active {
  color: var(--global-white);
}

#studioviv .p-item:hover,
#private .p-item:hover,
#school .p-item:hover,
#apps .p-item:hover {
  color: var(--global-white);
}
.project-row {
  width: 100%;
  padding: 0;
  margin: 0;
}
.project-row.left {
  opacity: 0;
}
.row.project-row.left {
  margin-left: 100px;
}
.project-row.left.show {
  -webkit-animation: fadeInLeft both 1.5s;
  animation: fadeInLeft both 1.5s;
}
.project-row.right {
  opacity: 0;
}
.row.project-row.right {
  margin-left: -100px;
}
.project-row.right.show {
  -webkit-animation: fadeInRight both 1.5s;
  animation: fadeInRight both 1.5s;
}
.p-text {
  text-align: center;
}
.p-img {
  background-image: url('https://mnpronk.nl/img/projects/noimage.png');
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-color: rgba(0,0,0,0.3);
  cursor: pointer;
  width: 100%;
  height: 245px;
  border: 1.5px var(--global-blue) solid;
  margin: 15px 0;
  position: relative;
  overflow: hidden;
  transition: background-size .15s ease-in-out;
}
.p-img.show.left {
  -webkit-animation: fadeInLeft both 1.5s;
  animation: fadeInLeft both 1.5s;
}
.p-img.show.right {
  -webkit-animation: fadeInRight both 1.5s;
  animation: fadeInRight both 1.5s;
}
.lable {
  background-color: var(--global-blue);
  color: var(--global-white);
  width: 250px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: 25px;
  right: -55px;
  white-space: nowrap;
  z-index: 1;

  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.p-img:hover {
  background-size: auto 125%;
}

.otherwork {
  margin: 25px 0;
  text-align: center;
}
.otherwork span {
  white-space: nowrap;
  margin: 10px 0 10px 10px;
  padding-right: 10px;
  border-right: 1.5px solid var(--global-white);
}
.otherwork span:last-child {
  border-right: 0;
}
.otherwork span a {
  font-weight: 300;
}

/* ---- project single ---- */

.screens-wrapper  {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.screens-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}
.screens-wrapper .display {
  position: relative;
  left: 0px;
  height: 600px;
}

.screens-wrapper .display div {
    background-repeat: no-repeat;
    background-size: 100%;
    overflow: hidden;
}
.screens-wrapper .display .mobile {
    background-image: url("../img/screens/iphone-optimised.png");
    position: absolute;
    width: 95px;
    height: 196px;
    top: 375px;
    left: 300px;
    z-index: 5;
}
.screens-wrapper .display .tablet {
    background-image: url("../img/screens/ipad-optimised.png");
    width: 246px;
    height: 400px;
    z-index: 3;
    position: absolute;
    left: 120px;
    top: 230px;
}
.screens-wrapper .display .laptop {
    background-image: url("../img/screens/laptop-screen-optimised.png");
    width: 477px;
    height: 307px;
    top: 264px;
    left: 560px;
    position: absolute;
    z-index: 2;
}
.screens-wrapper .display .desktop {
    position: absolute;
    width: 566px;
    height: 538px;
    background-image: url("../img/screens/large-screen-optimised.png");
    top: 0px;
    left: 220px;
    z-index: 1;
}
.screens-wrapper .display iframe {
    transform: scale(0.219);
    -webkit-transform: scale(0.219);
    -o-transform: scale(0.219);
    -ms-transform: scale(0.219);
    -moz-transform: scale(0.219);
    transform-origin: top left;
    -webkit-transform-origin: top left;
    -o-transform-origin: top left;
    -ms-transform-origin: top left;
    -moz-transform-origin: top left;
    margin: 0;
    padding: 0;
    position: relative;
    background-color: var(--global-white);
    border-color: #000;
}
.screens-wrapper .display iframe {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.screens-wrapper .display iframe::-webkit-scrollbar {
 display: none;
}
.screens-wrapper .display .mobile iframe {
    width: 320px;
    height: 480px;
    top: 32px;
    left: 11px;
    overflow-y: hidden;
}
.screens-wrapper .display .tablet iframe {
    width: 768px;
    height: 1024px;
    top: 35px;
    left: 38px;
    overflow-y: hidden;
}
.screens-wrapper .display .laptop iframe {
    width: 1280px;
    height: 802px;
    top: 26px;
    left: 60px;
    transform: scale(0.277);
    -webkit-transform: scale(0.277);
    -o-transform: scale(0.277);
    -ms-transform: scale(0.277);
    -moz-transform: scale(0.277);
    transform-origin: top left;
    -webkit-transform-origin: top left;
    -o-transform-origin: top left;
    -ms-transform-origin: top left;
    -moz-transform-origin: top left;
}
.screens-wrapper .display .desktop iframe {
    left: 28px;
    top: 38px;
    width: 1600px;
    height: 992px;
    transform: scale(0.3181);
    -webkit-transform: scale(0.3181);
    -o-transform: scale(0.3181);
    -ms-transform: scale(0.3181);
    -moz-transform: scale(0.3181);
    transform-origin: top left;
    -webkit-transform-origin: top left;
    -o-transform-origin: top left;
    -ms-transform-origin: top left;
    -moz-transform-origin: top left;
}

img.project-logo {
  display: block;
  width: 400px;
  max-width: 100%;
  margin: 0 auto 22.5px;
}
.project-logos {
  display: flex;
  position: relative;
  width: 800px;
  max-width: 100%;
  margin: 45px auto 0;
  padding: 25px;
  align-items: center;
  justify-content: center;
  margin-bottom: -45px;
}
.project-logos.behind {
  min-height: 250px;
}
.project-logos.behind::before {
  content: '';
  background-image: url('../img/logos/logo-behind.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.project-logos img.project-logo {
  position: relative;
  display: inline-block;
  margin: 0 25px 0;
  width: calc(50% - 50px);

}

.projectscreen {
  background-color: rgba(0,0,0,0.3);
  border: 1.5px solid var(--global-blue);
  position: relative;
  max-width: 800px;
  margin: 10px auto 5px;
  overflow: hidden;
}
.projectscreen img.site {
  margin: 0;
  width: 100%;
  max-width: 100%;
}
.iframe-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  max-height: 448px;
  margin: auto;
  padding: 0;
  overflow: hidden;
}
.iframe-container iframe {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.iframe-container iframe::-webkit-scrollbar {
 display: none;
}
.iframe-container img#loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
.iframe_sub {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
}
.game-container {
  opacity: 0;
}
.game-container .image {
  background-color: rgba(0,0,0,0.3);
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 90%;
  height: 550px;
  margin: auto;
  padding: 0;
  overflow: hidden;
}
.game-container.right.show {
  -webkit-animation: fadeInRight both 1.5s;
  animation: fadeInRight both 1.5s;
}
.game-container.left.show {
  -webkit-animation: fadeInLeft both 1.5s;
  animation: fadeInLeft both 1.5s;
}
.game-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
}
.iframe-container iframe {
  width: 1920px;
  height: 1080px;
  border: 0;
  pointer-events: none;
  -ms-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

/* ---- About ---- */

.typewrite-container {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
}
span.typewrite {
  border-right: 1.5px solid var(--global-white); /* The typwriter cursor */
  cursor: auto;
  color: var(--global-white);
  text-decoration: none;
  -webkit-animation: blink-caret .75s step-end infinite;
  animation: blink-caret .75s step-end infinite;
}
span.typewrite span {
  color: var(--global-white);
}

.me {
  opacity: 0;
  max-width: 100%;
  float: right;
  margin-top: 10px;
  margin-bottom: 25px;
  margin-left: 75px;
  margin-right: -75px;
}

a .me {
  scale: 1;
  transition: scale .2s ease;
}

a .me:hover {
  scale: 1.2;
}

.me.left {
  float: left;
  margin-right: 75px;
  margin-left: -75px;
}
.me.show {
  -webkit-animation: fadeInRight both 1.5s;
  animation: fadeInRight both 1.5s;
}
.me.left.show {
  -webkit-animation: fadeInLeft both 1.5s;
  animation: fadeInLeft both 1.5s;
}
.me img {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.flip-card {
  background-color: transparent;
  width: 350px;
  height: 415px;
  perspective: 1000px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.flip-card-front {
  /* background-color: transparent; */
  color: black;
}
.flip-card-front .img,
.flip-card-back .img2 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  height: 100%;
  width: 100%;
}
.flip-card-front .img {
  background-image: url('../img/maey.png');
  /* background-color: var(--global-blue); */
  background-size: contain;
}
.flip-card-back .img2 {
  background-image: url('../img/maey-2.png');
  /* background-color: var(--global-blue); */
  background-size: contain;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);

}
.flip-card-back {
  transform: rotateY(180deg);
}
.painter {
  background-color: var(--global-blue);
  background-image: url('../img/favicon.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80% auto;
  height: 100%;
  width: 100%;
}
.scroll-container {
  margin-bottom: 45px;
  position: relative;
  width: 100%;
}
.scroll-container .scroll {
  white-space: nowrap;
  font-size: 0;
  position: relative;
  padding-top: 15px;

  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Opera and Firefox */
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
/* Hide scrollbar for Chrome, Safari and Opera */
.scroll-container .scroll::-webkit-scrollbar {
 display: none;
}

.scroll .scroll-item {
  width: 400px;
  margin: 10px;
  display: inline-block;
  font-size: initial;
  vertical-align: top;
}
.scroll .scroll-item .img {
  height: 225px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  webkit-transition: all .1s ease-in-out;
  ms-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}
.scroll .scroll-item .img:hover {
  -webkit-transform: scale(1.25);
  transform: scale(1.25);
}
.scroll .scroll-item .inner {
  padding-top: 25px;
  padding-left: 25px;
  padding-right: 25px;
  text-align: center;
}
.scroll .scroll-item .inner span.name {
  margin-bottom: 0;
  display: block;
}

.skill-bar {
  width: 100%;
  height: 20px;
  background: transparent;
  border-radius: 5px;
  border: 1.5px solid var(--global-white);
}
.skill-bar .fill {
  width: 0;
  background-color: var(--global-blue);
  height: 17px;
  border-radius: 5px;
  border: 1.5px transparent;
  transition: width 1s ease-in-out;
}
.skill-bar.reversed .fill {
    width: 100%;
}

/* ---- contact ---- */

.loader {
  display: none;
}
.loaderimg {
  background-image: url('../img/loader.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 80px;
  width: 100%;
  margin: auto;
}
.divcenter {
  text-align: center;
}
.divcenter div {
  display: inline-block;
  text-align: left;
}

.old-logo {
  margin-left: 0;
  margin-right: 0;
  max-width: 200px;
}

/* ---- Single/overview berichten ---- */

.berichten-filter .searchfilters {
  position: relative;
  max-width: 100%;
  width: 500px;
  margin: auto;
  overflow: hidden;
  margin-bottom: 22.5px;
}
.berichten-filter .searchfilters #quicksearch {
  display: block;
  float: left;
  padding: 13px 15px;
  width: 100%;
  background-color: transparent;
  color: var(--global-white);
  border: 1.5px solid var(--global-blue);
  transition: border-color .2s ease;
}
.berichten-filter .searchfilters .search-icon {
  display: block;
  float: left;
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
}
.berichten-filter .searchfilters .search-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--global-white);
}

.berichten-filter button.butn {
  webkit-transition: all .1s ease-in-out;
  ms-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

.post-head-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.post-head-img img {
  visibility: hidden;
  width: 100%;
}
.berichten .post-item {
  padding-bottom: 40px;
}
.berichten .bericht-item {
  border: 1.5px var(--global-blue) solid;
  border-bottom: 0;
  opacity: 0;
  padding-bottom: 10px;
  height: 100%;
}
.berichten .bericht-item { /* .show */
  -webkit-animation: fadeInBottom both 1.5s;
  animation: fadeInBottom both 1.5s;
}
.berichten .bericht-item .img-grid {
  display: block;
  position: relative;
  background-color: rgba(0,0,0,0.3);
  height: 300px;
  padding: 15px;
  overflow: hidden;
}
.berichten .bericht-item .img {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  width: 100%;
}
.berichten .bericht-item .inner {
  background-color: #1b2735;
  padding: 25px;
}
.berichten .bericht-item .butn {
  margin-left: 0;
}

.img-wide-left,
.img-wide-right {
  opacity: 0;
}
.img-wide-left {
  margin-left: 115px;
}
.img-wide-right {
  margin-right: 115px;
}
.img-wide-left.show {
  -webkit-animation: fadeInLeft both 1.5s;
  animation: fadeInLeft both 1.5s;
}
.img-wide-right.show {
  -webkit-animation: fadeInRight both 1.5s;
  animation: fadeInRight both 1.5s;
}

.instagram .instaimg {
  font-family: "Font Awesome 5 Free";
  position: relative;
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: calc(25% - 40px);
  height: 304px;
  margin: 20px;
  display: inline-block;
  opacity: 0;
  transition: background-size .15s ease-in-out;
}
.instagram .instaimg:hover {
  background-size: auto 125%;
}
.instagram .instaimg.show {
  -webkit-animation: fadeInBottom both 1.5s;
  animation: fadeInBottom both 1.5s;
}
.instagram .instaimg::before {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0);
  transition: background-color .2s ease;
}
.instagram .instaimg:hover::before {
  background-color: rgba(0,0,0,0.7);
}
.instagram .instaimg::after {
  font-size: 50px;
  opacity: 0;
  content: "\f06e";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}
.instagram .instaimg:hover::after {
  opacity: 1;
}
.instagram .instaimg video {
  width: 100%;
  height: 100%;
}

/* ---- footer ---- */

#colophon {
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: 112.5px;
}

#colophon::before {
  /* content: ''; */
  width: 100%;
  height: 150px;
  background-image: url('/img/shapes/colophon-blue-top.png');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: -140px;
}

.waves {
  position:absolute;
  top: -100px;
  width: 100%;
  height:100px;
  min-height:100px;
  max-height:100px;
  margin: 0;
}
.waves.reversed {
  top: initial;
  bottom: -100px;
  transform: scale(1, -1);
}
.waves .parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.waves.reversed .parallax > use {
  animation: move-forever-reversed 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.waves .parallax > use:nth-child(1) {
  fill: rgba(var(--global-blue-rgb), 0.7);
  animation-delay: -2s;
  animation-duration: 10s;
}
.waves .parallax > use:nth-child(2) {
  fill: rgba(var(--global-blue-rgb), 0.5);
  animation-delay: -3s;
  animation-duration: 20s;
}
.waves .parallax > use:nth-child(3) {
  fill: rgba(var(--global-blue-rgb), 0.3);
  animation-delay: -4s;
  animation-duration: 30s;
}
.waves .parallax > use:nth-child(4) {
  fill: var(--global-black);
  animation-delay: -5s;
  animation-duration: 40s;
}
.waves.reversed .parallax > use:nth-child(1) { animation-delay: -5s; }
.waves.reversed .parallax > use:nth-child(2) { animation-delay: -4s; }
.waves.reversed .parallax > use:nth-child(3) { animation-delay: -3s; }
.waves.reversed .parallax > use:nth-child(4) { animation-delay: -2s; }

#colophon .site-footer {
  padding-top: 11px;
  background-color: var(--global-black);
  box-shadow: 0px -5px 5px 0px rgba(0, 0, 0, 0.3);
}
#colophon .site-footer b,
#colophon .site-footer strong {
  color:  var(--global-white);
}
#colophon .site-info {
  text-align: center;
  background-color: rgba(0,0,0,0.6);
  box-shadow: 0px -5px 5px 0px rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 10px 0 15px;
}
#colophon .site-info p {
  font-size: 14px;
  margin: 0;
}
#colophon .site-info a {
  color: var(--global-blue);
}
#colophon .site-info a:hover {
  color: var(--global-white);
}

.footerpainter {
  opacity: 0;
  position: absolute;
  bottom: 70px;
  height: 0;
  width: 0;
  max-width: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 25px 5px rgba(0,0,0,0.75);
}

/* ---- Back to top ---- */

#backtotop {
  opacity: 0;
  cursor: pointer;
  position: fixed;
  bottom: 50px;
  right: 50px;
  background: transparent;
  color: var(--global-white);
  border: 1.5px solid var(--global-white);
  padding: 10px 17px;
  cursor: pointer;
}
#backtotop svg {
  content: url('../img/arrow-up.svg');
  position: absolute;
  top: 12px;
  left: 10px;
  z-index: -1;
}
#backtotop svg path {
  transition: stroke .1s ease;
}

/* ---- Form css ---- */

form {
  max-width: 100%;
  width: 100%;
  margin: auto;
  font-size: 0;
}
form div {
  width: 100%;
  display: inline-block;
  margin: 5px 0 10px;
  vertical-align: top;
  font-size: 16px;
}
form div.half {
  width: calc(50% - 20px);
}
form input,
form select,
form textarea {
  margin-bottom: 10px;
  background-color: transparent;
  border: 1.5px solid #ebebeb;
  color: #ebebeb;
  padding: 10px;
  outline: none;
  -webkit-transition: border-color .1s ease-in-out;
  -ms-transition: border-color .1s ease-in-out;
  transition: border-color .1s ease-in-out;
}
form input:focus,
form textarea:focus {
  border-color: var(--global-blue);
}
form label {
  margin: 5px 0;
  display: none;
}
form div.succes,
form div.fail {
  display: none;
}
form div.succes span,
form div.fail span {
  display: block;
  border: 1.5px solid var(--global-blue);
  color: var(--global-blue);
  padding: 15px;
  text-align: center;
}
form span.error {
  display: none;
  color: #000;
}
form span.wwtext {
  font-style: italic;
  font-size: 14px;
}
form div label,
form div span,
form div textarea,
form div select,
form div input {
  width: 100%;
}
form div input[type=radio],
form div input[type=checkbox] {
  width: auto;
}
.input-password,
.input-email,
.textarea {
  -webkit-animation: fadeInLeft both 1.5s;
  animation: fadeInLeft both 1.5s;
}
.input-name,
.input-username,
.input-subject,
.input-submit {
  -webkit-animation: fadeInRight both 1.5s;
  animation: fadeInRight both 1.5s;
}

input[type=submit] {
  webkit-transition: all .1s ease-in-out;
  ms-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

.ql-toolbar.ql-snow,
.ql-container.ql-snow {
  border-color: var(--global-white);
  -webkit-transition: border-color .1s ease-in-out;
  -ms-transition: border-color .1s ease-in-out;
  transition: border-color .1s ease-in-out;
}
.ql-snow .ql-tooltip {
  background-color: rgba(9, 10, 15, 0.7);
  border-color: var(--global-white);
  box-shadow: 0px 0px 5px #ddd;
  color: var(--global-white);
  width: auto;
}
.ql-toolbar.ql-snow .ql-picker-label,
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button,
.ql-snow .ql-picker-options .ql-picker-item {
  color: var(--global-white) !important;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill,
.ql-snow .ql-stroke {
  stroke: var(--global-white) !important;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: var(--global-white) !important;
}
.ql-snow .ql-picker-options {
  background: rgba(9, 10, 15, 0.7);
  border-color: var(--global-white);
}
.ql-editor.ql-blank::before {
  color: rgba(244, 244, 244, 0.5);
  font-style: normal;
}
#editor-container .ql-editor h1,
#editor-container .ql-editor h2,
#editor-container .ql-editor h3,
#editor-container .ql-editor p {
  color: var(--global-white);
  font-family: 'Open Sans', sans-serif;
}

.textarea {
  /* border: 0.5px solid var(--global-white); */
}
.textarea:focus-within .ql-toolbar.ql-snow,
.textarea:focus-within .ql-container.ql-snow {
  border-color: var(--global-blue);
}

.textarea div {
  margin: 0;
  width: 100%;
}
.textarea div span {
  width: auto;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* ---- Responsive ---- */

@media only screen and (max-width: 1500px) {
  .row.project-row.left {
    margin-left: 50px;
  }
  .row.project-row.right {
    margin-left: -50px;
  }
}

@media only screen and (min-width: 1200px) {
  #masthead .container,
  .planets .container,
  .certificaten .container,
  .image-wide .container,
  .featured-projects .container,
  .instagram .container {
    max-width: 1366px;
    width: 100%;
  }
}

/* Large Devices, Wide Screens */

@media only screen and (max-width: 1200px) {
  .row.project-row.left {
    margin-left: 25px;
  }
  .row.project-row.right {
    margin-left: -25px;
  }
}

/* Medium Devices, Desktops */

@media only screen and (max-width: 992px) {
  #masthead .mediamenu {
    top: 45px;
    right: 15px;
  }
  .logo-container {
    align-items: flex-start;
  }
  .navigation {
    margin-top: 40px;
  }
  .navbar .nav-link::before {
    content: none;
  }
  .img-wide-right,
  .img-wide-left,
  .row.project-row.right,
  .row.project-row.left {
    margin: 0;
  }
  .project-row .col-md-6:last-child {
    display: none;
  }
  .instagram .instaimg {
    width: calc(50% - 40px);
  }

  .hover-card-container .hover-card {
    max-height: 250px;
    transition: max-height .3s ease;
    padding: 0 15px;
  }
  .hover-card-container .hover-card:hover {
    max-height: 400px;
  }
  .hover-card-container .hover-card .face.face1 {
    transform: translateY(0);
  }
  .hover-card-container .hover-card:hover .face.face1 {
    transform: translateY(0);
  }
  .hover-card-container .hover-card .face.face2 {
    transform: translateY(-200px);
  }
  .hover-card-container .hover-card:hover .face.face2 {
    transform: translateY(0);
  }
}

/* Small Devices, Tablets */

@media only screen and (min-width: 768px) {
  .p-img {
    opacity: 1;
  }
}

@media only screen and (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 26px;
  }
  .stage {
    display: none;
  }
  .p-img {
    opacity: 0;
  }
  #masthead {
    margin-bottom: 45px;
  }
  #masthead::after {
    height: 60px;
    bottom: -50px;
  }
  #masthead .logo {
    margin: 0 auto 22.5px;
  }
  #masthead .mediamenu {
    top: 20px;
  }
  .navigation {
    margin-top: 50px;
  }
  .navigation .navbar {
    margin-top: -39px;
  }
  .mob-nav-item {
    display: block;
  }
  .project-row.left,
  .project-row.right {
    margin: 0;
    opacity: 1;
  }
  .typewrite-container {
    display: none;
  }
  .me {
    float: none;
    margin: 22.5px auto;
  }
  .flip-card {
    float: right;
    margin-top: 0;
    width: 175px;
    height: 207.5px;
  }
  .divcenter {
    text-align: left;
  }
  .background-special {
    margin-top: 56.25px;
    margin-bottom: 45px;
  }
  .background-special::before {
    height: 75px;
    top: -65px;
  }
  .background-special::after {
    height: 50px;
    bottom: -40px;
  }
  .project-row .col-md-6:last-child {
    display: initial;
  }
  .p-img:hover,
  .p-img {
    background-position: center top;
    background-size: cover;
  }
  #colophon {
    margin-top: 45px;
  }
  #colophon::before {
    height: 50px;
    top: -40px;
  }
  .waves {
    height: 50px;
    min-height: 50px;
    top: -50px;
  }
  .waves.reversed {
    bottom: -50px;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 576px) {
  .me,
  .me.left {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

@media only screen and (max-width: 480px) {
  #backtotop {
    display: none !important;
  }
  .instagram .instaimg {
    width: calc(100% - 40px);
  }
}

/* Custom, iPhone Retina */

@media only screen and (max-width: 320px) {}
