/* ========== BASISSTIJLEN ========== */
body {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 400;
}

a {
  color: white;
}

a:hover {
  color: var(--color-primary);
}

.text-bold {
  font-weight: 600;
}

.font-weight-light {
  font-weight: 200;
}

.text-grey {
  color: var(--font-color-grey) !important;
}

.text-grey a {
  color: var(--font-color-text-grey);
}

.text-light {
  color: white;
}

/* ========== TYPOGRAFIE ========== */
p,
ul li, header {
  color: var(--font-color-dark);
  font-size: 1.125rem;
  line-height: 2rem;
  font-weight: 200;
  margin: 0;
  z-index: 1;
  font-size: 1.125rem;
  line-height: 2rem;
}

p.text-lg {
  font-size: 18px;
  line-height: 2em;
}

p.text-sm, .text-sm p, .text-sm ul li {
  font-size: 0.9rem;
  line-height: 1.5rem;
}

p.text-xs {
  font-size: 0.7rem;
  font-weight: 500;
  line-height: normal;
}

p.text-bold, .text-bold p {
  font-weight: bold !important;
}

p.font-weight-light, .font-weight-light p, .font-weight-light ul li {
  font-weight: 300;
}

li {
  padding-left: 10px;
}

/* Lijsten */
ul {
  margin-left: 14px;
}

ul.bullet li {
  list-style-type: disc;
}

ul.number li {
  list-style-type: lower-alpha;
}

/* ========== HEADINGS ========== */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: var(--font-color-dark);
  font-family: "Be Vietnam Pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 30px;
}

h1.title-page {
  font-size: 28px;
}

h3, .h3 {
  font-size: 35px;
  margin-bottom: 10px;
}

h4, .h4 {
  font-size: 22px;
}

h5, .h5 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.5px;
}

/* ========== CONTAINER AFHANKELIJKE KLEUREN ========== */
.dark-bg p,
.dark-bg ul li {
  color: var(--font-color-light);
}

.light-bg p,
.light-bg ul li {
  color: var(--font-color);
}

/* ========== RESPONSIVE ========== */
/* Mobiel */
@media (max-width: 699px) {
  p, ul li {
    font-size: 16px;
    line-height: 29px;
  }
  h1, .h1 {
    font-size: 35px;
    letter-spacing: -1.3px;
    line-height: 1.3em;
    font-weight: 600;
  }
  h1.extra-large, .h1.extra-large {
    font-size: 70px;
  }
  h2, .h2 {
    font-size: 27px;
    line-height: 1.4em;
    font-weight: 600;
  }
  h3, .h3 {
    font-size: 23px;
    line-height: 1.4em;
    font-weight: 600;
  }
  .text-indent {
    text-indent: 0;
  }
  .text-number {
    margin-bottom: 30px;
  }
}
/* Tablet */
@media (min-width: 700px) and (max-width: 1279px) {
  h1, .h1 {
    font-size: 60px;
    line-height: 1.2em;
    font-weight: 600;
  }
  h2, .h2 {
    font-size: 50px;
    line-height: 1.3em;
    font-weight: 700;
  }
  .text-indent {
    text-indent: 100px;
  }
}
/* Desktop */
@media (min-width: 1280px) {
  h1, .h1 {
    font-weight: 700;
    font-family: "Be Vietnam Pro", sans-serif;
    font-size: 5rem;
    line-height: 1.1;
  }
  h2, .h2 {
    font-size: 50px;
    line-height: 1.3em;
    font-weight: 600;
  }
  .text-indent {
    text-indent: 100px;
  }
}
.bg-color-primary {
  background-color: var(--bg-color-primary);
}

.bg-color-secondary {
  background-color: var(--bg-color-secondary);
}

.bg-color-about-1.primary {
  background-color: var(--about-1-primary);
}

.bg-color-project-home {
  background-color: #192251;
}

.bg-color-project-1.primary {
  background-color: var(--project-1-primary);
}

.bg-color-project-1.light-yellow {
  background-color: var(--project-1-light-variant-1);
}

.bg-color-project-1.light-blue {
  background-color: var(--project-1-light-variant-2);
}

.bg-color-project-1.light-grey {
  background-color: var(--project-1-light-variant-3);
}

.bg-color-project-1.light-purple {
  background-color: var(--project-1-light-variant-4);
}

.bg-color-project-2.primary {
  background-color: var(--project-2-primary);
}

.bg-color-project-2.bright-blue {
  background-color: var(--project-2-bright-variant-1);
}

.bg-color-project-2.light-orange {
  background-color: var(--project-2-light-variant-1);
}

.bg-color-project-2.light-grey {
  background-color: var(--project-2-light-variant-2);
}

.bg-color-project-3.primary {
  background-color: var(--project-3-primary);
}

.bg-color-project-3.light-green {
  background-color: var(--project-3-light-variant-1);
}

.bg-color-project-2.light-grey {
  background-color: var(--project-2-light-variant-2);
}

.z-index-0 {
  z-index: 0 !important;
  position: relative;
}

.z-index-1 {
  z-index: 1 !important;
}

.z-index-2 {
  z-index: 2 !important;
  position: relative;
}

.z-index-3 {
  z-index: 3 !important;
  position: relative;
}

.z-index-999 {
  z-index: 9999;
  position: relative;
}

