@import 'https://www.infarm.com/static/css/_font-face.css';
@import 'https://www.infarm.com/static/css/_footer.css';
@import 'https://www.infarm.com/static/css/_header.css';

:root {
  --color-infarm-fresh-green: #20ff64;
  --color-infarm-rosemary-green: #11312a;
  --color-black: #000;
  --color-white: #fff;
  --font-default: 'ItalianPlateNo2';
  --font-expanded: 'ItalianPlateNo2Expanded';
  --speed-default: 0.25s;
  --speed-slow: 0.5s;
  --transition-default: var(--speed-default) ease;
  --transition-slow: var(--speed-slow) ease;
  --width-max: 1284px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

*:focus {
  outline: none;
}

html {
  min-height: 100%;
}

body {
  color: var(--color-black);
  font-family: var(--font-expanded);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  min-height: 100%;
}

button[type=button] {
  background: none;
  border: none;
  color: var(--color-white);
  cursor: pointer;
  font-family: var(--font-default);
  font-size: 21px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4 {
  color: var(--color-infarm-rosemary-green);
  font-family: var(--font-default);
  font-weight: 500;
}

h3 {
  font-size: 39px;
  line-height: 35px;
}

h4 {
  font-size: 49px;
  line-height: 44px;
}

.center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

.max-width-content {
  margin: 0 auto;
  max-width: var(--width-max);
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.content * {
  animation-duration: .5s;
  animation-name: fadeIn;
}

@keyframes moveUp {
  from {
    top: 20px;
  }

  to {
    top: 0;
  }
}

.content > h3,
.content > div:nth-of-type(2) {
  animation-duration: .5s;
  animation-name: fadeIn, moveUp;
  position: relative
}

.container {
  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;
  position: relative;
}

@media (max-width: 767px) {
  .no-overflow {
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  h3 {
    font-size: 61px;
    line-height: 54px;
  }
}