/* GLOBAL */

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Ubuntu", "system-ui", sans-serif;
  font-size: 14px;
  color: #000000;
  background-color: #ffffff;
  font-weight: 200;
}

* {
  box-sizing: border-box;
}

a,
a:visited {
  text-decoration: none;
  color: #000;
  padding: 2px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

a:hover {
  color: #000;
  border-bottom: 1px solid #000;
}

.section--black a,
.section--black a:visited {
  color: #fff;
}

.section--black a:hover {
  border-bottom: 1px solid #fff;
}

.section--red a,
.section--red a:visited {
  color: #fff;
}

.section--red a:hover {
  border-bottom: 1px solid #fff;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.column {
  padding: 1.2em 1.2em;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  flex-basis: calc(960px * 999 - 100% * 999);
}

.row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  /* padding-left: 30px;
  padding-right: 30px; */
  max-width: 1000px;
  margin: 0 auto;
  gap: 20px;
}

.section--center .row {
  max-width: 900px;
}

.row > .row {
  padding: 0;
}

.row > * {
  flex-basis: 100%;
  flex-grow: 1;
}

.-small {
  max-width: 760px;
}
.-large {
  max-width: 1380px;
}
.-no-gap {
  gap: 0 !important;
}
.-no-pad {
  padding: 0;
}

.col-3 {
  flex-basis: calc(25% - 20px);
}
.col-4 {
  flex-basis: calc(33.3333% - 20px);
}
.col-6 {
  flex-basis: calc(50% - 20px);
}
.col-8 {
  flex-basis: calc(66.6666% - 20px);
}
.col-9 {
  flex-basis: calc(75% - 20px);
}

@media (min-width: 768px) {
  .row {
    gap: 40px;
  }
  .col-3-md {
    flex-basis: calc(25% - 30px);
  }
  .col-4-md {
    flex-basis: calc(33.3333% - 30px);
  }
  .col-6-md {
    flex-basis: calc(50% - 30px);
  }
  .col-8-md {
    flex-basis: calc(66.6666% - 30px);
  }
  .col-9-md {
    flex-basis: calc(75% - 30px);
  }
}
@media (min-width: 1180px) {
  .row {
    gap: 40px;
  }
  .col-3-lg {
    flex-basis: calc(25% - 40px);
  }
  .col-4-lg {
    flex-basis: calc(33.3333% - 40px);
  }
  .col-6-lg {
    flex-basis: calc(50% - 40px);
  }
  .col-8-lg {
    flex-basis: calc(66.6666% - 40px);
  }
  .col-9-lg {
    flex-basis: calc(75% - 40px);
  }
}

.image-and-text {
  /* margin: 20px 0; */
  /* text-align: center; */
}
.image-and-text:first-child {
  /* margin-top: 0 !important; */
}
.image-and-text:last-child {
  /* margin-bottom: 0 !important; */
}
.image-and-text .shadow {
  /* width: 70vw; */
  max-width: 520px;
}
.image-and-text h3 {
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .image-and-text .shadow {
    /* width: 40vw; */
  }
}

.image-and-text > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .image-and-text {
    text-align: left;
  }
}

@media (min-width: 768px) {
  .image-and-text {
    /* margin: 40px 0; */
  }
}

@media (min-width: 1180px) {
  .image-and-text {
    /* margin: 80px 0; */
  }
}

.card {
  border-radius: 3px;
  padding: 1.5em;
  text-align: left;
}

.card ul {
  list-style: none;
  padding-left: 0;
  margin: 1em 0;
  font-size: 0.9em;
}

.card h3 {
  font-weight: 500;
  font-size: 1.2em;
  margin: 0 0 1em 0;
}

.card--green {
  background-color: #7affcb;
  color: #000;
  max-width: 360px;
}

.card--light li {
  border-bottom: 1px solid #ffffff22;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
}

.card--light {
  color: #fff;
  /* border: 1px solid #fff; */
  max-width: 360px;
}

