/**
 * 0     - 600px      -  Phone           - phone
 * 600px - 900px      -  Tablet Portrait - tab-port
 * 900px - 1200px     -  Tablet Portrait - tab-land
 * 1800px ++          -  Tablet Portrait - big-desktop

 * 1rem = 16px

 */
@keyframes fadeFromRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

@keyframes fadeFromBottom {
  0% {
    opacity: 0;
    transform: translateY(2rem); }
  80% {
    transform: translateY(-1rem); }
  100% {
    opacity: 1;
    transform: translateY(0); } }

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

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

button,
label,
button::after,
button ::before {
  -webkit-tap-highlight-color: transparent; }

html {
  /* since we have the default settings is 16px soo=>>  16px == 100% */
  /* then if we wanna put 10px we should always put it relative 10px == 62.5%*/
  font-size: 62.5%; }
  @media (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 56.25em) {
    html {
      font-size: 50%; } }
  @media (max-width: 37.5em) {
    html {
      font-size: 50%; } }
  @media (min-width: 112.5em) {
    html {
      font-size: 75%; } }

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

*::selection {
  background-color: #55c57a;
  color: #f5f5f5; }

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.7; }

.primary-heading {
  margin-bottom: 5rem; }
  .primary-heading--main {
    display: block;
    font-size: 6rem;
    font-weight: 700;
    letter-spacing: 3.5rem;
    animation: fadeFromLeft 0.8s ease-in;
    position: relative; }
    @media (max-width: 37.5em) {
      .primary-heading--main {
        font-size: 5rem;
        letter-spacing: 1rem; } }
  .primary-heading--sub {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1.7rem;
    white-space: nowrap;
    animation: fadeFromRight 0.8s ease-in; }
    @media (max-width: 37.5em) {
      .primary-heading--sub {
        font-size: 2rem;
        letter-spacing: 0.5rem; } }

.secondary-heading {
  display: inline-block;
  background-image: linear-gradient(to right, #7ed56f, #28b485);
  -webkit-background-clip: text;
  color: transparent;
  text-transform: uppercase;
  font-size: 3.5rem;
  font-weight: 700;
  transition: all 0.1s ease-in-out; }
  @media (max-width: 56.25em) {
    .secondary-heading {
      font-size: 3rem; } }
  @media (max-width: 37.5em) {
    .secondary-heading {
      font-size: 2rem; } }
  .secondary-heading:hover {
    transform: skew(15deg, 2deg) scale(1.1);
    text-shadow: 0.5rem 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.tertiary-heading {
  color: #33363d;
  text-shadow: 0.1px 0.1px 0 #b8b8b8;
  font-size: 1.7rem;
  text-transform: uppercase; }
  @media (max-width: 56.25em) {
    .tertiary-heading {
      font-size: 1.6rem; } }

.paragraph {
  font-size: 1.6rem; }
  .paragraph:not(:last-child) {
    margin-bottom: 2.5rem; }

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

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

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

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

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

.u-margin-top-small {
  margin-top: 1rem !important; }
  @media (max-width: 56.25em) {
    .u-margin-top-small {
      margin-top: 0.5rem !important; } }

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

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

.u-margin-top-huge {
  margin-top: 10rem !important; }
  @media (max-width: 56.25em) {
    .u-margin-top-huge {
      margin-top: 7rem !important; } }

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

.composant {
  background-color: red;
  color: yellow;
  position: relative; }
  .composant__photo {
    position: absolute;
    width: 55%;
    outline-offset: 1.4rem;
    transition: all 0.2s;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.2);
    z-index: 5; }
    @media (max-width: 56.25em) {
      .composant__photo {
        position: relative;
        float: left;
        width: 33.3333%; } }
    .composant__photo--p1 {
      top: -2rem;
      left: 0; }
      @media (max-width: 56.25em) {
        .composant__photo--p1 {
          top: 0;
          left: 0;
          transform: translateY(1rem) scale(1.1); } }
    .composant__photo--p2 {
      top: 2rem;
      right: 0; }
      @media (max-width: 56.25em) {
        .composant__photo--p2 {
          top: 0;
          right: 0;
          transform: translateY(-0.5rem) scale(1.3);
          z-index: 100; } }
    .composant__photo--p3 {
      top: 10rem;
      left: 20%; }
      @media (max-width: 56.25em) {
        .composant__photo--p3 {
          top: 0;
          left: 0;
          transform: translateY(1rem) scale(1.1); } }
    .composant__photo:hover {
      outline: 1rem solid #55c57a;
      box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.3);
      transform: scale(1.05) translateY(-0.5rem);
      z-index: 10; }
  .composant:hover .composant__photo:not(:hover) {
    transform: scale(0.94); }

