/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
:root {
  --color-primary: 174, 215, 93 ;
  --color-primary-light: 224, 236, 137 ;
  --color-primary-dark: 49, 101, 90 ;
  --color-primary-vdark: 11, 29, 11 ;
  --color-secondary: 163, 71, 54 ;
  --color-grey-light: 248, 247, 242;
  --color-grey-dark-1: 51, 51, 51;
  --color-grey-dark-2: 119, 119, 119;
  --color-grey-dark-3: 153, 153, 153;
  --color-white: 255, 255, 255;
  --shadow-dark: 0 2rem 6rem rgba(0,0,0,.3);
  --shadow-light: 0 2rem 5rem rgba(0,0,0,.06);
  --line: 1px solid rgb(var(--color-grey-dark-3)); }

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  scroll-behavior: smooth;
  font-size: 62.5%; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box;
  padding: 3rem; }
  @supports (-ms-ime-align: auto) {
    body {
      padding: 0rem; } }
  @media only screen and (max-width: 56.25em) {
    body {
      padding: 0; } }

::selection {
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-white)); }

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: rgb(var(--color-grey-dark-1)); }

.heading-primary {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  color: rgb(var(--color-white));
  backface-visibility: hidden;
  margin-bottom: 6rem; }
  .heading-primary--main {
    display: block;
    font-size: 6rem;
    font-weight: 400;
    letter-spacing: 3.5rem;
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--main {
        letter-spacing: 1rem;
        font-size: 5rem; } }
  .heading-primary--sub {
    display: block;
    font-size: 2rem;
    margin-bottom: 4rem;
    font-weight: 700;
    letter-spacing: 1.75rem;
    animation: moveInRight 1s ease-out; }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--sub {
        letter-spacing: .5rem; } }

.heading-secondary {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 3.5rem;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to bottom, rgb(var(--color-primary)), rgb(var(--color-primary-dark)));
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: .2rem;
  transition: all .2s; }
  .heading-secondary--white {
    background-image: none;
    color: rgb(var(--color-white)); }
  @media only screen and (max-width: 56.25em) {
    .heading-secondary {
      font-size: 4rem; } }
  @media only screen and (max-width: 37.5em) {
    .heading-secondary {
      font-size: 3.5rem; } }

.heading-tertiary {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 2.5rem;
  font-weight: 700; }

.paragraph {
  font-size: 1.6rem; }
  .paragraph--white {
    color: rgb(var(--color-white)); }
  .paragraph:not(:last-child) {
    margin-bottom: 3rem; }

.bg-dark {
  color: rgb(var(--color-grey-light)); }

.strike a:link, .strike a:visited {
  color: rgb(var(--color-grey-dark-3));
  text-decoration: line-through !important; }

.u-center-text {
  text-align: center !important; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important; }

.u-margin-bottom-medium {
  margin-bottom: 4rem !important; }
  @media only screen and (max-width: 56.25em) {
    .u-margin-bottom-medium {
      margin-bottom: 3rem !important; } }

.u-margin-bottom-big {
  margin-bottom: 8rem !important; }
  @media only screen and (max-width: 56.25em) {
    .u-margin-bottom-big {
      margin-bottom: 5rem !important; } }

.u-margin-top-big {
  margin-top: 8rem !important; }

.u-margin-top-huge {
  margin-top: 10rem !important; }

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  opacity: .15;
  overflow: hidden; }
  .bg-video__content {
    height: 100%;
    width: 100%;
    object-fit: cover; }

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: .25rem;
  transition: all .2s;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(var(--color-grey-dark-1),.2); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(var(--color-grey-dark-1),.2); }

.btn--white {
  background-color: rgb(var(--color-grey-light));
  color: rgb(var(--color-grey-dark-1)); }
  .btn--white::after {
    background-color: rgba(var(--color-grey-light), .5); }

.btn--green {
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-grey-light)); }
  .btn--green::after {
    background-color: rgba(var(--color-primary), .5); }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: .25rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s; }