.card--black {
  background-color: #331346;
  color: #fff;
}

.contact {
  background: #e8e8e8;
  text-align: center;
}

.contact .content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact .button {
  margin-left: 0;
}

.contact img {
  max-width: 160px;
  min-width: 160px;
}

.contact .contact-name {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  line-height: 1.5em;
  position: relative;
  padding: 15px 0 20px;
}

.contact .contact-name strong {
  position: relative;
  border-bottom: 3px solid #331346;
  padding: 5px;
}

/* .contact .contact-name:after {
  position: absolute;
  width: 100px;
  height: 3px;
  background: #331346;
  content: "";
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
} */

.contact .contact-person {
  /* width: 100%; */
  flex: 1;
}

.contact .contact-description {
  flex: auto;
}

@media (min-width: 768px) {
  .contact .content {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
  .contact .button {
    margin: 15px 0 0 0;
  }
  .contact .contact-person {
    display: flex;
    gap: 20px;
  }
  .contact .contact-button {
    display: flex;
    justify-content: flex-end;
  }
  .contact .contact-name {
    /* width: 180px; */
    padding-bottom: 0;
    margin-bottom: 0;
    align-self: flex-end;
  }
  .contact .contact-name strong {
    border-top: 3px solid #331346;
    border-bottom: none;
  }

  .contact .contact-description {
    margin-bottom: 20px;
  }

  .contact * {
    text-align: left;
  }
}

@media (min-width: 1400px) {
  .section.contact {
    padding-top: 3.5em;
    padding-bottom: 3.5em;
  }
  .contact .shadow {
    box-shadow: -1vw 1vw 0 0.1vw #7affcb;
  }
  .contact .contact-person {
    gap: 30px;
  }
  /* .contact .contact-name {
    width: 240px;
  } */
}

.title {
  font-size: 3.3em;
  font-weight: 600;
}

.button-primary a,
.button-primary a:visited {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.button-primary a:hover {
  color: #000;
  border-bottom: 1px solid #000;
}

.button-secondary {
  background-color: #fff !important;
}

.button-secondary a,
.button-secondary a:visited {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.button-secondary a:hover {
  color: #000;
  border-bottom: 1px solid #000;
}

.button-inverted {
  background-color: #fff !important;
  border: 1px solid #000 !important;
}

h1,
.h1 {
  font-family: "PT Serif", serif;
  font-weight: 400;
  font-size: 1.7em;
  padding: 0;
  margin: 0 0 0.6em 0;
  font-weight: 300;
  line-height: 1.3em;
}

h2 {
  font-family: "PT Serif", serif;
  font-weight: 400;
  margin: 1em 0 0 0;
  font-size: 1.4em;
}

/* Section Titles already have a padding from the section */
h2.h1 {
  margin-top: 0 !important;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  h2.h1 {
    margin-bottom: 30px;
  }
}

h3 {
  font-weight: 400;
  margin: 0.5em 0 1em 0;
  font-size: 1.2em;
}

h4 {
  font-weight: 400;
  margin: 1.6em 0 0.5em 0;
  font-size: 1.1em;
}

h5 {
  font-weight: 400;
  font-size: 1em;
  margin: 0;
}

.counter-container {
  position: relative;
  width: 100%;
  /* padding: 40px; */
  background: #f4f4f4;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-around;
  gap: 50px;
}

.counter-title {
  color: black;
  background: #7affcb;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin: 0;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: bold;
}

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

.counter {
  line-height: 1em;
  font-size: 3em;
  font-weight: bold;
}

@media screen and (min-width: 1024px) {
  .counter-container {
    /* margin-top: 60px; */
    flex-direction: row;
  }
  .counter-title {
    left: 15px;
    transform: translateY(-50%);
  }
}

/* BUTTONS */
.button {
  display: inline-block;
  background-color: #7affcb;
  min-width: fit-content;
  height: fit-content;
  padding: 16px 28px 16px 28px;
  color: #000000;
  border: none;
  border-radius: 999px;
  font-size: 1em;
  margin: 10px 20px 10px 20px;
  text-align: center;
  transition:
    padding 0.2s ease,
    margin-right 0.2s ease;
}

.button:after {
  content: "→";
  margin-left: 5px;
  opacity: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  position: absolute;
}

.button:hover,
.button:hover a {
  border: none;
}

.button:hover {
  padding: 16px 45px 16px 25px;
  margin-right: 6px;
}

.button:hover:after {
  opacity: 1;
  transform: translateX(3px);
}

.button-bg {
  background: none;
  border: 2px solid #fff;
}

/*
  a.button,
  a.button:visited {
    color: #331346;
  }

  a.button-bg,
  a.button-bg:visited {
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
  }
*/

/* HEADER */
.header {
  position: relative;
  max-height: 90vh;
}

.logo {
  position: absolute;
  top: 0;
}

.logo img {
  /*height: 5vw;
  margin: 3vw;*/
}

/* NAV */
.navbar {
  height: 70px;
  background-color: #ffffff00;
  width: 100%;
  padding: 0.5rem;
  font-size: 20px !important;
  position: fixed;
  z-index: 100;
  top: 0;
}

.navbar .logo {
  position: relative;
  top: 14px;
  left: 25px;
  padding: 0;
  margin: 0;
  /* opacity: 0; */
}

.navbar .logo img {
  height: 25px;
  position: absolute;
  top: 0;
  left: 0;
}

.menu {
  position: absolute;
  top: 18px;
  right: 0;
  text-align: right;
  font-weight: 400;
  margin-right: 20px;
  display: flex;
}

.menu a,
.menu a:visited {
  color: #fff;
  font-weight: 500;
}

.menu a:hover {
  border-bottom-color: #fff;
}

.menuitem {
  margin: 0.5em;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
}

.navbar.navbar-alt,
.navbar.-expanded {
  opacity: 1;
  background-color: #ffffffff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
  transition:
    opacity 0.5s,
    background 0.5s,
    color 0.5s,
    box-shadow 0.5s;
}

.navbar.navbar-alt #burger-icon path,
.navbar.-expanded #burger-icon path {
  fill: #000;
}

.navbar #logo-black {
  opacity: 0;
}

.navbar.navbar-alt #logo-white,
.navbar.-expanded #logo-white {
  opacity: 0;
}

