:root {
  --primary-blue: #093b6e;
  --secondary-blue: #0f5aa5;
  --tertiary-blue: #4a9cef;
  /* #2C8CED */
  --primary-green: #4cbb17;
  --secondary-green: #86f850;
  
  --color-warn: #d41204;

  --emphasis-grey: #6c6a6a;
  --subtle-grey: #c9c9c9;
  --background-color: white;

  --border-radius: 50px;
  --border-radius-small: 25px;
  --nav-height: 6rem;
}
html {
  background-color: white;
  overflow-x: hidden;
}
html,
body {
  box-sizing: content-box;
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  z-index: -2;
}
body {
  position: relative;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: bolder;
}
h1 {
  font-size: 5vw;
  line-height: 5vw;
}
h2 {
  font-size: 3.8rem;
  line-height: 4.5rem;
}
h3 {
  font-size: 2.6rem;
  line-height: 2.6rem;
  margin-bottom: 0.5em;
}
h4 {
  font-size: 1.25rem;
  line-height: 1.25rem;
}

li, p {
  font-size: 1.2rem;
}

em {
  color: var(--secondary-blue);
  font-style: normal;
}

a,
a:visited,
a:link {
  text-decoration: none;
  color: inherit;
  transition: ease all 0.25s;
}

header {
  overflow: hidden;
  position: relative;
}
header.allow-sticky {
  overflow: visible;
}

.signup-popup {
  display: none;
}

.signup-popup.visible {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-blue);
    z-index: 15;
    width: calc(100% - 2em);
    max-width: 500px;
    padding: 3em;
	padding-top:5em;
    border-radius: 15px;
    color: #fff;
    text-align: center;
}

.signup-popup  p{
	left:0;
	right:0;
	transform: translate(5%, -50%);
}

section {
  background-color: white;
  position: relative;
  max-width: 1400px;
  /* width: 100%; */
  margin: 5rem auto;
}
.menu-header-menu-container {
  width: 70%;
}
.glass #menu-header-menu > li:has(.sub-menu):hover::after  {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  left: -1em;
  top: -0.5em;
  padding: 1em;
}

