@font-face {
  font-family: 'Noyh';
  src: url("../fonts/noyh_light-webfont.eot");
  src: url("../fonts/") format("embedded-opentype"), url("../fonts/noyh_light-webfont.woff2") format("woff2"), url("../fonts/noyh_light-webfont.woff") format("woff"), url("../fonts/noyh_light-webfont.ttf") format("truetype"), url("../fonts/noyh_light-webfont.svg#noyhlight") format("svg");
  font-weight: 200;
  font-style: normal; }

@font-face {
  font-family: 'Noyh';
  src: url("../fonts/noyh_light_italic-webfont.eot");
  src: url("../fonts/noyh_light_italic-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/noyh_light_italic-webfont.woff2") format("woff2"), url("../fonts/noyh_light_italic-webfont.woff") format("woff"), url("../fonts/noyh_light_italic-webfont.ttf") format("truetype"), url("../fonts/noyh_light_italic-webfont.svg#noyhlight_italic") format("svg");
  font-weight: 200;
  font-style: italic; }

@font-face {
  font-family: 'Noyh';
  src: url("../fonts/noyh_book-webfont.eot");
  src: url("../fonts/noyh_book-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/noyh_book-webfont.woff2") format("woff2"), url("../fonts/noyh_book-webfont.woff") format("woff"), url("../fonts/noyh_book-webfont.ttf") format("truetype"), url("../fonts/noyh_book-webfont.svg#noyhbook") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Noyh';
  src: url("../fonts/noyh_bold-webfont.eot");
  src: url("../fonts/noyh_bold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/noyh_bold-webfont.woff2") format("woff2"), url("../fonts/noyh_bold-webfont.woff") format("woff"), url("../fonts/noyh_bold-webfont.ttf") format("truetype"), url("../fonts/noyh_bold-webfont.svg#noyhbold") format("svg");
  font-weight: 600;
  font-style: normal; }

/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdue it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
Media queries variables
*********************/
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  outline: none;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; }

input:focus {
  outline: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: "";
  content: none; }