.navbar.navbar-alt #logo-black,
.navbar.-expanded #logo-black {
  opacity: 1;
}

.navbar.navbar-alt .menu a,
.navbar.navbar-alt .menu a:visited,
.navbar.-expanded .menu a,
.navbar.-expanded .menu a:visited {
  color: #000;
}
.navbar.navbar-alt .menu a:hover,
.navbar.-expanded .menu a:hover {
  border-bottom-color: #000;
}

.menu #burger-icon {
  background: none;
  border: none;
}

#main-nav {
  transition: opacity 0.5s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  width: 0;
  height: 0;
}

.navbar.-expanded #main-nav {
  display: flex;
  flex-direction: column;
  height: calc(100vw - 70px);
  width: 100vw;
  top: 51px;
  background: white;
  position: absolute;
  right: -20px;
  justify-content: center;
  align-items: center;
  opacity: 1;
  pointer-events: initial;
  visibility: visible;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  justify-content: center;
  border-bottom: 6px solid #7affcb;
}

@media (min-width: 768px) {
  .menu #burger-icon {
    display: none;
  }
  #main-nav {
    visibility: visible;
    pointer-events: initial;
    display: flex;
    align-items: center;
    opacity: 1;
    height: auto;
    width: auto;
  }
}

/* BREAKPOINTS */
@media (min-width: 544px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-weight: 200;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  body {
    font-size: 18px;
  }
  .header {
    overflow: hidden;
  }
}

