*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html {
  background: var(--clr_white);
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
  -webkit-tap-highlight-color: transparent;
  font: normal normal var(--fontweight-normal) 1em/1.5 "Inter", sans-serif;
  color: var(--clr_gray_dark);
}

body {
  font-size: var(--fs-base);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a:not(.btn, .mainNav_link, .sectionNav_item) {
  text-decoration: none;
  color: inherit;
}

a.editPage {
  float: right;
  font-size: 14px;
  font-weight: 700;
  background-color: red;
  color: white !important;
  text-decoration: none;
  padding: 0.5em 1em;
  border-radius: 4rem;
}

.contentSidebar a:not(.btn) {
  color: var(--clr_primary_accent);
}

a:not(.btn, .mainNav_link, .sectionNav_item):hover,
a:not(.btn, .mainNav_link, .sectionNav_item):visited {
  color: inherit;
}

:focus {
  outline-color: var(--clr_primary_accent);
}

.itemsList_link,
.languageSelector_link,
.sectionNav_item,
.mainNav_link,
.button,
.btn {
  text-decoration: none;
  color: currentColor;
}

b,
strong,
th {
  font-weight: var(--fontweight-bold);
}

button {
  padding: 0;
  border: none;
  background: transparent;
  -webkit-appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.btn {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: var(--fontweight-bold);
  line-height: 1.2;
  padding: 0.5em 1.5em;
  background-color: var(--clr_gray);
  border: solid 0.125rem var(--clr_gray);
  color: var(--clr_white);
  border-radius: 4rem;
  transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease;
}

.btn:hover,
.btn:focus {
  background-color: white;
  border-color: currentColor;
  color: var(--clr_gray_dark);
}

@media only screen and (min-width: 1280px) {
  .btn {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 1600px) {
  .btn {
    /* font-size: 1.25rem; */
  }
}

.btn--accent {
  background-color: var(--clr_primary_accent);
  border-color: var(--clr_primary_accent);
  color: var(--clr_primary_dark);
}

.btn--accent:hover,
.btn--accent:focus {
  border-color: var(--clr_primary_accent);
}

.btn--dark {
  background-color: var(--clr_primary_dark);
  border-color: var(--clr_primary_dark);
  color: white;
}

.btn--dark:hover,
.btn--dark:focus {
  background-color: var(--clr_white);
  border-color: var(--clr_primary_dark);
  color: var(--clr_primary_dark);
}

.btn--pale {
  background-color: var(--clr_primary_pale);
  border-color: var(--clr_primary_pale);
  color: var(--clr_primary_dark);
}

.btn--pale:hover,
.btn--pale:focus {
  border-color: var(--clr_primary_pale);
  color: var(--clr_primary_dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: var(--fs-base);
  line-height: 1.2;
  font-weight: var(--fontweight-bold);
  text-wrap: pretty;
}

h1,
h2 {
  color: var(--clr_primary_dark);
}

h3 {
  color: var(--clr_primary);
}

h4,
h5,
h6 {
  color: var(--clr_black);
}

h1 {
  font-size: calc(1.5rem + ((1vw - 0.2rem) * 2.5));
  font-size: var(--fs-xxxl);
  font-weight: var(--fontweight-normal);
  margin: 0;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 1.5rem);
  font-size: var(--fs-xxl);
}

h3 {
  font-size: clamp(1.125rem, 1rem + 1.25vw, 1.375rem);
  font-size: var(--fs-xl);
}

h4 {
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 1rem + 1.125vw, 1.25rem);
  font-size: var(--fs-lg);
}

h5 {
  font-weight: var(--fontweight-medium);
  font-size: var(--fs-md);
}

h6 {
  font-weight: var(--fontweight-normal);
  font-style: italic;
  font-size: var(--fs-md);
}

h1 > a,
h2 > a,
h3 > a,
h4 > a,
h5 > a,
h6 > a {
  color: currentColor;
}

.sectionTags + * {
  margin-top: 1.5rem;
}

.sectionTags a {
  color: var(--clr_primary);
}

.content * + :is(p, ul, ol, hr) {
  margin-top: 1em;
}

* + :is(h1, h2, h3, h4, h5, h6) {
  margin-top: 1.375em;
}

h1 + h2 {
  margin-top: 0.5em;
}

p,
li {
  text-wrap: pretty;
}

@media only screen and (min-width: 720px) {
  .intro {
    font-size: 1.25em;
  }
}

ul,
ol {
  margin-left: 1.75em;
}

li + li {
  margin-top: 0.625em;
}

::marker {
  color: var(--clr_primary_dark); /*changes color of bullets*/
}

.contentSidebar ::marker {
  color: var(--clr_primary_accent);
}

.divider::before {
  content: "";
  display: block;
  height: 0.125rem;
  background-color: var(--clr_primary_pale);
  margin-bottom: 1.5rem;
}

* + .divider {
  margin-top: 1.5rem;
}

.contentSidebar .divider::before {
  opacity: 0.2;
}

.insetBox {
  padding: 1.5rem;
  background-color: var(--clr_primary_pale);
  margin: 1.5rem 0;
}

@media only screen and (min-width: 1280px) {
  .insetBox {
    padding: 2rem;
    margin: 2rem 0;
  }
}

.insetBox > :last-child {
  margin-bottom: 0;
}

.featuredPhoto {
  margin: 0 0 1.5rem;
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
}

.caption {
  font-size: 0.875rem;
  font-style: italic;
}

.featuredPhoto .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 1rem 1.5rem;
}

.meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.meta > span {
  font-size: 0.75rem;
  font-weight: var(--fontweight-medium);
  color: var(--clr_gray);
  white-space: nowrap;
}

.meta > span:not(:last-child)::after {
  content: "/";
  margin: 0 0.75em;
  color: var(--clr_gray_light);
}

/*siteHeader*/

.siteHeader {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}

.topBar {
  background-color: var(--clr_primary_dark);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 1.5rem;
  height: 3rem;
}

.tagline {
  font-size: 0.625rem;
  line-height: 1.25;
  color: var(--clr_white);
  font-style: italic;
}

.masthead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: min(2rem, 4vw) min(3rem, 6vw);
  background-color: var(--clr_white);
  gap: 3rem;
}

