/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */

/**
 * @file
 * Generic base elements.
 */

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

html {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: normal;
  font-style: normal;
  line-height: var(--line-height-base);
}

body {
  margin: 0;
  word-wrap: break-word;
  hyphens: auto;
  color: var(--dark-grey);
  background-color: var(--white);
  font-size: var(--font-size-base);
}

body.is-fixed {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

[dir="rtl"] body {
  background-position: top right;
}

a {
  color: var(--dark-grey);
  text-decoration: none;
}

a:hover,
a.is-active {
  color: var(--gold);
}

a:focus {
  outline: none;
  outline-offset: 0;
}
p,li{
  margin: 0 0 0.5em;
  line-height: 1.876em;
}
button {
  font-family: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

audio {
  display: block;
  max-width: 100%;
}

h1,h2 {
  font-size: 1.866rem;
  line-height: 1.286em;
}
b,strong{
  font-weight: 700;
}
.gold{
  color: var(--gold);
}
.flex{
  display: flex;
}
.wrap{
  flex-wrap: wrap;
}
.column{
  flex-direction: column;
}
.flex.center{
  justify-content: center;
}
.flex.left{
  justify-content: left;
}
.flex.right{
  justify-content: right;
}
.flex.spbw{
  justify-content: space-between;
}
.text-center{
  text-align: center;
}
.text-left{
  text-align: left;
}
.text-right{
  text-align: right;
}
.button a,
.button:not(:has(a)),
button:not(:has(a)){
  font-size: 1rem;
  border: var(--hr-0);
  padding: 0.1em 1em;
  display: inline-block;
  color:var(--gold);
  font-weight: 700;
}
.button:hover a,
.button:not(:has(a)):hover,
button:not(:has(a)):hover{
  color: var(--white);
  background-color: var(--gold);
}
figure{
  margin: 0;
}
.small{
  font-size: 0.933rem;
}
.file--application-pdf{
    font-weight: 700;
}
.i-block{
  display: inline-block;
}