.btn--animated {
  animation: moveInBottom .5s ease-out .75s;
  animation-fill-mode: backwards; }

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  color: rgb(var(--color-primary));
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid rgb(var(--color-primary));
  padding: 3px;
  transition: all .2s; }

.btn-text:hover {
  background-color: rgb(var(--color-primary));
  color: rgb(var(--color-grey-light));
  box-shadow: 0 1rem 2rem rgba(var(--color-grey-dark-1),.2);
  transform: translateY(-2px); }

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(var(--color-grey-dark-1),.2);
  transform: translateY(0); }

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 52rem; }
  .card__side {
    height: 52rem;
    transition: all .8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1.5rem 4rem rgba(var(--color-grey-dark-1),.2); }
    .card__side--front {
      background-color: rgb(var(--color-grey-light)); }
    .card__side--back {
      transform: rotateY(180deg); }
      .card__side--back-1 {
        background-image: linear-gradient(to right bottom, rgb(var(--color-primary-light)), rgb(var(--color-primary-dark))); }
      .card__side--back-2 {
        background-image: linear-gradient(to right bottom, rgb(var(--color-primary-light)), rgb(var(--color-primary-dark))); }
      .card__side--back-3 {
        background-image: linear-gradient(to right bottom, rgb(var(--color-primary-light)), rgb(var(--color-primary-dark))); }
  .card:hover .card__side--front {
    transform: rotateY(-180deg); }
  .card:hover .card__side--back {
    transform: rotateY(0); }
  .card__picture {
    background-size: cover;
    height: 23rem;
    background-blend-mode: screen;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }
    .card__picture--1 {
      background-image: linear-gradient(to right bottom, rgb(var(--color-primary-light)), rgb(var(--color-primary-dark))), url(../img/nat-5.jpg); }
    .card__picture--2 {
      background-image: linear-gradient(to right bottom, rgb(var(--color-primary-light)), rgb(var(--color-primary-dark))), url(../img/nat-6.jpg); }
    .card__picture--3 {
      background-image: linear-gradient(to right bottom, rgb(var(--color-primary-light)), rgb(var(--color-primary-dark))), url(../img/nat-7.jpg); }
  .card__heading {
    font-size: 2.8rem;
    font-weight: 300;
    text-transform: uppercase;
    text-align: right;
    color: rgb(var(--color-grey-light));
    position: absolute;
    top: 12rem;
    right: 2rem;
    width: 75%; }
  .card__heading-span {
    padding: .7rem 1.5rem;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone; }
    .card__heading-span--1 {
      background-image: linear-gradient(to right bottom, rgba(var(--color-primary-light),.85), rgba(var(--color-primary-dark),.85)); }
    .card__heading-span--2 {
      background-image: linear-gradient(to right bottom, rgba(var(--color-primary-light),.85), rgba(var(--color-primary-dark),.85)); }
    .card__heading-span--3 {
      background-image: linear-gradient(to right bottom, rgba(var(--color-primary-light),.85), rgba(var(--color-primary-dark),.85)); }
  .card__details {
    padding: 3rem; }
    .card__details ul {
      list-style: none;
      width: 80%;
      margin: 0 auto; }
      .card__details ul li {
        text-align: center;
        font-size: 1.5rem;
        padding: 1rem; }
        .card__details ul li:not(:last-child) {
          border-bottom: 1px solid rgb(var(--color-grey-light)); }
  .card__cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center; }
  .card__price-box {
    text-align: center;
    color: rgb(var(--color-grey-light));
    margin-bottom: 8rem; }
  .card__price-only {
    font-size: 1.4rem;
    text-transform: uppercase; }
  .card__price-value {
    font-size: 6rem;
    font-weight: 100; }
  @media only screen and (max-width: 56.25em), only screen and (hover: none) {
    .card {
      height: auto;
      border-radius: 3px;
      background-color: rgb(var(--color-grey-light));
      box-shadow: 0 1.5rem 4rem rgba(var(--color-primary), 0.2); }
      .card__side {
        height: auto;
        position: relative;
        box-shadow: none; }
        .card__side--back {
          transform: rotateY(0);
          clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%); }
      .card:hover .card__side--front {
        transform: rotateY(0); }
      .card__details {
        padding: 1rem 3rem; }
      .card__cta {
        position: relative;
        top: 0%;
        left: 0;
        transform: translate(0);
        width: 100%;
        padding: 7rem 4rem 4rem 4rem; }
      .card__price-box {
        margin-bottom: 3rem; }
      .card__price-value {
        font-size: 4rem; } }