.siteLogo img {
  width: auto;
  height: min(3rem, 6vw);
}

.navToggle {
  color: var(--clr_gray);
  outline: solid 0.75rem transparent;
}

.navToggle span::before {
  content: "menu";
}
.navOpen .navToggle span::before {
  content: "close";
}

@media only screen and (max-width: 1279px) {
  .mainNav_wrap {
    padding: min(6rem, 12vw);
    background-color: var(--clr_gray_pale);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    overflow-y: scroll;
    height: calc(100dvh - 7rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    display: none; /*hide by default*/
  }

  .navOpen .mainNav_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; /* navOpen is added to body by js */
  }

  .navOpen {
    overflow: hidden; /* disable body scroll while nav is open */
  }

  .mainNav_wrap > * + * {
    margin-top: 2rem;
  }

  .utilities {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .utilities > * + * {
    margin-top: 2rem;
  }

  .mainNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  a.mainNav_link {
    display: block;
    text-decoration: none;
    padding: 0.5rem 0;
    font-size: 1.25rem;
    font-weight: var(--fontweight-medium);
    color: var(--clr_gray);
  }
  a.mainNav_link:hover,
  a.mainNav_link:focus {
    color: var(--clr_gray_dark);
  }

  a.mainNav_link--active {
    color: var(--clr_primary);
  }

  .dropNav {
    display: none;
  }

  .dropNav nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.33);
  }

  .dropNav_link {
    padding: 0.25rem 0;
  }

  .mainNav_item--dropDown .mainNav_link::after {
    content: "+";
    color: var(--clr_primary);
    margin-left: 0.25rem;
  }
}