nav {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  max-width: 1400px;
  height: var(--nav-height);
  display: flex;

  margin: auto;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
nav ul {
  padding: 0 10%;
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
nav ul li {
  position: relative;
  font-size:1em;
}
nav ul li a {
  z-index: 11;
}
nav .current-menu-item > a{
  color: var(--secondary-blue);
  font-weight: bold;
}
nav ul li a,
footer ul li a {
  position: relative;
}
nav ul li a::after,
footer ul li a::after {
  content: "";
  position: absolute;
  bottom: -0.15rem;
  left: 0;
  width: 0%;
  height: 1px;
  z-index: 1;
  transition: ease all 0.25s;
}
nav ul li a::after {
  background-color: black;
}
footer ul li a::after {
  background-color: white;
}
nav ul li a:hover {
  color: var(--tertiary-blue);
}
footer ul li a:hover::after,
nav ul li a:hover::after {
  width: 100%;
}
nav ul li a:hover::after {
  background-color: var(--tertiary-blue);
}

/* .home .glass {
  transform: translate(3%, 0%);
} */
button {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  height: 3.25rem;
  width: 11rem;
  min-width: fit-content;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--secondary-blue);
  color: white;
  filter: drop-shadow(-3px 3px 0px var(--tertiary-blue));
  transition: ease all 0.5s, border 0.1s;
}
button.fill:focus {
  border-width: 0.3rem;
  border-style: solid;
}


/* Class Styling */

.sub-menu {
  background-color: inherit;
  min-width: calc(100% + 2rem);
  width: max-content;
  display: none;
  position: absolute;
  background: #fff;
  flex-direction: column;
  padding: 1em;
  border-radius: 10px;
  line-height: 2.2em;
  margin-left: -1em;
  z-index: 1;
}

.solid .sub-menu {
  background-color: white;
}
.sub-menu ul {
  padding-inline-start: 0;
}

.contact-form {
  display: flex;
  flex-direction: row;
  gap: 5%;
  justify-content: space-between;
}

.note {
  background-color: white;
  border-radius: var(--border-radius-small);
  filter: drop-shadow(-3px 3px 0px var(--primary-green));
  padding: 2rem;
  margin: 2em 0;
  max-width: 20rem;
}
img ~ :where(h1,h2,h3) {
    margin-top: 1em;
}

.note p {
  font-size: 0.8em;
}

.nav-burger-btn {
  display: none;
  height: 2rem;
  width: auto;
  aspect-ratio: 1 / 1;
  background-image: url(Burger-Menue.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border-radius: 0;
  filter: none;
  margin-left: auto;
  margin-right: 2rem;
}
.nav-burger-btn:hover {
  filter: invert(1);
}

.logo-link {
  max-width: 33%;
  max-height: 90%;
}
.nav-logo {
  object-fit: contain;
  max-width: 100%;
}

.mask-blob {
  max-width: 50rem;
  max-height: 50rem;
  overflow: hidden;
  filter: drop-shadow(-5px 10px 0px var(--primary-green));
}
.mask-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.mask-blob.blob-01 img {
  mask-image: url(Mask-Blob-01.png);
}
.mask-blob.blob-02 img {
  mask-image: url(Mask-Blob-02.png);
}
.mask-blob.blob-03 img {
  mask-image: url(Mask-Blob-03.png);
}

/* Quote Bubble */
.quote-bubble {
  z-index: 1;
  width: fit-content;
  max-width: 80%;
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.5rem;
  border-radius: 40px;
  background-color: var(--background-color);
  filter: drop-shadow(-5px 5px 0px var(--primary-green));
}
.quote-bubble > div {
  margin-top: 0.5rem;
}

.quote-bubble p {
  margin-top: 0;
}

.header-quote {
    position: absolute; 
    bottom: 15vh; 
    right: 10vw;
}

.lone-quote .quote-bubble {
  max-width: 1000px;
  width: 100%;
  margin: auto;
}
.quote-mark {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  scale: -1 1;
  margin-top: 1rem;
}
.quote-text {
  color: var(--primary-blue);
  margin: 0;
  margin-bottom: 0.75rem;
  padding: 0;
  font-style: italic;
  font-weight: 500;
}
.quote-text p {
    font-size: 1.5rem;
}
.quote-signature {
  font-style: italic;
  color: var(--primary-blue);
  margin: 0;
  padding: 0;
}

nav.glass {
  position: absolute;
  background-color: none;
  background: none;
  transform: translate(-50%, 0%);
  left: 50%;
}
nav.solid {
  background-color: white;
  z-index: 2;
}

nav .nav-donate {
  position: relative;
  padding-left: 1.2rem;
}
nav .nav-donate::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  background: url(../Default-Images/heart.svg);
  background-size: 1.2rem 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  background-repeat: no-repeat;
  top: 33%;
}
/* .inline-icon {
  background: url(../Default-Images/heart.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
} */

/* Content Containers */
.image-track-section {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10rem;
  margin-top: 10rem;
  margin-bottom: 0;
}

.image-track-section h3 {
  margin-bottom: 0;
  font-style: italic;
  color: var(--primary-blue);
  font-size: 1.5rem;
}
.image-track-section h2 {
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}
.image-track-section h2 em {
  color: var(--primary-green);
}

.testimonials-section {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5rem;
  margin-top: 0;
}
.carousel-horisontal__testimonials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  margin: 0 3rem;
  overflow-x: auto;
}
.testimonials {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.testimonial {
  width: 50%;
}
.testimonial-text {
  text-align: center;
  font-size: 2rem;
}
.testimonial-signature {
  text-align: center;
  font-weight: bold;
}

.image-track {
  width: 100%;
  aspect-ratio: 3/1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-image: url(Dashed-track-long.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
}
.image-track img {
  position: relative;
  width: 15%;
  max-width: 10rem;
  aspect-ratio: 1/1;
  background-color: #4a9cef;
  mask-image: url(Mask-Blob-04.png);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  object-fit: cover;
  z-index: 1;
}
.image-track::before {
  content: "";
  display: block;
  width: 6.5%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
}
.image-track::after {
  content: "";
  display: block;
  width: 6.5%;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
}

.featured-section {
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.grid-horisontal {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  width: 100%;
  column-gap: 2rem;
  justify-items: center;
}
.grid-2x {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-evenly;
  gap: 5rem;
  row-gap: 1rem;
  width: 100%;
  padding: 0 8%;
}
.content-section {
  box-sizing: border-box;
  width: 100%;
  max-width: 1080px;
  margin: auto;
  padding: 3em 3rem;
}
.content-block {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  font-size: 1.2rem;
}

.content-block h3 {
  font-size: 2.4rem;
  line-height:2.4em;
}
.content-block h5 {
  font-size: 2rem;
  line-height:2em;
}
.content-block p {
  margin: 0.4rem;
}


.side-by-side {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.side-by-side .image {
  max-width: 40rem;
  aspect-ratio: 1/1;
  flex: 9;
}
.side-by-side .content-block {
  flex: 6;
}
.side-by-side :where(a, a:visited, a:link) {
    color: var(--secondary-blue) !important; 
    text-decoration: underline !important;
}
.news-block p:not(.news-author) {
    margin-bottom: 0.5rem;
}
.news-block p ~ p {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
.news-block li ~ li {
    margin-top: 0.75rem;
}
.news-signature p {
    margin: 0;
}
.side-by-side li ~ li {
    margin-top: 0.75rem;
}
.expandable {
  overflow: hidden;
  padding-bottom: 1.5rem;
  transition: ease all 0.5s;
}
.expandable details {
  position: relative;
}
.expandable details summary {
  list-style: none;
  margin: 0.4rem;
}
.expandable details summary::after {
  content: "Show More...";
  position: absolute;
  bottom: -1.5rem;
  left: 0;
  width: fit-content;
  color: var(--emphasis-grey);
  font-style: italic;
  cursor: pointer;
}

.expandable details[open] > summary::after {
  content: "Show Less...";
}

.expandable-toggle {
  color: var(--emphasis-grey);
  font-style: italic;
}

.content-block a button {
  margin-top: 1.5em;
}

.side-by-side.has-quote {
  align-items: flex-start;
}
.side-by-side.has-quote .image.mask-blob {
  margin-top: clamp(0px, calc((1400px - 100vw) / 5), 50%);
}
.side-by-side.has-quote .content-block {
  margin-top: 13rem;
}

.stat-list {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: center;

  margin: auto;
  padding: 3rem 0;
}
.stat-list li {
  position: relative;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 0;
}
.stat-list li h3 {
  position: absolute;
  top:-2rem;
}
.stat-list li p {
  color: var(--emphasis-grey);
  padding: 0 1.5rem;
}
.stat-list li:nth-child(odd) h3 em {
  color: var(--primary-green);
}
.stat-list li::after {
  position: absolute;
  width: 1px;
  height: 50%;
  right: 0;
  background-color: var(--emphasis-grey);
  content: "";
}
.stat-list li:last-child::after {
  display: none;
}

#wp-contact-form {
  width: 100%;
  max-width: 35vw;
}
#wp-contact-form input,
#wp-contact-form textarea {
  border-color: var(--secondary-blue);
  width: 100%;
  max-width: 100%;
  border-radius: var(--border-radius-small);
}
#wp-contact-form button {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  height: 3.25rem;
  width: 12rem;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius);
  background-color: var(--primary-green);
  color: white;
  filter: drop-shadow(-3px 3px 0px var(--secondary-green));
  transition: ease all 0.5s, border 0.1s;
}
#wp-contact-form button.fill:focus {
  border-width: 0.3rem;
  border-style: solid;
}
#wp-contact-form button:hover {
  color: var(--primary-blue);
  translate: -3px 3px;
  background-color: var(--secondary-green);
  filter: drop-shadow(0px -0px 0px var(--secondary-green));
}
#wp-contact-form button:focus {
  border-color: var(--primary-green);
}