.composition {
  position: relative; }
  .composition__photo {
    border-radius: 2px;
    z-index: 10;
    transition: all .2s;
    outline-offset: 2rem;
    max-width: 100%;
    /* &--p1 {
            left: 0;
            top: -2rem;

            @include respond(tab-port)  {
                top: 0;
                transform: scale(1.2);
            }
        }

        &--p2 {
            right: 0;
            top: 2rem;

            @include respond(tab-port)  {
                top: -1rem;
                transform: scale(1.3);
                z-index: 100;
            }
        }

        &--p3 {
            left: 20%;
            top: 10rem;

            @include respond(tab-port)  {
                top: 1rem;
                left: 0;
                transform: scale(1.1);
            }
        } */ }
    @media only screen and (max-width: 56.25em) {
      .composition__photo {
        width: 100%;
        margin-bottom: 2rem;
        outline-offset: 0; } }
    .composition__photo:hover {
      outline: 1.5rem solid rgb(var(--color-primary));
      transform: scale(1.05) translateY(-0.5rem);
      box-shadow: 0 2.5rem 4rem rgba(var(--color-grey-dark-1), .5);
      z-index: 20; }
      @media only screen and (max-width: 56.25em) {
        .composition__photo:hover {
          outline: none;
          transform: none;
          box-shadow: none; } }
  .composition:hover .composition__photo:not(:hover) {
    transform: scale(0.95); }

.project-box {
  background-color: rgba(var(--color-grey-light), .8);
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(var(--color-grey-dark-1), .2);
  transition: transform .3s; }
  @media only screen and (max-width: 56.25em) {
    .project-box {
      padding: 2rem; } }
  .project-box__icon {
    font-size: 6rem;
    margin-bottom: .5rem;
    display: inline-block;
    background-image: linear-gradient(to right, rgb(var(--color-primary-light)), rgb(var(--color-primary-dark)));
    -webkit-background-clip: text;
    color: transparent; }
    @media only screen and (max-width: 56.25em) {
      .project-box__icon {
        margin-bottom: 0; } }
  .project-box:hover {
    transform: translateY(-1.5rem) scale(1.03); }

.form__group:not(:last-child) {
  margin-bottom: 2rem; }

.form__input {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(var(--color-grey-light), .5);
  border: none;
  border-bottom: 3px solid transparent;
  width: 90%;
  display: block;
  transition: all .3s;
  resize: none; }
  @media only screen and (max-width: 56.25em) {
    .form__input {
      width: 100%; } }
  .form__input:focus {
    outline: none;
    box-shadow: 0 1rem 2rem rgba(var(--color-grey-dark-1), .2);
    border-bottom: 3px solid rgb(var(--color-primary)); }
  .form__input:focus:invalid {
    border-bottom: 3px solid rgb(var(--color-primary-dark)); }
  .form__input::-webkit-input-placeholder {
    color: rgb(var(--color-grey-dark-2)); }

.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: .7rem;
  display: block;
  transition: all .3s; }

.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem); }

.form__radio-group {
  width: 49%;
  display: inline-block; }
  @media only screen and (max-width: 56.25em) {
    .form__radio-group {
      width: 100%;
      margin-bottom: 2rem; } }

.form__radio-input {
  display: none; }

.form__radio-label {
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  padding-left: 4.5rem; }

.form__radio-button {
  height: 3rem;
  width: 3rem;
  border: 5px solid rgb(var(--color-primary));
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -.4rem; }
  .form__radio-button::after {
    content: "";
    display: block;
    height: 1.3rem;
    width: 1.3rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(var(--color-primary));
    opacity: 0;
    transition: opacity .2s; }