@media (max-width: 699px) {
  .only-mobile.mb-3 {
    margin-bottom: 1rem !important;
  }
}
@media (max-width: 699px) {
  .only-mobile.px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
}

@media (max-width: 699px) {
  .margin-section-large-bottom {
    margin-bottom: 50px;
  }
  .margin-section-small-bottom {
    margin-bottom: 30px;
  }
  .margin-section-xs-bottom {
    margin-bottom: 20px;
  }
  .margin-section-large-top {
    margin-top: 100px;
  }
  .margin-section-small-top {
    margin-top: 30px;
  }
}
@media (min-width: 700px) and (max-width: 1023px) {
  .margin-section-large-bottom {
    margin-bottom: 80px;
  }
  .margin-section-small-bottom {
    margin-bottom: 50px;
  }
  .margin-section-xs-bottom {
    margin-bottom: 30px;
  }
  .margin-section-large-top {
    margin-top: 120px;
  }
  .margin-section-small-top {
    margin-top: 50px;
  }
}
@media (min-width: 1024px) {
  .margin-section-large-bottom {
    margin-bottom: 130px;
  }
  .margin-section-small-bottom {
    margin-bottom: 80px;
  }
  .margin-section-xs-bottom {
    margin-bottom: 40px;
  }
  .margin-section-large-top {
    margin-top: 180px;
  }
  .margin-section-small-top {
    margin-top: 80px;
  }
}
@media (max-width: 699px) {
  .hidden-small {
    display: none !important;
  }
}
@media (min-width: 700px) {
  .hidden-medium {
    display: none !important;
  }
}
.no-flex-grow {
  flex: 0 0 auto !important;
}

.flex-sm-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.u-2\:1:before {
  padding-bottom: 50%;
}

.u-4\:3:before {
  padding-bottom: 75%;
}

.u-16\:9:before {
  padding-bottom: 56.25%;
}

.u-1\/1 {
  width: 100% !important;
}

.u-1\/2 {
  width: 50% !important;
}

.u-2\/2 {
  width: 100% !important;
}

.u-1\/3 {
  width: 33.3333333333% !important;
}

.u-2\/3 {
  width: 66.6666666667% !important;
}

.u-3\/3 {
  width: 100% !important;
}

.u-1\/4 {
  width: 25% !important;
}

.u-2\/4 {
  width: 50% !important;
}

.u-3\/4 {
  width: 75% !important;
}

.u-4\/4 {
  width: 100% !important;
}

.u-1\/5 {
  width: 20% !important;
}

.u-2\/5 {
  width: 40% !important;
}

.u-3\/5 {
  width: 60% !important;
}

.u-4\/5 {
  width: 80% !important;
}

.u-5\/5 {
  width: 100% !important;
}

.u-1\/12 {
  width: 8.3333333333% !important;
}

.u-2\/12 {
  width: 16.6666666667% !important;
}

.u-3\/12 {
  width: 25% !important;
}

.u-4\/12 {
  width: 33.3333333333% !important;
}

.u-5\/12 {
  width: 41.6666666667% !important;
}

.u-6\/12 {
  width: 50% !important;
}

.u-7\/12 {
  width: 58.3333333333% !important;
}

.u-8\/12 {
  width: 66.6666666667% !important;
}

.u-9\/12 {
  width: 75% !important;
}

.u-10\/12 {
  width: 83.3333333333% !important;
}

.u-11\/12 {
  width: 91.6666666667% !important;
}

.u-12\/12 {
  width: 100% !important;
}

