@charset "UTF-8";
/* @link https://utopia.fyi/type/calculator?c=500,16,1.25,1600,20,1.333,5,2,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */
:root {
  /* Step -1: 10.24px → 11.2556px */
  --step--1: clamp(0.8rem, 0.7374rem + 0.2003vw, 0.9377rem);
  /* Step 0: P 16px → 20px */
  --step-0: clamp(1rem, 0.8864rem + 0.3636vw, 1.25rem);
  /* Step 1: H3 20px → 26.66px */
  --step-1: clamp(1.25rem, 1.0608rem + 0.6055vw, 1.6663rem);
  /* Step 2: H2 25px → 35.5378px */
  --step-2: clamp(1.5625rem, 1.2631rem + 0.958vw, 2.2211rem);
  /* Step 3: H1 31.25px → 47.3719px */
  --step-3: clamp(1.9531rem, 1.4951rem + 1.4656vw, 2.9607rem);
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

html {
  /* Set the font globally */
  font-family: var(--font-body);
  font-weight: 400;
  scroll-behavior: smooth;
  font-size: calc(0.8rem + 0.27vw);
  font-size: clamp(1rem, 0.5714rem + 0.5714vw, 2rem);
  line-height: 1.5;
  hanging-punctuation: first last;
}

body {
  color: var(--text);
  background-color: var(--bg);
  margin: 0;
}

p {
  margin: 0.5rem 0 1rem 0;
  text-wrap: pretty;
}

p, td {
  -webkit-hyphens: auto;
  -webkit-hyphenate-limit-before: 3;
  -webkit-hyphenate-limit-after: 3;
  -webkit-hyphenate-limit-chars: 6 3 3;
  -webkit-hyphenate-limit-lines: 2;
  -webkit-hyphenate-limit-last: always;
  -webkit-hyphenate-limit-zone: 8%;
  hyphens: auto;
  hyphenate-limit-chars: 6 3 3;
  hyphenate-limit-lines: 2;
  hyphenate-limit-last: always;
  hyphenate-limit-zone: 8%;
}

/* Prevent long strings from overflowing container */
p, h1, h2, h3, h4 {
  overflow-wrap: break-word;
  word-break: break-word;
}

b, strong {
  font-weight: 600;
}

/* Format headers */
h1, h2, h3, h4 {
  font-weight: 500;
  line-height: 1.1;
  text-wrap: balance;
  color: var(--text-headings);
  font-family: var(--font-headings);
}

h2:first-of-type, h3:first-of-type {
  margin-top: 0;
}

h1 span, h2 span, h3 span {
  display: block;
  font-size: 0.7em;
  margin-top: 0.2rem;
}

h1 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  margin: 1.4rem 0 0.5rem 0;
}

h3 {
  font-size: 1.2rem;
  margin: 1.2rem 0 0.5rem 0;
}

/* Format links & buttons */
a {
  text-decoration: underline;
  text-decoration-skip-ink: auto;
  color: var(--link);
}

a:hover {
  text-decoration: none;
  color: var(--link-hover);
}

h1 a, h2 a, h3 a {
  text-decoration: none;
}

button,
[role=button],
input[type=submit],
input[type=reset],
input[type=button] {
  border: none;
  border-radius: 5px;
  background-color: var(--link);
  font-size: 1rem;
  color: var(--text-reverse);
  /* zero padding needed for leaflet map code */
  padding: 0;
  margin: 0.5rem 0;
}

input[type=range] {
  padding: 0;
}

button:focus,
button:enabled:hover,
[role=button]:focus,
[role=button]:not([aria-disabled=true]):hover,
input[type=submit]:focus,
input[type=submit]:enabled:hover,
input[type=reset]:focus,
input[type=reset]:enabled:hover,
input[type=button]:focus,
input[type=button]:enabled:hover {
  filter: brightness(1.4);
  cursor: pointer;
}