.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1; }

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(var(--color-grey-dark-1), .8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all .3s; }
  @supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
    .popup {
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      background-color: rgba(var(--color-grey-dark-1), .3); } }
  .popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    background-color: rgb(var(--color-grey-light));
    box-shadow: 0 2rem 4rem rgba(var(--color-grey-dark-1), .2);
    border-radius: 3px;
    display: table;
    overflow: hidden;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.25);
    transition: all .5s .2s; }
  .popup__left {
    width: 33.333333%;
    display: table-cell; }
  .popup__right {
    width: 66.6666667%;
    display: table-cell;
    vertical-align: middle;
    padding: 3rem 5rem; }
  .popup__img {
    display: block;
    width: 100%; }
  .popup__text {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    -moz-column-count: 2;
    -moz-column-gap: 4rem;
    -moz-column-rule: 1px solid rgb(var(--color-grey-light));
    column-count: 2;
    column-gap: 4rem;
    column-rule: 1px solid rgb(var(--color-grey-light));
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto; }
  .popup:target {
    opacity: 1;
    visibility: visible; }
  .popup:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); }
  .popup__close:link, .popup__close:visited {
    color: rgb(var(--color-grey-dark-1));
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    font-size: 3rem;
    text-decoration: none;
    display: inline-block;
    transition: all .2s;
    line-height: 1; }
  .popup__close:hover {
    color: rgb(var(--color-primary)); }

.story {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(var(--color-grey-dark-1), .1);
  background-color: rgba(var(--color-grey-light), .6);
  border-radius: 3px;
  padding: 6rem;
  padding-left: 9rem;
  font-size: 1.6rem;
  transform: skewX(-12deg); }
  @media only screen and (max-width: 56.25em) {
    .story {
      width: 100%;
      padding: 4rem;
      padding-left: 7rem; } }
  @media only screen and (max-width: 37.5em) {
    .story {
      transform: skewX(0); } }
  .story__shape {
    width: 15rem;
    height: 15rem;
    float: left;
    transform: translateX(-3rem) skewX(12deg);
    position: relative;
    overflow: hidden;
    border-radius: 50%; }
    @supports (clip-path: polygon(0 0)) or (-webkit-clip-path: polygon(0 0)) {
      .story__shape {
        -webkit-clip-path: circle(50% at 50% 50%);
        clip-path: circle(50% at 50% 50%);
        -webkit-shape-outside: circle(50% at 50% 50%);
        shape-outside: circle(50% at 50% 50%);
        border-radius: none; } }
    @media only screen and (max-width: 37.5em) {
      .story__shape {
        transform: translateX(-3rem) skewX(0); } }
  .story__img {
    height: 100%;
    transform: translateX(-4rem) scale(1.4);
    backface-visibility: hidden;
    transition: all .5s; }
  .story__text {
    transform: skewX(12deg); }
    @media only screen and (max-width: 37.5em) {
      .story__text {
        transform: skewX(0); } }
  .story__caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20%);
    color: rgb(var(--color-grey-light));
    text-transform: uppercase;
    font-size: 1.7rem;
    text-align: center;
    opacity: 0;
    transition: all .5s;
    backface-visibility: hidden; }
  .story:hover .story__caption {
    opacity: 1;
    transform: translate(-50%, -50%); }
  .story:hover .story__img {
    transform: translateX(-4rem) scale(1);
    filter: blur(3px) brightness(80%); }