.slide__blob {
  margin: 0 2em 1em;
  position: relative;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  width: 25rem;
}
.grid-horisontal .slide__blob {
  width: 100%;
}
.slide__blob .mask-blob {
  filter: drop-shadow(-1rem 1rem 0px var(--primary-green));
}
.slide__blob:nth-child(even) .slide__blob-border {
  filter: drop-shadow(-0.9rem 0.9rem 0px var(--secondary-blue));
}
.slide__blob:nth-child(even) .mask-blob {
  filter: drop-shadow(-1rem 1rem 0px var(--secondary-blue));
}
.slide__blob-border {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: calc(100% - 5rem);
  background-color: white;
  filter: drop-shadow(-0.9rem 0.9rem 0px var(--primary-green));
  z-index: -1;
  border-radius: 0px 25px 25px 25px;
}
.slide__blob-text {
  /* margin-top: 12rem; */

  text-align: left;
  padding: 0.5rem 1.5rem;
}

.slide__blob-text h4 {
  margin-top: 1em;
}
.slide__blob-image {
  width: 100%;
  height: auto;
  aspect-ratio: 6/4;
  overflow: hidden;
}

.slide__blob-text a:hover {
  color: var(--secondary-blue);
}
/* .slide__blob-text h4 a::after {
  color: var(--emphasis-grey);
  font-family: "FontAwesome";
  content: '&#xe164;';
} */