.content-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.content {
  margin: auto auto;
  max-width: 1000px;
  padding-left: 30px;
  padding-right: 30px;
  line-height: 1.5em;
}

.section.content {
  padding-left: 30px;
  padding-right: 30px;
}

/* p {
  font-weight: 200;
  font-size: 1em;
  line-height: 1.5em;
} */

.section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 4em 0.25em;
}

@media screen and (min-width: 1024px) {
  .section {
    padding: 6em 0.25em;
  }

  .content {
    padding-left: 60px;
    padding-right: 60px;
  }

  .row,
  .section.content {
    /* padding-left: 60px; */
    /* padding-right: 60px; */
  }
}

.section--red {
  background-color: #f64a35;
  color: #fff;
}

.section--green {
  background-color: #7affcb;
  color: #000;
}

.section--center {
  align-items: center;
}

.section--black {
  background-color: #331346;
  color: #ffffff;
}

.box--red {
  background-color: #f64a35;
  border-radius: 3px;
  margin: 0 25px;
}
.box--circlelines {
  background: url("/img/bg-circlelines.svg") no-repeat center center;
  background-size: contain;
  padding: 20px;
}

@media (max-width: 1199px) {
  .card--green > div {
    text-align: center;
    margin: auto;
  }
}

.icon {
  height: 4em;
  margin: 2em 0 0 3.75em;
}

.sectioncontent {
  font-size: 0.75em;
  padding: 0;
  margin: 0;
}

#page-container {
  position: relative;
  min-height: 100vh;
}

#footer {
  bottom: 0;
  width: 100%;
  min-height: 110px;
  background-color: #331346;
}

#footer.has-cookie-banner {
  min-height: 110px;
  padding-bottom: 220px;
}

#footer h5 {
  border-bottom: 1px solid #ffffff1c;
  padding-bottom: 3px;
  margin-bottom: 6px;
  white-space: nowrap;
  min-width: fit-content;
  display: inline-block;
  width: 100%;
}

#footer ul li {
  /* width: fit-content; */
}

