:root {
  --primary: #33bec0;
  --secondary: #C74C91;
  --tertiary: #006838;
  --night: #414142;
  --green: #008F4A;
  --silver: #d9dcdf;
  --white: #fefefe;
  --black: #0a0a0a;
  --nav-height: 4rem;
  --event-icon-fill: var(--white);
  --event-icon-stroke: var(--secondary);
  --button-color: var(--primary);
  --button-text: var(--black);
  --button-hover-color: var(--tertiary);
  --button-hover-text: var(--white);
  --button-alt-color: var(--tertiary);
  --button-alt-text: var(--black);
  --button-alt-hover-color: var(--black);
  --button-alt-hover-text: var(--white);
  --slick-arrow-size: 3rem;
}

/* Header fonts */
@font-face {
  font-family: 'bernhard-std-bold-condensed';
  font-display: swap;
  src: url('../fonts/BernhardStd-BoldCondensed.otf') format('woff'),
    url('../fonts/BernhardStd-BoldCondensed.otf') format('opentype'),
    url('../fonts/BernhardStd-BoldCondensed.otf') format('truetype');
  /* unicode-range: U+0043, U+004f, U+004d, U+0045, U+004e, U+0041, U+004c, U+0054,
    U+0055, U+0052, U+002C; */
}

@font-face {
  font-family: 'carnivalee-freakshow-regular';
  font-display: swap;
  src: url('../fonts/Carnevalee-Freakshow.ttf') format('woff'),
    url('../fonts/Carnevalee-Freakshow.ttf') format('opentype'),
    url('../fonts/Carnevalee-Freakshow.ttf') format('truetype');
  /* unicode-range: U+0031, U+0030, U+0054, U+0048, U+0043, U+0041, U+0052, U+004e,
    U+0049, U+0056, U+004c; */
}
/* End Header fonts */

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 1.125rem;
  background-color: var(--night);
  background: 
	linear-gradient(120deg, rgba(25,25,25,0.95), rgba(25,25,25,0.95)),
	url('../../images/theme-images/noise.svg');
  background-attachment: fixed;
  color: var(--white);
}

main {
  padding-top: var(--nav-height);
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block-start: 0.25em;
  margin-block-end: 0.25em;
}

h1,
.h1 {
  font-size: 3em;
}

h2,
.h2 {
  font-size: 2.75em;
}

h3,
.h3 {
  font-size: 2.25em;
}

h4,
.h4 {
  font-size: 2em;
}

h5,
.h5 {
  font-size: 1.7em;
}

h6
.h6 {
  font-size: 1.5em;
}

@media (min-width: 77rem) {
  h1,
  .h1 {
    font-size: 4em;
  }

  h2,
  .h2 {
    font-size: 3.5em;
  }

  h3,
  .h3 {
    font-size: 2.75em;
  }

  h4,
  .h4 {
    font-size: 2.5em;
  }

  h5,
  .h5 {
    font-size: 2.25em;
  }

  h6,
  .h6 {
    font-size: 2em;
  }
}

a,
a:visited {
  color: currentColor;
}

a:hover {
  text-decoration: none;
}

img,
.img {
  max-width: 100%;
  height: auto; 
}

.bernhard {
  font-size: 0.5em;
  font-family: 'bernhard-std-bold-condensed', 'Trebuchet MS',
    'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 100;
}

.carnivalee {
  font-family: 'carnivalee-freakshow-regular', Garamond, 'Times New Roman',
    Times, Georgia, serif;
  /* text-shadow: 0.025em 0.025em 0 #012b5d; */
  line-height: 1;
  font-weight: 100;
}