/* .slick-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: visible;
  padding: 0;
} */

/* .slick-list {
  overflow-x: visible;
} */

.slick-dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding-inline-start: 0;
  gap: 1rem;
}

.slick-track {
  display: flex !important;
}
.slick-slide {
  height: inherit;
  display: inherit;
}

.carousel-horisontal-nav {
  margin: 3rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
.slick-arrow {
  filter: none;
  background-color: transparent;
  color: var(--tertiary-blue);
  line-height: 1rem;
  text-align: center;
  border-color: var(--tertiary-blue);
  border-width: 2px;
  border-style: solid;
  width: 2rem;
  height: 2rem;
  z-index: 1;
}
.slick-arrow:hover {
  border-width: 2px;
  background-color: #4a9def50;
}

.slick-dots button {
  text-align: center;
  color: var(--subtle-grey);
  font-size: 0.1rem;
  width: 1rem;
  height: 1rem;
  filter: none;
  background-color: var(--subtle-grey);
}
.slick-dots button:focus {
  border-width: 0;
  border-style: none;
}

.slick-dots li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.slick-dots li.slick-active button {
  color: var(--tertiary-blue);
  background-color: var(--tertiary-blue);
}


.news-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  padding: 2rem 0;
}
.news-block .image-link {
    width: 100%;
}
.news-block img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  margin-bottom: 1rem;
  object-fit: cover;
  border-radius: var(--border-radius-small);
  filter: drop-shadow(-0.5rem 0.5rem 0px var(--primary-green));
  transition: ease all 0.25s;
}

.news-block a img:hover {
  opacity: 0.8;
}

.news-block:nth-child(odd) img {
  filter: drop-shadow(-0.5rem 0.5rem 0px var(--secondary-blue));
}

.news-block h4 {
    font-size:1.5rem;
    line-height:1.2;
    margin-top: 0.5em;
}

.news-block a h4:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

.news-signature {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin: 0.5rem 0;
}
.news-signature a:link,
.news-signature a:visited {
  text-decoration: underline;
}
.hero {
  box-sizing: border-box;
  width: 100%;
  max-width: 1400px;
  min-height: 100vh;
  margin: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 0 2rem;
}
.hero-text {
  max-width: 45%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  gap: 1.5rem;
}
.hero-text p {
  font-size: 1.4rem;
}
.hero h2 {
  font-size: 5vw;
}
.hero-image {
  max-width: 55%;
  height: auto;
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0px 35px 0px var(--primary-green));
}
.hero-echo {
  /* TODO Fix this overflow issue */
  display: block;
  min-width: 70%;
  height: calc(100dvh + 15rem);
  background-color: var(--primary-green);
  opacity: 0.2;
  position: absolute;
  right: -10rem;
  top: -15rem;
  overflow: visible;
  mask-image: url(Mask-Blob-01.png);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: left;
  z-index: -1;
}