/* Format the expanding box */
details {
  background: transparent;
  margin-bottom: 1rem;
}

details summary > * {
  display: inline;
}

summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--link);
  padding: 0;
}

summary h2 {
  color: var(--link);
}

details[open] summary h2 {
  color: var(--text-headings);
}

summary:hover {
  color: var(--text-headings);
}

details[open] summary {
  margin-bottom: 0.5rem;
  color: var(--text-headings);
}

details[open] summary:hover {
  color: var(--link);
}

details[open] > *:last-child {
  margin-bottom: 0;
}

/* Format tables */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 1.5rem 0;
}

td,
th {
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  padding: 0.2rem 0.5rem;
}

th {
  background: var(--prime);
  color: var(--text-reverse);
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 2;
  line-height: 1;
}

tr:nth-child(even) {
  /* Set every other cell slightly darker. Improves readability. */
  background: var(--light-background);
}

table caption {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* Format lists */
ul {
  margin-left: 0;
}

ul li {
  margin: 0 0 0.4em 0;
  list-style: disc;
}

ul ul li {
  list-style: circle;
  margin: 0 0 0.4em 0;
}

li::marker {
  color: var(--prime);
}

/* Misc body elements */
hr {
  color: var(--border);
  border-top: 1px;
  width: 80%;
  margin: 1rem auto;
}

mark {
  padding: 2px 5px;
  border-radius: 4px;
  background: #ffdd33;
}

img,
video,
iframe {
  max-inline-size: 100%;
  block-size: auto;
  border-radius: 5px;
  color-scheme: light;
}

figure {
  margin: 1rem auto;
}

figcaption {
  font-size: 0.9rem;
  line-height: 1.2;
  text-align: center;
  color: var(--text-light);
  margin-bottom: 1rem;
}

figcaption span {
  font-size: 0.8rem;
}

blockquote {
  margin: 2rem 0 2rem 2rem;
  padding: 0.4rem 0.8rem;
  border-left: 0.35rem solid var(--prime);
  font-style: italic;
}

cite {
  font-size: 0.9rem;
  color: var(--text);
  font-style: normal;
}

.club-logo-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1rem;
}

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

.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: auto;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}

/* event details page show/hide */
details.mobile-hide {
  background: var(--light-background);
  margin-bottom: 1rem;
}

details[open].mobile-hide {
  background: transparent;
}

details[open].mobile-hide summary {
  list-style: none;
}

details[open].mobile-hide summary h3 {
  color: var(--text-headings);
}

details[open].mobile-hide summary:hover {
  color: var(--link);
}

details[open].mobile-hide summary::-webkit-details-marker {
  display: none;
}

summary.mobile-hide {
  font-size: var(--step-2);
  color: var(--link);
}

summary[open].mobile-hide {
  font-size: var(--step-2);
  color: var(--text-headings);
}

summary.explain {
  font-size: var(--step-0);
}

/* ===========================================
   Responsive iframes and embeds
   wrap iframe in a <div class="embed">
   =========================================== */
.youtube-container {
  max-width: 800px;
  margin: 0 auto;
}

iframe.youtube {
  aspect-ratio: 16/9;
  width: 100%;
}

.intro {
  padding-bottom: 1em;
}

.skip-link {
  position: absolute;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--nav-background);
  color: var(--nav-text);
  /* Ensure the Y position is set to zero and any movement on the transform property */
  transform: translateY(0);
  transition: transform 250ms ease-in;
  z-index: 100;
}

/*  https://codepen.io/LDAWG-a11y/pen/WNLobNR
This skip link will slide down from the top, so when it is not focused, I'm setting it's position on the Y axis to -2rem, because the total height of my skip link is 2rem: 1.25rem (font-size) and 2 * .375rem (vertical padding) = 2rem */
.skip-link:not(:focus) {
  transform: translateY(-2rem);
}

/*  I'm setting the outline to invisible here, as the skip link being visible is the focus indicator, in this case */
.skip-link:focus {
  outline: transparent solid 2px;
}

