:root {
  --max_width: 1280px;
}

html,
body {
  scroll-behavior: smooth;
}
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html {
  font: 300 normal 15px/1.5 "Work Sans", sans-serif;
  color: #322a2c;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
  -webkit-tap-highlight-color: transparent;
  scroll-padding-top: 10rem;
}

@media only screen and (min-width: 1120px) {
  html {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1280px) {
  html {
    font-size: 18px;
  }
}

@media only screen and (max-width: 1023px) {
  .no_scroll {
    overflow: hidden;
  }
}

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

.float--right {
  float: right;
  max-width: 25%;
  margin: 0 0 1em 1em;
}

a {
  color: inherit;
}

b,
strong {
  font-weight: 700;
}
em,
i {
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em;
  padding: 0;
  line-height: 1.25;
  font-weight: normal;
}

.bg--red h1,
.bg--red h2,
.bg--red h3,
.bg--red h4,
.bg--red h5,
.bg--red h6 {
  color: #fff;
}

h1 {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.1;
}

.pageLead h1 {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
}

h2,
.news_content h1 {
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: #b50937;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #b50937;
}

h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #b50937;
}

h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #380f1a;
}

h6 {
  font-size: 1rem;
  font-style: italic;
  color: #1e1919;
}

/*header colors*/
.text--red {
  color: #b50937;
}
.text--brown {
  color: #402028;
}
.text--yellow {
  color: #f6dfa4;
}
.text--white {
  color: #fff;
}

.layout--centered {
  text-align: center;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem 1.5rem;
  padding: 0;
}

ul li {
  margin: 0;
  padding: 0;
}

li + li {
  margin-top: 0.375rem;
}

/*buttons*/

.btn {
  display: inline-flex;
  padding: 0.5em 1.5em;
  border: none;
  background-color: #322a2c;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  -webkit-box-shadow: 0 0 0.15rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 0.15rem rgba(0, 0, 0, 0.15);
  -webkit-transition: color 150ms ease, background 150ms ease, color 150ms ease;
  -o-transition: color 150ms ease, background 150ms ease, color 150ms ease;
  transition: color 150ms ease, background 150ms ease, color 150ms ease;
}

.btn:hover,
.btn:focus {
  color: #322a2c;
  background-color: #fff;
  outline: solid 1px currentColor;
}

.btn + .btn {
  margin-left: 0.5rem;
}

.btn--small {
  font-size: 0.75rem;
}

.btn--red {
  background-color: #b50937;
}
.btn--red:hover,
.btn--red:focus {
  color: #b50937;
}

.frm_button_submit.frm_final_submit.btn.btn--brown,
.btn--brown {
  background-color: #402028;
}
.frm_button_submit.frm_final_submit.btn.btn--brown:hover,
.frm_button_submit.frm_final_submit.btn.btn--brown:focus,
.btn--brown:hover,
.btn--brown:focus {
  color: #402028;
}

.btn--yellow {
  background-color: #f6dfa4;
  color: #380f1a;
}
.btn--yellow:hover,
.btn--yellow:focus {
  color: #380f1a;
}

.btn--white {
  background-color: #fff;
  color: #322a2c;
}
.btn--white:hover,
.btn--white:focus {
  color: #fff;
  background-color: #322a2c;
}

.note {
  background-color: yellow;
  color: red;
  font-weight: 700;
  padding: 0.5rem;
}

* + .note,
.note + * {
  margin-top: 20px;
}