.hero-wave {
  width: 100%;
  height: calc(100vh - var(--nav-height));
  mask-image: url(Mask-Wave.png);
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: bottom;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.hero-wave.skinny .hero-wave__text{
  margin: 5rem 5rem 5rem;
  padding-bottom: 0;
}

.hero-wave.skinny .hero-wave__text h1{
     font-size: 4rem;
    line-height: 4.5rem;
}
.hero-wave.skinny {
  height: fit-content;
}
.hero-wave__image {
  z-index: -1;
  width: 100%;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  object-fit: cover;
}
.wp-singular .hero-wave__image {
    filter: brightness(0.75);
}
.hero-wave.skinny .hero-wave__image {
  top: unset;
  bottom: 15%;
}
.hero-wave__text {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: sticky;
  top: 40vh;
  margin: 0 5rem;
  margin-bottom: var(--nav-height);
  /*filter: drop-shadow(0px 0px 5px #000000);*/
    
}

.hero-wave.skinny .hero-wave__text {
  margin: 5rem 5rem 8rem;
}

.hero-wave h1 {
  font-size: 4rem;
  line-height: 4.5rem;
}

.hero-wave p {
  font-size: 1.5rem;
}

footer {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1.806/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.connect-cta {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: start;
  padding: 0 3rem;
  color: white;
}
.connect-cta::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--secondary-blue);
  mask-image: url(Footer-CTA-Blob.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: top;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.connect-cta-content {
  width: 50%;
  height: 40%;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  text-align: end;
  gap: 1rem;
  z-index: 100;
}
.connect-cta-content button {
  z-index: 2;
}

.footer-content {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  aspect-ratio: 2.59/1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10rem 10rem;
  padding-bottom: 5rem;
  background-color: var(--primary-blue);
  mask-image: url(Footer-Links-Blob.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: bottom;
  color: white;
}

.footer-sidebar {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-evenly;
  margin-right: 3rem;
}

.footer-logo {
  width: 15vw;
  min-width: 90px;
}

.footer-socials {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
.footer-socials ul {
  width: 100%;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footer-socials ul li a img {
  width: 100%;
}

.footer-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  width: 80%;
}
.footer-body ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-body ul li {
  font-weight: light;
  margin: 1rem 0;
}
.footer-body ul li:first-child {
  font-weight: bold;
  margin-bottom: 2rem;
  margin-top: 0;
}

.footer-pages,
.footer-recourses {
  grid-row-start: 1;
  grid-row-end: 4;
}
.footer-contact {
  grid-row-start: 1;
  grid-row-end: 3;
}
.footer-donate {
  grid-column: 4;
  grid-row: 1;
  justify-self: right;
  align-self: center;
}
.footer-body .mc4wp-form {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 3;
  grid-row-end: 4;
}
.footer-legal-info {
  position: absolute;
  bottom: 0;
  width: calc(100% - 20rem);
  padding: 1rem 0;
  text-align: center;
  text-wrap-mode: nowrap;
}
.footer-legal-info::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: white;
  top: 0;
  left: 0;
}
.input-with-button {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-small);
  width: 100%;
  height: 3.25rem;
  border-width: 1px;
  border-color: white;
  border-style: solid;
}
.input-with-button input {
  width: 100%;
  height: 3.25rem;
  background-color: transparent;
  border-style: none;
  padding-inline-start: 1rem;
  color: white;
  border-radius: var(--border-radius-small);
	outline:none;
}
.input-with-button input::placeholder {
    font-size: 1rem;
}
.input-with-button button {
  position: absolute;
  right: 0;
  background-color: transparent;
  filter: none;
  width: auto;
  margin-right: 2rem;
  color: var(--tertiary-blue);
  font-weight: bold;
  font-size: 1rem;
}
.input-with-button button:hover {
  filter: brightness(3);
}

nav .menue.nav-mobile ul::after {
  content: none;
}

.nav-dropdown.show {
  display: flex;
}

/* Modifiers */
.white {
  color: white;
}
.black {
  color: black;
}

html.signup-active,
body.signup-active {
  overflow: hidden;
  height: 100dvh;
}

.signup-active::before{
	content: '';
    position: absolute;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    background: #ffffffd6;
    z-index: 12;
}

/* .splash {
  background-color: white;
  padding: 3rem 5rem;
  color: black;
  mask-image: url(Brush-Splash.png);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
} */

button.blue {
  background-color: var(--secondary-blue);
  filter: drop-shadow(-3px 3px 0px var(--tertiary-blue));
}
button.blue:hover {
  color: var(--primary-blue);
  translate: -3px 3px;
  background-color: var(--tertiary-blue);
  filter: drop-shadow(0px 0px 0px var(--tertiary-blue));
}
button.blue:focus {
  border-color: var(--secondary-blue);
}

button.blue-inverted {
  background-color: var(--primary-blue);
  filter: drop-shadow(-3px 3px 0px var(--tertiary-blue));
}
button.blue-inverted:hover {
  color: var(--primary-blue);
  background-color: var(--tertiary-blue);
  translate: -3px 3px;
  filter: drop-shadow(0px 0px 0px var(--primary-blue));
}
button.blue-inverted:focus {
  border-color: var(--primary-blue);
}

button.green {
  background-color: var(--primary-green);
  filter: drop-shadow(-3px 3px 0px var(--secondary-green));
}
button.green:hover {
  color: var(--primary-blue);
  translate: -3px 3px;
  background-color: var(--secondary-green);
  filter: drop-shadow(0px -0px 0px var(--secondary-green));
}
button.green:focus {
  border-color: var(--primary-green);
}

.mask-blob.blue {
  filter: drop-shadow(-5px 10px 0px var(--primary-blue));
}
.mask-blob.green {
  filter: drop-shadow(-5px 10px 0px var(--primary-green));
}

.absolute {
  position: absolute;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 3rem auto;
  text-align: center;
}
.section-header p {
  max-width: 60em;
}
.section-header :where(h1,h2,h3,h4,h5,h6) ~ p {
    max-width: 40em;
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    margin: 1.5em 0;
}

/* Page dash Effect */
.page-dash-top {
    position: absolute;
    top: calc(65vh + var(--nav-height));
    left: -15vw;
    width: 25%;
    height: fit-content;
    margin-inline-start: 37.5%;
    z-index: -1;
}
.page-dash-top-ball-top {
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    top: -2.4rem;
    left: calc(50% - 1.9rem);
    border-radius: 50%;
    background: #8CBBEA;
}
.page-dash-top-ball-bottom {
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    bottom: -1.5rem;
    left: calc(50% - 1.7rem);
    border-radius: 50%;
    background: #8CBBEA;
}


/* Floating Circles */
.floating-circles {
  position: absolute;
  top: -18%;
  left: 0;
  width: 100%;
  height: 100dvh;
  transform: translate(20%, 30%);
  z-index: -1;
}

.floating-circles .circle-1 {
  position: absolute;
  top: -18vh;
  width: 21%;
  left: 4vw;
}

.floating-circles .circle-2 {
  position: absolute;
  top: -4vh;
  right: 9vw;
  width: 19%;
}

.floating-circles .circle-3 {
  position: absolute;
  left: -8vw;
  top: 3vh;
}

.floating-circles .circle-4 {
  position: absolute;
  right: 1vw;
  top: 42vh;
  width: 15%;
}

@keyframes floatEffect {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotateEffect {
  0%,
  100% {
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(-45deg);
  }
}

.floating-circles .circle {
  animation-name: floatEffect;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.float-fast {
  animation-duration: 2s;
}

.float-medium {
  animation-duration: 4s;
}

.float-slow {
  animation-duration: 6s;
}

.wp-block-pullquote {
  background: var(--primary-blue);
  padding: 2em;
  border-radius: 20px;
  margin: 2em 0;
  color: #fff;
}

body.single-post .hero-wave.skinny .hero-wave__text :where(h1,h2,h3){
	color:#fff;
}
body.single-post .hero-wave.skinny .hero-wave__text :where(h4,h5,h6){
	color:var(--tertiary-blue);
}

.emoji{
    border-radius: 0 !important;
    filter: none !important;
}

@media screen and (max-width: 95rem) {
  h1 {
    font-size: 6.5vw;
    line-height: 6.5vw;
  }
  section {
    padding: 0 10%;
  }
  nav {
    padding: 0 2em;
  }
  .header-quote {
    position: absolute; 
    bottom: 15vh; 
    right: 5vw;
    }
}
@media screen and (min-width: 80rem){
  #menu-header-menu li:hover .sub-menu {
    display: flex;
  }
  .sub-menu:hover {
    display: flex;
  }
  /* nav ul li:hover .sub-menu {
  display: flex;
  } */
}
@media screen and (max-width: 80rem) {
  .connect-cta-content {
    gap: 0;
  }
  .nav-donate {
    padding-left: 1.2rem;
  }
  nav .menu-header-menu-container {
    display: none;
  }
  nav ul li {
    width: 100%;
    text-align: center;
  }
  .nav-mobile {
    position: absolute;
    display: none;
    z-index: 1;
    top: calc(var(--nav-height));
    left: 0;
    margin: 0;
    padding: 1rem 5rem;
    background-color: white;
    border-bottom: var(--subtle-grey) 1px solid;
    width: 100%;
    padding: 1rem 0;
  }
  .nav-mobile ul {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }
  nav .menu-header-menu-container {
    display: none;
  }
  nav .menu-header-menu-container.show {
    display: flex;
  }
  .nav-burger-btn {
    display: block;
  }
  nav .menu::after {
    content: none;
  }
  .menu-item:has(.sub-menu)> a::before {
    display: block;
    position: absolute;
    right: calc(100% + 0.5rem);
    top: 0.1rem;
    content: "▶";
    font-size: 0.8rem;
    transition: all 0.3s ease-in-out;
  }
  .menu-item:has(.sub-menu) {
    pointer-events: all;
    
  }
  .sub-menu li {
      z-index 3;
  }
  .menu-item:has(.sub-menu) > a {
    pointer-events: none;
  }
  .menue-item:has(.sub-menu):focus-within {
    pointer-events:none;
  }
  .menu-item:focus > a {
    pointer-events: all;
  }
  .menu-item > a:focus {
    pointer-events: all;
  }

  .menu-item:has(.sub-menu):focus-within > a::before {
    transform: rotate(90deg);
  }
  .menu-item:focus-within > .sub-menu{
    display: flex;
  }
  .sub-menu:focus-within a, .sub-menu a:focus {
      pointer-events: all;
  }
  
  .sub-menu {
    position: relative;
    padding: 0;
    width: 100%;
    text-align: center;
    background: #efefef !important;
    border-radius: 0px;
  }
  .hero-wave__text {
    max-width: 98%;
    margin: 0 auto;
    top: 30vh;
    padding-bottom: 3em;
  }
  .hero-wave {
    width: 100%;
    height: calc(55vh - var(--nav-height));
  }
}

@media screen and (max-width: 78rem) {
  html {
    font-size: clamp(8px, calc(16px - ((1400px - 100vw) / 150)), 16px);
  }
  h1 {
    font-size: 6vw;
    line-height: 6vw;
  }
  nav {
    padding: 0 1em;
  }
  nav .menu {
    position: relative;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 3rem;
    row-gap: 1rem;
  }
  .page-dash-top {
    width: 400px;
    height: fit-content;
    margin-inline-start: calc((100% - 400px)/2);
  }
  button {
    width: 8rem;
    font-size: 1rem;
  }
  section {
    margin-top: 5rem;
  }
  .side-by-side .mask-blob {
    flex: 6;
  }
  footer {
    font-size: 12px;
  }
  .nav-donate {
    width: 12rem;
    padding-left: 1.2rem;
  }
}

@media screen and (max-width: 55rem) {
  /* Burger Menue Layout */
  .grid-2x {
    padding: 0;
  }
    h1 {
    font-size: 8vw;
    line-height: 8vw;
  }
  .header-quote {
      bottom: 10rem;
  }
  .hero {
    min-height: 90dvh;
  }
  .hero-echo {
    top: auto;
  }

  .connect-cta-content h3 {
    font-size: 2rem;
  }
  .footer-donate {
    grid-column: 4;
    grid-row-start: 1;
    grid-row-end: 3;
    align-self: center;
  }
  .footer-legal-info {
    width: calc(100% - 10rem);
  }
    .footer-body {
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .footer-body ul li {
    margin: 0.6rem 0;
  }
  .footer-body ul li:first-child {
    margin: 1rem 0;
    margin-top: 0;
  }
  .footer-content {
    flex-direction: column;
    padding: 5rem 6%;
    padding-bottom: 6.5rem;
    align-items: flex-start;
    mask-size: cover;
    margin-top: 15rem;
  }

  .footer-body .mc4wp-form {
    width: 100%;
  }
  .footer-legal-info {
    width: calc(100% - 12%);
  }
}


@media screen and (max-width: 40rem) {
  .hero-text p {
    font-size: 2.5vw;
  }
  .header-quote {
      top: 30rem;
      bottom: unset;
  }
  button {
    height: 3.55rem;
    font-size: 1.2rem;
  }
  .floating-circles {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 100dvh;
  transform: translate(20%, 30%);
  z-index: -1;
  }
  .page-dash-top {
    top: calc(35rem + var(--nav-height));
    left: 7rem;
  }
  .testimonials-section {
    padding: 0 5rem;
  }
  .contact-form {
    flex-direction: column;
    align-items: center;
  }
  #wp-contact-form {
    max-width: 60vw;
  }
  .testimonials-section {
    padding: 0 5rem;
  }
  .hero {
    width: 100%;
    box-sizing: border-box;
    flex-direction: column-reverse;
    justify-content: center;
    padding: var(--nav-height) 0 0 0;
  }
  .hero-text {
    max-width: 80%;
    gap: 1rem;
  }
  .hero-image {
    width: 80%;
    max-width: 100%;
    max-height: 40dvh;
    margin: 0;
    mask-position: center;
    align-self: center;
    filter: drop-shadow(-10px 25px 0px var(--primary-green));
  }
  .hero-echo {
    right: auto;
    min-width: 120%;
    height: 100dvh;
    top: -15rem;
  }
  .hero-image.mask-blob img {
    mask-position: center;
  }

 .page-dash-top {
    width: 300px;
    height: fit-content;
    margin-inline-start: calc((100% - 300px)/2);
  }

  .side-by-side {
    flex-direction: column !important;
  }
  .side-by-side.has-quote .content-block {
    margin-top: 0;
  }
  .side-by-side.has-quote .image.mask-blob {
    margin-top: clamp(0px, calc((1400px - 100vw) / 20), 50%);
  }
  .stat-list {
    width: 100%;
  }
  .stat-list li {
    box-sizing: border-box;
    padding: 2.5%;
  }
  .stat-list li p {
    text-align: center;
  }
  .image-track-section {
    padding: 0 5rem;
  }
  .connect-cta-content {
    height: 20rem;
    width: 90%;
  }
  .footer-content {
    mask-size: cover;
    margin-top: 17rem;
  }
  .footer-sidebar {
    margin-right: 1.5rem;
  }
  .footer-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 3rem;
    row-gap: 1.5rem;
  }
  .footer-body .mc4wp-form {
    width: 50%;
  }
  .footer-body .mc4wp-form button {
    margin-right: 5%;
  }
  .footer-sidebar {
    justify-content: space-between;
  }
  .footer-legal-info {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 500px) {

  .page-dash-top {
    width: 200px;
    height: fit-content;
    margin-inline-start: calc((100% - 200px)/2);
  }

  .slide__blob-border {
    height: calc(100% - (100vw / 6));
  }
  .grid-2x {
    grid-template-columns: 1fr;
  }
  .quote-bubble {
    left: 0px
    top: 0px 
    position: relative;
    width: 80%;
    max-width: 80%;
  }
  .header-quote{
    top: unset;
    bottom: 33rem;
    left: 5%;
    width: 80%;
    max-width: 80%;
  }
  .content-block ul li,
  .content-block p,
  p,
  .hero-text p {
    font-size: 1.2rem;
  }
  h2,
  .slide__blob-text h4,
  .news-block h4 {
    font-size: 22px;
    line-height: 22px;
  }
  .slide__blob-text a:hover {
    text-decoration: underline;
  }
  .slide__blob {
    margin: 10px;
  }
  .carousel-horisontal-nav .carousel-horisontal-nav__prev,
  .carousel-horisontal-nav .carousel-horisontal-nav__next {
    display: none !important;
  }
  .footer-legal-info {
    font-size: 2.5vw;
  }
	.signup-popup.visible {
		transform: translate(-50%, -50%);
		width: calc(100% - 6em);
		max-width: 95%;

   }
}