/* Layout Rules */
.row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.row-no-gap {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 77rem) {
  .row {
    padding-left: 0;
    padding-right: 0;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

@media (min-width: 55rem) {
  .grid {
    gap: 2rem;
  }
}

.medium-2-up {
  grid-template-columns: 1fr;
}

@media (min-width: 55rem) {
  .medium-2-up {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 55rem) {
  .medium-2-1-third {
    grid-template-columns: 66% 33%;
  }

  .medium-1-2-third {
    grid-template-columns: 66% 33%;
  }
}

.text-center {
  text-align: center;
}

.text-bold {
  font-weight: bold;
}

.text-large {
  font-size: 1.2em;
}

.float-left {
  float: left;
  margin-inline-end: 0.5rem;
  margin-block-end: 0.25rem;
}

.float-center {
  display: block;
  margin: 0 auto;
}

ul {
  padding-inline-start: 1rem;
}

.none {
  list-style: none;
  padding-inline-start: 0;
}

/* padding and margin classes */
.padding-top {
  padding-top: 1rem;
}

.padding-top-2x {
  padding-top: 2rem;
}

.padding-bottom {
  padding-bottom: 1rem;
}

.padding-bottom-2x {
  padding-bottom: 2rem;
}

.margin-top {
  margin-top: 1rem;
}

.margin-top-2x {
  margin-top: 2rem;
}

.margin-bottom {
  margin-bottom: 1rem;
}

.margin-bottom-2x {
  margin-bottom: 2rem;
}

/* screenreaders */
.show-for-sr {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

/* elements */
.button,
.button-alt {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  border-width: 1px;
  border-style: solid;
  border-radius: 5px;
}

.button,
.button:visited,
.button:active {
  color: var(--button-text);
  background-color: var(--button-color);
}

.button:hover,
.button:visited:hover,
.button:active:hover {
  color: var(--button-hover-text);
  background-color: var(--button-hover-color);
}

.button-alt,
.button-alt:visited,
.button-alt:active {
  color: var(--button-alt-text);
  background-color: var(--button-alt-color);
}

.button-alt:hover,
.button-alt:visited:hover,
.button-alt:active:hover {
  color: var(--button-alt-hover-text);
  background-color: var(--button-alt-hover-color);
}

/* archive banner */
.archive-banner {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.archive-banner a,
.archive-banner a:visited,
.archive-banner a:active {
  color: #fc0;
}

.archive-banner a:hover {
  text-decoration: none;
}

.archive-banner + .nav-wrapper.sticky {
  position: fixed;
  top: calc(var(--nav-height) / 2);
}

@supports (position: sticky) {
  .archive-banner + .nav-wrapper.nav-wrapper {
    position: sticky;
    top: -1px;
  }

  .archive-banner + .nav-wrapper .nav_menu {
    --nav-height: 6rem;
  }

  .archive-banner + .nav-wrapper.sticky .nav_menu {
    --nav-height: 4rem;
  }
}

@media (max-width: 880px) {
  .hide-nav {
    visibility: hidden;
  }
}

.archive-banner ~ main {
  padding-top: 0;
}

/* end archive banner */
/* navigation */
.skip-links,
.skip-links a {
  position: fixed;
  top: 0;
  left:0;
  z-index: 10;
}

.skip-links a {
  transform: translateY(-200%);
}

.skip-links a:focus {
  padding: 0.5rem 0.75rem;
  transform: translateY(0);
  background-color:#fc0;
}


.nav-wrapper {
  position: fixed;
  z-index: 5  ;
  width: 100%;
  min-height: var(--nav-height);
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.4);
}

@media screen and (min-width: 55rem) {
  .nav-wrapper {
    min-height: 0;
  }
}

.nav {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav_logo-wrapper {
  width: 300px;
  padding-left: 5px;
}

.nav_logo {
  display: block;
  position: absolute;
  max-width: 100%;
  height: auto;
  margin-top: 0.5rem;
  transform: scale(0.2);
  transition: transform 0.2s;
  transform-origin: top left;
}

@media screen and (min-width: 55rem) {
  .nav_logo {
    transform: scale(1);
    transform-origin: top center;
    filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.4));
  }

  .nav.shrink .nav_logo {
    transform: scale(0.5);
  }
}

@media screen and (min-width: 77rem) {
  .nav_logo-wrapper {
    padding-left: 0;
  }
}

/* temp */
a[href="#nav-main"]:focus img {
  border: 3px solid var(--black);
  border-radius: 100%;
}
.nav_logo[src*='placeholder'] {
  border-radius: 100rem;
}

.nav_toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: absolute;
  right: 0;
  width: 4rem;
  height: 4rem;
  color: var(--black);
  background-color: var(--secondary);
  border-width: 0;
}

.nav_toggle:focus {
  outline: 2px dashed;
  outline-offset: -3px;
}

.nav_toggle[aria-expanded='true'] {
  color: var(--black);
  background-color: var(--primary);
  box-shadow: inset 0 0 0 2px currentColor;
}

.nav_toggle[aria-expanded='true']:focus {
  outline: 2px dashed #000;
  outline-offset: -3px;
  box-shadow: none;
}

.nav_toggle[aria-expanded='true']::before {
  content: "Close";
  display: block;
}

@media screen and (min-width: 55rem) {
  .nav_toggle {
    display: none;
  }
}

.nav_toggle[aria-expanded='true'] ~ .nav_menu {
  transform: translateX(0);
}

.nav_menu {
  display: flex;
  overflow-y: auto;
  flex-direction: column;
  position: fixed;
  right: 0;
  top: calc(var(--nav-height) - 1px);
  margin: 0;
  transform: translateX(100%);
  padding-inline-start: 0;
  width: 200px;
  max-height: 60vh;
  background-color: var(--primary);
  transition: transform 0.25s;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.nav_menu.active {
  transform: translateX(0);
}

@media (max-width: 880px) {
  .has-shadow::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    pointer-events: none;
    background-image: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.4),
      transparent 5%
    );
    outline: 20px solid rgba(0, 0, 0, 0.4);
    top: var(--shadow-top, 0);
    opacity: 1;
    transition: opacity 0.2s;
  }

  .has-shadow-hide::after {
    opacity: 0;
  }
}

