@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --blue: #373c8f;
  --yellow: #f9d649;
  --green: #62c8a2;
  --cyan: #8bd0e2;

  --background-color: #ffffff;
}

html {
  font-family: "lato--regular", Helvetica, Arial, sans-serif;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5em;
}

body {
  line-height: 1.5;
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
  color: var(--blue);
}

a {
  color: var(--green);
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 75rem;
}

.bold {
  font-weight: 600;
}

.italic {
  font-style: italic;
}

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

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

.h1 {
  font-size: 2rem;
  max-width: 60rem;
  margin: 2rem auto 1rem auto;
  text-align: center;
}

.h1 span {
  display: inline-block;
  position: relative;
}

.h1 span::before {
  display: block;
  content: "";
  background-color: var(--yellow);

  position: absolute;
  top: 10%;
  width: 100%;
  height: 80%;

  z-index: -1;

  transform: skew(-10deg) rotate(-1deg);
}

.h2 {
  max-width: 60rem;
  margin: 3rem auto 1rem auto;
}

a.btn {
  background: #373c8f;
  border-radius: 1.5rem;
  border: 0px;
  color: #fff;
  padding: 0.5rem 1.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  opacity: 1;
  line-height: 1.2;
  font-weight: 400;
  font-size: 1.125rem;
  -webkit-appearance: button;
  cursor: pointer;
}

a.btn:hover {
  color: black;
  background: #ffd600;
}

header {
  position: fixed;
  background: none;
  color: #ffffff;
  background-color: #8bd0e2;
  box-shadow: 0 1px 4px 0 rgba(20, 50, 61, 0.5);
  width: 100%;
  z-index: 9999;
}

header > .container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  box-sizing: border-box;
  align-content: space-between;
  padding: 10px;
  width: 100%;
}

header > .container > .branding {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

header > .container > .branding > .logo img {
  width: 4rem;
  height: 100%;
}

header > .container > .branding > .slogan {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

header > .container > .branding > .slogan > span {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-weight: 600;
  font-size: 1.5rem;
  padding-left: 1rem;
  color: #373c8f;
}

header > .container > .branding > .slogan > span.maak {
  align-items: start;
}

header > .container > .branding > .slogan > span.start {
  align-items: center;
}

header > .container > .branding > .slogan > span.speel {
  align-items: end;
}

header > .container > nav {
  flex-grow: 1;
  align-self: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

header > .container > nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0 10px;
}

header > .container > nav > ul > li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

header > .container > nav > ul > li > a {
  display: block;
}

main {
  margin: 0 auto;
  padding: 0 10px;
  padding-top: 7rem;
}

p {
  max-width: 38rem;
}

p + p {
  margin-top: 1rem;
}

.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.intro .intro__image {
  max-width: 16rem;
  height: auto;
}

.gallery {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1rem;

  padding: 0;
  list-style-type: none;

  margin: 1rem auto 1rem;

  flex-wrap: wrap;
}

.gallery li {
  position: relative;
}

.gallery img {
  position: relative;
  max-width: 16rem;
}

.gallery li::before {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 6px;
  top: 6px;
  background-color: var(--yellow);
}

.gallery li:first-child::before {
  background-color: var(--green);
}

.gallery li:last-child::before {
  background-color: var(--cyan);
}

.faq {
  max-width: 36rem;
  margin: 3rem auto 2rem auto;
}

.faq .h2 {
  margin: 0 auto 1rem auto;
  text-align: center;
}

.faq .faq__item {
  margin-bottom: 1rem;
}

.faq .faq__item + .faq__item {
  border-top: 1px dashed var(--green);
  padding-top: 1.5rem;
}

.faq .faq__item summary {
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
}

footer {
  margin-top: 2rem;
  border-top: 2px solid #f6f6f6;
}

.partners {
  padding: 30px 20px 20px 20px;
}

.partners {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0 10px;
  justify-content: center;
}

footer > .action-buttons {
  padding-bottom: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0 10px;
  justify-content: center;
}

footer > .bottom-footer {
  background: #323232;
  padding: 20px;
  text-align: center;
}

@media only screen and (max-width: 37.5rem) {
  header > .container > .branding > .slogan,
  header > .container > nav > ul {
    flex-direction: column;
  }

  header > .container > nav {
    align-self: flex-start;
  }

  header > .container > nav > ul {
    gap: 10px 0;
  }

  .text-center {
    text-align: left;
  }
}