.footer {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: rgb(var(--color-grey-dark-1));
  padding: 5rem 0;
  font-size: 1.4rem;
  color: rgb(var(--color-grey-light)); }
  .footer .flex-row {
    padding: 0 24rem; }
    @media only screen and (max-width: 56.25em) {
      .footer .flex-row {
        padding: 0 6rem; } }
  @media only screen and (max-width: 56.25em) {
    .footer {
      padding: 8rem 0; } }
  .footer__navigation {
    display: block;
    width: 100%;
    text-align: right;
    margin-bottom: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .footer__navigation {
        text-align: center; } }
  .footer__list {
    list-style: none; }
  .footer__item {
    display: inline-block; }
    .footer__item:not(:last-child) {
      margin-right: 1.5rem; }
  .footer__link:link, .footer__link:visited {
    color: rgb(var(--color-grey-light));
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    display: inline-block;
    transition: all .2s; }
    .footer__link:link:not(:last-child), .footer__link:visited:not(:last-child) {
      padding: 0 1rem; }
  .footer__link:hover, .footer__link:active {
    color: rgb(var(--color-primary)); }
  .footer__logo-box {
    flex: 1 0 25%;
    padding: 5rem 0; }
    @media only screen and (max-width: 56.25em) {
      .footer__logo-box {
        text-align: center;
        flex: 1 0 100%; } }
  .footer__logo {
    width: 15rem;
    height: auto; }
    .footer__logo img {
      width: 20rem; }
  .footer__copyright {
    flex: 1 0 75%;
    align-self: center;
    text-align: right; }
    @media only screen and (max-width: 56.25em) {
      .footer__copyright {
        text-align: center; } }

.row {
  max-width: 114rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 12rem; }
    @media only screen and (max-width: 56.25em) {
      .row:not(:last-child) {
        margin-bottom: 6rem; } }
  @media only screen and (max-width: 56.25em) {
    .row {
      max-width: 50rem;
      padding: 0 3rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media only screen and (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 6rem; } }
    @media only screen and (max-width: 56.25em) {
      .row [class^="col-"] {
        width: 100% !important; } }
  .row .col-1-of-2 {
    width: calc((100% - 6rem) / 2); }
  .row .col-1-of-3 {
    width: calc((100% - 2 * 6rem) / 3); }
  .row .col-2-of-3 {
    width: calc(2 * ((100% - 2 * 6rem) / 3) + 6rem); }
  .row .col-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4); }
  .row .col-2-of-4 {
    width: calc(2 * ((100% - 3 * 6rem) / 4) + 6rem); }
  .row .col-3-of-4 {
    width: calc(3 * ((100% - 3 * 6rem) / 4) + 2 * 6rem); }

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 12rem; }
  .flex-row > div {
    width: 100%; }
  .flex-row:not(:last-child) {
    margin-bottom: 12rem; }
    @media only screen and (max-width: 56.25em) {
      .flex-row:not(:last-child) {
        margin-bottom: 6rem; } }
  @media only screen and (max-width: 56.25em) {
    .flex-row {
      flex-wrap: wrap;
      justify-content: space-around;
      text-align: center;
      padding: 0 7%; } }

.header {
  height: 70vh;
  background-size: cover;
  background-position: top;
  position: relative; }
  @supports (clip-path: polygon(0 0)) or (-webkit-clip-path: polygon(0 0)) {
    .header {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 69vh, 0 69vh);
      clip-path: polygon(0 0, 100% 0, 100% 69vh, 0 69vh);
      height: 70vh; } }
  @media only screen and (max-width: 37.5em) {
    .header {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 70vh, 0 70vh);
      clip-path: polygon(0 0, 100% 0, 100% 70vh, 0 70vh); } }
  .header__logo-box {
    position: absolute;
    top: 4rem;
    left: 4rem; }
  .header__logo {
    height: 10rem; }
  .header__text-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    -webkit-filter: drop-shadow(0 0 0.8rem rgba(var(--color-primary-vdark), .4));
    -moz-filter: drop-shadow(0 0 0.8rem rgba(var(--color-primary-vdark), .4));
    filter: drop-shadow(0 0 0.8rem rgba(var(--color-primary-vdark), .4));
    z-index: 1; }
  .header__image {
    -webkit-filter: drop-shadow(0 0 0.8rem rgba(var(--color-primary-vdark), .4));
    -moz-filter: drop-shadow(0 0 0.8rem rgba(var(--color-primary-vdark), .4));
    filter: drop-shadow(0 0 0.8rem rgba(var(--color-primary-vdark), .4)); }
  .header__parallax__layer {
    position: fixed;
    top: 0;
    left: 0;
    background-position: bottom;
    transform: translateY(0);
    height: 70vh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat; }
    .header__parallax__layer__1 {
      background: rgb(var(--color-primary-light)); }
    .header__parallax__layer__2 {
      background-image: url(../img/hero/layer-10.svg); }
    .header__parallax__layer__3 {
      background-image: url(../img/hero/layer-9.svg); }
    .header__parallax__layer__4 {
      background-image: url(../img/hero/layer-8.svg); }
    .header__parallax__layer__5 {
      background-image: url(../img/hero/layer-7.svg); }
    .header__parallax__layer__6 {
      background-image: url(../img/hero/layer-6.svg); }
    .header__parallax__layer__7 {
      background-image: url(../img/hero/layer-5.svg); }
    .header__parallax__layer__8 {
      background-image: url(../img/hero/layer-4.svg); }
    .header__parallax__layer__9 {
      background-image: url(../img/hero/layer-3.svg); }
    .header__parallax__layer__10 {
      background-image: url(../img/hero/layer-2.svg); }
    .header__parallax__layer__11 {
      background-image: url(../img/hero/layer-1.svg);
      position: absolute; }
  .header__overlay__layer {
    position: absolute;
    height: 70vh;
    width: 100%;
    background-color: rgb(var(--color-grey-dark-2));
    opacity: 0.3;
    mix-blend-mode: color; }