@media screen and (min-width: 55rem) {
  .nav_menu {
    flex-direction: row;
    justify-content: flex-end;
    position: static;
    transform: translateX(0);
    width: 100%;
    margin-left: auto;
    background-color: transparent;
    box-shadow: none;
  }
}

.nav_menu-item {
  display: table-cell;
  position: relative;
  height: 100%;
  font-size: 1rem;
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.5);
}

.nav_menu-item:nth-of-type(odd)::before {
  background-color: var(--black);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}

@media screen and (min-width: 55rem) {
  .nav_menu-item {
    margin-left: 1%;
    box-shadow: none;
  }

  .nav_menu-item:nth-of-type(odd)::before {
    display: none;
  }

  .nav_menu-item:last-of-type {
    margin-right: 1%;
  }
}

.nav_menu-link,
.nav_menu-link:visited,
.nav_menu-link:active {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 4rem;
  padding: 0 0.25rem;
  color: var(--black);
  text-decoration: none;
}

.nav_menu-link:hover {
  text-decoration: underline;
  box-shadow: inset 0 -5px 0 0 var(--secondary);
}

[id^="nav-"] {
  scroll-margin-top: 7.75rem;
}
/* end navigation */

/* text colors */
.text-primary,
.text-primary:visited,
.text-primary:active {
  color: var(--primary);
}

.text-secondary,
.text-secondary:visited,
.text-secondary:active {
  color: var(--secondary);
}

.text-black,
.text-black:visited,
.text-black:active {
  color: var(--black);
}

.text-white,
.text-white:visited,
.text-white:active {
  color: var(--white);
}

/* background colors */
.background-black {
  color: var(--white);
  background-color: var(--black);
}

.background-primary {
  color: var(--black);
  background-color: var(--primary);
}

.background-secondary {
  color: var(--black);
  background-color: var(--secondary);
}

.background-tertiary {
  color: var(--white);
  background-color: var(--tertiary);
}

