@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: 14px;
}

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

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

a {
  color: #1eaedb;
}

.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: 0 0 0;
  border: solid 1px;
  padding: 3px 8px;
  font-size: 12px;
  line-height: 14px;
  border-radius: 8px;
}
  .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;
    left: 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;
  border-radius: 50px;
  transition: all 0.2s;
  font-weight: 400;
  height: auto;
}
  .button.block {
    display: block;
    width: auto;
    margin: 0 auto;
    text-align: center;
  }
  .button.medium {
    height: 50px;
    line-height: 48px;
    min-width: 0;
  }
  .button.smaller {
    height: 40px;
    line-height: 38px;
    font-size: 14px;
  }
  .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: #ccc !important;
    opacity: 0.3;
  }

  .button.yellow {
    background: #fbc705;
    color: #111;
    border: solid 2px #fbc705;
  }
  .button.black {
    background: #111;
    color: #fbc705;
    border: solid 2px #111;
  }
  .button.link {
    background: none;
    color: #111;
    border: solid 2px transparent;
  }
  .button.blank {
    background: none;
    color: #338cf0;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    border: none;
    min-width: 0;
  }
  .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;
  }
h4 {
  font-size: 25px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 18px;
}

p {
  margin: 0 0 15px;
}

ul {
  margin: 0 0 0 15px;
}

li {
  list-style-position: outside;
  margin: 0 0 5px;
}

img {
  width: 100%;
}

label {
  font-size: 13px;
  font-weight: 500;
}

.margin-0 {
  margin: 0;
}

.padding-20 {
  padding: 20px;
}

strong {
  font-weight: 400;
}


@media (max-width: 1200px) {
  .hide-tablet {
    display: none;
  }
}

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