.navigation__checkbox {
  display: none; }

.navigation__button {
  background-color: rgb(var(--color-grey-light));
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 6rem;
  right: 6rem;
  border-radius: .2rem;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(var(--color-grey-dark-1), .1);
  text-align: center;
  transform: rotate(45deg);
  transition: all .2s;
  cursor: pointer; }
  @media only screen and (max-width: 56.25em) {
    .navigation__button {
      top: 4rem;
      right: 4rem; } }
  @media only screen and (max-width: 37.5em) {
    .navigation__button {
      top: 3rem;
      right: 3rem; } }

.navigation__background {
  height: 4rem;
  width: 4rem;
  border-radius: 0;
  position: fixed;
  top: 7.5rem;
  right: 7.5rem;
  background-image: linear-gradient(rgb(var(--color-primary)), rgb(var(--color-primary-dark)));
  z-index: 1000;
  transform: rotate(45deg);
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); }
  @media only screen and (max-width: 56.25em) {
    .navigation__background {
      top: 4.5rem;
      right: 4.5rem; } }
  @media only screen and (max-width: 37.5em) {
    .navigation__background {
      top: 3.5rem;
      right: 3.5rem; } }

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-font-smoothing: antialiased; }

.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%; }

.navigation__item {
  margin: 1rem; }

.navigation__link:link, .navigation__link:visited {
  font-family: 'Quicksand',sans-serif;
  position: relative;
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: rgb(var(--color-grey-light));
  text-decoration: none;
  transition: all .4s;
  z-index: 1002;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-font-smoothing: antialiased; }
  .navigation__link:link span, .navigation__link:visited span {
    margin-right: 1.5rem;
    display: inline-block; }

.navigation__link::before, .navigation__link::after {
  content: "";
  display: block;
  position: absolute;
  width: 125%;
  height: 100%;
  background-color: rgb(var(--color-grey-light));
  transition-property: opacity, transform;
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transform: skew(-90deg) scale3d(1, 0, 1) translateZ(0);
  opacity: 0;
  z-index: -1; }

.navigation__link::before {
  transform-origin: 50% 100%;
  bottom: -.4rem;
  left: -6rem; }

.navigation__link::after {
  transform-origin: 50% 0%;
  top: -.4rem;
  left: 1rem; }

.navigation__link:hover, .navigation__link:active {
  color: rgb(var(--color-primary-dark));
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem); }
  .navigation__link:hover::before, .navigation__link:hover::after, .navigation__link:active::before, .navigation__link:active::after {
    transform: skew(-45deg) scale3d(1, 1, 1) translateZ(0);
    opacity: 0.5; }

.navigation__checkbox:checked ~ .navigation__background {
  transform: rotate(360deg) scale(90); }

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
  z-index: 1500; }