.title-image-portrait {
  max-width: 100%;
}

@media only screen and (min-width: 750px) {
  .title-image-portrait {
    max-width: 50%;
    margin-left: 1rem;
    float: right;
    clear: right;
  }
}
.title-image-landscape {
  max-width: 100%;
}

.title-image-landscape.logo {
  max-width: 50%;
  margin-left: 1rem;
  float: right;
  clear: right;
}

.title-image-landscape img {
  margin-bottom: 0.5rem;
}

/* contact page cards */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
  grid-gap: 1rem;
}

.card-container > .card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.5rem;
  text-align: center;
}

.card h2 {
  font-size: var(--step-2);
}

.card h3 {
  font-size: var(--step-1);
}

.card > img {
  margin-bottom: 0.5rem;
  align-self: center;
}

.card > .button {
  margin-top: auto;
  padding: 0;
  border: none;
  border-radius: 5px;
  align-self: center;
}

.card > form input[type=submit] {
  margin-top: 0;
}

.errors {
  color: var(--link);
  font-size: var(--step-1);
}

.errors li {
  list-style-image: none;
}

.button a,
.button a:visited {
  background-color: var(--nav-background);
  border-radius: 5px;
  border: none;
  color: var(--nav-text);
  text-decoration: none;
  cursor: pointer;
  line-height: 1.1;
  padding: 0.5rem;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
  width: auto;
}

.button a:link {
  text-decoration: none;
}

.button a:hover {
  background-color: var(--nav-background-hover);
  color: var(--nav-text-hover);
}

.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  grid-gap: 1rem;
  clear: both;
}

.photo-gallery figure {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  margin: 0;
}

.inline-photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, [col] 1fr);
  grid-gap: 1rem;
  clear: both;
}

.inline-photo-gallery figure {
  margin: 0;
}

.home-flex-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 1rem;
}

