html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}


:root {
  --bg-white: #EFE4DB;
  --orange: #F36D21;
  --orange-dark: #DB5B23;
  --dark: #2B2B2B;
  --sand: #AAA19A;
  --dark-sand: #89817C;
  --white: #F2F2F3;
}


html,
body {
  background-color: var(--bg-white);
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: lt-wave;
  src: url("../fonts/lt-wave-bold.woff2");
    font-display: swap;
}

@font-face {
  font-family: mont-medium;
  src: url("../fonts/montserrat-medium.woff2");
      font-display: swap;
}

@font-face {
  font-family: mont-bold;
  src: url("../fonts/montserrat-bold.woff2");
      font-display: swap;
}

::-moz-selection { 
  color: var(--white);
  background: var(--orange-dark);
}

::selection {
  color: var(--white);
  background: var(--orange-dark);
}

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

h1,h2,h3,h4,h5,h6,p, li{
  color: var(--dark);
}

h1 {
  font-family: lt-wave;
  font-size: 36px;
}
 
h3, h4 {
  font-family: mont-bold;
  font-size: 21px;
}

p, a{
  font-size: 17px;
  text-decoration: none;
  font-family: mont-medium;
  line-height: 28px;
}

ol, ul{
  padding-left: 40px;
}

ol li::marker{
   font-family: mont-bold;
}

li{
  font-size: 17px;
  font-family: mont-medium;
  line-height: 28px;
  padding-bottom: 8px;
}

li:last-child {
    padding-bottom: 0px;
}

.clear{
  clear: both;
}

.orange{
  color: var(--orange);
  font-family: mont-bold;
}

.italic{
  font-style: italic;
}

.bold{
  font-family: mont-bold;
}


.italic-bold{
  font-style: italic;
  font-family: mont-bold;
}

.notification-bar{
  width: 100%;
  background-color: #db0b0b;
  padding: 18px 20px 20px 20px;
  border-radius: 0px 0px 16px 16px;
}

.notification-bar p{
  font-size: 20px;
  font-family: mont-bold;
  color: var(--white);
  text-align: center;
}

.global-header{
  margin: 40px 0px 60px 0px;
  text-align: center;

}

.global-sub-header1{
    margin: 40px 0px 15px 0px;
    text-align: center;
}

.global-sub-header2{
    text-align: center;
    font-size: 30px;
    margin-bottom: 60px;
    font-family: lt-wave;
}

@media screen and (max-width: 40rem) /* Medium */ {
  h1 {
    font-size: 30px;
  }
  h3 {
    font-size: 19px;
  }
  .global-sub-header2{
      font-size: 24px;
  }
  p, a{
    font-size: 15px;
  }
}