body {
  font-family: 'Noto Sans';
  color: #ffffff;
  background-color: #323334;
}

body .flex-vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body .flex-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media (max-width: 800px) {
  body .flex-horizontal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body .flex-horizontal-stretch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media (max-width: 800px) {
  body .flex-horizontal-stretch {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body .flex-horizontal-space-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body header {
  width: 80%;
  max-width: 1000px;
  margin: 1.5em auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

body header section {
  width: 70%;
  padding-left: 32px;
}

body header section img {
  width: 55%;
  margin-top: 32px;
  margin-bottom: 48px;
}

body header img {
  width: 30%;
}

body header p {
  font-size: 24px;
  margin: 0px;
}

@media (max-width: 800px) {
  body header section img {
    width: 80%;
  }
}

@media (max-width: 500px) {
  body header {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  body header section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    padding: 0px;
  }
  body header section img {
    margin-top: 16px;
    margin-bottom: 0px;
  }
  body header section p {
    margin-top: 16px;
  }
}

body main {
  width: 80%;
  max-width: 1000px;
  margin: auto;
}

body main .card {
  width: 100%;
  margin: 1.5em auto;
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.25);
}

body main .card img {
  border-radius: 0px 8px 8px 0px;
  width: 40%;
}

body main .card ul.item-margin-5 {
  padding: 0px;
  list-style-position: inside;
}

body main .card ul.item-margin-5 li {
  margin: 5px;
  padding: 0px;
  font-size: 14px;
  color: #aaaaaa;
}

body main .card p.secondary {
  color: #aaaaaa;
}

@media (max-width: 500px) {
  body main .card {
    -webkit-box-shadow: none;
            box-shadow: none;
    margin: 1.5em auto 0em auto;
  }
}

body main .info-align-left {
  width: 50%;
  padding-left: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
}

@media (max-width: 800px) {
  body main .info-align-left {
    width: auto;
    padding-left: 32px;
    padding-right: 32px;
    padding-top: 32px;
    padding-bottom: 0px;
  }
}

@media (max-width: 500px) {
  body main .info-align-left {
    padding: 0px;
  }
}

body main .info-align-right {
  width: 50%;
  padding: 32px;
}

@media (max-width: 800px) {
  body main .info-align-right {
    width: auto;
  }
}

@media (max-width: 500px) {
  body main .info-align-right {
    padding: 0px;
  }
}

body main .padding-all {
  padding: 32px;
}

@media (max-width: 500px) {
  body main .padding-all {
    padding: 0px;
  }
}

body main li {
  padding-top: 16px;
}

body main #section-main p {
  text-align: justify;
}

@media (max-width: 500px) {
  body main .margin-bottom {
    margin-bottom: 1.5em;
  }
}

body footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body footer a {
  text-decoration: none;
  margin: 12px;
}

@media (max-width: 500px) {
  body footer a {
    margin: 8px;
  }
}

body .buttonPrimary {
  background-image: -webkit-gradient(linear, left top, right top, from(#E7A037), to(#D3309C));
  background-image: linear-gradient(to right, #E7A037, #D3309C);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 4px;
  border: none;
  outline: none;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
}

body .buttonPrimary:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#a46a14), to(#811c5f));
  background-image: linear-gradient(to right, #a46a14, #811c5f);
}

body .progress {
  background-color: #D3309C;
  height: 10px;
  border-radius: 4px;
}

body h1 {
  font-size: 36px;
}

@media (max-width: 500px) {
  body h1 {
    font-size: 30px;
  }
}

body h2 {
  font-size: 24px;
  margin-top: 0px;
  margin-bottom: 24px;
}

@media (max-width: 500px) {
  body h2 {
    font-size: 20px;
  }
}

body h3 {
  font-size: 36px;
  margin-top: 0px;
  margin-bottom: 24px;
}

@media (max-width: 500px) {
  body h3 {
    font-size: 30px;
  }
}

body p {
  font-size: 16px;
}

body .text-primary-color {
  color: #E7A037;
}

body li .title {
  font-size: 16px;
}

body li .subtitle {
  font-size: 14px;
  text-decoration: none;
  color: #ffffff;
}

body li .subtitle:hover {
  color: #D3309C;
}

body li .cite {
  font-size: 12px;
  color: #aaaaaa;
}

body li .note {
  font-size: 12px;
  color: #E7A037;
}
/*# sourceMappingURL=style.css.map */