section[class='background-primary'],
section[class='background-secondary'] {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
/* end background colors */

/* Hero */
.hero-wrapper {
  display: flex;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background-image: url('../../images/theme-images/header-stars.png'), url('../../images/theme-images/header-background.png');
  background-color: var(--night);
  background-position: center, 0px 10%;
  background-size: 160px, 1200px;
  background-attachment: fixed, scroll;
  background-repeat: repeat, repeat-x;
  color: #fff;
  animation: none, 30s linear 1s infinite slideAccross;
}

@keyframes slideAccross{
  0% {
  background-position: center, 0% 10%;
  }

  100% {
    background-position: center, 1200px 10%;
  }
}

.hero-wrapper::before {
  position: absolute;
  top: 30%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 434px;
  height: 250px;
  background-image: url(../../images/theme-images/header-constelation.png);
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
}

.hero-wrapper::after {
  content: '';
  height: 100%;
  display: block;
  background-image: url('../../images/theme-images/header-image.png');
  background-repeat: repeat-x;
  background-position: bottom center;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 0;
  margin-bottom: -1px;
  filter: drop-shadow(0 -5px 5px #ffffff11);
}

@media (min-width: 880px) {
  .hero-wrapper::after {
    background-position: bottom center;
  }
}

.hero {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  min-height: 45vmin;
}

.hero-content {
  z-index: 1;
}

.hero-info-wrapper {
  z-index: 2;
}

.hero-content {
  position: relative;
  margin: auto;
  text-align: center;
  max-width: 100%;
  font-size: 200%;
  overflow-wrap: break-word;
}

.hero-header-1 {
  padding-top: 1rem;
  font-size: 1.5em;
}

.hero-header-2 {
  text-shadow: 0.025em 0.025em 0 #012b5d;
}

@media (min-width: 880px) {
  .hero-content {
    margin: 18rem auto 5rem;
  }

  .hero-header-1 {
    padding-top: 0;
    font-size: 2em;
  }

  .hero-header-2 {
    font-size: 4.5em;
  }
}

.hero-info-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  align-self: flex-end;
  flex: 1 1 100%;
  padding: 0 1rem;
}

@media (min-width: 55rem) {
  .hero-info-wrapper {
    flex-direction: row;
  }
}

.hero-info {
  align-self: flex-end;
  min-width: 12rem;
}

.hero-info > .button {
  display: block;
  max-width: 90%;
  margin: 0 auto;
  text-align: center;
}

.hero-info > .button + .button {
  margin-top: 0.5rem;
}

.hero_social-media {
  display: flex;
  width: 100%;
  justify-content: space-around;
}

.hero_social-media li,
.food-fall-button {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  overflow: hidden;
  transform: rotate(0deg);
  border: 1px solid;
  color: var(--button-text);
  border-radius: 5rem;
  text-indent: 5rem;
  background-color: var(--button-color);
}

.hero_social-media li a:focus {
  outline: 2px dashed var(--black);
  outline-offset: -4px;
  border-radius: 100%;
}

.food-fall-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.hero_social-media li:hover {
  background-color: var(--button-hover-color);
  color: var(--button-hover-text);
}

.hero_social-media li a,
.hero_social-media li a:visited,
.hero_social-media li a:active {
  color: inherit;
}

.hero_social-media li a,
.food-fall-button .food-fall-pause {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem;
}

.hero_social-media svg {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  color: inherit;
  fill: currentColor;
}

.food-fall-pause.food-fall-pause{
  width: 100%;
  height: 100%;
  padding: 0;
}

.food-fall-pause{
  -webkit-appearance: none;
  background-color: transparent;
  border-width: 0;
  color: inherit;
}

.food-fall-button {
  position: absolute;
  top:1rem;
  right: 1rem;
  z-index:2;
  color: var(--black);
  background-color: var(--secondary);
}

.food-fall-button:hover {
  color: var(--white);
  background-color: var(--primary);
}

.food-fall-pause:focus {
  border-radius: 100%;
  outline: 2px dashed currentColor;
  outline-offset: -3px;
}

.hero-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* countdown timer */
.countdown,
.timer {
  text-align: center;
  color: #000;
}

.countdown {
  position: relative;
  align-self: flex-end;
  margin: 0 auto 1rem;
  padding: 0.25rem;
  background-color: rgba(255, 255, 255, 0.5);
  text-shadow: 0 0 5px #ffffff;
  text-shadow: 0 0 5px var(--white);
  width: 160px;
  max-height: 300px;
  transition: max-height 0.2s 0.2s;
}

.countdown.expired {
  visibility: hidden;
}

@media (max-width: 880px) {
  .countdown.expired {
    max-height: 0;
  }
}

@media (min-width: 55rem) {
  .countdown {
    margin: 0;
  }
}

.countdown p {
  color: #232323;
  color: var(--black);
  font-size: 1.1em;
  text-transform: uppercase;
  margin: 0.5em 0 0;
  padding: 0.3em;
  background: rgba(255, 255, 255, 0.5);
}

.timer {
  display: inline-block;
  font-size: 1.4em;
  background: -moz-linear-gradient(top, var(--white) 0, var(--silver) 100%);
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0, var(--white)),
    color-stop(100%, var(--silver))
  );
  background: -webkit-linear-gradient(top, var(--white) 0, var(--silver) 100%);
  background: -o-linear-gradient(top, var(--white) 0, var(--silver) 100%);
  background: -ms-linear-gradient(top, var(--white) 0, var(--silver) 100%);
  background: linear-gradient(to bottom, var(--white) 0, var(--silver) 100%);
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='var(--white)', endColorstr='var(--silver)', GradientType=0);
  background-color: var(--silver);
  border-top: 1px solid var(--silver);
  border-radius: 3px;
  margin: 0 0 0 5%;
  padding: 11px 0;
  width: 21%;
}

.timer:first-child {
  margin-left: 0;
}

/* end countdown timer */

/* End Hero */

.background-stars {
  position: relative;
  z-index: 0;
  background-attachment: fixed;
}

