@font-face {
  font-family: "Graphik";
  src: url("../fonts/graphik-bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/graphik-medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Graphik";
  src: url("../fonts/graphik-regular.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/satoshi-variable.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

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

html {
  box-sizing: border-box;
}

html,
body {
  color: #333;
  width: 100%;
  padding: 0;
  background: #f9f9f9;
  color: #333;
  font-family: 'Graphik', sans-serif;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-weight:300;
  font-size: 16px;
}

input[type="submit"] {
  display: block;
  margin: 0 auto;
}
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"] {
  width: 100%;
  color: #333;
}
button[disabled], html input[disabled] {
  background: #fafafa;
  color: #aaa;
}

form {
  width: 100%;
  margin: 0 auto;
}

a {
  color: #333;
}

.u-text-center {
  text-align: center;
}

.txt-red {
  color: #c4250d;
}
.txt-yellow {
  color: #fbc705;
}
.txt-darkeryellow {
  color: #f6a75e;
}

.bg-red {
  background: #c4250d;
  color: #fff;
}
.bg-yellow {
  background: #fbc705;
  color: #111;
}
.bg-grey {
  background: #f1f1f1;
  color: #111;
}
.bg-darkgrey {
  background: #111;
  color: #fff;
}

.grecaptcha-badge {
  display: none;
}

.mobile-only {
  display: none;
}

form .alert {
  line-height: 1.5em;
  margin-bottom: 35px;
}

.alert {
  display: block;
  margin: -15px 0 0;
  border: solid 1px;
  padding: 3px 8px;
  font-size: 12px;
  line-height: 14px;
  border-radius: 0;
}

.alert.red {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}
.alert.yellow {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert.blue {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.input-error {
    display: block;
    margin: -15px 0 0;
    font-size: 12px;
    color: #c4250d;
    padding: 2px;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  top: 100vh;
  z-index: -1;
  transition: all 0.2s;
}
  .overlay.active {
    top: 0;
    z-index: 999;
    opacity: 1;
  }
.modal {
  width: 90%;
  max-width: 500px;
  min-height: 300px;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
}
  .modal h5 {
    margin-top: 0;
  }
  .modal select {
    width: 100%;
  }

.close {
  position: absolute;
  right: 0px;
  top: 5px;
  width: 35px;
  height: 35px;
  opacity: 0.3;
  z-index: 100;
}
  .close:hover {
    opacity: 1;
  }
  .close:before, .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 35px;
    width: 2px;
    background-color: #333;
  }
  .close:before {
    transform: rotate(45deg);
  }
  .close:after {
    transform: rotate(-45deg);
  }


.loading {
  background: rgba(86,101,125,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  color: #fff;
  text-align: center;
}
  .loading.active {
    display: block;
  }
  .loading span {
    line-height: 2em;
    margin: 0 auto -50px;
    display: block;
  }
  .loading>div {
    width: 100%;
    height: 100%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    position: relative;
    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;
    overflow: hidden;
  }

.button {
  display: inline-block;
  margin: 0;
  font-size: 16px;
  text-transform: capitalize;
  height: 55px;
  line-height: 55px;
  min-width: 160px;
  letter-spacing: -0.5px;
  border-radius: 50px;
  transition: all 0.2s;
  height: auto;
}
  .button.block {
    display: block;
    width: auto;
    margin: 0 auto;
  }
  .button.medium {
    height: 50px;
    line-height: 50px;
    min-width: 0;
  }
  .button.small {
    height: 35px;
    line-height: 35px;
    font-size: 13px;
  }
  .button.xsmall {
    height: 20px;
    line-height: 20px;
    font-size: 11px;
  }
  .button:disabled,
  .button.disabled {
    background: #f1f1f1 !important;
    color: #111;
    opacity: 0.6;
  }

  .button.yellow {
    background: #fbc705;
    color: #111;
    border: solid 2px #fbc705;
  }
  .button.reverse {
    background: none;
    color: #fbc705;
    border: solid 2px #fbc705;
  }
  .button.darkerreverse {
    background: none;
    color: #f6a75e;
    border: solid 2px #f6a75e;
  }
  .button.blackreverse {
    background: none;
    color: #111;
    border: solid 2px #111;
  }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 20px;
  padding: 0;
  letter-spacing: -1px;
  line-height: 1.2em;
  font-weight: 600;
  font-family: "Satoshi", sans-serif;
}

h1 {
  font-size: 50px;
}
h2 {
  font-size: 45px;
}
h3 {
  font-size: 38px;
}
  h3 span.label {
    text-transform: uppercase;
    display: block;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1em;
    margin: 0 0 8px;
  }
h4 {
  font-size: 25px;
}
h5 {
  font-size: 20px;
}

p {
  margin: 0 0 15px;
}

img {
  width: 100%;
}

.margin-0 {
  margin: 0;
}

.padding-20 {
  padding: 20px;
}

.bg-grid {
  background: url(../images/bg-grid.svg) 0 0 repeat;
  width: 50%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}

#app {
  max-width: 1650px;
  margin: 0 auto;
}

.header {
  max-width: 1650px;
  margin: 40px auto 0;
  padding: 0 60px;
}
  .header .logo {
    max-width: 300px;
    margin: 0 0 30px;
    float: right;
  }
.navigation {
  text-align: left;
  float: left;
}
  .navigation ul {
    margin: 0;
  }
  .navigation li {
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  .navigation li a {
    font-weight: 600;
    padding: 15px;
    font-size: 22px;
    display: block;
    text-decoration: none;
  }
  .navigation li.active a {
    color: #ffca00;
  }
  .navigation li a:hover {
    color: #ffca00;
    text-decoration: underline;
  }

.container {
  width: 100%;
  max-width: 1200px;
}

.section {
  position: relative;
  padding: 40px;
  margin: 0 auto 30px;
  max-width: 1920px;
}
  .section.fullscreen {
    height: 100%;
    width: 100%;
  }
  .section.rounded {
    border-radius: 40px;
  }



.home .cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 40px 0 20px;
}
  .home #logo {
    margin: 0 0 50px;
    max-width: 60px;
  }
  .home .hero {
    border-radius: 20px;
    margin: -120px auto 0;
    width: 100%;
    max-width: 400px;
    float: right;
    position: relative;
    z-index: 2;
  }

.support {

}
  .platforms {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .platform {
    padding: 20px;
    border-radius: 20px;
    background: #111;
    color: #fff;
    width: 23%;
    margin: 0 1% 0 0;
    min-height: 470px;
    position: relative;
  }
  .platform .button {
    position: absolute;
    bottom: 20px;
    width: calc(100% - 40px);
  }
  .platform .logo {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
    height: 120px;
    margin: 0;
    border-radius: 10px;
  }
  .platform .logo img {
    width: 80%;
    max-width: 180px;
  }
  .platform .desc {
    margin: 15px 0 0;
  }
  .platform .desc .title {
    margin: 30px 0 8px;
    line-height: 1em;
    font-size: 25px;
    letter-spacing: 0;
  }
  .platform .desc ul {
    margin: 25px 0 30px 15px;
  }
  .platform .desc .badge {
    display: inline-block;
    font-size: 8px;
    line-height: 1em;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 10px 6px;
    border-radius: 40px;
    font-weight: 600;
    margin: 0;
    background: #fff;
  }
  .platform .desc li {
    list-style-position: outside;
    margin: 0 0 20px;
    line-height: 1.2em;
    font-size: 13px;
  }

.about {

}
  .about .hero {
    border-radius: 20px;
    margin: -120px 0 0 40px;
    width: 100%;
    max-width: 450px;
  }

.how {

}
  .steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
    .step {
      background: #242424;
      color: #fff;
      font-size: 14px;
      line-height: 1.4em;
      padding: 20px;
      border-radius: 20px;
      width: 23%;
      margin: 0 1% 2%;
      text-align: left;
      height: 130px;
    }
    .step .count {
      font-family: "Satoshi";
      font-size: 40px;
      display: block;
      font-weight: 600;
      line-height: 1em;
      margin: 0 0 8px;
      text-align: left;
    }

  table.tx-table {
    width: 100%;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    overflow: hidden;
    margin: 25px 0 20px;
  }
  table.tx-table th {
    background: #222;
    color: #fff;
    padding: 15px 10px;
    line-height: 1em;
    text-align: center;
  }
  table.tx-table td:first-child {
    width: 27%;
    font-weight: 600;
    border-right: solid 2px #f1f1f1;
  }
  table.tx-table td {
    text-align: center;
    line-height: 1em;
    padding: 25px 10px;
    font-size: 15px;

  }
  table.tx-table tr:nth-child(odd) td {
    background: #e0e0e0;
  }

.faqs {
  margin: 35px 0 0;
}
  .faqs .faq {
    background: #f1f1f1;
    border-radius: 30px;
    overflow: hidden;
    margin: 0 0 20px;
  }
  .faqs .faq .q {
    font-weight: 600;
    padding: 20px 25px;
    border-radius: 30px;
    transition: all 0.2s;
  }
  .faqs .faq.active .q,
  .faqs .faq .q:hover {
    background: rgba(0,0,0,0.05);
  }
  .faqs .faq .a {
    padding: 25px;
    display: none;
  }
  .faqs .faq.active .a {
    display: block;
  }

.footer {
  font-size: 11px;
  padding-top: 60px;
  max-width: none;
}
  .footer .cta {
    text-align: left;
  }
  .footer .cta a {
    margin: 0 0 0 8px;
    font-weight: 600;
    text-decoration: none;
  }


/** ABOUT PAGE **/


.section.intro {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.team {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.profiles {
  width: calc(100% - 550px);
  padding: 0 0 0 80px;
  flex-wrap: wrap;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.profile {
  width: calc(50% - 0px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 30px;
}
  .profile .picture {
    width: 150px;
    height: 150px;
  }
  .profile .detail {
    width: calc(100% - 150px);
    padding-left: 30px;
    font-weight: 600;
    font-size: 20px;
  }
  .profile .detail span {
    font-size: 16px;
    font-weight: 500;
    display: block;
  }


/** CONTACT PAGE **/

iframe {
  border: none;
  background: none;
  min-height: 700px;
  border-radius: 20px;
}


@media (max-width: 1200px) {
  .hide-tablet {
    display: none;
  }
  .about .hero { 
    margin-left: 0;
  }
}

@media (max-width: 820px) {

  .section.rounded {
    margin: 0 auto;
    padding: 20px;
  }

  .section.rounded.home {
    padding: 40px;
  }

  .header {
    padding: 0 50px;
  }

  .navigation li a {
    padding: 5px 15px 15px 0;
  }

  .home .columns {
    width: 100%;
    float: none;
    position: relative;
  }
    .home .columns:first-child {
      z-index: 2;
    }
    .home .hero {
      max-width: 300px;
      margin: 40px 20px -220px 0;
      z-index: 1;
    }

  .about .columns {
    width: 100%;
    float: none;
    margin: 0;
  }
    .about .hero {
      max-width: 300px;
      margin: -220px 0 50px;
    }

 .how .columns {
    width: 100%;
    float: none;
    margin: 0;
  }
  .steps .step {
    width: 47%;
  } 
  .platforms {
    flex-wrap: wrap;
  }
    .platforms .platform {
      width: 48%;
      min-height: none;
      margin: 0 1% 2%;
    }

  .intro > img:first-child {
    margin-bottom: 40px;
  }

  .intro > div {
    padding: 0 !important;
  }

  .team > p,
  .team > div {
    width: 100%;
    padding: 0 !important;
    writing-mode: inherit !important;
    transform: none !important;
  }

  .section.intro {
    justify-content: space-between;
  }

  .profiles {
    margin-top: 40px;
  }
    .profile > .picture {
      width: 100px;
      height: 100px;
    }
    .profile .detail {
      width: calc(100% - 100px);
      font-size: 16px;
    }
}

@media (max-width: 600px) {
  .mobile-only {
    display: block;
  }

  .header .logo {
    max-width: 70%;
  }
  .header #burger {
    float:  left;
    margin: -10px 0 0 -10px;
    max-width: 50px;
  }

  .navigation {
    position: fixed;
    top: 0;
    left: -100vw;
    background: #000;
    width: 100%;
    height: 100%;
    z-index: 9;
    padding: 20px;
    transition: all 0.2s;
  }
    .navigation #glyph {
      max-width: 100px;
      position: absolute;
      bottom: 30px;
      left: 30px;
    }
    .navigation.active {
      left: 0;
    }
    .navigation #close {
      max-width: 40px;
      position: absolute;
      top: 20px;
      right: 20px;
    }
    .navigation ul {
      margin-top: 50px;
    }
    .navigation li {
      display: block;
      margin: 0;
      padding: 0;
      line-height: 1.5em;
      position: relative;
    }
    .navigation li a {
      font-size: 30px;
      color: #fff;
      padding: 20px;
    }

  .section.rounded {
    border-radius: 30px;
    padding: 15px;
    margin: 0 auto
  }

  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 28px;
  }
    h3 span {
      margin: 0 0 8px;
    }
  h6 { 
    line-height: 1.4em; 
  }

  .header {
    padding: 0 30px;
  }

  .section.home {
    padding: 30px 30px;
  }
    .home #logo {
      margin: 10px 0 20px;
      max-width: 40px;
    }
    .home .cta {
      flex-wrap: wrap;
    }
    .home .cta .button {
      width: 100%;
      display: block;
      margin: 0 0 20px !important;
      max-width: none;
    }
    .home .hero {
      margin-right: 0;
    }

  .section.about {
    padding: 20px 10px;
    margin-top: 30px;
  }
    .about .hero {
      margin: 100px auto 40px;
      max-width: calc(100% - 40px);
      float: none;
      width: 100%;
      display: block;
    }

  .section.how {
    padding: 20px 15px;
  }
    .how .step {
      width: 100%;
      margin: 0 0 10px;
    }
    .how tr:nth-child(odd) {
      background: #e0e0e0;
    }
    .how td {
      display: block;
      text-align: left !important;
      background: none;
      border: none;
    }
    table.tx-table {
      border-radius: 15px;
    }
    table.tx-table td {
      background: none !important;
      padding: 20px 20px;
    }
    table.tx-table td:first-child {
      width: 100%;
      border: none;
      padding-bottom: 10px;
    }
    table.tx-table td:last-child {
      padding-top: 10px;
    }
    .how table span.mobile-only {
      font-weight: 500;
      margin: 0 0 5px;
    }

  .support,
  .section.faq {
    padding: 20px 10px;
  }

  .platforms .platform {
    width: 100%;
    margin: 0 0 20px;
    padding-bottom: 30px;
  }

  .section.intro > img,
  .section.intro > div {
    width: 100% !important;
  }

  .profile {
    width: 100%;
    margin: 0 0 30px;
  }

    iframe {
      margin-bottom: 50px;
    }

  .footer .cta a:first-child:before {
    content: "";
    display: block;
  }

}
