@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap");
:root {
  --main1: #f4f2eb;
  --main2: #f4f2eb;
  --textLight: rgba(255, 255, 255, 0.7);
  --textDark: #000000;
  --hoverOnMain: rgb(160, 160, 160);
  --burgerColor: #000000;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Open+Sans', sans-serif;
}

*:focus {
  outline: 0;
}

body {
  width: 100%;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 22px;
  padding-bottom: 1em;
}

h3 {
  font-size: 16px;
  padding-bottom: 0.5em;
}

h4 {
  font-size: 14px;
  font-weight: bold;
  padding-top: 1em;
  padding-bottom: 0.5em;
}

p {
  font-size: 14px;
  padding-bottom: 0.5em;
}

a {
  text-decoration: none;
  color: var(--textDark);
  cursor: pointer;
}

a:hover {
  color: rgba(0, 0, 0, 0.5);
}

.menu {
  height: 100px;
  z-index: 2;
  color: var(--textDark);
  padding: 20px 40px 20px 40px;
  background-image: -webkit-gradient(linear, left top, right bottom, from(var(--main1)), to(var(--main2)));
  background-image: linear-gradient(to bottom right, var(--main1), var(--main2));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.logo-container {
  width: auto;
  max-width: 85%;
  height: 60px;
  display: inline-block;
  cursor: pointer;
}

.logo-container img {
  height: 60px;
  width: 100%;
  max-width: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}

.content {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  min-height: calc(100vh - 100px);
  padding: 1em 1em 1em 1em;
}

@media screen and (orientation: landscape) and (max-width: 1000px) {
  .content {
    height: auto;
  }
}

@media screen and (orientation: portrait) and (max-width: 999px) {
  .menu {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}

@media screen and (min-width: 1000px) {
  .logo-container {
    max-width: 20%;
  }
}

.page-title {
  display: block;
  width: 90%;
  margin: auto;
}

.page-title a, .page-title p {
  display: inline-block;
  font-size: 0.7rem;
}

/*********************************************/
/* Index page
/*********************************************/
.startpage {
  height: calc(100vh - 100px);
}

@media screen and (orientation: landscape) and (max-width: 1000px) {
  .startpage {
    height: auto;
  }
}

/*.bgimage {
    background-image: url("/images/background1.jpg");
    background-position: top;
    background-repeat: no-repeat;
    background-size: auto 100vh;
    min-height: calc(100vh - 100px);
    padding: 2em 1em 2em 1em;
}
@media screen and (orientation: landscape){
    .bgimage {
        background-size: cover;
    }
}*/
.background-container {
  padding: 0;
}

.background-container .background-slides {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.background-container .background-slides img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Slide in background animation */
.background-slide-in {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-animation-name: bgslide-in;
  -webkit-animation-delay: 0ms;
  -webkit-animation-timing-function: linear;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-fill-mode: forwards;
  animation-name: bgslide-in;
  animation-delay: 0ms;
  animation-timing-function: linear;
  animation-duration: 1000ms;
  animation-fill-mode: forwards;
}

.background-slide-out {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-animation-name: bgslide-out;
  -webkit-animation-delay: 0ms;
  -webkit-animation-timing-function: linear;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-fill-mode: forwards;
  animation-name: bgslide-out;
  animation-delay: 0ms;
  animation-timing-function: linear;
  animation-duration: 1000ms;
  animation-fill-mode: forwards;
}

@-webkit-keyframes bgslide-in {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes bgslide-in {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes bgslide-out {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes bgslide-out {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

/* Fade-in background animation */
.background-fade-in {
  opacity: 0;
  -webkit-animation-name: bgfade-in;
  -webkit-animation-delay: 0ms;
  -webkit-animation-timing-function: linear;
  -webkit-animation-duration: 1500ms;
  -webkit-animation-fill-mode: forwards;
  animation-name: bgfade-in;
  animation-delay: 0ms;
  animation-timing-function: linear;
  animation-duration: 1500ms;
  animation-fill-mode: forwards;
}

.background-fade-out {
  opacity: 1;
  -webkit-animation-name: bgfade-out;
  -webkit-animation-delay: 0ms;
  -webkit-animation-timing-function: linear;
  -webkit-animation-duration: 1500ms;
  -webkit-animation-fill-mode: forwards;
  animation-name: bgfade-out;
  animation-delay: 0ms;
  animation-timing-function: linear;
  animation-duration: 1500ms;
  animation-fill-mode: forwards;
}

@-webkit-keyframes bgfade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgfade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes bgfade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes bgfade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*********************************************/
/* Generic cards
/*********************************************/
.text-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
  margin: 20px auto 20px auto;
  background-color: white;
  /* border: 1px solid black;
    border-radius: 5px;
    box-shadow: 2px 2px 5px 3px rgba(255, 255, 255, 0.3); */
  border-radius: 0.5em;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.text-card .text-card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  background-image: -webkit-gradient(linear, left top, right bottom, from(var(--main1)), to(var(--main2)));
  background-image: linear-gradient(to bottom right, var(--main1), var(--main2));
  color: var(--textDark);
  width: 100%;
  padding: 1em 1em 1em 1em;
}

.text-card .text-card-title .align-right {
  margin-left: auto;
}

.text-card .text-card-content {
  padding: 1em 1em 1em 1em;
}

.text-card .text-card-content h3, .text-card .text-card-content .small {
  display: inline-block;
}

.text-card h3 {
  padding: 0;
}

.text-card-no-border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
  margin: 20px auto 20px auto;
  overflow: hidden;
}

.expandable {
  height: auto;
}

.expandable:hover {
  opacity: 0.9;
  cursor: pointer;
}

.expandable button {
  display: inline-block;
  margin: 0;
  padding: 0;
  height: 1.5em;
  line-height: 1.6em;
  font-size: 16px;
  width: 2em;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background-image: none;
}

.expandable button:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 0.7;
}

.expanded {
  height: auto;
}

.content-hidden {
  display: none;
}

.image-card-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.image-card-container .image-card {
  border-radius: 0.5em;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 150px;
  height: 250px;
  overflow: hidden;
  text-align: center;
  margin: 0.5em;
}

.image-card-container .image-card img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-card-container .image-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--textLight);
  padding: 1em;
}

/*********************************************/
/* About card
/*********************************************/
.about-card-container {
  width: 90%;
  margin: 20px auto 20px auto;
}

.about-card {
  border-radius: 0.5em;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-card .image-container {
  width: 50%;
  padding: 0;
  overflow: hidden;
}

.about-card .image-container img {
  padding: 1em;
  width: 100%;
  height: 450px;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-card .story {
  width: 50%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  padding: 1em;
}

.about-card .story h3 {
  padding-bottom: 1em;
}

.about-card .education {
  padding: 1em;
}

.about-card .education ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: circle;
  list-style-position: outside;
  padding: 0 0 0 1em;
}

.about-card .education ul li {
  width: 33%;
  margin: 0;
  padding: 0.5em 0.5em 0.5em 0;
}

@media screen and (orientation: portrait) and (max-width: 500px) {
  .about-card {
    border-radius: 0.5em;
    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about-card .image-container {
    width: 100%;
    padding: 0;
    overflow: hidden;
  }
  .about-card .image-container img {
    padding: 0.5em;
    width: 100%;
    height: 300px;
  }
  .about-card .story {
    width: 100%;
  }
  .about-card .education {
    padding: 1em;
  }
  .about-card .education ul li {
    width: 100%;
  }
}

/*********************************************/
/* Button
/*********************************************/
button {
  display: block;
  border: none;
  width: 80%;
  max-width: 300px;
  margin: 1rem auto 1rem auto;
  border-radius: 0.5em;
  font-size: 20px;
  line-height: 40px;
  color: var(--textDark);
  background-image: -webkit-gradient(linear, left top, right bottom, from(var(--main1)), to(var(--main2)));
  background-image: linear-gradient(to bottom right, var(--main1), var(--main2));
  -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

button:hover {
  -webkit-box-shadow: inset 3px 3px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: inset 3px 3px 5px 0px rgba(0, 0, 0, 0.2);
}

button.small {
  width: auto;
  margin: 0 0 0 1em;
  padding: 0 1em 0 1em;
  font-size: 1em;
  line-height: 2em;
}

.text-slide-container {
  content: "";
  height: 40vh;
  width: 80%;
  margin: 1rem auto 1em auto;
}

/*********************************************/
/* Footer
/*********************************************/
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: auto;
  color: var(--textDark);
  background-image: -webkit-gradient(linear, left top, right bottom, from(var(--main1)), to(var(--main2)));
  background-image: linear-gradient(to bottom right, var(--main1), var(--main2));
}

.footer a {
  color: var(--textDark);
}

.footer a:hover {
  color: var(--hoverOnMain);
}

.footer-content {
  width: 100%;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 1em;
}

.footer-flex {
  /* border: 1px solid red; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-flex div {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  /* border: 1px solid red; */
  padding: 1.5em;
  text-align: left;
}

div.footer-center-cont {
  text-align: center;
}

.footer-flex img:hover {
  opacity: 0.5;
}

/*********************************************/
/* Breadcrumb
/*********************************************/
ul.breadcrumb {
  padding: none;
  list-style: none;
}

ul.breadcrumb li {
  display: inline;
  font-size: 0.7rem;
  color: grey;
}

ul.breadcrumb li + li::before {
  color: grey;
  content: "> ";
}

ul.breadcrumb a {
  color: grey;
}

ul.breadcrumb a:hover {
  text-decoration: underline;
}

/*********************************************/
/* GDPR
/*********************************************/
.gdpr-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0 -3px 5px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 -3px 5px 2px rgba(0, 0, 0, 0.2);
  background-color: white;
  padding: 0.5em;
}

.gdpr-popup a {
  text-decoration: underline;
}

.gdpr-popup button {
  width: auto;
  display: inline-block;
  margin-left: 0.5em;
  margin-right: 0.5em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.gdpr-popup.hidden {
  display: none;
}

.gdpr-popup.show {
  -webkit-animation: slide-up-gdpr 800ms ease-in 1800ms forwards;
          animation: slide-up-gdpr 800ms ease-in 1800ms forwards;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.gdpr-button-container {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@-webkit-keyframes slide-up-gdpr {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-up-gdpr {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

/*********************************************/
/* Switch button
/*********************************************/
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #00b400;
}

input:focus + .slider {
  -webkit-box-shadow: 0 0 1px #00b400;
          box-shadow: 0 0 1px #00b400;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  transform: translateX(13px);
}

/*********************************************/
/* Switch button
/*********************************************/
.flex-left-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-left-item {
  min-width: 50%;
  white-space: nowrap;
  padding-bottom: 1em;
}

@media screen and (orientation: portrait) and (max-width: 500px) {
  .flex-left-item {
    min-width: 100%;
  }
}
/*# sourceMappingURL=styles.css.map */