.home-flex-container .summary {
  flex: 1 1 20rem;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.home-flex-container .summary.photo {
  flex: 1 1 40rem;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 1rem;
}

.flex-container .summary {
  flex: 1 1 32rem;
  display: flex;
  flex-direction: column;
  margin: 0;
}

/* When being used as a summary box */
.flex-container details {
  flex: 1 1 18rem;
  display: flex;
  flex-direction: column;
  min-width: 18rem;
  margin: 0;
  padding: 0.6rem 1rem;
}

.flex-container details[open] summary {
  list-style: none;
}

.flex-container details[open] summary::-webkit-details-marker {
  display: none;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
  grid-gap: 2rem;
}

.grid-container .summary {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.column-container {
  columns: 18rem;
  column-gap: 2rem;
  margin: 0;
  clear: both;
}

.column-container .summary {
  break-inside: avoid;
  margin-bottom: 2rem;
}

.entry-page .column-container .summary {
  border: none;
}

@media only screen and (max-width: 750px) {
  .flex-container {
    gap: 1rem;
    margin-bottom: 0;
  }
  .column-container {
    column-gap: 1rem;
  }
  .column-container .summary {
    margin-bottom: 1rem;
  }
  .grid-container {
    grid-gap: 1rem;
  }
}
.col-span {
  column-span: all;
  text-align: center;
  background-color: var(--light-background);
  margin: 1rem 0;
  padding: 0.4rem;
}

.col-span h1, .col-span h2 {
  margin: 0;
}

/* Boxes within containers */
.summary {
  padding: 0.6rem 1rem;
  margin-bottom: 2rem;
  border-radius: 5px;
  border: solid 1px var(--border);
  break-inside: avoid;
  background-color: transparent;
}

.summary img {
  max-inline-size: 100%;
  block-size: auto;
  display: block;
  margin: 0 auto;
  max-height: 50vh;
  object-fit: cover;
  aspect-ratio: 1.2/1;
  object-position: top center;
  border-radius: 5px 5px 0 0;
}

.summary img.graphic {
  object-fit: unset;
  height: unset;
  aspect-ratio: revert;
}

.summary img.logo {
  object-fit: unset;
  height: unset;
  aspect-ratio: revert;
  max-width: 50%;
}

.summary p {
  margin: 0.2rem 0 0.3rem 0;
}

.summary h2 {
  font-size: var(--step-1);
}

.summary-content {
  padding: 0.6rem 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  break-inside: avoid;
}

.featured-box {
  overflow: auto;
  background-color: var(--light-background);
  border: solid 1px var(--border);
  border-radius: 5px;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  clear: both;
}

.invisible-box {
  overflow: auto;
  background-color: transparent;
  border: none;
  padding: 0;
  margin-bottom: 1rem;
  clear: both;
}

.prime-background {
  background-color: var(--light-background);
  border: solid 1px var(--border);
  border-radius: 5px;
  padding: 0.6rem 1rem;
}

.meta {
  font-size: var(--step--1);
  display: inline;
  color: var(--text-light);
}

p.meta {
  margin-top: auto;
  font-size: var(--step--1);
}

.right {
  float: right;
}

.center {
  text-align: center;
}

.right50 {
  max-inline-size: 50%;
  margin: 0 0 1rem 1rem;
  float: right;
  clear: right;
}

.right30 {
  max-inline-size: 30%;
  margin: 0 0 1rem 1rem;
  float: right;
  clear: right;
}

.centred100 {
  max-inline-size: 100%;
  display: block;
  margin: 1rem auto 0 auto;
  padding: 1rem 0;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .right50, .right30 {
    max-inline-size: 100%;
    margin: 0;
    float: none;
  }
}
.image-with-text figure {
  max-inline-size: 100%;
  margin: 0rem;
}

@media only screen and (min-width: 500px) {
  .image-with-text figure {
    max-inline-size: 50%;
    margin-left: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    float: right;
  }
}
#map img {
  max-width: inherit;
  background-color: transparent;
}

#map {
  width: 100%;
  height: 45vh;
  margin: 1rem auto;
  background-color: transparent;
  background-image: url(/assets/images/loadingAnimation.gif);
  padding: 0;
}

