html {
  font-size: 62.5%;
}

::placeholder {
  font-family: var(--body_font);
}

form input {
  font-family: var(--body_font);
  /* Remove First */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body {
  font-family: var(--body_font);
  -webkit-font-smoothing: antialiased;
}

body,
.body,
.running-text {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 140%;
}

.medium {
  font-weight: 700;
}

.small {
  font-size: 1.4rem;
}

.medium.small {
  line-height: 130%;
}

.alignleft {
  float: left;
  margin-right: 1em;
}

.alignright {
  float: right;
  margin-left: 1em;
}

a {
  color: inherit;
  font-weight: inherit;
  text-decoration: inherit;
}

.notouch a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: var(--header_font);
  margin: 1em 0 0.5em 0;
}

p {
  margin: 1em 0;
}

p.h2,
p.h3 {
  margin-top: 0;
  margin-bottom: 0.8em;
}

.h5:first-of-type {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.h0 {
  font-style: normal;
  font-weight: normal;
  font-size: 10rem;
  line-height: 110%;
  letter-spacing: -0.02em;
}

h1,
.h1 {
  font-style: normal;
  font-weight: normal;
  font-size: 8rem;
  line-height: 110%;
  letter-spacing: -0.02em;
}

h2,
.h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 4.2rem;
  line-height: 120%;
  letter-spacing: -0.01em;
}

h3,
.h3 {
  font-style: normal;
  font-weight: normal;
  font-size: 3.1rem;
  line-height: 130%;
}

h4,
.h4 {
  font-style: normal;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 140%;
}

h5,
.h5 {
  font-style: normal;
  font-weight: bold;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0;
}

b,
strong,
.bold {
  font-weight: bold;
}

i,
em,
.italic {
  font-style: italic;
}

button:not([commandfor]),
.button,
input[type='submit'] {
  position: relative;

  text-decoration: none;
  color: var(--dark);
  background-color: transparent;

  border: 2px solid var(--dark);
  border-radius: 4px;

  padding: 1rem 4rem;
  display: inline-block;

  font-family: var(--header_font);
  font-style: normal;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 130%;

  text-align: center;
  overflow: hidden;

  transition: color 0.4s;
  z-index: 1;
}

@media screen and (min-width: 768px) {

  button.big,
  .button.big {
    padding: 1.6rem 5rem;
    font-size: 1.8rem;
    line-height: 140%;
  }
}

button.dark,
.button.dark {
  color: var(--white);
  border-color: var(--white);
}

button.fixed .button.fixed {
  width: 250px;
  text-overflow: ellipsis;
}

.notouch button:not([commandfor]):hover,
.notouch .button:hover,
.notouch input[type='submit']:hover {
  text-decoration: none;
  color: white;
}

.notouch button.dark:hover,
.notouch .button.dark:hover,
.notouch input[type='submit'].dark:hover {
  color: var(--dark);
}

button:not([commandfor]):before,
.button:before,
input[type='submit']:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: -2px;
  left: -2px;
  width: 110%;
  height: 110%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  transform-origin: bottom;
  transform: scaleY(0) translateZ(0);
  transition: transform 0.4s;
  background-color: var(--dark);
}

button.dark:before,
.button.dark:before,
input[type='submit'].dark:before {
  background-color: white;
}

.notouch button:not([commandfor]):hover:before,
.notouch .button:hover:before,
.notouch input[type='submit']:hover:before {
  transform: scaleY(1) translateZ(0);
}

button:not([commandfor]):active,
.button:active,
input[type='submit']:active {
  transform: translate3d(0, 1px, 0);
  border-color: var(--darker);
}

button:not([commandfor]):active:before,
.button:active:before,
input[type='submit']:active:before {
  background-color: var(--darker);
}

button.dark:active,
.button.dark:active,
input[type='submit'].dark:active {
  color: var(--darker);
  border-color: var(--brighter);
}

button.dark:active:before,
.button.dark:active:before,
input[type='submit'].dark:active:before {
  background-color: var(--brighter);
}

button:not([commandfor])[disabled],
.button[disabled],
input[type='submit'][disabled] {
  opacity: 0.3;
}


@media screen and (max-width: 1366px) {

  h1,
  .h1,
  .h0 {
    font-size: 6.6rem;
  }

  h2,
  .h2 {
    font-size: 3.7rem;
  }

  h4,
  .h4 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {

  body,
  .body,
  .running-text {
    font-size: 1.3rem;
  }

  .small {
    font-size: 0.8rem;
  }

  input,
  button {}

  .text .button {
    margin-top: 1.5rem;
  }

  .h0 {
    font-size: 4.3rem;
    line-height: 120%;
  }

  h1,
  .h1 {
    font-size: 2.7rem;
    line-height: 120%;
  }

  h2,
  .h2 {
    font-size: 2.4rem;
    line-height: 120%;
  }

  h3,
  .h3 {
    font-size: 1.8rem;
    line-height: 140%;
  }

  h4,
  .h4 {
    font-size: 1.6rem;
    line-height: 150%;
  }

  h5,
  .h5 {
    font-size: 1.1rem;
  }
}