/*language selector */

.languageSelector {
  position: relative;
  border-radius: 0.25rem;
}

.languageSelector--open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.activeLanguage {
  background-color: rgb(0 0 0 / 0.5);
  color: var(--clr_white);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 1rem;
  line-height: 3rem;
  font-weight: var(--fontweight-medium);
  width: 100%;
}

.activeLanguage::before,
.activeLanguage::after {
  content: "language";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  color: var(--clr_primary_accent);
  font-family: "Material Icons";
  font-size: 1.5rem;
  font-weight: normal;
  height: 100%;
  width: 3rem;
}

.activeLanguage::after {
  content: "arrow_drop_down";
  margin-left: auto;
}

.languageSelector_menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  background: var(--clr_white);
  -webkit-box-shadow: 0.125rem 0.125rem 0.5rem var(--clr_gray_light);
  box-shadow: 0.125rem 0.125rem 0.5rem var(--clr_gray_light);
  display: none; /* hide by default */
}

.languageSelector--open .languageSelector_menu {
  display: flex;
}

.languageSelector_menu > * + * {
  border-top: solid 1px var(--clr_gray_pale);
}

.languageSelector_link {
  font-size: 1rem;
  line-height: 3rem;
  font-weight: var(--fontweight-medium);
  color: var(--clr_gray);
  padding: 0 0 0 3rem;
}

.languageSelector_link:hover,
.languageSelector_link:focus {
  background-color: var(--clr_gray_pale);
  color: var(--clr_gray_dark);
}

.languageSelector_link--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 1280px) {
  .languageSelector {
    border-radius: 0;
    width: 180px;
  }

  .languageSelector_menu {
    border-radius: 0;
  }

  .activeLanguage,
  .languageSelector_link {
    font-size: 0.75rem;
  }
}

.siteSearch_form {
  position: relative;
}

.siteSearch_form * {
  margin: 0;
}

.siteSearch_form input {
  display: block;
  padding: 0.25rem 0.5rem 0.25rem 3rem;
  height: 3rem;
  font-size: 1.1rem;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: solid 0.125rem var(--clr_gray);
  border-radius: 3rem;
}

.siteSearch_form label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.clearSearch {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

.siteSearch_form input:valid + label + .clearSearch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 1280px) {
  .siteSearch_form input {
    width: 3rem;
    padding: 0;
    border: none;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.25);
    font-size: 0.875rem;
    font-weight: var(--fontweight-normal);
    color: transparent;
    -webkit-transition: width 300ms ease-out, background-color 300ms ease;
    -o-transition: width 300ms ease-out, background-color 300ms ease;
    transition: width 300ms ease-out, background-color 300ms ease;
  }

  .siteSearch_form input::-webkit-input-placeholder {
    color: transparent;
    -webkit-transition: color 300ms ease;
    transition: color 300ms ease;
  }

  .siteSearch_form input::-moz-placeholder {
    color: transparent;
    -moz-transition: color 300ms ease;
    transition: color 300ms ease;
  }

  .siteSearch_form input:-ms-input-placeholder {
    color: transparent;
    -ms-transition: color 300ms ease;
    transition: color 300ms ease;
  }

  .siteSearch_form input::-ms-input-placeholder {
    color: transparent;
    -ms-transition: color 300ms ease;
    transition: color 300ms ease;
  }

  .siteSearch_form input::placeholder {
    color: transparent;
    -webkit-transition: color 300ms ease;
    -o-transition: color 300ms ease;
    transition: color 300ms ease;
  }

  .siteSearch_form label {
    color: var(--clr_gray_light);
  }

  .siteSearch_form input:focus {
    width: 18rem;
    padding: 0 2.5rem;
    background-color: var(--clr_white);
    color: black;
  }

  .siteSearch_form input:focus::-webkit-input-placeholder {
    color: var(--clr_gray_light);
  }

  .siteSearch_form input:focus::-moz-placeholder {
    color: var(--clr_gray_light);
  }

  .siteSearch_form input:focus:-ms-input-placeholder {
    color: var(--clr_gray_light);
  }

  .siteSearch_form input:focus::-ms-input-placeholder {
    color: var(--clr_gray_light);
  }

  .siteSearch_form input:focus::placeholder {
    color: var(--clr_gray_light);
  }
}

