.has-fade {
  visibility: hidden;
}

@-webkit-keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

.fade-in {
  -webkit-animation: fade-in 200ms ease-in-out forwards;
          animation: fade-in 200ms ease-in-out forwards;
}

@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

.fade-out {
  -webkit-animation: fade-out 200ms ease-in-out forwards;
          animation: fade-out 200ms ease-in-out forwards;
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: black;
}

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

body {
  min-height: 100vh;
  display: block;
  position: relative;
  padding-bottom: 100px;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  font-size: 0.85rem;
  color: white;
  line-height: 1.3;
}

body.noscroll {
  height: 100%;
  overflow: hidden;
}

a, a:visited, a:hover {
  text-decoration: none;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-jc-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex-jc-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-ai-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 49.9375em) {
  .hide-on-mobile {
    display: none;
  }
}

@media (min-width: 50em) {
  .hide-on-desktop {
    display: none;
  }
}

.header {
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
}

.header nav {
  padding-left: 20px;
  padding-right: 24px;
  padding-top: 24px;
  padding-bottom: 30px;
}

.header__logo {
  height: 3.125em;
}

.header__logo img {
  width: 3.725em;
  height: 3.725em;
}

.header__links {
  margin-top: 10px;
}

.header__links a {
  font-size: 1.425rem;
  font-weight: 700;
  color: #ffffff;
  -webkit-transition: color 80ms ease-in-out;
  transition: color 80ms ease-in-out;
}

.header__links a:not(:last-child) {
  margin-right: 50px;
}

.header__links a:hover {
  color: #007b3e;
}

.header__links a.selected {
  color: #007b3e;
}

.header__menu {
  position: absolute;
  z-index: 1000;
  width: calc(100% - 3rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #007b3e;
  padding: 1.125rem;
  border-radius: 5px;
}

.header__menu a {
  font-size: 1.425rem;
  font-weight: 700;
  line-height: 1.7;
  color: #ffffff;
  padding: .425rem;
  display: block;
  text-align: center;
}

.header__overlay {
  position: fixed;
  z-index: 2;
  height: 100%;
  top: 6.25rem;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(25%, #000000), to(transparent));
  background-image: linear-gradient(#000000 25%, transparent);
}

.header__toggle > span {
  display: block;
  width: 40px;
  height: 2.5px;
  background-color: #ffffff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform-origin: 3px 1px;
          transform-origin: 3px 1px;
}

.header__toggle > span:first-child {
  margin-top: 10px;
}

.header__toggle > span:not(:last-child) {
  margin-bottom: 10px;
}

.header__toggle.open > span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header__toggle.open > span:nth-child(2) {
  opacity: 0;
}

.header__toggle.open > span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.mobilecontent__landingimg {
  background-position: center center;
}

.mobilecontent__landingimg img {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 5%;
  padding-left: 10%;
  padding-right: 10%;
}

.mobilecontent__image {
  background-position: center center;
}

.mobilecontent__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 13%;
}

.mobilecontent__text {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 100px;
  text-align: center;
}

.mobilecontent__text h1 {
  font-size: 1.425rem;
}

.mobilecontent__text p {
  line-height: 1.5;
  font-size: 0.85rem;
  color: #ffffff;
}

.mobilecontent__text p a {
  text-decoration: underline;
  color: #ffffff;
}

.desktopcontent {
  height: calc(100vh - 12em);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.desktopcontent__centerbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  width: 100%;
}

.desktopcontent__landingimg {
  width: 500px;
  height: 550px;
}

.desktopcontent__landingimg img {
  width: 80%;
  position: static;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10%;
}

.desktopcontent__image {
  padding-right: 4em;
  padding-top: .7em;
}

.desktopcontent__image img {
  position: relative;
  width: 25em;
}

.desktopcontent__text {
  position: relative;
  width: 29em;
}

.desktopcontent__text h1 {
  font-size: 1.425rem;
  margin-top: 0em;
}

.desktopcontent__text p {
  line-height: 1.5;
  font-size: 0.85rem;
}

.desktopcontent__text p a {
  text-decoration: underline;
  color: #ffffff;
}

.landingMenuMobile {
  position: absolute;
  z-index: 1000;
  width: calc(100% - 3rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 1.125rem;
  border-radius: 5px;
}

.landingMenuMobile a {
  font-size: 1.425rem;
  font-weight: 700;
  line-height: 1.7;
  color: #ffffff;
  padding: .425rem;
  display: block;
  text-align: center;
}

.landingMenuDesktop {
  position: relative;
  padding-top: 40px;
  padding-left: 20px;
}

.landingMenuDesktop a {
  font-size: 1.425rem;
  font-weight: 700;
  color: #ffffff;
  -webkit-transition: color 80ms ease-in-out;
  transition: color 80ms ease-in-out;
}

.landingMenuDesktop a:not(:last-child) {
  margin-right: 50px;
}

.landingMenuDesktop a:hover {
  color: #007b3e;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
/*# sourceMappingURL=style.css.map */