@media (max-width: 699px) {
  .u-auto\@to-small {
    display: inline-block;
    width: auto;
  }
}
@media (max-width: 699px) {
  .u-1\/2\@to-small {
    width: 50%;
  }
}
@media (max-width: 699px) {
  .u-1\/3\@to-small {
    width: 33%;
  }
}
@media (max-width: 699px) {
  .u-2\/3\@to-small {
    width: 66%;
  }
}
@media (max-width: 699px) {
  .u-2\/2\@to-small {
    width: 100%;
  }
}
@media (min-width: 700px) {
  .u-2\/2\@from-small {
    width: 100%;
  }
}
@media (min-width: 700px) {
  .u-1\/2\@from-small {
    width: 50%;
  }
}
@media (min-width: 700px) and (max-width: 1279px) {
  .u-1\/2\@small-medium {
    width: 50%;
  }
}
@media (min-width: 1000px) {
  .u-1\/2\@from-medium {
    width: 50%;
  }
}
@media (min-width: 1000px) {
  .u-4\/5\@from-medium {
    width: 80%;
  }
}
@media (max-width: 999px) {
  .u-1\/3\@to-medium {
    width: 33.3333333333%;
  }
}
@media (max-width: 999px) {
  .u-2\/2\@to-large {
    width: 100%;
  }
}
@media (min-width: 700px) and (max-width: 999px) {
  .u-1\/2\@small {
    width: 50%;
  }
}
@media (max-width: 699px) {
  .u-1\/4\@to-small {
    width: 25%;
  }
}
@media (max-width: 699px) {
  .u-3\/4\@to-small {
    width: 75%;
  }
}
@media (min-width: 700px) {
  .u-1\/4\@from-small {
    width: 25%;
  }
}
@media (min-width: 700px) {
  .u-1\/3\@from-small {
    width: 33.3%;
  }
}
@media (min-width: 1000px) {
  .u-1\/4\@from-medium {
    width: 25%;
  }
}
@media (min-width: 700px) {
  .u-1\/6\@from-small {
    width: 16.6666666667%;
  }
}
@media (min-width: 1000px) {
  .u-1\/3\@from-medium {
    width: 33.3333333333%;
  }
}
@media (min-width: 700px) {
  .u-1\/3\@from-small {
    width: 33.3333333333%;
  }
}
@media (min-width: 700px) and (max-width: 1279px) {
  .u-1\/3\@small-medium {
    width: 33.3333333333%;
  }
}
@media (min-width: 700px) and (max-width: 1279px) {
  .u-2\/3\@small-medium {
    width: 66.6666666667%;
  }
}
@media (min-width: 700px) {
  .u-2\/3\@from-small {
    width: 66.6666666667%;
  }
}
@media (min-width: 1000px) {
  .u-2\/3\@from-medium {
    width: 66.6666666667%;
  }
}
@media (min-width: 700px) {
  .u-3\/4\@from-small {
    width: 75%;
  }
}
@media (min-width: 1000px) {
  .u-3\/4\@from-medium {
    width: 75%;
  }
}
@media (max-width: 699px) {
  .u-2\/3\@to-small {
    width: 66.6666666667%;
  }
}
@media (min-width: 1000px) {
  .u-1\/5\@from-medium {
    width: 20%;
  }
}
@media (min-width: 1000px) {
  .u-2\/5\@from-medium {
    width: 40%;
  }
}
@media (min-width: 1000px) {
  .u-3\/5\@from-medium {
    width: 60%;
  }
}
@media (max-width: 699px) {
  .u-4\/5\@to-small {
    width: 80%;
  }
}
@media (max-width: 699px) {
  .u-1\/12\@to-small {
    width: 8.3333333333%;
  }
}
@media (min-width: 700px) {
  .u-1\/12\@from-small {
    width: 8.3333333333%;
  }
}
@media (min-width: 700px) {
  .u-2\/12\@from-small {
    width: 16.6666666667%;
  }
}
@media (min-width: 700px) {
  .u-11\/12\@from-small {
    width: 91.6666666667%;
  }
}
@media (min-width: 1000px) {
  .u-2\/12\@from-medium {
    width: 16.6666666667%;
  }
}
@media (min-width: 1280px) {
  .u-1\/4\@from-large {
    width: 25%;
  }
}
@media (min-width: 1280px) {
  .u-4\/5\@from-large {
    width: 80%;
  }
}
@media (min-width: 1280px) {
  .u-2\/12\@from-large {
    width: 16.6666666667%;
  }
}
@media (min-width: 700px) {
  .u-3\/12\@from-small {
    width: 25%;
  }
}
@media (min-width: 700px) {
  .u-4\/12\@from-small {
    width: 33.3333333333%;
  }
}
@media (min-width: 1000px) {
  .u-5\/12\@from-medium {
    width: 41.6666666667%;
  }
}
@media (min-width: 1280px) {
  .u-5\/12\@from-large {
    width: 41.6666666667%;
  }
}
@media (min-width: 1280px) {
  .u-7\/12\@from-large {
    width: 58.3333333333%;
  }
}
@media (min-width: 1280px) {
  .u-4\/12\@from-large {
    width: 33.3333333333%;
  }
}
@media (min-width: 1280px) {
  .u-11\/12\@from-large {
    width: 91.6666666667%;
  }
}
@media (min-width: 1400px) {
  .u-1\/4\@from-big {
    width: 25%;
  }
}
header {
  z-index: 999 !important;
}

.c-header_wrap {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.c-header_wrap a, .c-header_wrap a:hover {
  color: var(--font-color-light);
}

.c-header_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.c-header-font_title_inner {
  text-align: left;
  color: var(--font-color-inverse);
}

@media (min-width: 1000px) {
  .c-header {
    padding: 1.875rem 0;
  }
}
.c-header {
  top: 0;
  right: 0;
  left: 0;
  font-weight: 200;
  font-variation-settings: "wght" 200;
  color: #fff;
  /* transition: color 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  pointer-events: none !important; */
}

.c-header {
  background-color: #080D27;
}

@media (min-width: 700px) {
  .c-header-font_wrap {
    padding-bottom: 1.875rem;
  }
}
.c-header-font_wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 100px;
}

@media (min-width: 700px) {
  .c-header-font_wrap.portfolio {
    height: 90%;
    padding-bottom: 50px;
  }
  .c-header-font_wrap.portfolio .c-header-font_title_inner {
    margin-top: 100px;
  }
}
.c-header-font_wrap.portfolio .c-header-font_title_inner {
  margin-bottom: 50px;
}

.c-header_nav_hamburger {
  width: 50px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  transition: 0.5s;
  z-index: 10;
}
.c-header_nav_hamburger.rotate {
  position: absolute;
  right: 15px;
  top: -2px;
}

.c-header_nav_hamburger:hover {
  cursor: pointer;
}