/*masthead stuff above 1280 and above*/

@media only screen and (min-width: 1280px) {
  .mainNav_wrap {
    position: static;
    z-index: 1000;
  }

  .mainNav_wrap,
  .navOpen .mainNav_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navOpen {
    overflow: auto;
  }
  .navToggle {
    display: none;
  }

  .mainNav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 1.5rem;
  }

  .mainNav_item {
    position: relative;
  }

  .mainNav_link {
    display: block;
    font-size: clamp(0.75rem, 0.5888rem + 0.6612vw, 1.25rem);
    font-weight: var(--fontweight-medium);
    line-height: 1;
    white-space: nowrap;
    color: var(--clr_gray);
    background-color: #fff;
    padding: 0.625rem 0 0.5rem;
    -webkit-transition: color 150ms ease, border-color 150ms ease;
    -o-transition: color 150ms ease, border-color 150ms ease;
    transition: color 150ms ease, border-color 150ms ease;
  }

  .mainNav_link:hover,
  .mainNav_link:focus {
    color: var(--clr_primary_dark);
  }

  .mainNav_link--active,
  .mainNav_link--active:hover,
  .mainNav_link--active:focus {
    color: var(--clr_primary);
  }

  .dropNav {
    display: none;
  }

  .dropNav {
    position: absolute;
    left: 0;
    top: calc(100% + 1rem);
    z-index: 1000;
    background-color: white;
    box-shadow: 0 0 5px var(--clr_gray_light);
  }

  .dropNav nav {
    display: flex;
    flex-direction: column;
    padding: 1rem;
  }

  .dropNav_link {
    padding: 0.5em 1em;
    white-space: nowrap;
    font-size: 0.875rem;
  }

  .dropNav_link:hover {
    color: var(--clr_primary_dark);
  }

  .dropNav_link + .dropNav_link {
    border-top: solid 0.125rem var(--clr_gray_pale);
  }

  .mainNav_link--button {
    padding: 0.5em 1.5em;
    border-radius: 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start;
    background-color: var(--clr_primary_accent);
    border: solid 2px var(--clr_primary_accent);
    color: var(--clr_primary_dark);
    font-weight: var(--fontweight-bold);
    -webkit-transition: background-color 150ms ease, border-color 150ms ease;
    -o-transition: background-color 150ms ease, border-color 150ms ease;
    transition: background-color 150ms ease, border-color 150ms ease;
  }

  .mainNav_link--button:hover,
  .mainNav_link--button:focus {
    background-color: var(--clr_white);
    border-color: var(--clr_primary_accent);
  }

  .utilities {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media only screen and (min-width: 1280px) {
  .topBar {
    padding: 0 3rem;
  }
  .tagline {
    font-size: 0.75rem;
  }
}

/*main content */

.mainContent {
  display: grid;
  max-width: var(--max_width);
  margin: 0 auto;
  padding: min(6rem, 9vw) min(3rem, 6vw);
  gap: min(4rem, 8vw);
}

.sectionNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.125rem 1.5rem;
  margin-bottom: 1.5rem;
  background-color: var(--clr_primary_pale);
}

a.sectionNav_item {
  color: var(--clr_gray);
  padding: 0.5rem 0;
  font-weight: var(--fontweight-medium);
  line-height: 1.25;
  font-size: 1.125rem;
}

a.sectionNav_item:hover,
a.sectionNav_item:focus {
  color: var(--clr_gray_dark);
}