.navigation__icon {
  position: relative;
  margin-top: 3.5rem;
  transform: rotate(-45deg); }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 3rem;
    height: .2rem;
    background-color: rgb(var(--color-grey-dark-1));
    display: inline-block; }
  .navigation__icon::before, .navigation__icon::after {
    content: "";
    position: absolute;
    left: 0;
    transition: all .2s; }
  .navigation__icon::before {
    top: -.8rem; }
  .navigation__icon::after {
    top: .8rem; }

.navigation__button:hover .navigation__icon::before {
  top: -1rem; }

.navigation__button:hover .navigation__icon::after {
  top: 1rem; }

.navigation__checkbox:checked + .navigation__button {
  transform: rotate(0deg); }

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
  transform: rotate(0deg); }

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg); }

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg); }

.section-banner {
  position: relative;
  background-color: rgb(var(--color-secondary));
  padding: 3rem 0;
  margin-top: -2rem;
  z-index: 100; }

.section-about {
  position: relative;
  background-color: rgb(var(--color-primary-vdark));
  padding: 8rem 0 20rem;
  margin-top: -2rem;
  z-index: 2; }
  .section-about .about-photo {
    display: flex;
    flex: 1 0 20%;
    margin-right: 12rem;
    align-items: center; }
    @media only screen and (max-width: 56.25em) {
      .section-about .about-photo {
        flex: 1 0 100%;
        margin-right: 0;
        text-align: center; } }
  .section-about .about-text {
    flex: 1 0 50%;
    align-self: center; }
    @media only screen and (max-width: 56.25em) {
      .section-about .about-text {
        flex: 1 0 100%; } }
  @media only screen and (max-width: 56.25em) {
    .section-about {
      padding: 20rem 0; } }

.section-projects {
  padding: 20rem 0;
  background-image: linear-gradient(to right bottom, rgba(var(--color-primary-light), 0.8), rgba(var(--color-primary-dark), 0.8)), url(../img/nat-4.jpg);
  background-size: cover;
  transform: skewY(-7deg);
  margin-top: -10rem;
  z-index: 2; }
  .section-projects > * {
    transform: skewY(7deg); }
  @media only screen and (max-width: 56.25em) {
    .section-projects {
      padding: 10rem 0; } }

.section-tours {
  background-color: rgb(var(--color-grey-light));
  padding: 25rem 0 15rem 0;
  margin-top: -10rem; }
  @media only screen and (max-width: 56.25em) {
    .section-tours {
      padding: 20rem 0 10rem 0; } }

.section-stories {
  position: relative;
  padding: 15rem 0; }
  @media only screen and (max-width: 56.25em) {
    .section-stories {
      padding: 10rem 0; } }

.section-contact {
  padding: 15rem 0;
  background-image: linear-gradient(to right bottom, rgb(var(--color-primary-light)), rgb(var(--color-primary-dark))); }
  @media only screen and (max-width: 56.25em) {
    .section-contact {
      padding: 10rem 0; } }

.contact {
  background-image: linear-gradient(105deg, rgba(var(--color-grey-light), .9) 0%, rgba(var(--color-primary-light), .9) 55%, transparent 65%), url(../img/nat-10.jpg);
  background-size: cover;
  background-position: right;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(var(--color-grey-dark-1), .2); }
  @media only screen and (max-width: 75em) {
    .contact {
      background-image: linear-gradient(105deg, rgba(var(--color-grey-light), .9) 0%, rgba(var(--color-grey-light), .9) 65%, transparent 65%), url(../img/nat-10.jpg);
      background-size: cover; } }
  @media only screen and (max-width: 56.25em) {
    .contact {
      background-image: linear-gradient(to right, rgba(var(--color-grey-light), .9) 0%, rgba(var(--color-grey-light), .9) 100%), url(../img/nat-10.jpg); } }
  .contact__form {
    width: 50%;
    padding: 6rem; }
    @media only screen and (max-width: 75em) {
      .contact__form {
        width: 65%; } }
    @media only screen and (max-width: 56.25em) {
      .contact__form {
        width: 100%; } }