.background-stars::after{
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('../../images/theme-images/background-constelation.png');
  opacity: 0.5;
}

/* General Slick Slider stuff */
.slick-slider {
  max-width: calc(100% - (var(--slick-arrow-size) * 1.5));
  margin: 0 auto;
}

.slick-prev.slick-prev {
  transform: translate(-100%, -50%);
}


.slick-next.slick-next {
  transform: translate(100%, -50%);
}

/* End general slick slider stuff */
/* Stage Event */
/* .stage-event_info {
  background-color: var(--white);
} */

.stage-event_time-location {
  font-size: 1.2rem;
  padding: 0 1rem 1rem;
}

/* Royalty */
.royalty {
  margin-bottom: 4rem;
}

.royalty-name {
  margin-block-start: 0;
  margin-block-end: 0;
  line-height: 1.25;
}

@media (max-width: 640px) {
  .royalty-name {
    clear: both;
  }
}

.royalty-awards {
  margin-bottom: 0.25rem;
  padding: 1rem;
  border-radius: 0;
  font-size: 1.25rem;
  text-align: center;
}

@media (min-width: 880px) {
  .royalty-awards {
    margin-bottom: 0;
    padding: 0.1rem 0;
    border-radius: 0 5px 5px 0;
    font-size: 1.5rem;
    text-align: left;
  }
}

.royalty-awards.simple-line {
  height: 3px;
  border-radius: 0;
  padding: 0;
}

.royalty-awards > * {
  margin-block-start: 0;
  margin-block-end: 0.25rem;
}

.royalty-pronouns {
  margin-block-start: 0;
  margin-block-end: 0;
  font-style: italic;
}

.roalty-sponsors {
  margin-block-end: 0.25rem;
  font-weight: bold;
}

.roalty-sponsors-list {
  font-style: italic;
}

.roalty-description {
  initial-letter: 3;
}

.photos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1rem;
  margin-bottom: 2rem;
}

.photos-header h2 {
  position: relative;
  color: var(--black);
  -webkit-text-stroke: 1rem var(--black);
}

.photos-header h2::after {
  content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    -webkit-text-stroke: transparent;
}

.photos-header > * {
  margin: 0;
}

.photos .slick-slide {
  text-align: center;
}

.photos-background {
  background-image: url('../../images/theme-images/background-constelation.png');
  background-attachment: fixed;
}

.flickr-photo {
  display: inline-block;
}

.flickr-photo > img {
  margin: 0 auto;
  border: 5px solid var(--secondary);
}

.schedule {
  position: relative;
  padding-bottom: 3rem;
  margin-bottom: 5rem;
  z-index: 0;
}

.schedule::after {
  display: block;
  position: static;
  width: 12rem;
  height: 12rem;
  background-image: url('../../images/husky-play.png');
  background-size: contain;
  background-repeat: no-repeat;
  /* animation: 120s spin infinite linear; */
  transform: translateY(1.5rem);
  content: '';
  z-index: -1;
}

@media (min-width: 55rem){
  .schedule::after {
    position: absolute;
    transform: translateY(0);
    top: -1.5rem;
    right: 2.75rem;
    transform: scaleX(-1);
  }
}

.schedule h2 {
  position: relative;
  z-index: 1;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-359deg);
  }
}

.student_org {
  display: flow-root;
}

.participate{
  position: relative;
  z-index: 0;
}

.participate::after {
  display: block;
  position: static;
  width: 12rem;
  height: 12rem;
  margin-left: auto;
  background-image: url('../../images/husky-howl.png');
  background-size: contain;
  background-repeat: no-repeat;
  /* animation: 120s spin infinite linear; */
  transform: translateY(1.5rem);
  content: '';
  z-index: -1;
}

@media (min-width: 55rem){
  .participate::after {
    position: absolute;
    top: 0;
    right: 2.75rem;
    transform: translateY(0);
    margin-left: 0;
  }
}

.donors-section{
  position: relative;
  z-index: 0;
  color: var(--black);
  /* background-image: url('../../images/theme-images/white-dots.png'), linear-gradient(to top, var(--white) 30%, var(--tertiary) 80%); */
  background-attachment: fixed, scroll;
}

.donors-section::after{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255, 0.5);
  content: "";
}

.footer h2 {
  margin-block-end: 0.25rem;
  font-size: 2em;
}

.footer .none .button {
  margin-block-start: 1rem;
  margin-block-end: 0;
}