﻿@charset "UTF-8";
/* Define the palettes as maps */
/* Mixin to generate CSS custom properties from a color map */
/* Apply themes as classes */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
.light-mode {
  --hero-color: rgb(11, 70, 80);
  --hero-contrast: rgb(80, 21, 11);
  --inverse-hero: white;
  --inverse-contrast: #151515;
  --plain-text: black;
  --bg-color: white;
  --inverse-text-color: white;
  --highlight1: rgba(11, 70, 80, 0.2);
  --highlight2: rgba(11, 70, 80, 0.15);
  --highlight3: rgba(11, 70, 80, 0.1);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(11, 70, 80, 0.2);
  --cta-block-2-bg: rgba(11, 70, 80, 0.15);
  --cta-block-3-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg-2: rgba(11, 70, 80, 0.1);
  --tinted-bg-3: rgba(11, 70, 80, 0.2);
  --complimentary70: rgb(80, 21, 11);
  --thumbnail-background: rgba(0, 0, 0, 0);
  --sidebar-bg: rgba(255, 255, 255, 0.4);
  --edge-fade-color: #e8ecec;
}

.dark-mode {
  --hero-color: white;
  --hero-contrast: rgba(179, 47, 25, 0.7);
  --inverse-hero: rgb(11, 70, 80);
  --inverse-contrast: rgb(80, 21, 11);
  --plain-text: white;
  --bg-color: rgb(85, 85, 85);
  --inverse-text-color: rgb(11, 70, 80);
  --highlight1: rgba(165, 231, 243, 0.8);
  --highlight2: rgba(165, 231, 243, 0.75);
  --highlight3: rgba(165, 231, 243, 0.7);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(165, 231, 243, 0.8);
  --cta-block-2-bg: rgba(165, 231, 243, 0.75);
  --cta-block-3-bg: rgba(165, 231, 243, 0.7);
  --tinted-bg: rgba(11, 70, 80, 0.7);
  --tinted-bg-2: rgb(72, 114, 121);
  --tinted-bg-3: rgb(72, 114, 121);
  --complimentary70: rgba(179, 47, 25, 0.7);
  --thumbnail-background: white;
  --sidebar-bg: rgba(0, 0, 0, 0.5);
  --edge-fade-color: #254951;
}

/* Define the palettes as maps */
/* Mixin to generate CSS custom properties from a color map */
/* Apply themes as classes */
.light-mode {
  --hero-color: rgb(11, 70, 80);
  --hero-contrast: rgb(80, 21, 11);
  --inverse-hero: white;
  --inverse-contrast: #151515;
  --plain-text: black;
  --bg-color: white;
  --inverse-text-color: white;
  --highlight1: rgba(11, 70, 80, 0.2);
  --highlight2: rgba(11, 70, 80, 0.15);
  --highlight3: rgba(11, 70, 80, 0.1);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(11, 70, 80, 0.2);
  --cta-block-2-bg: rgba(11, 70, 80, 0.15);
  --cta-block-3-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg-2: rgba(11, 70, 80, 0.1);
  --tinted-bg-3: rgba(11, 70, 80, 0.2);
  --complimentary70: rgb(80, 21, 11);
  --thumbnail-background: rgba(0, 0, 0, 0);
  --sidebar-bg: rgba(255, 255, 255, 0.4);
  --edge-fade-color: #e8ecec;
}

.dark-mode {
  --hero-color: white;
  --hero-contrast: rgba(179, 47, 25, 0.7);
  --inverse-hero: rgb(11, 70, 80);
  --inverse-contrast: rgb(80, 21, 11);
  --plain-text: white;
  --bg-color: rgb(85, 85, 85);
  --inverse-text-color: rgb(11, 70, 80);
  --highlight1: rgba(165, 231, 243, 0.8);
  --highlight2: rgba(165, 231, 243, 0.75);
  --highlight3: rgba(165, 231, 243, 0.7);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(165, 231, 243, 0.8);
  --cta-block-2-bg: rgba(165, 231, 243, 0.75);
  --cta-block-3-bg: rgba(165, 231, 243, 0.7);
  --tinted-bg: rgba(11, 70, 80, 0.7);
  --tinted-bg-2: rgb(72, 114, 121);
  --tinted-bg-3: rgb(72, 114, 121);
  --complimentary70: rgba(179, 47, 25, 0.7);
  --thumbnail-background: white;
  --sidebar-bg: rgba(0, 0, 0, 0.5);
  --edge-fade-color: #254951;
}