.more-btn {
  margin-bottom: 2em;
  font-weight: 400;
  box-shadow: 0 0.3em 0 0 #7affcb;
  background: linear-gradient(0deg, #7affcb 0%, #7affcb 100%);
  background-repeat: no-repeat;
  background-size: calc(100% - 30px) 44%;
  background-position: 0 122%;
  display: inline-block;
  transition: 0.2s cubic-bezier(0.13, -0.01, 0.17, 0.99) background-position;
  padding-left: 30px;
  position: relative;
  white-space: nowrap;
  border: none;
}
.more-btn::before {
  position: absolute;
  content: "→ ";
  transition: 0.2s cubic-bezier(0.13, -0.01, 0.17, 0.99) transform;
  left: 0;
}
.more-btn:hover {
  border: none;
  background-position-x: -25px;
}
.more-btn:hover:before {
  transform: translateX(7px);
}

/* FOOTER */
.footer {
  margin-top: 2em;
  font-weight: 300;
  /* font-size: 1rem; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 300;

  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .columns a {
  margin: 5px;
  padding: 1px;
}

#cookies-eu-banner {
  z-index: 999;
  position: fixed;
  bottom: 0;
  text-align: center;
  width: 100%;
}

#cookies-eu-banner-inner {
  margin: auto;
  box-shadow:
    0 3px 6px rgba(0, 0, 0, 0.16),
    0 3px 6px rgba(0, 0, 0, 0.23);
  position: relative;
  background: #fff;
  color: #000;
  padding: 10px;
  font-size: 0.9em;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5px 20px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 20px;
}

#cookies-eu-banner-text {
  display: inline-block;
}

@media (max-width: 800px) {
  #cookies-eu-banner-inner {
    width: 100%;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 10px;
  }
  #cookies-eu-banner-text {
    display: block;
    margin: 5px;
  }
}

#cookies-eu-banner .button {
  margin: 10px 5px;
}

.logo a:hover {
  border: none;
}

/*
#cookies-eu-accept,
#cookies-eu-reject {
  text-decoration: none;
  background: #222;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  padding: 4px 7px;
  margin: 2px 0;
  font-size: 13px;
  font-weight: bold;
  transition: background 0.07s, color 0.07s, border-color 0.07s;
}

#cookies-eu-accept:hover,
#cookies-eu-accept:focus {
  background: #fff;
  color: #222;
}


#cookies-eu-reject {
  background: none;
  font-weight: normal;
  color: #ccc;
  cursor: pointer;
  padding: 4px 7px;
  margin: 2px 0;
  border: 1px solid #666;
}
#cookies-eu-reject:hover,
#cookies-eu-reject:focus {
  border-color: #fff;
  background: #222;
  color: #fff;
}
*/

.shadow {
  /* width: 30vw; */
  box-shadow: -0.7em 0.7em 0 0.1em #7affcb;
  max-width: 100%;
  margin: 0 0 0.8em 0;
  width: 100%;
}
/* .shadow:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #331346dd;
  content: "";
  z-index: 2;
} */

h2.h1 {
  font-size: 2.2em;
  font-weight: bold;
  padding-left: 10px;
  padding-right: 10px;
  color: #331346;
  /* border-bottom: 3px solid #dedede; */
  box-shadow: 0 0.2em 0 0 #331346;
  background: linear-gradient(0deg, #331346 0%, #331346 100%);
  background-repeat: no-repeat;
  background-size: 82% 0.2em;
  padding-bottom: 0.3em;
  background-position: 0px 101%;
}

.section--black h2.h1 {
  color: white;
  box-shadow: 0 0.2em 0 0 #fff;
  background: linear-gradient(0deg, #fff 0%, #fff 20%);
  background-size: 82% 0.2em;
  background-repeat: no-repeat;
  background-position: 0px 101%;
}

.ml .row:nth-child(even) {
  flex-direction: row-reverse;
}

.test {
  box-shadow: 0 0.2em 0 0 #ffffff;
  background: linear-gradient(0deg, #ffffff 0%, #ffffff 100%);
  background-repeat: no-repeat;
  background-size: 82% 28%;
  padding-bottom: 0.3em;
  background-position: 0px 122%;
  padding-bottom: 0.3em;
}

.careers {
  width: 100%;
}

.careers ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.careers li {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
  position: relative;
}

.careers li:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.careers h3 {
  margin-top: 0.2em;
  margin-bottom: 0.3em;
}

.careers {
  font-size: 1.3em;
}

.careers li div {
  padding: 5px;
}

.careers li a {
  display: block;
  column-gap: 0.3125rem;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .careers li a {
    padding: 20px;
  }
}

.careers li a span {
  position: relative;
  display: block;
}

.careers li a span.job-title {
  display: block;
  padding-right: 50px;
  margin-top: 10px;
}

.careers li a:before {
  content: "";
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  height: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 0;
  transition: 0.2s cubic-bezier(0.13, -0.01, 0.17, 0.99) height;
}

.careers li .job-title:after {
  content: "→";
  padding-left: 1em;
  transition: 0.2s cubic-bezier(0.13, -0.01, 0.17, 0.99) transform;
  position: absolute;
  right: 0;
}

.careers li a:hover {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  color: #000;
  transition: 0.2s;
  border-radius: 2px;
}

.careers li a:hover .job-title:after {
  transform: translateX(7px);
}

.careers li a:hover:before {
  height: 100%;
}

/* #page-content.page-content-nav-visible {
  width: 100%;
  padding-bottom: 60px;
} */

#page-content.page-content-nav-visible > div:first-of-type {
  padding-top: 100px;
}

video {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.video-wrapper {
  width: 100%;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-wrapper:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #331346a8;
  content: "";
  z-index: 2;
}
.video-content-overlay {
  position: relative;
  z-index: 3;
}
.stage.video-wrapper .video-content-overlay {
  padding: 100px 20px;
}