a.sectionNav_item--active,
a.sectionNav_item--active:hover,
a.sectionNav_item--active:focus {
  color: var(--clr_primary);
  cursor: default;
}

.contentSidebar {
  padding: 1.5rem;
  background-color: var(--clr_gray_dark);
  color: var(--clr_white);
}

@media only screen and (min-width: 1280px) {
  .sectionNav,
  .contentSidebar {
    padding: 2rem;
  }
}

.contentSidebar h2,
.contentSidebar h3,
.contentSidebar h4 {
  color: var(--clr_primary_accent);
}

.contentSidebar h5,
.contentSidebar h6 {
  color: var(--clr_white);
}

.bg--gray_pale {
  background-color: var(--clr_gray_pale);
}

.bg--gray_dark {
  background-color: var(--clr_gray_dark);
}

/*footer*/
.siteFooter {
  background: var(--clr_primary_dark);
  color: var(--clr_white);
}

.footerContent {
  max-width: var(--max_width);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 2rem;
}

@media only screen and (min-width: 720px) {
  .footerContent {
    padding: 3rem;
  }
}

.footerTitle {
  color: var(--clr_primary_accent);
  font-weight: var(--fontweight-medium);
  font-size: 1.25rem;
}

.hashtag {
  font-size: 0.75rem;
  text-transform: uppercase;
  display: block;
  color: var(--clr_white);
}

.footerContent .col > * + * {
  margin-top: 1rem;
}

.footerContact a[href^="mailto"] {
  color: var(--clr_primary_accent);
  font-weight: var(--fontweight-medium);
}

.socialIcons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.socialIcons > a {
  filter: invert(1) opacity(0.66);
  transition: filter 150ms;
}

.socialIcons a:hover,
.socialIcons a:focus {
  filter: invert(1) opacity(1);
}

.socialIcons img {
  width: 2rem;
}

.socialIcons_aspx {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

    .socialIcons_aspx > a {
        filter: opacity(0.66);
        transition: filter 150ms;
    }

    .socialIcons_aspx a:hover,
    .socialIcons_aspx a:focus {
        filter: opacity(1);
    }

    .socialIcons_aspx img {
        width: 2rem;
    }

.signoff {
  margin-top: 3rem;
}

.siteCopyright {
  font-size: 0.875rem;
}

.footerLink {
  text-decoration: underline;
  margin-left: 0.75em;
  color: currentColor;
}

.footerLink:hover,
.footerLink:focus {
  color: var(--clr_primary_accent);
}

.cookiesAlert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 2rem 3rem;
}

.cookiesAlert--cookieSet {
  display: none;
}

.cookiesAlert_inset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.5rem;
  border-bottom: none;
  max-width: 1600px;
  margin: 0 auto;
  color: var(--clr_white);
}

.cookiesAlert_text p {
  margin: 0;
  font-size: 0.875rem;
  font-weight: var(--fontweight-medium);
  line-height: 1.25;
  color: var(--clr_white);
}

.cookiesAlert_text a {
  white-space: nowrap;
  text-decoration: underline;
  color: var(--clr_primary_accent);
}

@media only screen and (min-width: 720px) {
  .cookiesAlert_inset {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .cookiesAlert_text {
    font-size: 1rem;
  }
}

/*column layouts*/

.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3rem;
}

.columns + .columns {
  margin-top: 3rem;
}

.columns--inset1,
.columns--inset2 {
  padding: 0 calc(8.3333333% + 3rem);
  padding: 0;
  width: min(100%, 1200px);
  margin-inline: auto;
}