.generic-content-container {
  display: flex;
  background: white;
}

.col-span-1 {
  grid-column: span 1;
}

.col-span-2 {
  grid-column: span 2;
}

.col-span-3 {
  grid-column: span 3;
}

.col-span-4 {
  grid-column: span 4;
}

.col-span-5 {
  grid-column: span 5;
}

.col-span-6 {
  grid-column: span 6;
}

.col-span-7 {
  grid-column: span 7;
}

.col-span-8 {
  grid-column: span 8;
}

.col-span-9 {
  grid-column: span 9;
}

.col-span-10 {
  grid-column: span 10;
}

.col-span-11 {
  grid-column: span 11;
}

.col-span-12 {
  grid-column: span 12;
}

.row-span-1 {
  grid-row: span 1;
}

.row-span-2 {
  grid-row: span 2;
}

.row-span-3 {
  grid-row: span 3;
}

.row-span-4 {
  grid-row: span 4;
}

.block-area {
  width: 100%;
}

/* Define the palettes as maps */
/* Mixin to generate CSS custom properties from a color map */
/* Apply themes as classes */
.light-mode {
  --hero-color: rgb(11, 70, 80);
  --hero-contrast: rgb(80, 21, 11);
  --inverse-hero: white;
  --inverse-contrast: #151515;
  --plain-text: black;
  --bg-color: white;
  --inverse-text-color: white;
  --highlight1: rgba(11, 70, 80, 0.2);
  --highlight2: rgba(11, 70, 80, 0.15);
  --highlight3: rgba(11, 70, 80, 0.1);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(11, 70, 80, 0.2);
  --cta-block-2-bg: rgba(11, 70, 80, 0.15);
  --cta-block-3-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg-2: rgba(11, 70, 80, 0.1);
  --tinted-bg-3: rgba(11, 70, 80, 0.2);
  --complimentary70: rgb(80, 21, 11);
  --thumbnail-background: rgba(0, 0, 0, 0);
  --sidebar-bg: rgba(255, 255, 255, 0.4);
  --edge-fade-color: #e8ecec;
}

.dark-mode {
  --hero-color: white;
  --hero-contrast: rgba(179, 47, 25, 0.7);
  --inverse-hero: rgb(11, 70, 80);
  --inverse-contrast: rgb(80, 21, 11);
  --plain-text: white;
  --bg-color: rgb(85, 85, 85);
  --inverse-text-color: rgb(11, 70, 80);
  --highlight1: rgba(165, 231, 243, 0.8);
  --highlight2: rgba(165, 231, 243, 0.75);
  --highlight3: rgba(165, 231, 243, 0.7);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(165, 231, 243, 0.8);
  --cta-block-2-bg: rgba(165, 231, 243, 0.75);
  --cta-block-3-bg: rgba(165, 231, 243, 0.7);
  --tinted-bg: rgba(11, 70, 80, 0.7);
  --tinted-bg-2: rgb(72, 114, 121);
  --tinted-bg-3: rgb(72, 114, 121);
  --complimentary70: rgba(179, 47, 25, 0.7);
  --thumbnail-background: white;
  --sidebar-bg: rgba(0, 0, 0, 0.5);
  --edge-fade-color: #254951;
}

/* The hero-section-container should wrap the import on whichever page the section is used.
    e.g. in HomePage.cshtml
*/
.hero-section-container {
  display: inline;
  justify-content: space-evenly;
  line-height: 1.5;
}

