/*
0-600 px Phone
600-900 px Tablet Portrait
900-1200 px Tablet landscape
[1200 -1800] is Normal
1800 px Big Desktop

Breakpoint argument choices:
- phone
-tab-port
-tab-land
-big-desktop

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

1 em = 16px
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }
  @media (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media (max-width: 56.25em) {
    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; } }

@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(10rem); }
  80% {
    transform: translateY(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

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

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  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 (max-width: 37.5em) {
      .heading-primary--main {
        letter-spacing: 1rem;
        font-size: 5rem; } }
  .heading-primary--sub {
    display: block;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1.75rem;
    animation-name: moveInRight;
    animation-duration: 1s;
    animation-timing-function: ease-out; }
    @media (max-width: 37.5em) {
      .heading-primary--sub {
        letter-spacing: .5rem;
        font-size: 2rem; } }

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  background-image: linear-gradient(to right, #7ed56f, #28b485);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: .2rem;
  transition: all .2s; }
  @media (max-width: 56.25em) {
    .heading-secondary {
      font-size: 2.5rem; } }
  @media (max-width: 37.5em) {
    .heading-secondary {
      font-size: 2rem; } }
  .heading-secondary:hover {
    cursor: default;
    transform: scale(1.05);
    text-shadow: 0.5rem 1rem 2rem rgba(10, 10, 10, 0.1); }

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase; }

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

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

.u-margin-bottom-big {
  margin-bottom: 8rem; }
  @media (max-width: 37.5em) {
    .u-margin-bottom-big {
      margin-bottom: 6rem; } }

.u-margin-bottom-medium {
  margin-bottom: 4rem; }
  @media (max-width: 37.5em) {
    .u-margin-bottom-medium {
      margin-bottom: 3rem; } }

.u-margin-bottom-small {
  margin-bottom: 2rem; }

.u-margin-top-big {
  margin-top: 8rem; }
  @media (max-width: 37.5em) {
    .u-margin-top-big {
      margin-top: 6rem; } }

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

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

.btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(10, 10, 10, 0.1); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.7);
    opacity: 0; }

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

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

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

.btn--white {
  background-color: #fff;
  color: #777;
  letter-spacing: 0.25rem; }
  .btn--white::after {
    background-color: #fff; }

.btn--green {
  background-color: #55c57a;
  color: #fff;
  letter-spacing: 0.25rem; }
  .btn--green::after {
    background-color: #55c57a; }

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  color: #55c57a;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  border-bottom: 1px solid #55c57a;
  padding: 0.5rem 1.5rem;
  transition: all 0.2s; }

.btn-text:hover {
  background-color: #55c57a;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(10, 10, 10, 0.15);
  transform: translateY(-2px);
  padding: 0.5rem 1.5rem;
  border-radius: 10rem; }

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(10, 10, 10, 0.15);
  transform: translateY(0);
  border-radius: 10rem; }

.composition {
  position: relative;
  z-index: 2; }
  .composition__photo {
    width: 55%;
    box-shadow: 0 1rem 2rem rgba(10, 10, 10, 0.15);
    border-radius: .4rem;
    position: absolute;
    transition: all 0.2s;
    outline-offset: 2rem; }
    @media (max-width: 56.25em) {
      .composition__photo {
        float: left;
        position: relative;
        width: 33.3333%; } }
    .composition__photo--p1 {
      left: 0;
      top: -2rem; }
      @media (max-width: 56.25em) {
        .composition__photo--p1 {
          top: 0; } }
    .composition__photo--p2 {
      right: 1rem;
      top: 2rem; }
      @media (max-width: 56.25em) {
        .composition__photo--p2 {
          top: 0;
          right: 0;
          transform: scale(1.3);
          z-index: 300; } }
    .composition__photo--p3 {
      left: 20%;
      top: 8rem; }
      @media (max-width: 56.25em) {
        .composition__photo--p3 {
          top: 0;
          left: 0; } }
    .composition__photo:hover {
      outline: 1.5rem solid #55c57a;
      transform: scale(1.05) translateY(-0.5rem);
      box-shadow: 0 1.5rem 3rem rgba(10, 10, 10, 0.3);
      z-index: 20; }
  .composition:hover .composition__photo:not(:hover) {
    transform: scale(0.95);
    opacity: .9; }

.feature-box {
  padding: 2.5rem;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2rem 4rem rgba(10, 10, 10, 0.1);
  font-size: 1.5rem;
  text-align: center;
  transition: transform .3s; }
  .feature-box__icon {
    background-image: linear-gradient(to right, #7ed56f, #28b485);
    font-size: 6rem;
    color: transparent;
    -webkit-background-clip: text; }
  .feature-box:hover {
    transform: translateY(-1.5rem) scale(1.03); }

.card {
  position: relative;
  height: 50rem;
  perspective: 150rem; }
  .card__side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50rem;
    border-radius: 4px;
    box-shadow: 0 1rem 2rem rgba(10, 10, 10, 0.1);
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: all 0.8s ease; }
    .card__side--front {
      background-color: #fff; }
    .card__side--back {
      color: #fff;
      transform: rotateY(-180deg); }
      .card__side--back-1 {
        background-image: linear-gradient(to right bottom, #ffb900, #ff7730); }
      .card__side--back-2 {
        background-image: linear-gradient(to right bottom, #7ed56f, #28b485); }
      .card__side--back-3 {
        background-image: linear-gradient(to right bottom, #2998ff, #5643fa); }
  .card:hover .card__side--front {
    transform: rotateY(180deg); }
  .card:hover .card__side--back {
    transform: rotateY(0deg); }
  .card__picture {
    height: 24rem;
    background-size: cover;
    background-blend-mode: screen;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); }
    .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 {
    position: absolute;
    top: 12rem;
    right: 2rem;
    width: 55%;
    font-weight: 300;
    font-size: 2.8rem;
    color: #fff;
    text-transform: uppercase;
    text-align: right; }
  .card__heading-span {
    padding: 0.7rem 0.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 ul li {
        padding: 1rem;
        font-size: 1.5rem;
        text-align: center; }
        .card__details ul li:not(:last-child) {
          border-bottom: 1px solid #eee; }
  .card__cta {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    text-align: center;
    transform: translate(-50%, -50%); }
  .card__price-box {
    margin-bottom: 6rem;
    color: #fff;
    text-align: center; }
  .card__price--only {
    font-size: 1.4rem;
    text-transform: uppercase; }
  .card__price--value {
    font-weight: 100;
    font-size: 6rem; }
  @media only screen and (max-width: 56.25em), only screen and (hover: none) {
    .card {
      height: auto;
      border-radius: 4px;
      box-shadow: 0 1rem 2rem rgba(10, 10, 10, 0.1);
      background-color: #fff; }
      .card__side {
        position: relative;
        width: 100%;
        height: auto;
        box-shadow: none; }
        .card__side--back {
          transform: rotateY(0);
          clip-path: polygon(0 16%, 100% 1%, 100% 100%, 0 100%); }
      .card__cta {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        transform: translate(0);
        padding: 6rem 0;
        border-radius: 0; }
      .card:hover .card__side--front {
        transform: rotateY(0); }
      .card:hover .card__side--back {
        transform: rotateY(0); }
      .card__details {
        padding: 1rem; }
      .card__price-box {
        margin-bottom: 3rem; } }

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

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

.form__group:not(:last-child) {
  margin-bottom: 2rem; }
  @media (max-width: 56.25em) {
    .form__group:not(:last-child) {
      margin-bottom: .5rem; } }

.form__input {
  display: block;
  width: 80%;
  padding: 1.3rem 2rem;
  border: none;
  border-bottom: 3px solid transparent;
  background-color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  transition: all .5s ease; }
  @media (max-width: 56.25em) {
    .form__input {
      width: 100%; } }
  .form__input:focus {
    border-bottom: 3px solid #55c57a;
    outline: none;
    box-shadow: 0 1rem 2rem rgba(10, 10, 10, 0.1); }
    .form__input:focus:invalid {
      border-bottom: 3px solid #ff7730; }
  .form__input::-webkit-input-placeholder {
    color: #999; }

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

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

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

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

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

.form__radio-input {
  display: none; }

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

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(10, 10, 10, 0.8);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease; }
  @supports (-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px)) {
    .popup {
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      background-color: rgba(10, 10, 10, 0.2); } }
  .popup:target {
    opacity: 1;
    visibility: visible; }
  .popup__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: 50%;
    background-color: #fff;
    border-radius: 4px;
    display: table;
    opacity: 0;
    transition: all .3s .2s ease;
    transform: translate(-50%, -50%) scale(0.5); }
    @media (max-width: 37.5em) {
      .popup__content {
        width: 100%; } }
  .popup__left {
    width: 33.333333%;
    display: table-cell;
    vertical-align: middle; }
  .popup__right {
    width: 66.666667%;
    display: table-cell;
    vertical-align: middle;
    padding: 4rem 3rem; }
  .popup__img {
    display: block;
    width: 100%; }
  .popup__paragraph {
    column-count: 2;
    column-gap: 9rem;
    column-rule: 1pt solid #eee; }
  .popup:target .popup__content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); }
  .popup__close-button {
    color: #999;
    text-decoration: none;
    position: absolute;
    top: 1rem;
    right: 2.5rem;
    font-size: 3rem;
    cursor: pointer;
    transition: all .2s ease;
    backface-visibility: hidden; }
    .popup__close-button:hover {
      color: #55c57a;
      transform: scale(1.2); }
    .popup__close-button:hover, .popup__close-button:active {
      user-select: none; }

.header {
  position: relative;
  height: 95vh;
  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-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 80vh, 0 100%); }
  @media (max-width: 37.5em) {
    .header {
      clip-path: polygon(0 0, 100% 0, 100% 87vh, 0 100%); } }
  .header__logoBox {
    position: absolute;
    top: 4rem;
    left: 4rem; }
  .header__logo {
    height: 3.5rem; }
  .header__TextBox {
    position: absolute;
    top: 40%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%); }

.row {
  width: 95%;
  max-width: 114rem;
  margin: 0 auto; }
  .row:not(:last-child) {
    margin-bottom: 8rem; }
    @media (max-width: 75em) {
      .row:not(:last-child) {
        margin-bottom: 6rem; } }
  .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(((100% - 2 * 6rem) / 3) * 2 + 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); }
  @media (max-width: 56.25em) {
    .row {
      width: 50%;
      max-width: 50rem; } }
  @media (max-width: 37.5em) {
    .row {
      width: 75%; } }
  .row::after {
    content: "";
    display: table;
    clear: both; }
  .row [class^='col-'] {
    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%; } }

.footer {
  padding: 10rem 0;
  font-size: 1.4rem;
  background-color: #333; }
  @media (max-width: 56.25em) {
    .footer {
      padding: 8rem 0; } }
  .footer__logo-box {
    margin-bottom: 8rem;
    text-align: center; }
  .footer__logo {
    width: 15rem;
    height: auto; }
  .footer__navigation {
    display: inline-block;
    padding-top: 2rem;
    border-top: 1px solid #777; }
    @media (max-width: 56.25em) {
      .footer__navigation {
        width: 100%; } }
  .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 {
    display: inline-block;
    transition: all .2s ease;
    text-decoration: none;
    text-transform: uppercase;
    color: #f7f7f7; }
  .footer__link:hover, .footer__link:active {
    transform: scale(1.3);
    color: #55c57a;
    box-shadow: 0 1rem 2rem rgba(10, 10, 10, 0.1); }
  .footer__copyright {
    display: inline-block;
    padding-top: 2rem;
    color: #f7f7f7;
    border-top: 1px solid #777; }
    @media (max-width: 56.25em) {
      .footer__copyright {
        width: 100%; } }

.navigation__checkbox {
  display: none; }

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

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

.navigation__button {
  position: fixed;
  top: 6rem;
  right: 6rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(10, 10, 10, 0.1);
  text-align: center;
  z-index: 30;
  cursor: pointer;
  transition: all .2s ease; }
  .navigation__button:active {
    box-shadow: 0 0.5rem 1rem rgba(10, 10, 10, 0.1); }
  @media (max-width: 56.25em) {
    .navigation__button {
      top: 3rem;
      right: 3rem; } }

.navigation__background {
  position: fixed;
  top: 6.3rem;
  right: 6.3rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background-image: radial-gradient(#7ed56f, #28b485);
  background-color: green;
  z-index: 10;
  transition: all .3s; }
  @media (max-width: 56.25em) {
    .navigation__background {
      top: 3.3rem;
      right: 3.3rem; } }

.navigation__nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  opacity: 0;
  z-index: 15;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

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

.navigation__item {
  padding: 1rem; }

.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  padding: 1rem 2rem;
  background-image: linear-gradient(110deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 220%;
  font-weight: 300;
  font-size: 3rem;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .4s ease; }
  .navigation__link:link span, .navigation__link:visited span {
    padding-right: 1rem;
    margin-right: .5rem; }
  @media (max-width: 37.5em) {
    .navigation__link:link, .navigation__link:visited {
      padding: .8rem 1.3rem; } }

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

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

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

.section-features {
  padding: 25rem 0;
  margin-top: -25vh;
  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-size: cover;
  transform: skewY(-7deg); }
  @media (max-width: 56.25em) {
    .section-features {
      padding: 10rem 0; } }
  .section-features > * {
    transform: skewY(7deg); }

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

.section-stories {
  position: relative;
  padding: 20rem 0 10rem 0;
  margin-top: -13rem; }

.section-book {
  padding: 15rem 0;
  background-image: linear-gradient(to right bottom, #7ed56f, #28b485); }

.book {
  border-radius: 4px;
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 50%, transparent 50%), url("../img/nat-10.jpg");
  background-size: 100%;
  box-shadow: 0 2rem 4rem rgba(10, 10, 10, 0.15);
  -webkit-background-size: 100%; }
  @media (max-width: 56.25em) {
    .book {
      background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 100%), url("../img/nat-10.jpg");
      background-size: cover; } }
  .book__form {
    width: 50%;
    padding: 6rem; }
    @media (max-width: 56.25em) {
      .book__form {
        width: 100%; } }