.btn, .btn:link, .btn:visited {
  text-decoration: none;
  font-size: 1.6rem;
  display: inline-block;
  animation: fadeFromBottom 0.8s ease-out 0.4s;
  animation-fill-mode: backwards;
  transition: all 0.1s ease-in;
  cursor: pointer; }

.btn:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }

.btn:active {
  transform: translateY(0.1rem);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.btn--white {
  background-color: #fff;
  text-transform: uppercase;
  text-transform: uppercase;
  color: #000;
  padding: 1rem 3rem;
  border-radius: 5rem; }
  .btn--white::after {
    content: "";
    position: relative;
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 10rem;
    z-index: -1;
    transition: all 0.3s ease-out; }
  .btn--white:hover::after {
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(1.4) scaleY(1.6);
    filter: opacity(0);
    opacity: 0; }

.btn--green {
  background-color: #55c57a;
  text-transform: uppercase;
  text-transform: uppercase;
  color: #f5f5f5;
  padding: 1.3rem 3rem;
  border-radius: 5rem; }
  .btn--green::after {
    content: "";
    position: relative;
    background: #55c57a;
    width: 100%;
    height: 100%;
    border-radius: 10rem;
    z-index: -1;
    transition: all 0.3s ease-out; }
  .btn--green:hover::after {
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(1.4) scaleY(1.6);
    filter: opacity(0);
    opacity: 0; }

.btn--text {
  padding: 0.5rem;
  color: #55c57a;
  border-bottom: 1px solid #55c57a;
  transition: all 0.2s ease-in-out; }
  .btn--text::after {
    content: "";
    display: block;
    background-color: #777;
    width: 100%;
    height: 100%; }
  .btn--text:hover {
    background-color: #55c57a;
    color: #fff;
    height: auto; }

section {
  overflow: hidden; }

.feature-box {
  font-size: 1.5rem;
  text-align: center;
  padding: 3rem 2rem;
  background-color: rgba(245, 245, 245, 0.8);
  border-radius: 3px;
  box-shadow: 0 1rem 6rem rgba(51, 54, 61, 0.6);
  transition: all 0.1s; }
  @media (max-width: 56.25em) {
    .feature-box {
      padding: 2rem 1rem;
      box-shadow: 0 1rem 3rem rgba(51, 54, 61, 0.4); } }
  .feature-box:hover {
    transform: scale(1.05) translateY(-1.5rem);
    box-shadow: 0 1.2rem 6rem rgba(0, 0, 0, 0.7); }
  .feature-box__icon {
    font-size: 6rem;
    font-weight: 400;
    display: inline-block;
    background-image: linear-gradient(to right, #7ed56f 5%, #28b485);
    -webkit-background-clip: text;
    color: transparent; }
  .feature-box__text {
    margin-top: 2rem; }

.card {
  perspective: 100rem;
  -moz-perspective: 100rem;
  height: 50rem;
  position: relative; }
  .card__side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50rem;
    backface-visibility: hidden;
    transition: all 0.4s;
    border-radius: 3px;
    box-shadow: 1px 1px 2rem rgba(0, 0, 0, 0.2);
    overflow: hidden; }
    .card__side--img {
      width: 100%;
      position: relative; }
      .card__side--img .thumbnail {
        background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8));
        background-blend-mode: screen;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 22rem;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); }
      .card__side--img .caption {
        color: #fff;
        font-weight: 300;
        letter-spacing: 2px;
        position: absolute;
        right: 1rem;
        bottom: 10%;
        font-size: 1.6rem;
        text-align: right;
        text-transform: uppercase;
        white-space: pre-line; }
        .card__side--img .caption span {
          display: inline-block;
          background: linear-gradient(to bottom, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8));
          margin-top: -0.5rem;
          box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
          padding: 0.8rem; }
    .card__side--options {
      list-style-type: none;
      font-size: 1.3rem;
      margin-top: 2rem;
      padding: 1rem 3rem; }
      .card__side--options .option {
        width: initial;
        text-align: center;
        padding: 1rem;
        border-bottom: 1px solid rgba(51, 54, 61, 0.1); }
        .card__side--options .option:not(:last-child) {
          margin-bottom: 2px; }
    .card__side--back {
      background: linear-gradient(to right bottom, #7ed56f, #28b485);
      color: #fff;
      transform: rotateY(180deg);
      text-align: center; }
    .card__side--price {
      position: relative;
      height: 50%; }
      .card__side--price .key {
        font-size: 1.6rem;
        position: absolute;
        top: 25%;
        left: 50%;
        transform: translateX(-50%); }
      .card__side--price .num {
        position: absolute;
        left: 50%;
        bottom: 15%;
        transform: translateX(-50%);
        font-size: 6rem;
        margin: 0; }
    .card__side .btn {
      margin-top: 5rem; }
  .card:hover .card__side--front {
    transform: rotateY(-180deg); }
  .card:hover .card__side--back {
    transform: rotateY(0); }
  @media (max-width: 56.25em) {
    .card {
      box-shadow: 1px 1px 2rem rgba(0, 0, 0, 0.2);
      height: auto;
      position: relative; }
      .card__side {
        position: relative;
        width: 100%;
        height: auto;
        transition: all 0.4s;
        border-radius: 3px;
        box-shadow: none;
        overflow: hidden; }
        .card__side--img {
          position: relative; }
        .card__side--back {
          background: linear-gradient(to right bottom, #7ed56f, #28b485);
          color: #fff;
          clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
          padding: 4rem 0;
          transform: none;
          text-align: center; }
        .card__side--options {
          margin: 1rem 0;
          padding: 0; }
        .card__side--price {
          position: relative;
          height: 100%;
          margin-bottom: 2rem; }
          .card__side--price .key {
            font-size: 1.6rem;
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translateX(-50%); }
          .card__side--price .num {
            position: absolute;
            left: 50%;
            top: 10%;
            transform: translateX(-50%);
            font-size: 6rem;
            margin: 0; }
        .card__side .btn {
          margin-top: 5rem; }
      .card:hover .card__side {
        transform: none; } }

.card--c1 .card__side--img .thumbnail {
  background-image: linear-gradient(to right bottom, #ffb96d, #ed7b00), url("../img/nat-5.jpg"); }

.card--c1 .card__side--img .caption span {
  background: linear-gradient(to bottom, rgba(255, 185, 109, 0.8), rgba(237, 123, 0, 0.8)); }

.card--c1 .card__side--back {
  background: linear-gradient(to right bottom, #ffb96d, #ed7b00); }

.card--c2 .card__side--img .thumbnail {
  background-image: linear-gradient(to right bottom, #29ffa8, #00a964), url("../img/nat-6.jpg"); }

.card--c2 .card__side--img .caption span {
  background: linear-gradient(to bottom, rgba(41, 255, 168, 0.8), rgba(0, 169, 100, 0.8)); }

.card--c2 .card__side--back {
  background: linear-gradient(to right bottom, #29ffa8, #00a964); }

.card--c3 .card__side--img .thumbnail {
  background-image: linear-gradient(to right bottom, #83b1fb, #0864f7), url("../img/nat-7.jpg"); }

.card--c3 .card__side--img .caption span {
  background: linear-gradient(to bottom, rgba(131, 177, 251, 0.8), rgba(8, 100, 247, 0.8)); }

.card--c3 .card__side--back {
  background: linear-gradient(to right bottom, #83b1fb, #0864f7); }

.story {
  background-color: rgba(245, 245, 245, 0.6);
  margin: 0 auto;
  padding: 4rem 6rem 4rem 8rem;
  width: 75%;
  box-shadow: 0 1rem 4rem #33363d;
  box-shadow: 0 3rem 6rem rgba(51, 54, 61, 0.1);
  transform: skewX(-12deg); }
  @media (max-width: 56.25em) {
    .story {
      width: 100%;
      padding: 4rem 6rem; } }
  @media (max-width: 37.5em) {
    .story {
      transform: skewX(0); } }
  .story::after {
    content: "";
    display: table;
    clear: both; }
  .story__shape {
    position: relative;
    background-color: #55c57a;
    width: 15rem;
    height: 15rem;
    float: left;
    -webkit-shape-outside: circle(50% at 50% 50%);
    shape-outside: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    transform: translateX(-3rem) skewX(12deg); }
    @media (max-width: 37.5em) {
      .story__shape {
        transform: translateX(-3rem) skewX(0); } }
    .story__shape img {
      height: 100%;
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%) scale(1.3);
      transition: all 0.2s ease; }
    .story__shape--name {
      position: absolute;
      top: 0;
      left: 0;
      color: #f5f5f5;
      width: 100%;
      height: 100%;
      font-size: 1.9rem;
      text-transform: uppercase;
      text-align: center;
      opacity: 0;
      transition: all 0.1s ease; }
      .story__shape--name .name {
        display: inline-block;
        position: absolute;
        left: 50%;
        transition: all 0.5s ease; }
      .story__shape--name .first {
        top: 30%;
        transform: translate(-50%, -10rem); }
      .story__shape--name .last {
        bottom: 30%;
        transform: translate(-50%, 10rem); }
  .story:hover img {
    transform: translateX(-50%) scale(1);
    filter: blur(1px) brightness(40%); }
  .story:hover .story__shape--name {
    opacity: 1; }
    .story:hover .story__shape--name .name {
      transform: translate(-50%, 0); }
  .story__text {
    transform: skewX(12deg); }
    @media (max-width: 37.5em) {
      .story__text {
        transform: skewX(0); } }

.form {
  margin: 2rem 0; }
  .form__group {
    width: 90%; }
    .form__group:not(:last-child) {
      margin-top: 1rem; }
    @media (max-width: 56.25em) {
      .form__group {
        width: 100%; } }
  .form__input {
    width: 100%;
    height: 5rem;
    font-size: 1.6rem;
    padding-left: 1rem;
    border-bottom: 0.2rem solid transparent;
    transition: all 0.3s; }
    .form__input::placeholder {
      transition: all 0.4s ease-in-out; }
    .form__input:focus {
      border-bottom: 0.2rem solid #55c57a; }
      .form__input:focus:invalid {
        border-bottom: 0.2rem solid #ff8807; }
  .form__input:placeholder-shown + .form__label {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4rem); }
  .form__label {
    display: block;
    padding-left: 1rem;
    font-size: 1.3rem;
    transition: all 0.4s; }
  .form__radio {
    position: relative;
    padding: 10px;
    width: 50%;
    float: left; }
    @media (max-width: 430px) {
      .form__radio {
        width: 100%; } }
    .form__radio--input {
      position: absolute;
      left: 20%;
      bottom: 40%;
      opacity: 0; }
    .form__radio--input:checked ~ label .form__radio--shape {
      background-color: #55c57a; }
    .form__radio label {
      display: inline-block;
      cursor: pointer; }
    .form__radio--shape {
      background-color: #f5f5f5;
      width: 15px;
      height: 15px;
      border: 3px solid #f5f5f5;
      outline: 3px solid #55c57a;
      border-radius: 50%;
      transition: all 0.2s;
      float: left; }
    .form__radio--label-text {
      line-height: 15px;
      padding-left: 10px;
      font-size: 1.2rem;
      float: left; }

.popup {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(51, 54, 61, 0.9);
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  z-index: 5000;
  backdrop-filter: blur(10px);
  background-color: rgba(51, 54, 61, 0.3); }
  .popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    display: table;
    transform: translate(-50%, -50%) scale(0.25);
    background-color: #f5f5f5;
    width: 75%;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.5s 0.2s; }
    @media (max-width: 56.25em) {
      .popup__content {
        display: block;
        background-image: linear-gradient(to right, rgba(245, 245, 245, 0.8), rgba(245, 245, 245, 0.8)), url(../img/nat-8.jpg);
        background-size: cover;
        background-position: center; } }
  .popup:target {
    opacity: 1;
    visibility: visible; }
  .popup:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); }
  .popup__left {
    width: 33.33333333%;
    display: table-cell;
    vertical-align: middle; }
    @media (max-width: 56.25em) {
      .popup__left {
        display: none;
        width: 100%; } }
  .popup__right {
    width: 66.66666667%;
    display: table-cell;
    vertical-align: middle;
    padding: 3rem 5rem; }
    @media (max-width: 56.25em) {
      .popup__right {
        display: block;
        width: 100%; } }
  .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: 2px solid rgba(51, 54, 61, 0.1);
    column-count: 2;
    column-gap: 4rem;
    column-rule: 2px solid rgba(51, 54, 61, 0.1);
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto; }
    @media (max-width: 56.25em) {
      .popup__text {
        columns: unset; } }
  .popup__close-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: #33363d;
    font-size: 3rem;
    text-decoration: none;
    line-height: 1;
    padding: 0; }
    .popup__close-icon:hover {
      color: #55c57a;
      text-shadow: 0.5rem 0.5rem 2rem rgba(51, 54, 61, 0.5); }

.navigation__checkbox {
  display: none;
  position: fixed;
  top: 9rem;
  right: 9rem;
  z-index: -20; }

.navigation__button {
  position: fixed;
  top: 6rem;
  right: 6rem;
  display: inline-block;
  background-color: #f5f5f5;
  width: 7rem;
  height: 7rem;
  box-shadow: 0 1rem 3rem rgba(51, 54, 61, 0.5);
  border-radius: 50%;
  cursor: pointer;
  z-index: 1010; }
  @media (max-width: 56.25em) {
    .navigation__button {
      top: 4rem;
      right: 4rem; } }
  @media (max-width: 37.5em) {
    .navigation__button {
      top: 2rem;
      right: 2rem; } }

.navigation__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    display: inline-block;
    background-color: #33363d;
    width: 3rem;
    height: 2px;
    transition: all 0.1s; }
  .navigation__icon::before, .navigation__icon::after {
    content: "";
    position: absolute;
    left: 0; }
  .navigation__icon::before {
    top: -0.8rem; }
  .navigation__icon::after {
    top: 0.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 {
    top: 0;
    transform: rotate(135deg); }
  .navigation__checkbox:checked ~ .navigation__button .navigation__icon::after {
    top: 0;
    transform: rotate(-135deg); }

.navigation__background {
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#68cb89, #42bf6b);
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  transition: transform 0.5s ease-in;
  z-index: 1000; }
  @media (max-width: 56.25em) {
    .navigation__background {
      top: 4.5rem;
      right: 4.5rem; } }
  @media (max-width: 37.5em) {
    .navigation__background {
      top: 2.5rem;
      right: 2.5rem; } }

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

.navigation__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  z-index: 1005;
  transition: all 0.8s cubic-bezier(0.54, 1.18, 0.89, 1.16); }

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

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

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

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

.header {
  /* background: rgb(195, 192, 192); */
  position: relative;
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)), url(../img/hero.jpg);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 95vh;
  padding: 2.5rem;
  -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: 37.5em) {
    .header {
      -webkit-clip-path: polygon(0 0%, 100% 0%, 100% 85vh, 0% 100%);
      clip-path: polygon(0 0%, 100% 0%, 100% 85vh, 0% 100%); } }
  .header__logo-box {
    position: absolute;
    top: 2rem;
    left: 2rem;
    max-width: 7rem;
    cursor: pointer; }
  .header__logo {
    width: 100%; }
  .header__welcome-text {
    background-color: none;
    color: #fff;
    text-align: center;
    margin: auto;
    position: absolute;
    top: 43%;
    left: 50%;
    transform: translate(-50%, -50%); }

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

.footer {
  background: #2d2d2d;
  color: #f5f5f5;
  color: #9897a9;
  padding: 8rem 0;
  font-size: 1.4rem; }
  @media (max-width: 56.25em) {
    .footer {
      padding: 3rem 0; } }
  .footer__logo-box {
    margin-bottom: 6rem; }
    @media (max-width: 56.25em) {
      .footer__logo-box {
        margin-bottom: 2rem; } }
  .footer__navigation {
    display: inline-block;
    border-top: 1px solid rgba(245, 245, 245, 0.2);
    padding-top: 1rem; }
    @media (max-width: 56.25em) {
      .footer__navigation {
        width: 100%;
        text-align: center; } }
  .footer__list {
    list-style: none;
    padding: 0; }
  .footer__item {
    display: inline-block; }
    .footer__item:not(:last-child) {
      margin-right: 1.5rem; }
  .footer__link:link, .footer__link:visited {
    color: #f5f5f5;
    text-decoration: none;
    display: inline-block;
    margin: 0;
    padding: 0 0.3rem;
    transition: all 0.2s; }
  .footer__link:hover, .footer__link:active {
    background-color: transparent;
    color: #55c57a;
    transform: scale(1.1) rotate(3deg) translateY(-1px);
    box-shadow: 0.1rem 0.1rem 2rem 0px rgba(0, 0, 0, 0.3); }
  .footer__links {
    border-top: 1px solid rgba(245, 245, 245, 0.2); }
    .footer__links--link {
      color: #f5f5f5;
      font-size: 1.6rem;
      text-decoration: none; }
      .footer__links--link:not(:last-child) {
        margin-right: 2rem; }
  .footer__copyright {
    display: inline-block;
    border-top: 1px solid rgba(245, 245, 245, 0.2);
    padding-top: 1rem; }
    @media (max-width: 56.25em) {
      .footer__copyright {
        width: 100% !important;
        text-align: center; } }

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

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

.section-tours {
  background-color: #f5f5f5;
  margin-top: -10rem;
  padding: 20rem 0 2rem 0; }
  @media (max-width: 56.25em) {
    .section-tours {
      padding: 15rem 0 2rem 0; } }

.section-stories {
  position: relative;
  padding: 5rem 0;
  overflow: hidden; }
  @media (max-width: 56.25em) {
    .section-stories {
      padding: 3rem 0; } }

.section-book {
  background: linear-gradient(to right, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8));
  padding: 20rem 5rem; }

.book {
  background-image: linear-gradient(105deg, rgba(245, 245, 245, 0.8) 0%, rgba(245, 245, 245, 0.8) 50%, rgba(0, 0, 0, 0) 50%), url(../../img/nat-10.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 114rem;
  margin: 0 auto; }
  @media (max-width: 56.25em) {
    .book {
      background-image: linear-gradient(105deg, rgba(245, 245, 245, 0.8) 0%, rgba(245, 245, 245, 0.8) 65%, rgba(0, 0, 0, 0) 65%), url(../../img/nat-10.jpg); } }
  @media (max-width: 37.5em) {
    .book {
      background-image: linear-gradient(105deg, rgba(245, 245, 245, 0.5), rgba(245, 245, 245, 0.5)), url(../../img/nat-10.jpg); } }
  .book__form {
    border: 1px solid rgba(51, 54, 61, 0);
    padding: 0 6rem;
    width: 50%;
    height: auto;
    height: 100%; }
    @media (max-width: 56.25em) {
      .book__form {
        width: 65%; } }
    @media (max-width: 37.5em) {
      .book__form {
        width: 100%;
        padding: 0 2rem; } }

/*
@mixin fading($name, $d, $val1, $val2, $val3) {
    $d: string.to-upper-case($direction);
    @keyframes red {
        0% {
            opacity: 0;
            transform: translateblue($val1 * 1rem);
        }
        80% {
            transform: translateblue($val2 * 1rem);
        }
        100% {
            opacity: 1;
            transform: translateblue($val3 * 1rem);
            
        }
    }
}

*/
/*


@mixin keyframes($jjj){
    @keyframes identifier {
        @content
    }
}

*/