.display-nav-down {
  top: 0px;
  transition: 0.3s;
  opacity: 1;
  background-color: var(--bg-color-primary);
}
.display-nav-down .c-header_wrap a, .display-nav-down .c-header_nav p, .display-nav-down p.dropdown-text, .display-nav-down p.dropdown-text.active {
  color: var(--font-color-dark);
}
.display-nav-down .menu-line1, .display-nav-down .menu-line2 {
  background: var(--font-color-dark);
}

.c-header_nav p,
p.dropdown-text {
  color: var(--font-color-inverse);
  font-weight: 200;
}
.c-header_nav p:hover,
p.dropdown-text:hover {
  color: var(--font-color-inverse);
}

nav {
  position: fixed;
  top: -48px;
  width: 100%;
  height: 48px;
  transition: 0.3s;
  opacity: 0;
  z-index: 3;
  display: flex;
}

@media (min-width: 700px) {
  nav {
    opacity: 0;
  }
}
.c-header-font_wrap.portfolio .c-header-font_title_inner {
  margin-bottom: 50px;
  text-align: center;
}

@media (max-width: 450px) {
  .c-header_nav_hamburger.mobile {
    display: flex;
  }
  .c-header_nav.tablet {
    display: none;
  }
}
@media (min-width: 451px) {
  .c-header_nav_hamburger.mobile {
    display: none;
  }
  .c-header_nav.tablet {
    display: flex;
  }
}
@media (min-width: 700px) {
  .c-header_nav_hamburger.mobile {
    display: none;
  }
  .c-header_nav_hamburger.compressed {
    display: none;
  }
  .c-header_nav_hamburger {
    display: flex;
  }
  .nav {
    display: flex;
  }
}
@media (min-width: 700px) {
  header {
    height: 108px;
    padding: 40px 0px;
  }
  .nav-desktop {
    display: block;
  }
}
.nav {
  justify-content: flex-end;
  gap: 20px;
}

.arrow {
  border: solid white;
  border-width: 0 1px 1px 0;
  position: absolute;
}

