@charset "UTF-8";
@font-face {
  font-family: "TTNormsPro";
  src: url("../fonts/TTNorms-Regular.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "TTNormsPro";
  src: url("../fonts/TTNorms-Medium.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "TTNormsPro";
  src: url("../fonts/TTNorms-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
* {
  font-family: "TTNormsPro";
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #242B30;
}

body, h1, h2 {
  margin: 0;
}

h1 {
  font-size: 40px;
  line-height: 1.2em;
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 17px;
  line-height: 1.2em;
}

p {
  font-size: 16px;
  line-height: 2em;
  color: #73767E;
}
@media only screen and (max-width: 767px) {
  p {
    font-size: 14px;
    line-height: 1.5em;
  }
}

a {
  color: #FF7C00;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

ul {
  padding: 0;
  list-style: none;
  padding: 0;
}
ul li:before {
  content: "•";
  font-size: 24px;
  margin-right: 8px;
}

#app-root {
  margin: auto;
  max-width: 980px;
  padding: 60px;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  #app-root {
    min-height: initial;
    height: 100vh;
    padding: 20px 20px 0 20px;
  }
}
#app-root #main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 60px;
  overflow: auto;
}
#app-root #main .scrollable {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #app-root #main .scrollable {
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #app-root #main {
    margin: 0 -20px;
    padding: 40px 20px;
  }
}

header {
  display: block;
  text-align: center;
  border-bottom: 1px solid #E8E8EA;
}
header img {
  height: 56px;
}

footer {
  border-top: 1px solid #E8E8EA;
  padding: 1em 0;
}
@media only screen and (max-width: 767px) {
  footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
footer div {
  text-align: left;
}
footer div:last-child {
  font-size: 10px;
}