
/*--------------------------------------------------------------
# Font Resources
--------------------------------------------------------------*/

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/open-sans-v43-latin-regular.woff2') format('woff2'),
       url('fonts/open-sans-v43-latin-regular.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/open-sans-v43-latin-600.woff2') format('woff2'),
       url('fonts/open-sans-v43-latin-600.ttf') format('truetype');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/open-sans-v43-latin-700.woff2') format('woff2'),
       url('fonts/open-sans-v43-latin-700.ttf') format('truetype');
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

a {
  color: #106EEA;
  text-decoration: none;
}

img { border: 0; }

* { 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: #000;
  background: #FFF;
  margin: 10px 20px;
  font-family: 'Open Sans', sans-serif;
}

header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 42px;
  margin: 20px 0;
  padding: 0 10px;
  border-bottom: 1px solid #CCC;
}

main {
  margin: 0 auto;
  max-width: 992px;
}

section { margin-bottom: 60px; }

blockquote { margin: 20px 40px; }

h1 {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 60px 0 20px 0;
}

h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

ol { margin-left: 30px; }

p, li, #info {
  font-size: 18px;
  line-height: 1.5;  
}

#fineprint { font-size: 16px; }

@media (max-width: 768px) {
  h1 { font-size: 30px; }

  h3, p, li, #info { font-size: 16px; }

  #fineprint { font-size: 14px; }
}

@media (max-width: 640px) {
  blockquote { margin: 10px 20px; }

  h1 { font-size: 26px; }
}

footer {
  margin-top: 130px;
  padding: 25px 0 50px 0;
  border-top: 1px solid #CCC;
}

footer p {
  font-size: 14px;
  text-align: center;
}

svg {
  width: 28px;
  height: 28px;
  fill: #000;
}

#toplogo { max-height: 36px; }

#tophome { text-align: right; }

#tophome a { color: #000; }

#hometxt {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

#homeicon, #hometxt {
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (max-width: 575px) {
  header { padding: 0; }

  #hometxt { display: none; }

  #toplogo {
    width: 260px;
    height: auto;
  }
}

@media only screen and (max-width: 340px) {
  #toplogo {
    width: 240px;
    height: auto;
  }
}

.alert-red { color: #C00; }