.hero-main-content-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: auto;
  background: var(--tinted-bg);
  padding-left: 500px;
  padding-right: 500px;
  padding-top: 64px;
  padding-bottom: 54px;
}
@media (max-width: 1600px) {
  .hero-main-content-container {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 1050px) {
  .hero-main-content-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .hero-main-content-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.hero-text-container {
  justify-content: center;
  text-align: center;
  gap: 3vh;
}

.hero-header {
  display: inline;
  color: var(--hero-color);
  font-size: 4rem;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  font-family: Roboto;
  vertical-align: top;
}

.hero-pitch {
  display: inline;
}

.hero-image {
  max-width: 45dvw;
  max-height: 45dvh;
  border-radius: 2% 2% 2% 2%;
}

.cta-blocks-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: rgb(11, 70, 80);
  background: var(--tinted-bg);
  padding-bottom: 4vh;
}

.cta-1-container {
  display: inline-block;
  background: var(--cta-block-1-bg);
}

.cta-2-container {
  display: inline-block;
  background: var(--cta-block-2-bg);
}

.cta-3-container {
  display: inline-block;
  background: var(--cta-block-3-bg);
}

.cta-title {
  justify-content: center;
  text-align: center;
  margin-bottom: 2vh;
}

.cta-links-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0;
  padding: 2vw;
}
.cta-links-list li + li::before {
  content: "|";
  margin: 0.5vw;
}

.cta-link-item {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: rgb(11, 70, 80);
  font-weight: normal;
}
.cta-link-item::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 50%;
  background-color: rgb(11, 70, 80);
  transition: width 0.3s ease, left 0.3s ease;
}
.cta-link-item:hover::before {
  width: 100%;
  left: 0;
}
.cta-link-item:hover {
  color: rgb(11, 70, 80);
}

.cta-button-container {
  display: flex;
  justify-content: center;
  margin-top: 2vh;
  margin-bottom: 2vh;
}

.cta-button {
  align-content: center;
  background: rgba(80, 21, 11, 0.7);
  color: rgb(245, 245, 245);
  font-weight: bold;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  border-radius: 2rem;
  border-color: rgba(0, 0, 0, 0);
  height: 2rem;
  width: auto;
  transition: 0.4s;
  padding: 0 0.8rem 0 0.8rem;
}

.cta-button:hover {
  background: rgba(179, 47, 25, 0.7);
}