@media only screen and (min-width: 1280px) {
  .columns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: flex-start;
  }

  .col {
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }

  .col--1 {
    -webkit-box-flex: calc(100% * 0.083333333);
    -ms-flex: calc(100% * 0.083333333);
    flex: calc(100% * 0.083333333);
  }
  .col--2 {
    -webkit-box-flex: calc(100% * 0.166666667);
    -ms-flex: calc(100% * 0.166666667);
    flex: calc(100% * 0.166666667);
  }
  .col--3 {
    -webkit-box-flex: calc(100% * 0.25);
    -ms-flex: calc(100% * 0.25);
    flex: calc(100% * 0.25);
  }
  .col--4 {
    -webkit-box-flex: calc(100% * 0.333333333);
    -ms-flex: calc(100% * 0.333333333);
    flex: calc(100% * 0.333333333);
  }
  .col--5 {
    -webkit-box-flex: calc(100% * 0.416666667);
    -ms-flex: calc(100% * 0.416666667);
    flex: calc(100% * 0.416666667);
  }
  .col--6 {
    -webkit-box-flex: calc(100% * 0.5);
    -ms-flex: calc(100% * 0.5);
    flex: calc(100% * 0.5);
  }
  .col--7 {
    -webkit-box-flex: calc(100% * 0.583333333);
    -ms-flex: calc(100% * 0.583333333);
    flex: calc(100% * 0.583333333);
  }
  .col--8 {
    -webkit-box-flex: calc(100% * 0.666666667);
    -ms-flex: calc(100% * 0.666666667);
    flex: calc(100% * 0.666666667);
  }
  .col--9 {
    -webkit-box-flex: calc(100% * 0.75);
    -ms-flex: calc(100% * 0.75);
    flex: calc(100% * 0.75);
  }
  .col--10 {
    -webkit-box-flex: calc(100% * 0.833333333);
    -ms-flex: calc(100% * 0.833333333);
    flex: calc(100% * 0.833333333);
  }
  .col--11 {
    -webkit-box-flex: calc(100% * 0.916666667);
    -ms-flex: calc(100% * 0.916666667);
    flex: calc(100% * 0.916666667);
  }
  .col--12 {
    -webkit-box-flex: calc(100% * 1);
    -ms-flex: calc(100% * 1);
    flex: calc(100% * 1);
  }
}

