@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");
html, body, div, section, ul, ol, li, p, h1, h2, h3, h4, a {
  margin: 0;
  padding: 0;
}

html, body {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.5rem;
  color: #1B3D5E;
}

html, body {
  background-color: #fff;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

h2 {
  color: #F99D0B;
  font-size: 2.1rem;
  line-height: 2.5rem;
  margin-bottom: 30px;
}

.flex-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
}

.flex-column {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

section {
  margin-bottom: 50px;
  padding: 0 50px;
}

a.button {
  display: inline-block;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 8px 15px;
  background-color: #F99D0B;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 15px;
}

a.button:after {
  background: rgba(0, 0, 0, 0.08);
  content: "";
  height: 200px;
  left: -75px;
  position: absolute;
  top: -100px;
  transform: rotate(25deg);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  width: 0;
  z-index: -10;
}

a.button:hover:after {
  width: 140%;
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

a.button:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform-style: flat;
  transform: translate3d(-50%, -50%, 0);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  transition: width 0.3s ease, height 0.3s ease;
}

a.button:active:before {
  width: 200px;
  height: 200px;
}

header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  height: 65px;
}

header p {
  color: #fff;
  line-height: 30px;
  margin-right: 10px;
}

header p,
header img {
  float: left;
}

header img {
  height: 30px;
  width: auto;
  margin-top: -2px;
}

header a.button {
  float: right;
  margin: 0;
  font-weight: normal;
  background-color: #fff;
  height: 30px;
  color: inherit;
  border: 1.5px solid #1B3D5E;
  border-radius: 15px;
  line-height: 30px;
  padding: 5px 15px;
  font-size: 1rem;
}

header a.button span:after {
  content: "";
  display: inline-block;
  height: 1rem;
  width: 1rem;
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: right;
  vertical-align: middle;
  margin-left: 5px;
}

header a.button:after {
  background: #E8ECEF;
}

header a.button:before {
  background: rgba(27, 61, 94, 0.1);
  border-radius: 100%;
  transition: width 0.3s ease, height 0.3s ease;
}

header a.button:active:before {
  width: 200px;
  height: 200px;
}

section#intro {
  background-color: #2CB3ED;
  background-image: url("../images/pattern.svg");
  background-size: 120px;
  background-attachment: fixed;
  height: 650px;
  padding: 0;
}

section#intro .flex-column {
  box-sizing: border-box;
}

section#intro #logo {
  background-image: url("../images/cutout.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
  width: 50%;
  flex: 1;
  justify-content: center;
}

section#intro #logo div {
  width: 250px;
  height: 250px;
  border-radius: 300px;
  background-image: url("../images/placeholder-logo.svg");
  background-repeat: no-repeat;
  border: 5px solid #fff;
  border: 5px solid #fff;
  margin-left: 15%;
  margin-top: -20px;
  box-shadow: 8px 8px 15px 0px rgba(0, 0, 0, 0.25);
}

section#intro #title {
  background-color: #fff;
  flex: none;
  width: 50%;
  text-align: center;
  justify-content: center;
  margin-top: -5px;
}

section#intro #title > * {
  max-width: 80%;
  margin: 0 auto;
}

section#intro #title p {
  font-size: 1.5rem;
  line-height: 2rem;
}

section#intro #title h1 {
  color: #2CB3ED;
  font-weight: bold;
  font-size: 6rem;
  line-height: 6.2rem;
}

section#intro #title svg {
  height: 20px;
  margin: 10px auto 20px auto;
  fill: #F99D0B;
}

section#intro #title a.button {
  font-size: 1.7rem;
  padding: 12px 22px;
  margin-top: 20px;
}

section#intro #title a.button:hover:after {
  width: 160%;
  left: -130px;
}

section#intro .flex-row.actie {
  display: none;
}

section#donation-counter {
  background-color: #F99D0B;
  height: 250px;
  background-image: url("../images/clouds.svg");
  background-size: 180%;
  background-repeat: no-repeat;
  background-position: center bottom;
  color: #fff;
  font-size: 2.1rem;
  text-align: center;
  line-height: 2.5rem;
}

section#donation-counter #counter {
  color: #2CB3ED;
  font-size: 3.5rem;
  line-height: 3.8rem;
  font-weight: 600;
  margin: 10px auto;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

section#donation-counter #counter:before {
  position: absolute;
  top: -32px;
  left: -50px;
  content: "";
  background-image: url("../images/bow-top.svg");
  background-repeat: no-repeat;
  display: block;
  width: 120px;
  height: 70px;
  transform: rotate(-20deg);
  z-index: 200;
}

section#donation-counter #counter:after {
  position: absolute;
  top: 10px;
  left: -30px;
  content: "";
  background-image: url("../images/bow-bottom.svg");
  background-repeat: no-repeat;
  display: block;
  width: 100px;
  height: 70px;
  transform: rotate(-20deg);
}

section#donation-counter #counter span:not(:last-child) {
  background-color: #fff;
  display: inline-block;
  padding: 3px 5px;
  z-index: 100;
  position: relative;
  box-shadow: 3px 3px 8px 0px rgba(0, 0, 0, 0.4);
}

section#how-it-works .flex-row {
  max-width: 80%;
  margin: 0 auto;
}

section#how-it-works .flex-column {
  padding-top: 80px;
}

section#how-it-works .cell {
  background-color: #E8ECEF;
  padding: 30px;
  box-sizing: border-box;
  text-align: center;
  height: 100%;
  width: calc(100% - 25px);
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 8px 8px 10px 0px rgba(0, 0, 0, 0.15);
  font-size: 1.3rem;
  line-height: 1.6rem;
}

section#how-it-works .cell img {
  margin-top: -120px;
  width: auto;
  height: 180px;
  margin-bottom: 20px;
}

section#donation-form {
  background-color: #2CB3ED;
  background-image: url("../images/pattern.svg");
  background-size: 120px;
  background-attachment: fixed;
  min-height: 450px;
}

div.accordion {
  max-width: 80%;
  margin: 0 auto;
}

div.accordion .panel {
  margin-bottom: 20px;
}

div.accordion .panel:last-of-type {
  margin-bottom: 0;
}

div.accordion .panel h3, div.accordion .panel .content {
  padding: 15px 20px;
}

div.accordion .panel h3 {
  font-size: 1.2rem;
  cursor: pointer;
  border: 1px solid #1B3D5E;
  border-radius: 20px;
  transition: opacity 0.2s ease;
}

div.accordion .panel h3:hover {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

div.accordion .panel.open h3 {
  padding-bottom: 10px;
  border-radius: 20px 20px 0 0;
}

div.accordion .panel h3:before {
  content: "";
  display: inline-block;
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  height: 1.2rem;
  width: 1rem;
  vertical-align: middle;
  margin-right: 8px;
  background-position: center;
  background-size: 0.6rem;
}

div.accordion .panel.open h3:before {
  background-image: url("../images/arrow-down.svg");
  background-size: 1rem;
}

div.accordion .panel .content {
  display: none;
  border: 1px solid #1B3D5E;
  border-radius: 0 0 20px 20px;
  border-top: none;
  padding-top: 10px;
}

footer {
  background-color: #1B3D5E;
  color: #fff;
}

footer img.divider {
  width: 100vw;
  height: auto;
  margin-bottom: 80px;
}

footer img:not(.divider) {
  float: left;
  height: 1.2rem;
  width: auto;
  margin-right: 3px;
}

footer div {
  padding: 20px;
}