@font-face {
  font-family: myFont;
  src: url(../fonts/static/Raleway-Bold.ttf);
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

html {
  font-size: 16pt;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans Pro", Helvetica, sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
}

body.is-preload *,
body.is-preload *:before,
body.is-preload *:after {
  -moz-animation: none !important;
  -webkit-animation: none !important;
  -ms-animation: none !important;
  animation: none !important;
  -moz-transition: none !important;
  -webkit-transition: none !important;
  -ms-transition: none !important;
  transition: none !important;
}

/* @media screen and (max-width: 1680px) {
  html {
    font-size: 13pt;
  }
}  */

/* @media screen and (max-width: 1280px) {
  html {
    font-size: 1.5rem;
  }
} */

@media screen and (max-width: 736px) {
  html {
    font-size: 1rem;
  }
}

header,
section {
  display: block;
}

p {
  margin: 0 0 2rem 0;
}

h1 {
  font-family: myFont, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.5rem;
}

.image {
  display: inline-block;
  position: relative;
  border-radius: 4px;
  border: 0;
}

.image[data-position] img {
  -moz-object-fit: cover;
  -webkit-object-fit: cover;
  -ms-object-fit: cover;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image.fit {
  display: block;
  margin: 0 auto !important;
  /* width: 100%; */
  max-width: 700px;
}

.image.fit img {
  width: 100%;
}

ul.icons {
  cursor: default;
  list-style: none;
  padding-left: 0;
  padding-top: 2.5rem;
}

ul.icons li {
  display: inline-block;
  padding: 0 1.25rem 0 0;
}

ul.icons li:last-child {
  padding-right: 0;
}

.icon {
  font-size: 1.75rem;
}

#wrapper {
  background-color: #ffffff;
}

#banner {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -moz-align-items: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 0 0 2rem 0;
  overflow: hidden;
  position: relative;
}

#banner>.content {
  background-color: transparent;
  color: black;
  -moz-transition: -moz-transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -webkit-transition: -webkit-transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  -ms-transition: -ms-transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  padding: 0rem 2rem;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  opacity: 1;
}

#banner>.content a {
  color: inherit;
}

#banner>.content a:hover {
  color: #fff !important;
}

#banner>.content h3 {
  color: black;
}

#banner>.content>* {
  margin: 0.25rem 0 0 0;
}

#banner:before {
  pointer-events: none;
  -moz-transition: opacity 2s ease-in-out;
  -webkit-transition: opacity 2s ease-in-out;
  -ms-transition: opacity 2s ease-in-out;
  transition: opacity 2s ease-in-out;
  -moz-transition-delay: 0.5s;
  -webkit-transition-delay: 0.5s;
  -ms-transition-delay: 0.5s;
  transition-delay: 0.5s;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3f3f3f;
  opacity: 0;
}

#banner:after {
  pointer-events: none;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.625), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.625));
}

body.is-preload #banner>.content {
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  opacity: 0;
}

body.is-preload #banner:before {
  opacity: 1;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 150px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  bottom: 100%;
  left: 50%;
  margin-left: -80px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.0s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}