@media only screen and (max-width: 1279px) {
  .columns--mobileFlip {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

/*home hero */

.homeHero {
  border: solid 0.375rem var(--clr_primary_accent);
  border-image: linear-gradient(to top right, var(--clr_primary_accent), var(--clr_primary)) 1;
}

.homeHero_info {
  padding: min(8rem, 12vw) min(4rem, 6vw);
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 1.5rem;
}

.homeHero_theme {
  font-size: calc(1.5rem + ((1vw - 0.2rem) * 2.5));
  line-height: 1.2;
  color: var(--clr_primary_dark);
  text-wrap: balance;
  font-weight: var(--fontweight-bold);
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 960px) {
  .homeHero_theme {
    font-size: calc(2.25rem + ((1vw - 0.6rem) * 1.25));
  }
}

@media only screen and (min-width: 1600px) {
  .homeHero_theme {
    font-size: 2.75rem;
  }
}

.homeHero_dateLocation {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.homeHero_dateLocation > span {
  font-size: 0.875rem;
  font-weight: var(--fontweight-bold);
  letter-spacing: 0;
  color: var(--clr_gray_dark);
}

.homeHero_dateLocation > span:not(:last-child)::after {
  content: "/";
  margin: 0 0.75em;
  color: var(--clr_gray_light);
}

.homeHero_btns {
  padding-top: 1.5rem;
  border-top: solid 0.125rem var(--clr_primary_pale);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media only screen and (min-width: 960px) {
  .homeHero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-width: 0.75rem;
  }
  .homeHero_graphic {
    position: relative;
  }
  .homeHero_graphic img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    z-index: -1;
    width: 100%;
    height: 100%;
  }
  .homeHero_dateLocation > span {
    font-size: 0.875rem;
  }
}

/*organizers*/

.eventOrganizers {
  padding: min(10vw, 4rem);
  background-color: var(--clr_gray_pale);
}

.eventOrganizers h3 {
  max-width: var(--max_width);
  margin: 0 auto;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: var(--letter_spacing);
}

.eventOrganizers_logos + h3 {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: solid 2px white;
}

.eventOrganizers_logos {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem 6rem;
}

.eventOrganizers_logos img {
  max-height: min(15vw, 5rem);
  width: auto;
}

@media only screen and (min-width: 1440px) {
}

/*OTHER EVENTS*/

.otherEvents {
  padding-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.otherEvents_title {
  margin: 0;
  padding: 0.75rem 2rem;
  background-color: var(--clr_gray_pale);
  color: var(--clr_gray);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: var(--letter_spacing);
}

.otherEvents_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin-top: 1rem;
}

.otherEvents_item {
  padding: 1.5rem;
  border: solid 0.125rem var(--clr_gray_pale);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 0.25rem;
}

.otherEvents_item + .otherEvents_item {
  margin-top: 1rem;
}

.otherEvents_item:hover,
.otherEvents_item:focus {
  border-color: var(--clr_primary_accent);
}

.otherEvents_item > * + * {
  margin-top: 0.75rem;
}

.otherEvent_date + * {
  margin-top: 1.5rem;
}

.otherEvent_date,
.otherEvent_location {
  text-transform: uppercase;
  font-weight: var(--fontweight-medium);
  font-size: 0.75rem;
  letter-spacing: var(--letter_spacing);
  color: var(--clr_gray);
}

.otherEvent_logo img {
  max-height: 1.5rem;
  width: auto;
}

.otherEvent_title {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: var(--fontweight-bold);
}

.otherEvent_title > span {
  color: var(--clr_gray_dark);
}

.otherEvent_theme {
  font-size: 1.25rem;
  line-height: 1.25;
}

@media only screen and (min-width: 1280px) {
  .otherEvents {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .otherEvents_title {
    padding: 0.75rem 3rem;
  }
  .otherEvents_list {
    margin-top: 3rem;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .otherEvents_item + .otherEvents_item {
    margin-top: 0;
    margin-left: 1rem;
  }
  .otherEvents_item {
    padding: 1.5rem;
  }
}

/*items lists*/

.itemsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem 2rem;
}

* + .itemsList {
  margin-top: 1.5rem;
}

.itemsList + * {
  margin-top: 1.5rem;
}

.itemsList_link {
  border: solid 1px var(--clr_primary_light);
  padding: 1.5rem;
  gap: 1rem;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: border-color 150ms ease;
  -o-transition: border-color 150ms ease;
  transition: border-color 150ms ease;
  position: relative;
}

.itemsList_link[href]:hover,
.itemsList_link[href]:focus {
  border-color: var(--clr_gray);
}

.itemsList_link > * {
  margin: 0;
}

.itemsList_link > .meta:last-child {
  margin-top: auto;
}

.itemsList_title {
  font-weight: var(--fontweight-medium);
  color: var(--clr_gray_dark);
}

.itemsList_text {
  position: relative;
}

.itemsList_text > * {
  margin: 0;
}

.itemsList_text > * + * {
  margin-top: 0.75rem;
}

.importantDates .itemsList_link {
  min-height: 6rem;
}

.importantDates .itemsList_link[href] .itemsList_text {
  padding-right: 2rem;
}

.importantDates .itemsList_link[href] .itemsList_text::after {
  content: "arrow_forward";
  font-family: "Material Icons";
  color: var(--clr_primary);
  font-size: 1.5rem;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.importantDates .itemsList_link[href]:hover .itemsList_text::after,
.importantDates .itemsList_link[href]:focus .itemsList_text::after {
  color: var(--clr_gray);
}

@media only screen and (min-width: 1280px) {
  .itemsList_title {
    font-size: 1.25rem;
  }
}

.importantDates .itemsList_link {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 1.25rem;
}

.importantDates .itemsList_title {
  color: var(--clr_gray);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 6rem;
  border-right: solid 1px #ddd;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 1.25rem 0 0;
  padding: 0 1.25rem 0 0;
}

.itemsList_link--important {
  border-color: var(--clr_primary_accent);
}

.itemsList_link--important .itemsList_title {
  color: var(--clr_primary);
  border-color: var(--clr_primary_accent);
}

.importantDates .itemsList_link--important:hover,
.importantDates .itemsList_link--important:focus {
  border-color: var(--clr_primary);
}

.monthDay,
.year,
.time {
  text-align: center;
  font-size: 1rem;
  line-height: 1.25;
  text-transform: uppercase;
}

.monthDay {
  font-size: 0.875rem;
}

.importantDates .itemsList_title .time {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.importantDates .itemsList_text {
  margin: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

/*past congresses*/

.pastCongressesList > .itemsList_link + .itemsList_link {
  margin-top: 1.5rem;
}

.pastCongressesList .itemsList_link {
  padding: 0;
  overflow: hidden;
}

.pastCongressesList .itemsList_link > * + * {
  margin: 0;
}

.pastCongressesList .itemsList_text {
  padding: 1.25rem;
}

.pastCongressesList .itemsList_text img {
  max-height: 1.5rem;
}

.pastCongress_title {
  font-weight: var(--fontweight-bold);
  color: var(--clr_primary);
}

.pastCongress_theme {
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--clr_gray);
  padding-bottom: 0.75rem;
}

@media only screen and (min-width: 720px) {
  .pastCongressesList .itemsList_link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .pastCongressesList .itemsList_link > * {
    margin: 0;
    -webkit-box-flex: 100%;
    -ms-flex: 100%;
    flex: 100%;
  }

  .pastCongressesList .itemsList_graphic {
    margin: 0;
    position: relative;
  }

  .pastCongressesList .itemsList_graphic img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .pastCongressesList .itemsList_text {
    padding: 3rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .pastCongressesList .itemsList_text > * + * {
    margin: 0.5rem 0 0;
  }
}

/*tags menu*/

.tagsMenu {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  overflow: auto;
}

.tagsMenu > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.1;
}

.tagsMenu_item {
  gap: 1em;
  font-size: 0.75rem;
  padding: 0.5em 1.5em;
  background-color: var(--clr_gray_pale);
  color: var(--clr_gray);
  border-radius: 1.5rem;
  text-transform: uppercase;
  letter-spacing: var(--letter_spacing);
  font-weight: var(--fontweight-bold);
  border: solid 1px transparent;
  -webkit-transition: border-color 100ms ease;
  -o-transition: border-color 100ms ease;
  transition: border-color 100ms ease;
}

.tagCount {
  font-size: 0.625rem;
  line-height: 1;
  font-weight: var(--fontweight-bold);
  color: var(--clr_primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tagsMenu_item:hover,
.tagsMenu_item:focus {
  border-color: var(--clr_gray_light);
}

.tagsMenu_item--active,
.tagsMenu_item--active:hover,
.tagsMenu_item--active:focus {
  background-color: var(--clr_gray_dark);
  border-color: var(--clr_gray_dark);
  color: var(--clr_primary_accent);
}

.itemsList--cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
}

@media only screen and (min-width: 720px) {
  .itemsList--cards {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
  }
}

.newsPage {
  grid-auto-flow: dense;
}

.newsPage .itemsList_link--featured,
.newsPage .itemsList_link--featured:hover,
.newsPage .itemsList_link--featured:focus {
  border-color: var(--clr_primary_accent);
  border-width: 0.125rem;
}

@media only screen and (min-width: 1280px) {
  .newsPage .itemsList_title {
    font-size: 1.375rem;
  }
}

.note {
  outline: solid 2px lime;
}

.aspNetHidden {
  display: none;
  line-height: 0;
}

table {
  border-collapse: collapse;
  vertical-align: top;
  margin-block: 1.5rem;
}

tr:nth-child(odd) {
  background-color: #eee;
}

th,
td {
  padding: 0.25rem 0.375rem;
}

td:last-child {
  text-align: right;
}