.cta-button:active {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1600px) {
  .hero-main-content-container {
    padding-top: 26px;
    padding-bottom: 42px;
  }
  .cta-1-container,
  .cta-2-container,
  .cta-3-container {
    width: 100%;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1050px) {
  .hero-main-content-container {
    flex-direction: column;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 30px;
  }
  .cta-blocks-container {
    flex-direction: column;
  }
  .cta-1-container,
  .cta-2-container,
  .cta-3-container {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .hero-image {
    max-width: 60vw;
    max-height: 60vh;
    border-radius: 2% 2% 2% 2%;
  }
}
@media (max-width: 600px) {
  .hero-main-content-container {
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .cta-blocks-container {
    flex-direction: column;
    row-gap: 10px;
  }
  .cta-1-container,
  .cta-2-container,
  .cta-3-container {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .cta-links-list {
    flex-direction: column;
    align-items: center;
    line-height: 40px;
  }
  .cta-links-list li + li::before {
    content: "";
    margin: 0;
  }
  .hero-image {
    max-width: 75vw;
    max-height: 75vh;
    border-radius: 2% 2% 2% 2%;
  }
}
/* Define the palettes as maps */
/* Mixin to generate CSS custom properties from a color map */
/* Apply themes as classes */
.light-mode {
  --hero-color: rgb(11, 70, 80);
  --hero-contrast: rgb(80, 21, 11);
  --inverse-hero: white;
  --inverse-contrast: #151515;
  --plain-text: black;
  --bg-color: white;
  --inverse-text-color: white;
  --highlight1: rgba(11, 70, 80, 0.2);
  --highlight2: rgba(11, 70, 80, 0.15);
  --highlight3: rgba(11, 70, 80, 0.1);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(11, 70, 80, 0.2);
  --cta-block-2-bg: rgba(11, 70, 80, 0.15);
  --cta-block-3-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg-2: rgba(11, 70, 80, 0.1);
  --tinted-bg-3: rgba(11, 70, 80, 0.2);
  --complimentary70: rgb(80, 21, 11);
  --thumbnail-background: rgba(0, 0, 0, 0);
  --sidebar-bg: rgba(255, 255, 255, 0.4);
  --edge-fade-color: #e8ecec;
}

.dark-mode {
  --hero-color: white;
  --hero-contrast: rgba(179, 47, 25, 0.7);
  --inverse-hero: rgb(11, 70, 80);
  --inverse-contrast: rgb(80, 21, 11);
  --plain-text: white;
  --bg-color: rgb(85, 85, 85);
  --inverse-text-color: rgb(11, 70, 80);
  --highlight1: rgba(165, 231, 243, 0.8);
  --highlight2: rgba(165, 231, 243, 0.75);
  --highlight3: rgba(165, 231, 243, 0.7);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(165, 231, 243, 0.8);
  --cta-block-2-bg: rgba(165, 231, 243, 0.75);
  --cta-block-3-bg: rgba(165, 231, 243, 0.7);
  --tinted-bg: rgba(11, 70, 80, 0.7);
  --tinted-bg-2: rgb(72, 114, 121);
  --tinted-bg-3: rgb(72, 114, 121);
  --complimentary70: rgba(179, 47, 25, 0.7);
  --thumbnail-background: white;
  --sidebar-bg: rgba(0, 0, 0, 0.5);
  --edge-fade-color: #254951;
}

.news-grid-wrapper {
  padding-left: 500px;
  padding-right: 500px;
  background-color: var(--tinted-bg-2);
}
@media (max-width: 1600px) {
  .news-grid-wrapper {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 1050px) {
  .news-grid-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .news-grid-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.news-flex-row {
  display: flex;
  align-items: start;
  justify-content: center;
  place-items: center;
  width: 100%;
}

.short-news-headline {
  color: var(--hero-color);
  font-size: 2rem;
  text-align: center;
  padding-top: 0;
  margin: 0px 0 40px 0;
}

.news-content-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: start;
  gap: 1rem;
}

.news-block-container {
  position: relative;
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  background: var(--bg-color);
  border: 1px solid rgba(128, 128, 128, 0.1);
  height: 20dvh;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 32px;
}

.news-block-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: linear-gradient(to bottom, transparent, var(--bg-color));
  pointer-events: none;
}

.news-block-headline {
  font-size: 1.5rem;
  color: var(--hero-color);
  margin-bottom: 0.5rem;
  margin-left: 8px;
  margin-top: 8px;
}

.news-content-row {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  align-items: flex-start;
  overflow: hidden;
  margin: 0;
}

.news-thumbnail {
  object-fit: contain;
  width: 25%;
  max-height: 15dvh;
  background: var(--thumbnail-background);
  margin: 8px;
}

.news-explainer-text {
  font-size: 1rem;
  color: var(--plain-text) !important;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 0;
  margin-left: 8px;
}

.full-article-link {
  text-decoration: none;
  color: var(--plain-text);
}

.full-article-link[href]:not([href=""]):hover {
  text-decoration: underline;
}

.full-article-link:visited {
  color: inherit;
  text-decoration: none;
}

.news-pagination-controls {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding-bottom: 1rem;
}

.news-pagination-controls button {
  padding: 0.5rem 0.25rem;
  background: rgba(11, 70, 80, 0.35);
  border: none;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 8px 8px 8px 8px;
  margin: 72px 0 24px 0;
  box-shadow: inset 3px 3px rgba(11, 70, 80, 0.1), -1px -1px rgba(0, 0, 0, 0.1);
}

.news-pagination-controls button.active {
  background: rgba(80, 21, 11, 0.7);
}

.previous-page-button,
.next-page-button {
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: var(--hero-color);
  border: none;
  background: none;
  text-decoration: none;
  font-size: 1.25rem;
  align-items: center;
}

.previous-page-button:disabled,
.next-page-button:disabled {
  cursor: default;
  visibility: hidden;
}

.previous-page-button:hover,
.next-page-button:hover {
  text-decoration: underline;
}

.news-page-controls {
  display: flex;
  flex-direction: row;
  vertical-align: middle;
  justify-content: center;
  gap: 4rem;
  background: var(--tinted-bg-2);
}

@media (max-width: 1050px) {
  .news-content-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .news-block-container {
    width: 90%;
    min-height: 15dvh;
    max-height: 50dvh;
  }
  .news-thumbnail {
    display: none;
  }
  .news-pagination-controls {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .news-content-container {
    flex-direction: column;
    width: 100%;
  }
  .news-block-container {
    width: 90%;
    min-height: 15dvh;
    max-height: 50dvh;
  }
  .news-thumbnail {
    display: none;
  }
  .news-content-row {
    flex-direction: column;
    width: 100%;
  }
  .news-pagination-controls {
    gap: 1rem;
  }
}
/* Define the palettes as maps */
/* Mixin to generate CSS custom properties from a color map */
/* Apply themes as classes */
.light-mode {
  --hero-color: rgb(11, 70, 80);
  --hero-contrast: rgb(80, 21, 11);
  --inverse-hero: white;
  --inverse-contrast: #151515;
  --plain-text: black;
  --bg-color: white;
  --inverse-text-color: white;
  --highlight1: rgba(11, 70, 80, 0.2);
  --highlight2: rgba(11, 70, 80, 0.15);
  --highlight3: rgba(11, 70, 80, 0.1);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(11, 70, 80, 0.2);
  --cta-block-2-bg: rgba(11, 70, 80, 0.15);
  --cta-block-3-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg-2: rgba(11, 70, 80, 0.1);
  --tinted-bg-3: rgba(11, 70, 80, 0.2);
  --complimentary70: rgb(80, 21, 11);
  --thumbnail-background: rgba(0, 0, 0, 0);
  --sidebar-bg: rgba(255, 255, 255, 0.4);
  --edge-fade-color: #e8ecec;
}

.dark-mode {
  --hero-color: white;
  --hero-contrast: rgba(179, 47, 25, 0.7);
  --inverse-hero: rgb(11, 70, 80);
  --inverse-contrast: rgb(80, 21, 11);
  --plain-text: white;
  --bg-color: rgb(85, 85, 85);
  --inverse-text-color: rgb(11, 70, 80);
  --highlight1: rgba(165, 231, 243, 0.8);
  --highlight2: rgba(165, 231, 243, 0.75);
  --highlight3: rgba(165, 231, 243, 0.7);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(165, 231, 243, 0.8);
  --cta-block-2-bg: rgba(165, 231, 243, 0.75);
  --cta-block-3-bg: rgba(165, 231, 243, 0.7);
  --tinted-bg: rgba(11, 70, 80, 0.7);
  --tinted-bg-2: rgb(72, 114, 121);
  --tinted-bg-3: rgb(72, 114, 121);
  --complimentary70: rgba(179, 47, 25, 0.7);
  --thumbnail-background: white;
  --sidebar-bg: rgba(0, 0, 0, 0.5);
  --edge-fade-color: #254951;
}

.member-content-wrapper {
  background: var(--tinted-bg-2);
  padding-left: 500px;
  padding-right: 500px;
}
@media (max-width: 1600px) {
  .member-content-wrapper {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 1050px) {
  .member-content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .member-content-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.members-header {
  margin: 0;
  text-align: center;
  font-size: 3.5rem;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  font-family: Roboto;
  color: var(--hero-color);
  padding: 32px 0 64px 0;
}

.members-flex-row {
  display: flex;
  align-items: start;
  justify-content: center;
  place-items: center;
  gap: 1rem;
  width: 100%;
  padding-top: 0;
}

.members-content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.members-content-container > *:nth-child(2) {
  margin-left: auto;
  margin-right: auto;
}

.card-content-aligner {
  place-items: center;
}

.member-card-container {
  position: relative;
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  font-family: Roboto;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
  text-align: start;
  padding-left: 16px;
  padding-right: 4dvw;
  overflow: hidden;
  box-sizing: border-box;
  width: 30%;
}
.member-card-container .member-top-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  height: 170px;
}
.member-card-container .member-image-container .member-image {
  border-radius: 50%;
  margin-top: 1vh;
  margin-left: -15px;
  max-height: 7dvh;
  max-width: auto;
  object-fit: contain;
}
.member-card-container .member-text-container .member-name {
  font-size: 1.5rem;
  height: 65px;
}
.member-card-container .member-text-container .member-description {
  font-size: 1rem;
}
.member-card-container .member-button-container {
  margin-top: 1rem;
  margin-left: 7vh;
  text-align: start;
}
.member-card-container .member-button-container .member-button-link {
  background-color: rgba(0, 0, 0, 0);
  border-radius: 1rem;
  border: solid;
  border-color: var(--complimentary70);
  color: rgb(25, 25, 25);
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--plain-text);
  font-weight: bold;
  display: inline-block;
  font-size: 20px;
  margin: 4px 2px;
  cursor: pointer;
  transition: 0.4s;
}
.member-card-container .member-button-container .member-button-link::before {
  content: "Besøg";
}
.member-card-container .member-button-container .member-button-link:hover {
  background: rgba(80, 21, 11, 0.1);
}
.member-card-container .member-button-container .member-button-link:focus {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.members-pagination-controls {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  padding-bottom: 1rem;
  width: auto;
}

.members-pagination-controls button {
  background: rgba(11, 70, 80, 0.35);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  padding: 8px 8px 8px 8px;
  margin: 72px 0 24px 0;
  box-shadow: inset 3px 3px rgba(11, 70, 80, 0.1), -1px -1px rgba(0, 0, 0, 0.1);
}

.page-controls {
  display: flex;
  flex-direction: row;
  vertical-align: middle;
  justify-content: center;
  gap: 4rem;
}

.next-page-button, .previous-page-button {
  margin-top: 30px;
}

.members-pagination-controls button.active {
  background: rgba(80, 21, 11, 0.7);
}

@media (max-width: 1600px) {
  .member-content-wrapper {
    padding-left: 0px;
    padding-right: 40px;
  }
}
@media (max-width: 1050px) {
  .member-content-wrapper {
    padding-left: 0px;
    padding-right: 40px;
  }
  .members-content-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .member-card-container {
    width: 90%;
    padding-bottom: 3dvh;
  }
  .members-pagination-controls {
    gap: 1rem;
  }
}
@media (max-width: 600px) {
  .member-content-wrapper {
    padding-left: 0px;
    padding-right: 40px;
  }
  .members-content-container {
    flex-direction: column;
    width: 100%;
  }
  .member-card-container {
    width: 90%;
    height: auto;
    margin-bottom: 3dvh;
  }
  .member-card-container .member-image-container .member-image {
    margin-top: 2dvh;
  }
  .member-card-container .member-button-container {
    padding-right: 3dvh;
  }
  .members-pagination-controls {
    gap: 1rem;
  }
  .members-pagination-controls button {
    margin: 40px 0 24px 0;
  }
}
/* Define the palettes as maps */
/* Mixin to generate CSS custom properties from a color map */
/* Apply themes as classes */
.light-mode {
  --hero-color: rgb(11, 70, 80);
  --hero-contrast: rgb(80, 21, 11);
  --inverse-hero: white;
  --inverse-contrast: #151515;
  --plain-text: black;
  --bg-color: white;
  --inverse-text-color: white;
  --highlight1: rgba(11, 70, 80, 0.2);
  --highlight2: rgba(11, 70, 80, 0.15);
  --highlight3: rgba(11, 70, 80, 0.1);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(11, 70, 80, 0.2);
  --cta-block-2-bg: rgba(11, 70, 80, 0.15);
  --cta-block-3-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg-2: rgba(11, 70, 80, 0.1);
  --tinted-bg-3: rgba(11, 70, 80, 0.2);
  --complimentary70: rgb(80, 21, 11);
  --thumbnail-background: rgba(0, 0, 0, 0);
  --sidebar-bg: rgba(255, 255, 255, 0.4);
  --edge-fade-color: #e8ecec;
}

.dark-mode {
  --hero-color: white;
  --hero-contrast: rgba(179, 47, 25, 0.7);
  --inverse-hero: rgb(11, 70, 80);
  --inverse-contrast: rgb(80, 21, 11);
  --plain-text: white;
  --bg-color: rgb(85, 85, 85);
  --inverse-text-color: rgb(11, 70, 80);
  --highlight1: rgba(165, 231, 243, 0.8);
  --highlight2: rgba(165, 231, 243, 0.75);
  --highlight3: rgba(165, 231, 243, 0.7);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(165, 231, 243, 0.8);
  --cta-block-2-bg: rgba(165, 231, 243, 0.75);
  --cta-block-3-bg: rgba(165, 231, 243, 0.7);
  --tinted-bg: rgba(11, 70, 80, 0.7);
  --tinted-bg-2: rgb(72, 114, 121);
  --tinted-bg-3: rgb(72, 114, 121);
  --complimentary70: rgba(179, 47, 25, 0.7);
  --thumbnail-background: white;
  --sidebar-bg: rgba(0, 0, 0, 0.5);
  --edge-fade-color: #254951;
}

.explainer-section-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding-left: 500px;
  padding-right: 500px;
  padding-top: 29px;
  padding-bottom: 77px;
  text-align: center;
  justify-content: space-between;
  margin: auto;
}
@media (max-width: 1600px) {
  .explainer-section-container {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 1050px) {
  .explainer-section-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .explainer-section-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.explainer-section-title {
  flex: 1 1 100%;
  margin: auto;
  text-align: center;
  font-size: 3rem;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  font-family: Roboto;
  color: var(--hero-color);
  padding: 0 0 16px 0;
}

.explainer-header {
  padding: 0;
  margin: 0;
}

.explainer-section-content-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.explainer-section-text-content {
  line-height: 1.5;
}

.explainer-section-text {
  margin-left: 40px;
}

.link-item {
  background-color: rgba(80, 21, 11, 0.7);
  border-radius: 2rem;
  border-color: rgba(0, 0, 0, 0.2);
  color: rgb(245, 245, 245);
  padding: 20px 34px;
  text-align: center;
  text-decoration: none;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  display: inline-block;
  font-size: 20px;
  margin: 16px 0 0 40px;
  cursor: pointer;
  transition: 0.4s;
  justify-content: center;
}

.link-item:hover {
  background: rgba(179, 47, 25, 0.7);
}

.link-item:focus {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.explainer-section-image {
  max-width: 100%;
  height: auto;
  margin-top: 32px;
}
.explainer-section-image .image-input {
  max-width: 45dvw;
  max-height: 45dvh;
  border-radius: 2% 2% 2% 2%;
}

@media (max-width: 1050px) {
  .explainer-section-text {
    margin-left: 0;
  }
  .link-item {
    margin: 8px 0 0 0;
  }
  .explainer-section-image {
    display: none;
  }
}
@media (max-width: 600px) {
  .explainer-section-text {
    margin-left: 0;
  }
  .link-item {
    margin: 8px 0 0 0;
  }
  .explainer-section-image {
    display: none;
  }
  .link-content-list {
    padding: 0;
  }
}
/* Define the palettes as maps */
/* Mixin to generate CSS custom properties from a color map */
/* Apply themes as classes */
.light-mode {
  --hero-color: rgb(11, 70, 80);
  --hero-contrast: rgb(80, 21, 11);
  --inverse-hero: white;
  --inverse-contrast: #151515;
  --plain-text: black;
  --bg-color: white;
  --inverse-text-color: white;
  --highlight1: rgba(11, 70, 80, 0.2);
  --highlight2: rgba(11, 70, 80, 0.15);
  --highlight3: rgba(11, 70, 80, 0.1);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(11, 70, 80, 0.2);
  --cta-block-2-bg: rgba(11, 70, 80, 0.15);
  --cta-block-3-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg: rgba(11, 70, 80, 0.1);
  --tinted-bg-2: rgba(11, 70, 80, 0.1);
  --tinted-bg-3: rgba(11, 70, 80, 0.2);
  --complimentary70: rgb(80, 21, 11);
  --thumbnail-background: rgba(0, 0, 0, 0);
  --sidebar-bg: rgba(255, 255, 255, 0.4);
  --edge-fade-color: #e8ecec;
}

.dark-mode {
  --hero-color: white;
  --hero-contrast: rgba(179, 47, 25, 0.7);
  --inverse-hero: rgb(11, 70, 80);
  --inverse-contrast: rgb(80, 21, 11);
  --plain-text: white;
  --bg-color: rgb(85, 85, 85);
  --inverse-text-color: rgb(11, 70, 80);
  --highlight1: rgba(165, 231, 243, 0.8);
  --highlight2: rgba(165, 231, 243, 0.75);
  --highlight3: rgba(165, 231, 243, 0.7);
  --link-hover: rgb(34, 88, 195);
  --cta-block-1-bg: rgba(165, 231, 243, 0.8);
  --cta-block-2-bg: rgba(165, 231, 243, 0.75);
  --cta-block-3-bg: rgba(165, 231, 243, 0.7);
  --tinted-bg: rgba(11, 70, 80, 0.7);
  --tinted-bg-2: rgb(72, 114, 121);
  --tinted-bg-3: rgb(72, 114, 121);
  --complimentary70: rgba(179, 47, 25, 0.7);
  --thumbnail-background: white;
  --sidebar-bg: rgba(0, 0, 0, 0.5);
  --edge-fade-color: #254951;
}

.join-section-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding-left: 500px;
  padding-right: 500px;
  padding-top: 29px;
  padding-bottom: 77px;
  text-align: center;
  justify-content: space-between;
  margin: auto;
}
@media (max-width: 1600px) {
  .join-section-container {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 1050px) {
  .join-section-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 600px) {
  .join-section-container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.join-section-title {
  flex: 1 1 100%;
  margin: auto;
  text-align: center;
  font-size: 3rem;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  font-family: Roboto;
  color: var(--hero-color);
  padding: 0 0 16px 0;
}

.join-header {
  padding: 0;
  margin: 0;
}

.join-section-content-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.join-section-text-content {
  line-height: 1.5;
}

.join-section-text {
  margin-right: 40px;
}

.join-link-item {
  background-color: rgba(80, 21, 11, 0.7);
  border-radius: 2rem;
  border-color: rgba(0, 0, 0, 0.2);
  color: rgb(245, 245, 245);
  padding: 20px 34px;
  text-align: center;
  text-decoration: none;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  display: inline-block;
  font-size: 20px;
  margin: 16px 40px 0 0;
  cursor: pointer;
  transition: 0.4s;
  justify-content: center;
}

.join-link-item:hover {
  background: rgba(179, 47, 25, 0.7);
}

.join-link-item:focus {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.join-section-image {
  max-width: 100%;
  height: auto;
  margin: auto;
  align-items: center;
}
.join-section-image .join-image-input {
  max-width: 25dvw;
  max-height: 45dvh;
  border-radius: 2% 2% 2% 2%;
}

@media (max-width: 1050px) {
  .join-section-text {
    margin-right: 0;
  }
  .join-link-item {
    margin: 8px 0 0 0;
  }
  .join-section-image {
    display: none;
  }
}
@media (max-width: 600px) {
  .join-section-text {
    margin-right: 0;
  }
  .join-link-item {
    margin: 8px 0 0 0;
  }
  .join-section-image {
    display: none;
  }
  .join-link-content-list {
    padding: 0;
  }
}
homepage-body {
  background-color: var(--bg-color);
  color: var(--plain-text);
}

.generic-content-container {
  display: inline;
}

.tintedbg-to-bgcolor {
  height: 6dvh;
  background: linear-gradient(to bottom, var(--tinted-bg) 0%, var(--bg-color) 8%);
}

.bgcolor-to-tintedbg2 {
  height: 6dvh;
  background: linear-gradient(to bottom, var(--bg-color) 0%, var(--tinted-bg-2) 8%);
}

.tintedbg2-to-bgcolor {
  height: 6dvh;
  background: linear-gradient(to bottom, var(--tinted-bg-2) 0%, var(--bg-color) 8%);
}