.dropdown-circle {
  border: 1px solid white;
  border-radius: 10px;
  height: 12px;
  width: 12px;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown:hover {
  cursor: pointer;
}
.dropdown:hover p.dropdown-text {
  color: var(--font-color-light);
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown:hover .arrow.down {
  transform: rotate(225deg);
  transition: all 0.4s;
  border: solid white;
  border-width: 0 1px 1px 0;
  margin-top: 3.5px;
}

.dropdown-text.active {
  font-weight: 700; /* bold */
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 200px;
  z-index: 1;
  padding-top: 10px;
  right: 0px;
}
.dropdown-content a {
  color: var(--font-color-inverse);
  padding: 15px 20px;
  text-decoration: none;
  display: block;
  background-color: var(--bg-color-secondary-darker);
}
.dropdown-content a:first-child {
  border-radius: 5px 5px 0px 0px;
}
.dropdown-content a:last-child {
  border-radius: 0px 0px 5px 5px;
}
.dropdown-content a:hover {
  color: #6eff7d;
  background-color: var(--bg-color-secondary-darker);
}

.display-nav-down .dropdown-content a {
  color: var(--font-color-dark);
  background-color: var(--project-1-light-variant-3);
}
.display-nav-down .dropdown-content a:hover {
  color: var(--project-1-primary);
  background-color: var(--project-1-light-variant-3);
}
.display-nav-down .dropdown:hover p.dropdown-text {
  color: var(--font-color-dark);
}
.display-nav-down .arrow.down, .display-nav-down .arrow, .display-nav-down .dropdown:hover .arrow.down {
  border: solid var(--font-color-dark);
  border-width: 0 1px 1px 0;
}
.display-nav-down .dropdown-circle {
  border: 1px solid var(--font-color-dark);
}

.arrow {
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 1.5px;
  margin: 2px 0px 0px 3px;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.menu-line1 {
  width: 80%;
  height: 2px;
  border-radius: 2px;
  background: var(--hamburger-menu-line-closed);
  transition: 0.6s;
}

.menu-line2 {
  width: 65%;
  height: 2px;
  border-radius: 2px;
  margin-top: 10px;
  background: var(--hamburger-menu-line-closed);
  transition: 0.6s;
}

.c-header_nav_hamburger:hover .menu-line1 {
  margin-top: -1px;
  transition: 0.3s ease-in-out;
}

.c-header_nav_hamburger:hover .menu-line2 {
  margin-top: 12px;
  transition: 0.3s ease-in-out;
}

.c-header_nav_hamburger.rotate:hover .menu-line1.rotate1 {
  margin-top: 0px;
}

.c-header_nav_hamburger.rotate:hover .menu-line2.rotate2 {
  margin-top: 10px;
}

.rotate {
  transform: rotateZ(180deg);
}

.rotate1 {
  background: var(--font-color-light);
  transform: rotateZ(45deg);
  width: 60%;
}

.rotate2 {
  background: var(--font-color-light);
  width: 60%;
  transform: translate(0, -0.8rem) rotateZ(-45deg);
}

.transform {
  transform: translate(0, 0) !important;
}

.nav-hamburger-menu-expanded {
  position: fixed;
  top: 0;
  left: 0;
  padding: 50px 0px;
  background: var(--bg-color-primary);
  width: 100%;
  transition: 1s;
  transition-delay: 0.1s;
  transform: translate(0, -101%);
  border-radius: 0px;
  overflow: scroll;
  z-index: 2;
}
.nav-hamburger-menu-expanded h3,
.nav-hamburger-menu-expanded h4,
.nav-hamburger-menu-expanded p {
  color: var(--font-color-dark);
}
.nav-hamburger-menu-expanded h4 {
  font-size: 20px;
}
.nav-hamburger-menu-expanded h3 {
  margin-top: 10px;
  margin-bottom: 20px;
}

.nav-hamburger-project-list-item {
  margin-bottom: 0px;
  padding: 8px 0px 8px 20px;
}
.nav-hamburger-project-list-item:hover {
  background-color: var(--bg-color-secondary);
}

@media (max-width: 699px) {
  .c-header-font_wrap.portfolio {
    height: 100%;
    margin-top: 50px;
  }
  .c-header-font_wrap {
    padding-bottom: 10px;
  }
  .portfolio .hi-text-container {
    height: 100%;
  }
  .c-header-font_wrap.portfolio .c-header-font_title_inner {
    margin-top: 50px;
  }
  nav {
    opacity: 1;
    top: 0px;
    background-color: var(--bg-color);
    display: flex;
    height: 60px;
  }
  .nav-hamburger-menu-expanded {
    height: 100vh;
  }
  header {
    height: 60px;
    padding: 10px 0px;
  }
  .nav-desktop {
    display: none;
  }
  .in-touch {
    display: none;
  }
  .c-header_nav_hamburger {
    height: 60px;
    width: 45px;
  }
  .nav-hamburger-project-list-item:hover {
    background-color: var(--project-1-light-variant-3);
  }
}
.theme-dark {
  --bg-color-primary: white;
  --bg-color-secondary: #080D27;
  --bg-color-secondary-darker: #06091f;
  --font-color-dark: #001B81;
  --font-color-light: #FFFFFF;
  --font-color-grey: #c2c6da;
  --border-color: #dddddd;
  --border-radius-basic: 10px;
  --home-shape-animation-color-1: #913197;
  --home-shape-animation-color-2: var(--bg-color-secondary);
  --about-1-primary: rgb(250, 223, 251);
  --about-2-primary: #f9dc80;
  --project-1-primary: #673bb7;
  --project-1-light-variant-1: #FFFBE0;
  --project-1-light-variant-2: #E7F6FF;
  --project-1-light-variant-3: #F3F3F3;
  --project-1-light-variant-4: #E7E3ED;
  --project-2-primary: #e0e8f8;
  --project-2-bright-variant-1: #5066e6;
  --project-2-light-variant-1: #ffefe4;
  --project-2-light-variant-2: #ebecf4;
  --project-3-primary: #4F2F7D;
  --project-3-light-variant-1: #DBE9DA;
  --bg-color-hamburger-menu: #ffffff;
  --hamburger-menu-line-closed: #ffffff;
  --hamburger-menu-line-expanded: #000000;
  --font-color-hamburger-expanded: #000000;
  --bg-color-nav-dropdown: var(--bg-color-light);
  --bg-color-nav-dropdown-hover: var(--brand-color-primary);
}

.password-page input {
  height: 40px;
  border-radius: 5px;
  border: 0px;
  flex: 1 1 auto;
  padding: 10px;
}

.password-page form {
  width: 320px;
}

.password-input {
  width: 100%;
  display: flex;
}

.password-container {
  height: calc(100% - 120px);
  width: 100%;
}

.password-page button {
  background-color: var(--home-shape-animation-color-1);
  border: 0px;
  height: 40px;
  border-radius: 5px;
  padding: 5px 20px;
  margin-left: 5px;
  color: white;
}

.password-page button:hover {
  background-color: var(--brand-color-primary-dark);
  cursor: pointer;
}

p.incorrect-password {
  color: rgb(230, 67, 67);
}

body.password-page {
  background-color: var(--bg-color-secondary);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px; /* ruimte tussen de containers */
  width: 100%;
}
.skills-grid .container-skills {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: unset;
  background-color: var(--project-1-light-variant-3);
  border-radius: var(--border-radius-basic);
  padding: 20px;
  box-sizing: border-box;
}
.skills-grid .container-skills p {
  padding-top: 10px;
}
.skills-grid .container-skills .skill-img {
  height: auto;
}

.image-container-about {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-text-container {
  border-radius: var(--border-radius-basic) 0 0 var(--border-radius-basic);
  padding: 50px;
  height: 100%;
}

.about-img-container {
  border-radius: 0 var(--border-radius-basic) var(--border-radius-basic) 0;
}

/* === About me information === */
.about-me-information {
  display: flex;
  flex-direction: row;
}

@media (max-width: 699px) {
  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    display: inline-flex;
    flex-wrap: nowrap;
    overflow: scroll;
    gap: 10px;
    margin-left: -1.5625rem;
    margin-right: -1.5625rem;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
    width: calc(100% + 1.5625rem + 1.5625rem);
  }
  .skills-grid .container-skills {
    padding: 15px 20px;
  }
  .skills-grid .container-skills .p, .skills-grid .container-skills p {
    padding-top: 5px;
  }
  .skills-grid .skill-img {
    width: 40px;
  }
  .about-text-container {
    border-radius: 0;
    padding: 2.2rem 1.5625rem;
    height: unset;
  }
  .about-pink-container img {
    border-radius: 0px;
  }
}
@media (min-width: 700px) {
  .skills-grid .skill-img {
    width: 50px;
  }
}
body,
html {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color-primary);
}

body.home {
  background-color: var(--bg-color-secondary);
}
body.home .c-header {
  background-color: transparent;
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.border-bottom {
  border-bottom: 1px solid #dddddd;
}

.text-brand-quinary {
  color: var(--brand-color-quinary) !important;
}

.border-radius-basic {
  border-radius: 15px !important;
}

.circle {
  width: 22px;
  height: 22px;
  opacity: 1;
  border-radius: 30px;
  background-color: var(--project-1-light-variant-3);
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.circle img {
  height: 12px;
  width: auto;
}

.c-section-divider-title {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.home .recent-work {
  background-color: transparent;
}

body.home .recent-work.over {
  background-color: var(--bg-color-primary);
  margin-top: 0px;
  margin-bottom: 0px;
  padding-bottom: 120px;
}

body.home .recent-work.contact {
  background-color: var(--project-1-light-variant-3);
  margin-top: -20px;
  margin-bottom: 0px;
  padding-bottom: 120px;
}

.recent-work {
  background-color: var(--bg-color-primary);
  margin-top: 500px;
  z-index: 5;
  border-radius: 15px 15px 0px 0px;
  padding-top: 80px;
}

.project .container-image {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: 10px;
  padding: 0px 40px;
  overflow: hidden;
}

.full-screen .project .container-image {
  border-radius: 0px;
}

.project.ps .container-image {
  align-items: flex-start;
  padding: 40px 40px;
}

.project.no-padding .container-image {
  padding: 0px;
}

.project .container-image {
  align-items: flex-start;
  padding: 40px 40px;
}

.project.fun .container-image.small {
  height: 400px;
}

body.portfolio .project .container-image {
  align-items: flex-start;
  padding: 40px 0px;
}

.project .container-image:hover {
  cursor: pointer;
}

.portfolio .project .container-image:hover {
  cursor: unset;
}

@media (min-width: 700px) {
  .project {
    margin-bottom: 50px;
  }
}
.img-hover-zoom img {
  transition: transform 0.5s ease-in;
}

.img-hover-zoom:hover img {
  transform: scale(1.01);
}

@keyframes imgHover {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.home-project-information {
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
  padding: 20px 0px;
  width: 85%;
}
.home-project-information p {
  color: white;
}

@media (min-width: 700px) {
  .home-project-information {
    justify-content: end;
    width: 85%;
  }
}
.project-tags {
  padding-top: 10px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
}
.project-tags .tag {
  border: 1px solid var(--font-color-grey);
  border-radius: var(--border-radius-basic);
  padding: 5px 10px;
  color: var(--font-color-grey);
}

.highlight-word {
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.animated-line,
.animated-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -75px;
  width: 175px;
  height: auto;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

.animated-icon.heart {
  width: 24px;
  height: 24px;
  bottom: -18px;
}

.animated-icon.code {
  width: 28px;
  height: 28px;
  bottom: -20px;
}

.highlight-word svg path {
  fill: #ff9df2 !important;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.home-shape-animation {
  position: absolute;
  right: 260px;
  top: calc(50% - 220px);
  transform: translate(0%, -50%);
  opacity: 0;
  animation: fade-in 4s forwards;
}

div.div1,
div.div2 {
  animation: rotate-all 2s 0 infinite linear alternate;
}

.div1 {
  width: 200px;
  height: 200px;
  background-image: linear-gradient(to bottom, var(--home-shape-animation-color-1), var(--home-shape-animation-color-2));
  position: relative;
  margin: auto;
  animation: square-to-circle 30s 0s infinite cubic-bezier(1, 0.015, 0.295, 1.225) alternate-reverse;
}

.div2 {
  width: 200px;
  height: 200px;
  background-image: linear-gradient(to bottom, var(--home-shape-animation-color-1), var(--home-shape-animation-color-2));
  position: relative;
  margin: auto;
  animation: square-to-circle2 30s 0.1s infinite cubic-bezier(1, 0.015, 0.295, 1.225) alternate-reverse;
}

#one {
  top: 350px;
}

#two {
  top: 350px;
  right: 200px;
}

#three {
  top: 350px;
}

#four {
  bottom: 50px;
  left: 200px;
}

@keyframes square-to-circle {
  0% {
    border-radius: 0 0 0 0;
    transform: rotate(45deg);
  }
  25% {
    border-radius: 50% 0 0 0;
    transform: rotate(135deg);
    background-image: linear-gradient(to bottom, var(--home-shape-animation-color-1), var(--home-shape-animation-color-2));
  }
  50% {
    border-radius: 50% 50% 0 0;
    transform: rotate(180deg);
    background-image: linear-gradient(to bottom, var(--home-shape-animation-color-1), var(--home-shape-animation-color-2));
  }
  75% {
    border-radius: 50% 50% 50% 0;
    transform: rotate(315deg);
    background-image: linear-gradient(to bottom, var(--home-shape-animation-color-1), var(--home-shape-animation-color-2));
  }
  100% {
    border-radius: 50%;
    transform: rotate(404deg);
    background-image: linear-gradient(to bottom, var(--home-shape-animation-color-1), var(--home-shape-animation-color-2));
  }
}
@keyframes square-to-circle2 {
  0% {
    border-radius: 0 0 0 0;
    transform: rotate(45deg);
  }
  25% {
    border-radius: 0 0 50% 0;
    transform: rotate(135deg);
    background-image: linear-gradient(to bottom, var(--home-shape-animation-color-1), var(--home-shape-animation-color-2));
  }
  50% {
    border-radius: 0 0 50% 50%;
    transform: rotate(180deg);
    background-image: linear-gradient(to bottom, var(--home-shape-animation-color-1), var(--home-shape-animation-color-2));
  }
  75% {
    border-radius: 50% 0 50% 50%;
    transform: rotate(315deg);
    background-image: linear-gradient(to bottom, var(--home-shape-animation-color-1), var(--home-shape-animation-color-2));
  }
  100% {
    border-radius: 50%;
    transform: rotate(404deg);
    background-image: linear-gradient(to bottom, var(--home-shape-animation-color-1), var(--home-shape-animation-color-2));
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
    /* Start op 0 */
  }
  100% {
    opacity: 1;
    /* Eindigt op 1 */
  }
}
.drop-in {
  animation: drop-in 1s ease 200ms backwards;
}

.drop-in-2 {
  animation: drop-in 1200ms ease 500ms backwards;
}

.drop-in-3 {
  animation: drop-in 1200ms ease 2500ms backwards;
}

.portfolio .drop-in-3 {
  animation: drop-in 1200ms ease 700ms backwards;
}

@keyframes drop-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fade-in-container {
  opacity: 0;
}

.fade-in-container {
  -webkit-transform: translateY(0px);
  transform: translateY(30px);
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}

.inView {
  opacity: 1;
  -webkit-transform: translateY(0px) rotate(0deg) translateZ(0);
  transform: translateY(0px) rotate(0deg) translateZ(0);
}

.full-screen.o-container {
  padding-right: 0px;
  padding-left: 0px;
}

.o-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1123px;
}
.o-container .small-container {
  max-width: 1020px;
  margin: 0 auto;
}

@media (min-width: 700px) and (max-width: 1279px) {
  .o-container {
    padding-right: 70px;
    padding-left: 70px;
  }
}
@media (min-width: 1280px) {
  .o-container {
    padding-right: 50px;
    padding-left: 50px;
  }
  .o-container.large {
    padding-right: 0px;
    padding-left: 0px;
    max-width: 1223px;
  }
}
.o-layout {
  padding: 0;
  list-style: none;
  font-size: 0;
  margin: 0;
}
.o-layout.-gutter {
  margin-left: -3.75rem;
}
.o-layout.-gutter > .o-layout_item {
  padding-left: 3.75rem;
}
.o-layout.-gutter > .o-layout_item.center {
  display: flex;
  align-items: center;
  padding-left: 0px;
  margin: 0 auto;
  width: 70%;
}

.portfolio .c-header .o-layout.-gutter > .o-layout_item {
  padding-left: 3.75rem;
}

.portfolio .c-header .o-layout.-gutter {
  margin-left: -3.75rem;
}

.o-layout_item {
  display: inline-block;
  vertical-align: top;
  font-size: 1rem;
  padding-left: 0;
}

.extra-column-spacing .o-layout.-gutter {
  margin-left: -6rem;
}

.extra-column-spacing .o-layout.-gutter > .o-layout_item {
  padding-left: 6rem;
}

.small-column-spacing .o-layout.-gutter {
  margin-left: -1.5rem;
}

.small-column-spacing .o-layout.-gutter > .o-layout_item {
  padding-left: 1.5rem;
}

@media (min-width: 700px) {
  .portfolio .hi-text-container {
    min-height: calc(100vh - 200px);
    height: 100%;
    display: flex;
    align-items: flex-end;
  }
}
.work-title-container {
  height: 55vh;
  display: flex;
  align-items: flex-end;
  text-align: center;
  justify-content: space-around;
}
.work-title-container.home {
  height: 70vh;
  align-items: center;
}

.bg-lines {
  height: 100vh;
  width: 100vw;
  display: inline-flex;
  position: fixed;
}

.bg-lines .container-line1,
.bg-lines .container-line2,
.bg-lines .container-line3,
.bg-lines .container-line4 {
  height: 100%;
  width: 33%;
  border-left: 1px solid white;
  opacity: 0.05;
}

.bg-lines .container-line4 {
  border-right: 1px solid white;
}

.day-pill {
  padding: 1px 15px;
  background-color: var(--brand-color-quinary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  height: 25px;
}

.bullet-list {
  margin-bottom: 0px;
}
.bullet-list li {
  height: unset;
  list-style-type: disc;
  margin-left: 10px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.image-grid.three-row {
  grid-template-columns: repeat(3, 1fr);
}

.image-grid img, .results-grid img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.results-grid img:nth-child(1) {
  grid-column: span 2;
}

.results-grid img:nth-child(4) {
  grid-column: span 2;
}

/* Eerste afbeelding full-width */
.results-grid.niso img:nth-child(1) {
  grid-column: span 2;
}

.results-grid.niso img:nth-child(4) {
  grid-column: span 1;
}

/* Vierde afbeelding full-width */
.results-grid.niso img:nth-child(6) {
  grid-column: span 2;
}

.results-grid.niso img:nth-child(7) {
  grid-column: span 2;
}

.work-top-container {
  background-color: var(--bg-color-secondary);
  padding-bottom: 300px;
}

.project-top-img {
  margin-top: -300px;
}

.fixed-container {
  position: fixed;
  width: 100%;
  top: 0px;
  padding-top: 101px;
  height: 500px;
}
.fixed-container.o-container {
  display: flex;
  align-items: flex-end;
  height: 100%;
  justify-content: flex-end;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* responsive */
  gap: 1rem; /* ruimte tussen posters */
}

.poster-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.poster-card img {
  border-radius: 3px;
}

.poster-card img {
  width: 100%;
  height: auto;
  display: block;
}

.poster-caption {
  padding: 8px 0px 12px 0px;
  font-size: 0.9rem;
  color: grey;
  line-height: 1.3rem;
}

.arrow-right {
  position: relative;
  display: inline-block;
  width: 60px; /* lengte van het streepje */
  height: 2px; /* dikte van de lijn */
  background: var(--font-color-dark);
}

.arrow-right::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
  width: 15px; /* grootte van de chevron */
  height: 15px;
  border-right: 2px solid var(--font-color-dark);
  border-top: 2px solid var(--font-color-dark);
}

/* Baseline */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: white;
  color: var(--font-color-dark);
  border: 1px solid var(--font-color-dark);
  border-radius: 30px;
  padding: 15px 20px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.btn-primary a {
  color: var(--font-color-dark);
}

/* Hover / active states */
.btn-primary:hover:not(:disabled) {
  background: var(--font-color-dark);
  transform: translateY(-1px);
  border: 1px solid var(--font-color-dark);
}
.btn-primary:hover:not(:disabled) a {
  color: white;
}

.container-tags {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius-basic);
  padding: 5px 10px;
}

.icon-container {
  background-color: var(--bg-color-icon-container);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.icon-research,
.icon-detail,
.icon-pixel {
  background-size: contain;
  width: 40px;
  height: 40px;
}

@media (min-width: 700px) {
  .icon-container {
    min-width: 80px;
    min-height: 80px;
    max-height: 80px;
    margin-right: 40px;
    background-color: var(--home-shape-animation-color-1);
  }
  .icon-container img {
    width: 40px;
  }
  .icon-research,
  .icon-detail,
  .icon-pixel {
    background-size: contain;
    width: 40px;
    height: 40px;
  }
}
.icon-container {
  background-color: var(--home-shape-animation-color-1);
}

.posters-text-intro {
  width: 70%;
  margin: 0 15%;
}

.poster-project-home {
  display: flex;
  gap: 25px;
  align-items: center;
}
.poster-project-home img {
  border-radius: 4px;
}

.arrow-circle {
  border: 2px solid var(--font-color-dark);
  border-radius: 50px;
  min-width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.arrow-circle .arrow-right {
  width: 40px;
}
.arrow-circle:hover {
  background-color: var(--font-color-dark);
}
.arrow-circle:hover .arrow-right {
  background: white !important;
}
.arrow-circle:hover .arrow-right::after {
  border-color: white;
}

@media (max-width: 699px) {
  .hide-mobile {
    display: none;
  }
  .posters-text-intro {
    width: 100%;
    margin: 0;
  }
  .icon-container {
    min-width: 55px;
    min-height: 55px;
    max-height: 55px;
    margin-right: 20px;
  }
  .icon-container img {
    width: 30px;
  }
  .work-title-container {
    margin-top: -1px;
    height: 315px;
    align-items: center;
  }
  .recent-work {
    border-radius: 15px 15px 0px 0px;
    padding-top: 50px;
    margin-top: -15px;
  }
  .arrow-right {
    width: 35px; /* lengte van het streepje */
  }
  .hi-text-container {
    height: calc(100vh - 170px);
  }
  .project .container-image {
    border-radius: 0;
  }
  .project .container-image.small {
    min-height: unset;
  }
  .project .container-image.large {
    min-height: unset;
    max-height: unset;
  }
  .project {
    margin-bottom: 30px;
  }
  .home-project-information {
    justify-content: start;
    width: 100%;
  }
  .o-container {
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
  .mobile-flex-wrap {
    flex-wrap: wrap-reverse;
    display: flex;
  }
  .mobile-radius-img {
    border-radius: 0px !important;
  }
  .mobile-radius-text {
    border-radius: 0px 0px 5px 5px !important;
  }
  .image-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .image-grid.three-row {
    grid-template-columns: repeat(1, 1fr);
  }
  .work-top-container {
    padding-bottom: 0px;
  }
  .work-top-container .margin-section-small-bottom {
    margin-bottom: 0px;
    padding-bottom: 30px;
  }
  .mobile-flex-direction-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .poster-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.8rem;
  }
  .work-title-container.home {
    height: 300px;
  }
  .recent-work.contact h1, .recent-work.contact .h1 {
    font-size: 23px;
    font-weight: 600;
  }
  .home-shape-animation {
    display: none;
  }
  .project-top-img {
    margin-top: -15px;
  }
}

/*# sourceMappingURL=main-new.css.map */
