
/*
font-family: aileron, sans-serif;

font-weight: 100;

font-style: normal;
*/


* {
  box-sizing: border-box;
}

html {}

body {
  background-color: #fff;
  color: #2f2e2b;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 100vH;
  justify-content: space-between;
}

body.is--fixed {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

html>body {
  font-size: 16px;
  font-size: 1rem;
}


html, body, article, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, figure, address, cite, code, del, dfn, em, img, ins, q, small, header,
strong, sub, sup, dl, dt, dd, ol, ul, li, fieldset, form, figcaption, label, button, legend, table, caption, tbody, tfoot, thead, tr, th, td, footer, label, input, textarea, select, time {
  border: 0 none;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p, ul, ol, label, input, select, option, button, textarea, dd, dt, td, th, a, caption, span, figcaption, legend, option, time, text,
h1, h2, h3, h4 {
  font-family: "aileron", sans-serif;
  font-weight: 100;
  color: #2f2e2b;
}

h1, h2, h3, h4, h1 span {
  font-family: "aileron", sans-serif;
  text-decoration: none;
  color: #2f2e2b;
}


a {
  color: #e72082;
}

p, dt, dd, li, td, th, label {
  line-height: 1.4em;
  color: #000000;
}

b, strong {
  font-family: "aileron", sans-serif;
  font-weight: bold;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  font-size: 1.25rem;
  line-height: 1.4;
  color: #31302D;
}

h1 {
  color: #31302D;
  line-height: 1.1;
}

h2 {
  font-size: 1.5em;
  color: #31302D;
}

@media screen and (min-width: 64rem) {
  h2 {
    font-size: 3em;
    color: #31302D;
  }
}

h3 {
  font-size: 1.25em;
  color: #31302D;
  line-height: 1.1em;
}

h4 {
  font-size: 1em;
  line-height: 1.1em;
}

h5 {
  font-size: 1em;
}

h6 {
  font-size: 1em;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

p + p {
  margin-top: 2rem;
}

svg {
  width: 100%;
  height: 100%;
}

main {
  padding: 2.5rem 1rem;
  position: relative;
  overflow: hidden;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

main .image-logo {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.columns-text > * {
  margin-top: 2rem;
}

@media screen and (min-width: 48rem) {
  .columns-text {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  
  .columns-text > * {
    flex: 0 0 50%;
  }

  .column-left {
    padding-right: 0.5rem;
    text-align: right;
  }

  .column-right {
    padding-left: 0.5rem;
  }
}