/*
0 - 600px: phne
600 - 900px: Tablet portrait
900 - 1200px: Tablet landscape

[1200 - 1800] is where our normal styles apply

1800px + : Big desktop


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

*/
@keyframes moveInLeft {
  0% {
    color: green;
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    opacity: 1;
    color: #69fd69; }
  90% {
    color: #69fd69;
    opacity: 1;
    transform: translateX(2rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes moveInRight {
  0% {
    color: green;
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    opacity: 1;
    color: #69fd69; }
  90% {
    color: #59e759;
    opacity: 1;
    transform: translateX(-2rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes shaky {
  0% {
    transform: rotate(20deg); }
  10% {
    transform: rotate(25deg); }
  20% {
    transform: rotate(-45deg); }
  40% {
    transform: rotate(30deg); }
  50% {
    transform: rotate(-30deg); }
  60% {
    transform: rotate(15deg); }
  70% {
    transform: rotate(-15deg); }
  80% {
    transform: rotate(10deg); }
  90% {
    transform: rotate(-10deg); }
  100% {
    transform: rotate(0deg); } }

@keyframes photoframe {
  0% {
    transform: rotate(90deg); }
  100% {
    transform: rotate(0deg); } }

@keyframes moveInBottom {
  0% {
    transform: translateY(4rem);
    opacity: .1; }
  20% {
    opacity: .3; }
  50% {
    opacity: .6; }
  80% {
    opacity: .8; }
  100% {
    transform: translateY(0);
    opacity: .9; } }

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

html {
  font-size: 62.5%; }
  @media (max-width: 56.25em) {
    html {
      font-size: 60%; } }
  @media (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 37.5em) {
    html {
      font-size: 50%; } }
  @media (min-width: 112.5em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box;
  padding: 3rem; }
  @media (max-width: 56.25em) {
    body {
      padding: 0; } }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  /* font-size: 1rem; */
  color: #777; }

.heading-primary {
  color: white;
  text-transform: uppercase;
  text-align: center;
  backface-visibility: hidden;
  margin-bottom: 6rem; }
  .heading-primary--main {
    display: block;
    font-weight: 400;
    font-size: 6rem;
    letter-spacing: 3.5rem;
    animation-name: moveInLeft;
    animation-duration: 0.6s; }
    @media (max-width: 56.25em) {
      .heading-primary--main {
        font-size: 5rem;
        letter-spacing: 3rem; } }
    @media (max-width: 37.5em) {
      .heading-primary--main {
        letter-spacing: 1rem;
        font-size: 5rem; } }
  .heading-primary--sub {
    display: block;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 1.74rem;
    animation-name: moveInRight;
    animation-duration: 0.6s; }
    @media (max-width: 56.25em) {
      .heading-primary--sub {
        letter-spacing: 1rem;
        font-size: 1.5rem; } }
    @media (max-width: 37.5em) {
      .heading-primary--sub {
        letter-spacing: .5rem; } }

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #7ed56f, #28b485);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: .2rem;
  transition: all .2s; }
  @media (max-width: 56.25em) {
    .heading-secondary {
      font-size: 2.4rem; } }
  @media (max-width: 37.5em) {
    .heading-secondary {
      font-size: 1.9rem; } }
  .heading-secondary:hover {
    transform: skewY(2deg) skewX(4deg) scale(1.1);
    text-shadow: 0.5rem 1rem 1rem rgba(85, 197, 122, 0.801); }

.heading-teritary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #353535; }

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

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

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

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

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

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .15;
  z-index: -1;
  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: 10rem;
  transition: all .1s;
  position: relative;
  font-size: 1.6rem;
  border: none;
  cursor: pointer; }

.btn--white {
  background-color: white;
  color: black; }
  .btn--white::after {
    background-color: white;
    z-index: -2; }

.btn--green {
  background-color: #55c574;
  color: white; }
  .btn--green::after {
    background-color: #55c574;
    z-index: -2; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.9); }
  .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(0, 0, 0, 0.801); }

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

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

.btn-text:link, .btn-text:visited {
  color: #55c57a;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #28b485;
  padding: 3px;
  font-size: 1.6rem;
  transition: all .2s; }

.btn-text:hover {
  background-color: #55c57a;
  color: white;
  box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-0.5rem); }

.btn-text:active {
  background-color: #7ed56f;
  color: white;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(-0.1rem); }

.card {
  position: relative;
  perspective: 150rem;
  -moz-perspective: 150rem;
  height: 52rem; }
  .card__side {
    border-radius: .4rem;
    box-shadow: 0.5rem 0.5rem 5rem rgba(0, 0, 0, 0.5);
    transition: all .8s ease;
    position: absolute;
    box-shadow: 0.5rem 0.5rem 5rem rgba(0, 0, 0, 0.5);
    backface-visibility: hidden;
    height: 52rem;
    width: 100%;
    overflow: hidden; }
    .card__side--front {
      width: 100%;
      background-color: white; }
    .card__side--back {
      width: 100%; }
      .card__side--back .only {
        color: white;
        font-weight: 300;
        font-size: 2rem; }
      .card__side--back h1 {
        font-size: 10rem;
        font-weight: 150;
        color: white; }
      .card__side--back .btn {
        text-transform: capitalize; }
      .card__side--back-1 {
        background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
        transform: rotateY(180deg); }
      .card__side--back-2 {
        background-image: linear-gradient(to right bottom, #7ed56f, #007500);
        transform: rotateY(180deg); }
      .card__side--back-3 {
        background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
        transform: rotateY(180deg); }
  .card__picture {
    background-size: cover;
    height: 23rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
    background-blend-mode: screen; }
    .card__picture--1 {
      background-image: linear-gradient(to right bottom, #ffb900, #ff7730), url(../img/nat-5.jpg); }
    .card__picture--2 {
      background-image: linear-gradient(to right bottom, #7ed56f, #28b485), url(../img/nat-6.jpg); }
    .card__picture--3 {
      background-image: linear-gradient(to right bottom, #2998ff, #5643fa), url(../img/nat-7.jpg); }
  .card__heading {
    font-size: 2.8rem;
    font-weight: 300;
    text-transform: uppercase;
    text-align: right;
    color: white;
    position: absolute;
    top: 12rem;
    right: 2rem;
    width: 70%; }
  .card__heading-span {
    padding: 1rem 1.5rem;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone; }
    .card__heading-span--1 {
      background-image: linear-gradient(to right bottom, #ffb900, #ff7730); }
    .card__heading-span--2 {
      background-image: linear-gradient(to right bottom, #7ed56f, #28b485); }
    .card__heading-span--3 {
      background-image: linear-gradient(to right bottom, #2998ff, #5643fa); }
  .card__details {
    padding: 3rem; }
    .card__details ul {
      list-style: none;
      width: 80%;
      margin: 0 auto; }
    .card__details li {
      text-align: center;
      font-size: 1.5rem;
      padding: 1rem; }
      .card__details li:not(:last-child) {
        border-bottom: 0.1rem solid #eeeeee; }
  .card__cta {
    margin-top: 30%; }
    .card__cta--price {
      margin-bottom: 7rem; }
    .card__cta .only {
      color: white;
      font-weight: 300;
      font-size: 2rem; }
    .card__cta h1 {
      font-size: 10rem;
      font-weight: 10;
      color: white; }
    .card__cta .btn {
      text-transform: capitalize; }
  .card:hover .card__side--front {
    transform: rotateY(-180deg); }
  .card:hover .card__side--back-1 {
    transform: rotateY(0); }
  .card:hover .card__side--back-2 {
    transform: rotateY(0); }
  .card:hover .card__side--back-3 {
    transform: rotateY(0); }
  @media (max-width: 56.25em) {
    .card {
      height: auto;
      border-radius: .4rem;
      background-color: white;
      box-shadow: 0.5rem 0.5rem 5rem rgba(0, 0, 0, 0.5); }
      .card__side {
        height: auto;
        width: 100%;
        position: relative; }
        .card__side--front {
          box-shadow: none;
          width: 100%;
          background-color: white; }
        .card__side--back {
          width: 100%;
          -webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 15%, 100% 0, 100% 10%, 0 100%); }
          .card__side--back .only {
            color: white;
            font-weight: 300;
            font-size: 2rem; }
          .card__side--back h1 {
            font-size: 10rem;
            font-weight: 150;
            color: white; }
          .card__side--back .btn {
            text-transform: capitalize;
            padding: 2rem 0; }
          .card__side--back-1 {
            -webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
            background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
            transform: rotateY(0deg); }
          .card__side--back-2 {
            -webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
            background-image: linear-gradient(to right bottom, #7ed56f, #007500);
            transform: rotateY(0deg); }
          .card__side--back-3 {
            -webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
            background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
            transform: rotateY(0deg); }
      .card__cta {
        margin-top: 0%;
        padding: 7rem 4rem 4rem 4rem; }
        .card__cta--price {
          margin-bottom: 0; }
        .card__cta .only {
          color: white;
          font-weight: 300;
          font-size: 2rem; }
        .card__cta h1 {
          font-size: 10rem;
          font-weight: 10;
          color: white; }
        .card__cta .btn {
          text-transform: capitalize;
          margin-bottom: 1rem; }
      .card:hover .card__side--front {
        transform: rotateY(0deg); } }

.composition {
  position: relative; }
  .composition__photo {
    width: 55%;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
    border-radius: .2rem;
    position: absolute; }
    @media (max-width: 56.25em) {
      .composition__photo {
        float: left;
        position: relative;
        width: 33.33333%;
        box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2); } }
    .composition__photo--p1 {
      left: 0;
      top: -2rem;
      transition: all .3s; }
      @media (max-width: 56.25em) {
        .composition__photo--p1 {
          top: 0;
          transform: scale(1.2); } }
    .composition__photo--p2 {
      right: 0;
      top: 2rem;
      transition: all .3s; }
      @media (max-width: 56.25em) {
        .composition__photo--p2 {
          top: 0;
          transform: scale(1.3);
          z-index: 9; } }
    .composition__photo--p3 {
      left: 20%;
      top: 10rem;
      transition: all .3s; }
      @media (max-width: 56.25em) {
        .composition__photo--p3 {
          top: 0;
          left: 0;
          transform: scale(1.1); } }
    .composition__photo:hover {
      transform: scale(1.2) translateY(-1rem);
      box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.5);
      z-index: 10; }
  .composition:hover .composition__photo:not(:hover) {
    transform: scale(0.9); }

.feature-box {
  background-color: rgba(247, 247, 247, 0.7);
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  transition: all .3s; }
  @media (max-width: 56.25em) {
    .feature-box {
      padding: 1.5rem; } }
  .feature-box__icon {
    font-size: 6rem;
    font-weight: 400;
    display: inline-block;
    background-image: linear-gradient(to right, #28b485, #007500);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: .5rem; }
    @media (max-width: 56.25em) {
      .feature-box__icon {
        margin-bottom: 0; } }
  .feature-box:hover {
    transform: translateY(-2rem) scale(1.05);
    box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.2); }

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

.form__input {
  font-family: inherit;
  font-size: 1.5rem;
  padding: 1.5rem 2rem;
  border-radius: .2px;
  background-color: white;
  border: none;
  border-bottom: 2px solid transparent;
  width: 90%;
  display: block;
  transition: all .4s; }
  @media (max-width: 56.25em) {
    .form__input {
      width: 100%; } }
  .form__input::-webkit-input-placeholder {
    color: green; }
  .form__input:focus {
    outline: none;
    background-color: white;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid #28b485; }
    .form__input:focus::-webkit-input-placeholder {
      color: #777; }
  .form__input:focus:invalid {
    border-bottom: 2px solid #ff7730; }

.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 (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: 5rem; }

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

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

.story {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: .3rem;
  padding: 6rem;
  padding-left: 9rem;
  font-size: 1.6rem;
  transform: skewX(-12deg); }
  @media (max-width: 56.25em) {
    .story {
      width: 100%;
      padding: 4rem;
      padding-left: 6rem; } }
  @media (max-width: 37.5em) {
    .story {
      transform: skewX(0); } }
  .story__shape {
    width: 15rem;
    height: 15rem;
    float: left;
    -webkit-shape-outside: circle(50% at 50% 50%);
    shape-outside: circle(50% at 50% 50%);
    -webkit-clip-path: 50% at 50% 50%;
    clip-path: circle(50% at 50% 50%);
    transform: translateX(-3rem) skewX(12deg);
    position: relative;
    backface-visibility: hidden; }
    @media (max-width: 56.25em) {
      .story__shape {
        transform: translateX(-3rem) skewX(0); } }
  .story__image {
    height: 100%;
    transform: translateX(-4rem) scale(1.2);
    transition: all .5s; }
  .story__text {
    transform: skewX(12deg);
    backface-visibility: hidden;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto; }
    @media (max-width: 37.5em) {
      .story__text {
        transform: skewX(0); } }
  .story__caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 20%);
    opacity: 0;
    color: white;
    text-transform: uppercase;
    font-size: 1.7rem;
    text-align: center;
    transition: all .5s; }
  .story:hover .story__caption {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2); }
  .story:hover .story__image {
    transform: translateX(-3rem) scale(1);
    filter: blur(3px) brightness(80%); }

.footer {
  background-color: #353535;
  padding: 10rem 0;
  font-size: 1.4rem; }
  @media (max-width: 56.25em) {
    .footer {
      padding: 7rem 0; } }
  .footer__logo-box {
    color: #eeeeee;
    margin-bottom: 8rem; }
    @media (max-width: 56.25em) {
      .footer__logo-box {
        margin-bottom: 4rem; } }
  .footer__logo {
    width: 15rem;
    height: auto; }
  .footer__navigation {
    border-top: 1px solid #777;
    padding-top: 3rem;
    display: inline-block; }
    @media (max-width: 56.25em) {
      .footer__navigation {
        width: 100%;
        text-align: center; } }
  .footer__list {
    list-style: none; }
  .footer__item {
    display: inline-block; }
    .footer__item:not(:last-child) {
      margin-right: 1.5rem; }
  .footer__link {
    transition: all .2s; }
    .footer__link:link, .footer__link:visited {
      color: #f7f7f7;
      text-decoration: none;
      text-transform: uppercase;
      display: inline-block;
      background-color: #353535; }
    .footer__link:hover, .footer__link:active {
      color: #55c57a;
      box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
      transform: rotate(5deg) scale(1.3); }
  .footer__copyright {
    border-top: 1px solid #777;
    padding-top: 3rem;
    color: #eeeeee; }
    @media (max-width: 56.25em) {
      .footer__copyright {
        width: 100%;
        float: none; } }

.row {
  max-width: 114rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
    @media (max-width: 56.25em) {
      .row:not(:last-child) {
        margin-bottom: 6rem; } }
  @media (max-width: 56.25em) {
    .row {
      max-width: 50rem; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^="col-"] {
    color: #000;
    float: left; }
    .row [class^="col-"]:not(:last-child) {
      margin-right: 6rem; }
      @media (max-width: 56.25em) {
        .row [class^="col-"]:not(:last-child) {
          margin-right: 0;
          margin-bottom: 6rem; } }
    @media (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-1-of-4 {
    width: calc((100% - 3 * 6rem) / 4); }
  .row .col-2-of-3 {
    width: calc( 2*(( 100% - 2*(6rem) ) / 3) + 6rem); }
  .row .col-2-of-4 {
    width: calc( 2*( 100% - 6rem ) / 4); }
  .row .col-3-of-4 {
    width: calc( ((100% - 6rem)/2) + ((100% - 3 * 6rem) / 4) + 6rem); }

.header {
  position: relative;
  height: 95vh;
  background-image: linear-gradient(to right bottom, rgba(0, 0, 0, 0.801), rgba(0, 117, 0, 0.8)), url(../img/hero.jpg);
  background-size: cover;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75vh, 0% 100%);
  clip-path: polygon(0 0, 100% 0, 100% 75vh, 0% 100%); }
  @media (max-width: 56.25em) {
    .header {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 85vh, 0% 100%);
      clip-path: polygon(0 0, 100% 0, 100% 85vh, 0% 100%); } }
  @media (max-width: 37.5em) {
    .header {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 87vh, 0% 100%);
      clip-path: polygon(0 0, 100% 0, 100% 87vh, 0% 100%); } }
  .header__logo-box {
    position: absolute;
    top: 4rem;
    left: 4rem; }
  .header__logo {
    height: 3.5rem; }
  .header__logo:hover {
    animation-name: shaky;
    animation-duration: 1s; }
  .header__heading-box {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }

.navigation__button {
  cursor: pointer;
  background-color: white;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 6rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 200;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
  text-align: center; }
  @media (max-width: 56.25em) {
    .navigation__button {
      top: 4rem;
      right: 4rem; } }
  @media (max-width: 37.5em) {
    .navigation__button {
      top: 3rem;
      right: 3rem; } }

.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#7ed56f, #28b485);
  z-index: 100;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1); }
  @media (max-width: 56.25em) {
    .navigation__background {
      top: 4.5rem;
      right: 4.5rem; } }
  @media (max-width: 37.5em) {
    .navigation__background {
      top: 3rem;
      right: 3rem; } }

.navigation__nav {
  height: 100vh;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6); }

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

.navigation__item {
  margin: 1rem;
  backface-visibility: hidden; }

.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, white 50%);
  background-size: 225%;
  transition: all .4s;
  margin-left: -168px; }
  .navigation__link:link span, .navigation__link:visited span {
    margin-right: 1.5rem;
    display: inline-block; }

.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #55c57a;
  transform: translateX(0.6rem); }

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80); }

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%; }

.navigation__icon {
  margin-top: 3.5rem;
  position: relative; }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 3rem;
    height: 2px;
    background-color: #353535;
    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 .navigation__icon {
  background-color: transparent; }

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

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

.popup {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all .3s; }
  .popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    position: absolute;
    background-color: white;
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    display: table;
    overflow: hidden;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: all .4s; }
  .popup__left {
    width: 33.33333%;
    display: table-cell; }
  .popup__right {
    width: 66.66666%;
    display: table-cell;
    vertical-align: middle;
    padding: 3rem 5rem; }
  .popup__img {
    display: block;
    width: 100%; }
  .popup__text {
    font-size: 1.4rem;
    margin-bottom: 4rem;
    column-count: 2;
    column-gap: 4rem;
    column-rule: 1px solid #eeeeee;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto; }
  .popup:target {
    transform: scale(1);
    opacity: 1;
    visibility: visible; }
  .popup:target .popup__content {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1; }
  .popup__close:link, .popup__close:visited {
    font-size: 4rem;
    text-decoration: none;
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    color: #777;
    display: inline-block;
    transition: all .2s;
    backface-visibility: hidden;
    line-height: 1; }
  .popup__close:hover {
    color: #55c57a; }

.section-about {
  background-color: #f7f7f7;
  padding: 25rem 0;
  margin-top: -20vh; }
  @media (max-width: 56.25em) {
    .section-about {
      margin-top: -10vh;
      padding: 20rem 0; } }
  @media (max-width: 37.5em) {
    .section-about {
      margin-top: -10vh; } }

.section-features {
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.801), rgba(0, 117, 0, 0.8)), url(../../img/nat-4.jpg);
  padding: 20rem 0;
  margin-top: -10rem;
  transform: skewY(-6deg);
  background-size: cover; }
  .section-features > * {
    transform: skewY(6deg); }
  @media (max-width: 56.25em) {
    .section-features {
      padding: 10rem 0; } }

.section-tours {
  margin-top: -10rem;
  padding: 25rem 0 15rem;
  text-align: center;
  background-color: #f7f7f7; }
  @media (max-width: 56.25em) {
    .section-tours {
      padding: 20rem 0 10rem; } }

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

.section-book {
  padding: 15rem 0;
  background-image: linear-gradient(to right bottom, #7ed56f, #007500); }
  @media (max-width: 56.25em) {
    .section-book {
      padding: 10rem 0; } }

.book {
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url(../img/nat-10.jpg);
  background-size: cover;
  border-radius: .3rem;
  box-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.8); }
  .book__form {
    width: 50%;
    padding: 6rem; }
    @media (max-width: 75em) {
      .book__form {
        width: 70%; } }
    @media (max-width: 56.25em) {
      .book__form {
        background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 100%, transparent 100%), url(../img/nat-10.jpg);
        background-size: cover;
        width: 100%; } }
  @media (max-width: 75em) {
    .book {
      background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 70%, transparent 70%), url(../img/nat-10.jpg); } }
  @media (max-width: 56.25em) {
    .book {
      background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 100%, transparent 100%), url(../img/nat-10.jpg); } }