q:before, q:after {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a {
  -webkit-tap-highlight-color: transparent; }

h1, h2, h3 {
  font-weight: 600; }

h1 {
  font-size: 6rem; }

h2 {
  font-size: 5rem; }
  @media all and (max-width: 1000px) and (min-width: 641px) {
    h2 {
      font-size: 3.5rem; } }
  @media all and (max-width: 640px) {
    h2 {
      font-size: 2.5rem; } }

h3 {
  font-size: 2rem; }
  @media all and (max-width: 640px) {
    h3 {
      font-size: 1.4rem; } }

p {
  font-style: italic; }
  p span {
    font-style: normal; }

a {
  color: #143D24;
  position: relative;
  -webkit-transition: all .25s ease;
  transition: all .25s ease; }
  a::after {
    content: "";
    position: absolute;
    display: block;
    z-index: -1;
    width: 96px;
    height: 96px;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(0);
            transform: translateX(-50%) translateY(-50%) scale(0);
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    background-color: #E5963D; }
  a:hover::after {
    -webkit-transition: all 2.5s ease;
    transition: all 2.5s ease;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
            transform: translateX(-50%) translateY(-50%) scale(1); }
  a.button {
    background-color: #ffffff;
    border: 2px solid #143D24;
    padding: 8px 24px;
    color: #143D24;
    margin-top: 16px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer; }
    a.button:hover {
      background-color: #E5963D;
      -webkit-transform: translateY(-2px);
              transform: translateY(-2px); }
      a.button:hover::after {
        display: none; }

button {
  background-color: #ffffff;
  border: 2px solid #143D24;
  padding: 8px 24px;
  color: #143D24;
  margin-top: 16px;
  display: inline-block;
  cursor: pointer; }
  button:hover {
    background-color: #E5963D;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px); }
    button:hover::after {
      display: none; }

.header, .visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr .5fr 1.5fr 1fr;
  grid-template-rows: 75vh 1fr 1fr;
  padding: 64px 64px 0;
  width: 100%;
  height: 100%; }
  .header p, .visual-grid p {
    font-size: 3rem;
    font-style: normal; }
    @media all and (max-width: 1000px) and (min-width: 641px) {
      .header p, .visual-grid p {
        font-size: 2rem; } }
    @media all and (max-width: 640px) {
      .header p, .visual-grid p {
        font-size: 1.5rem; } }
    .header p.title, .visual-grid p.title {
      font-weight: 600; }
  .header .logo, .visual-grid .logo {
    grid-column: 1/4;
    padding: 32px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .header .date, .visual-grid .date {
    grid-column: 1/4; }
  .header .title, .visual-grid .title {
    grid-column: 4/6;
    grid-row: 2/3; }
  .header .visual, .visual-grid .visual {
    grid-column: 5/7;
    grid-row: 1/-1;
    background-color: #E9E2DB;
    z-index: -1; }
    .header .visual img, .visual-grid .visual img {
      width: 110%;
      margin-left: -5%;
      margin-top: -5%; }
  @media all and (max-width: 1000px) and (min-width: 641px) {
    .header, .visual-grid {
      grid-template-columns: 1fr 1fr 1fr .5fr 1.5fr 1fr;
      grid-template-rows: repeat(2, auto) 400px;
      padding: 48px; }
      .header .logo, .visual-grid .logo {
        grid-column: 2/-2;
        padding: 32px 0; }
      .header .date, .visual-grid .date {
        grid-column: 2/4;
        padding-bottom: 48px; }
      .header .title, .visual-grid .title {
        text-align: right;
        grid-column: 4/6;
        grid-row: 2/3;
        padding-bottom: 48px; }
      .header .visual, .visual-grid .visual {
        grid-column: 1/-1;
        grid-row: 3/-1;
        overflow-y: hidden; } }
  @media all and (max-width: 640px) {
    .header, .visual-grid {
      grid-template-columns: 1fr 1fr 1fr .5fr 1.5fr 1fr;
      grid-template-rows: repeat(3, auto);
      padding: 32px; }
      .header .logo, .visual-grid .logo {
        grid-column: 1/-1;
        padding: 32px 0; }
      .header .date, .visual-grid .date {
        grid-column: 1/4;
        padding-bottom: 48px; }
      .header .title, .visual-grid .title {
        text-align: right;
        grid-column: 4/7;
        grid-row: 2/3;
        padding-bottom: 48px; }
      .header .visual, .visual-grid .visual {
        grid-column: 1/-1;
        grid-row: 3/-1; } }

.header .visual {
  display: none; }
  @media all and (max-width: 1000px) and (min-width: 641px) {
    .header .visual {
      display: block; } }
  @media all and (max-width: 640px) {
    .header .visual {
      display: block; } }

.visual-grid {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1; }
  @media all and (max-width: 1000px) and (min-width: 641px) {
    .visual-grid {
      display: none; } }
  @media all and (max-width: 640px) {
    .visual-grid {
      display: none; } }

.container {
  position: relative;
  max-width: 960px;
  z-index: 2;
  padding: 0 64px; }
  @media all and (max-width: 1000px) and (min-width: 641px) {
    .container {
      width: 100%;
      max-width: 800px; } }
  @media all and (max-width: 640px) {
    .container {
      width: 100%;
      padding: 24px; } }
  .container section {
    padding: 7rem 0;
    position: relative; }
    @media all and (max-width: 1000px) and (min-width: 641px) {
      .container section {
        padding: 5rem 0; } }
    @media all and (max-width: 640px) {
      .container section {
        padding: 2.5rem 0; } }
    .container section .timeline {
      position: relative;
      margin-top: 40px; }
      .container section .timeline::before {
        content: "";
        display: block;
        position: absolute;
        width: 2px;
        background-color: #222222;
        left: calc(50% - 1px);
        top: 24px;
        bottom: 48px; }
        @media all and (max-width: 640px) {
          .container section .timeline::before {
            bottom: 24px; } }
      .container section .timeline li {
        position: relative;
        text-align: right;
        width: calc(50% - 28px);
        margin-bottom: 24px; }
        .container section .timeline li h3 {
          margin-bottom: -8px; }
        .container section .timeline li p {
          color: #909090;
          font-size: 1.5rem; }
          @media all and (max-width: 640px) {
            .container section .timeline li p {
              font-size: 1.2rem; } }
        .container section .timeline li::before {
          content: "";
          display: block;
          position: absolute;
          width: 10px;
          height: 10px;
          top: 22px;
          right: -33px;
          border-radius: 100%;
          background-color: #143D24;
          font-size: 3em;
          line-height: 1.5rem; }
        .container section .timeline li:nth-child(2n) {
          text-align: left;
          margin-left: calc(50% + 28px); }
          .container section .timeline li:nth-child(2n)::before {
            right: auto;
            left: -33px; }
    .container section .contact {
      width: 100%;
      display: grid;
      grid-template-columns: 64px 1fr;
      grid-gap: 16px;
      margin: 32px 0; }
      .container section .contact img {
        border-radius: 50%;
        width: 64px;
        height: 64px; }
    .container section.footer {
      text-align: center; }
      .container section.footer img {
        width: 75%; }

h3.disco {
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  cursor: wait; }
  h3.disco::after {
    -webkit-transition: opacity 1s ease;
    transition: opacity 1s ease;
    opacity: 0;
    content: "";
    background-image: url(../images/disco.gif);
    background-size: 100%;
    position: absolute;
    width: 100px;
    height: 100px;
    bottom: 100%;
    right: 15%;
    z-index: -1; }
  h3.disco:hover {
    -webkit-animation: anim 3s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation: anim 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite; }
    h3.disco:hover::after {
      opacity: 1; }

@-webkit-keyframes anim {
  0% {
    text-shadow: -6px 4px 0px red; }
  10% {
    text-shadow: 4px -6px 0px green; }
  20% {
    text-shadow: -9px 4px 0px blue; }
  30% {
    text-shadow: 4px -6px 0px yellow; }
  40% {
    text-shadow: -8px 4px 0px orange; }
  50% {
    text-shadow: 4px 5px 0px purple; }
  60% {
    text-shadow: -6px 4px 0px brown; }
  70% {
    text-shadow: 4px 7px 0px pink; }
  80% {
    text-shadow: -9px -4px 0px lime; }
  90% {
    text-shadow: 4px -6px 0px cyan; }
  100% {
    text-shadow: -9px 4px 0px teal; } }

@keyframes anim {
  0% {
    text-shadow: -6px 4px 0px red; }
  10% {
    text-shadow: 4px -6px 0px green; }
  20% {
    text-shadow: -9px 4px 0px blue; }
  30% {
    text-shadow: 4px -6px 0px yellow; }
  40% {
    text-shadow: -8px 4px 0px orange; }
  50% {
    text-shadow: 4px 5px 0px purple; }
  60% {
    text-shadow: -6px 4px 0px brown; }
  70% {
    text-shadow: 4px 7px 0px pink; }
  80% {
    text-shadow: -9px -4px 0px lime; }
  90% {
    text-shadow: 4px -6px 0px cyan; }
  100% {
    text-shadow: -9px 4px 0px teal; } }

body {
  font-family: "Noyh", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #222222;
  font-size: 21pt;
  line-height: 1.5;
  -webkit-transition: 1s all ease-out;
  -ms-transition: 1s all ease-out;
  -o-transition: 1s all ease-out;
  -transition: 1s all ease-out;
  transition: 1s all ease-out; }
  @media all and (max-width: 640px) {
    body {
      font-size: 16pt; } }
  body.loading {
    opacity: 0; }

.hide {
  display: none; }

.transform3d {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

img, video {
  width: 100%;
  height: auto; }

.grey {
  color: #909090; }