ul.crumbs {
  list-style: none;
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.crumbs li {
  display: inline;
  margin: 0;
  font-size: 0.8rem;
}

ul.inLine {
  list-style: none;
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.inLine li {
  display: inline;
  margin: 0;
  font-size: 1rem;
}

ul.no-style {
  list-style: none;
  padding-left: 0;
}

.no-style li {
  list-style: none;
}

/* Format forms */
form {
  max-width: 45rem;
}

textarea,
select,
input {
  font-size: inherit;
  font-family: inherit;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 5px;
  box-shadow: none;
  width: 60%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

/* Add arrow to drop-down */
select {
  background-image: linear-gradient(45deg, transparent 49%, var(--text) 51%), linear-gradient(135deg, var(--text) 51%, transparent 49%);
  background-position: calc(100% - 20px), calc(100% - 15px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

select[multiple] {
  background-image: none !important;
}

/* checkbox and radio button style */
input[type=checkbox],
input[type=radio] {
  vertical-align: bottom;
  position: relative;
}

input[type=radio] {
  border-radius: 100%;
}

input[type=checkbox]:checked,
input[type=radio]:checked {
  background: var(--prime);
}

input[type=checkbox]:checked::after {
  /* Creates a rectangle with colored right and bottom borders which is rotated to look like a check mark */
  content: " ";
  width: 0.1em;
  height: 0.25em;
  border-radius: 0;
  position: absolute;
  top: 0.05em;
  left: 0.18em;
  background: transparent;
  border-right: solid var(--bg) 0.08em;
  border-bottom: solid var(--bg) 0.08em;
  font-size: 1.8em;
  transform: rotate(45deg);
}

input[type=radio]:checked::after {
  /* creates a colored circle for the checked radio button  */
  content: " ";
  width: 0.25em;
  height: 0.25em;
  border-radius: 100%;
  position: absolute;
  top: 0.125em;
  background: var(--bg);
  left: 0.125em;
  font-size: 32px;
}

/* hide honeypot data field */
input#yourMessage {
  display: none;
}

/* Make the textarea wider than other inputs */
textarea {
  width: 100%;
}

/* Makes input fields wider on smaller screens */
@media only screen and (max-width: 720px) {
  textarea,
  select,
  input {
    width: 100%;
  }
}
/* Ensures the checkbox and radio inputs do not have a set width like other input fields */
input[type=checkbox],
input[type=radio] {
  width: auto;
}

/* do not show border around file selector button */
input[type=file] {
  border: 0;
}

/* Grid layout */
nav {
  grid-area: nav;
}

header {
  grid-area: header;
}

main {
  grid-area: main;
}

aside {
  grid-area: aside;
  align-self: start;
}

footer {
  grid-area: footer;
}

.home-page-container, .entry-page-container, .index-page-container {
  max-width: 80rem;
  margin: 0 auto;
}

.with-sidebar {
  grid-area: with-sidebar;
}

@media only screen and (max-width: 749px) {
  .home-page-container, .entry-page-container, .index-page-container {
    display: block;
  }
}
@media only screen and (min-width: 750px) {
  .home-page-container {
    display: grid;
    grid-template-columns: 9rem 1fr 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "nav header header" "nav main aside" "footer footer footer";
  }
}
@media only screen and (min-width: 750px) {
  .entry-page-container {
    display: grid;
    grid-template-columns: 9rem 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "nav header" "nav with-sidebar" "footer footer";
  }
}
@media only screen and (min-width: 750px) {
  .index-page-container {
    display: grid;
    grid-template-columns: 9rem 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "nav header" "nav main" "footer footer";
  }
}
/* file type icons*/
a[href$=".pdf"] {
  background-image: url(/assets/images/icons-16/pdf.png);
  background-image: url(/assets/images/icons-16/pdf.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

a[href$=".doc"] {
  background-image: url(/assets/images/icons-16/word.png);
  background-image: url(/assets/images/icons-16/word.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

a[href$=".docx"] {
  background-image: url(/assets/images/icons-16/word.png);
  background-image: url(/assets/images/icons-16/word.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

a[href$=".xls"] {
  background-image: url(/assets/images/icons-16/excel.png);
  background-image: url(/assets/images/icons-16/excel.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

a[href$=".xlsx"] {
  background-image: url(/assets/images/icons-16/excel.png);
  background-image: url(/assets/images/icons-16/excel.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

a[href^=".zip"] {
  background-image: url(/assets/images/icons-16/zip.png);
  background-image: url(/assets/images/icons-16/zip.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

a[href^="mailto:"] {
  background-image: url(/assets/images/icons-16/email.png);
  background-image: url(/assets/images/icons-16/email.svg);
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 20px;
}

body.hidden-scroll {
  overflow: hidden;
}

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  display: none;
  z-index: 1035;
}

.sl-wrapper {
  z-index: 1040;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
}
.sl-wrapper * {
  box-sizing: border-box;
}
.sl-wrapper button {
  border: 0 none;
  background: transparent;
  font-size: 28px;
  padding: 0;
  cursor: pointer;
}
.sl-wrapper button:hover {
  opacity: 0.7;
}
.sl-wrapper .sl-close {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 10060;
  margin-top: -14px;
  margin-right: -14px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-family: var(--font-body);
  color: #fff;
  font-size: 3rem;
}
.sl-wrapper .sl-counter {
  display: none;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 1060;
  color: #fff;
  font-size: 1.5rem;
}
.sl-wrapper .sl-navigation {
  width: 100%;
  display: none;
}
.sl-wrapper .sl-navigation button {
  position: fixed;
  top: 50%;
  margin-top: -22px;
  height: 44px;
  width: 22px;
  line-height: 44px;
  text-align: center;
  display: block;
  z-index: 10060;
  font-family: var(--font-body);
  color: #fff;
}
.sl-wrapper .sl-navigation button.sl-next {
  right: 5px;
  font-size: 2rem;
}
.sl-wrapper .sl-navigation button.sl-prev {
  left: 5px;
  font-size: 2rem;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 10px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 10px;
    font-size: 3rem;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 20px;
    font-size: 4rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 20px;
    font-size: 4rem;
  }
}
.sl-wrapper.sl-dir-rtl .sl-navigation {
  direction: ltr;
}
.sl-wrapper .sl-image {
  position: fixed;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 10000;
}
.sl-wrapper .sl-image img {
  margin: 0;
  padding: 0;
  display: block;
  border: 0 none;
  width: 100%;
  height: auto;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
.sl-wrapper .sl-image iframe {
  background: #000;
  border: 0 none;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
.sl-wrapper .sl-image .sl-caption {
  display: none;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.sl-wrapper .sl-image .sl-caption.pos-top {
  bottom: auto;
  top: 0;
}
.sl-wrapper .sl-image .sl-caption.pos-outside {
  bottom: auto;
}
.sl-wrapper .sl-image .sl-download {
  display: none;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #fff;
  z-index: 1060;
}

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  -webkit-animation: pulsate 1s ease-out infinite;
  -moz-animation: pulsate 1s ease-out infinite;
  -ms-animation: pulsate 1s ease-out infinite;
  -o-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite;
}

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.sl-transition {
  transition: -moz-transform ease 200ms;
  transition: -ms-transform ease 200ms;
  transition: -o-transform ease 200ms;
  transition: -webkit-transform ease 200ms;
  transition: transform ease 200ms;
}

@-webkit-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-moz-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-o-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
@-ms-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
/* ================================================
   Print styles
   ================================================ */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  body {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.25;
    font-size: 13pt;
  }
  /* Headings */
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
    font-weight: bold;
  }
  h1 {
    font-size: 20pt;
  }
  h2 {
    font-size: 18pt;
  }
  h3 {
    font-size: 16pt;
  }
  h4, h5, h6 {
    font-size: 14pt;
  }
  p, h2, h3 {
    orphans: 3;
    widows: 3;
  }
  code {
    font: 12pt Courier, monospace;
  }
  blockquote {
    margin: 1.2em;
    padding: 1em;
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  hr {
    background-color: #ccc;
  }
  ul li {
    list-style-image: none;
    margin: 0 0 0.3em 0;
  }
  /* Images */
  img {
    margin: 1em 1em 1em 0;
    max-width: 100% !important;
  }
  a img {
    border: none;
  }
  /* Links */
  a:link, a:visited {
    background: transparent;
    font-weight: normal;
    color: #000;
  }
  a:link[href]:after, a[href]:visited:after {
    content: " (" attr(href) ") ";
    font-size: 85%;
    color: #666;
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /* Don't show linked images  */
  a[href] {
    color: #000;
  }
  a[href$=".jpg"]:after, a[href$=".jpeg"]:after, a[href$=".gif"]:after, a[href$=".png"]:after {
    content: " (" attr(href) ") ";
    display: none;
  }
  /* Don't show links that are fragment identifiers, or use the `javascript:` pseudo protocol .. taken from html5boilerplate */
  a[href^="#"]:after, a[href^="javascript:"]:after {
    content: "";
  }
  /* Table */
  table {
    margin: 1px;
    text-align: left;
  }
  th {
    border-bottom: 1px solid #333;
    font-weight: bold;
  }
  td {
    border-bottom: 1px solid #333;
  }
  th, td {
    padding: 4px 10px 4px 0;
  }
  tfoot {
    font-style: italic;
  }
  caption {
    background: #fff;
    margin-bottom: 2em;
    text-align: left;
  }
  thead {
    display: table-header-group;
  }
  img, tr {
    page-break-inside: avoid;
  }
  main, section, aside {
    width: 100%;
  }
  /* Hide various parts from the site only print main content --*/
  nav, .header, footer {
    display: none;
  }
  /*-- remove embeded videos --*/
  .embed {
    display: none;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    line-height: 0pt !important;
    white-space: nowrap;
  }
}
header {
  padding: 0 1rem;
  margin: 0 auto;
}

.container {
  margin: 0 auto;
  padding: 0;
}

main, #main {
  padding: 1rem;
}

.with-sidebar {
  display: flex;
  flex-wrap: wrap;
}

.with-sidebar main {
  flex-basis: 35rem;
  flex-grow: 1;
  flex-shrink: 5;
  max-width: 50rem;
}

.with-sidebar aside {
  flex-basis: 12rem;
  flex-grow: 1;
  flex-shrink: 1;
}

section {
  padding-bottom: 1em;
}

aside {
  padding: 1rem;
}

footer {
  margin: 0;
  padding: 0.5rem 15vw;
  font-size: var(--step-0);
  text-align: center;
}

@media only screen and (max-width: 749px) {
  footer {
    padding: 0.5rem 1rem;
  }
}
/* Format navigation */
nav {
  font-size: 1.3rem;
  gap: 0.6rem 0.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  background-color: var(--bg);
  z-index: 10000;
}

nav a, nav a:visited,
nav label {
  line-height: 1.2;
  border-radius: 3px;
  background-color: var(--nav-background);
  color: var(--nav-text);
  display: none;
  padding: 0.3rem 0.5rem;
  text-decoration: none;
  transition: background 0.2s ease-out;
}

nav a:hover, nav label:hover, nav a:focus-visible, nav label:focus-visible {
  background-color: var(--nav-background-hover);
  color: var(--nav-text-hover);
}

nav a[aria-current=page], nav a[aria-current=true] {
  background-color: var(--nav-background-hover);
  color: var(--nav-text-hover);
}

@media (min-width: 750px) {
  nav a, nav label {
    margin: 0 0 0.5rem 0;
    display: inline-block;
    text-align: center;
  }
}
nav label {
  display: block;
  background-color: var(--nav-background);
  color: var(--nav-text);
  padding: 0.2rem 2rem;
}

@media (min-width: 750px) {
  nav {
    font-size: 1rem;
    top: 0;
    left: unset;
    bottom: auto;
    flex-direction: column;
    padding: 0.5rem 0 0 1rem;
    gap: 0;
    background-color: transparent;
  }
  nav label {
    display: none;
  }
}
nav #nav-toggle {
  display: none;
}

@media (max-width: 749px) {
  nav #nav-toggle:checked ~ a, nav #nav-toggle:checked ~ label {
    display: block;
  }
}
/* Global variables. */
:root,
::backdrop {
  --font-body: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --font-headings: verdana, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  --bg: #fff;
  --prime: hsl(197, 37%, 31%); /* grey/blue  */
  --second: hsl(14, 77%, 46%); /* orange */
  --light-background: hsl(197, 37%, 97%); /* light grey/blue */
  --text: hsl(0, 0%, 20%); /* blackish */
  --text-headings: var(--prime); /* grey/blue */
  --text-light: hsl(0, 0%, 40%); /* lighter black */
  --border: hsl(197, 37%, 80%); /* light grey/blue */
  --link: var(--prime);
  --link-hover: var(--second);
  --text-reverse: hsl(0, 0%, 100%); /*white */
  --nav-background: var(--prime);
  --nav-background-hover: var(--second); /* 325D6E*/
  --nav-text:hsl(0, 0%, 100%);
  --nav-text-hover:hsl(0, 0%, 100%);
}

header {
  z-index: -1;
}

main {
  margin-top: 0px;
  background-color: transparent;
}
