/*

0px - 600px :     Phone
600px - 900px :   Tablet portrait 
600px - 1200px :  Tablet landscape 
1200px - 1800px : Where our normal styles apply 
1800px + :        Big desktops 

$breakpoint argument choices
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > Genreal layout + Grid > Page layout > Component.

*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(20rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes btnMoveIn {
  0% {
    opacity: 0;
    transform: translateY(2.4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

html {
  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: 3.2rem;
}
@media only screen and (max-width: 56.25em) {
  body {
    padding: 0;
  }
}

::-moz-selection {
  background-color: #55c57a;
  color: #fff;
}

::selection {
  background-color: #55c57a;
  color: #fff;
}

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

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 6rem;
}
.heading-primary--main {
  display: block;
  font-size: 6.4rem;
  font-weight: 400;
  letter-spacing: 3.5rem;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in-out;
}
.heading-primary--sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.74rem;
  animation: moveInRight 1s ease-in-out;
  animation-delay: 0s;
  animation-iteration-count: 1;
}
@media only screen and (max-width: 37.5em) {
  .heading-primary--sub {
    letter-spacing: 0.5rem;
  }
}

.heading-secondary {
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: linear-gradient(to right, #55c57a, #7ed56f, #28b485);
  -webkit-background-clip: text;
  color: transparent;
  transition: all 0.3s;
}
.heading-secondary:hover {
  transform: skewY(2deg) skewX(15deg) scale(1.05);
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 56.25em) {
  .heading-secondary {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading-secondary {
    font-size: 2.5rem;
  }
}

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

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

i {
  display: inline-block;
  font-size: 6rem;
  background: linear-gradient(to right, #55c57a, #7ed56f, #28b485);
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1;
}

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

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

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

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

.u-margin-top-huge {
  margin-top: 10rem !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-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-top-medium {
  margin-top: 4rem !important;
}

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

.btn, .btn:link, .btn:visited {
  display: inline-block;
  padding: 1.5rem 3rem;
  border-radius: 9rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  font-size: 1.6rem;
  border: none;
}
.btn:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 2px 8px 10px 2px rgba(0, 0, 0, 0.3);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px) scale(1);
  box-shadow: 1px 4px 5px 1px rgba(0, 0, 0, 0.35);
}
.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 9rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.btn--white {
  background-color: #fff;
  color: #777;
}
.btn--white::after {
  background-color: #fff;
}
.btn--green {
  background-color: #55c57a;
  color: #fff;
}
.btn--green::after {
  background-color: #55c57a;
}
.btn--animated {
  animation: btnMoveIn 0.5s ease-out 0.3s;
  animation-fill-mode: backwards;
}

.btn-text:link, .btn-text:visited {
  display: inline-block;
  color: #55c57a;
  font-weight: 600;
  font-size: 1.6rem;
  padding: 0.2rem 0.4rem;
  text-decoration: none;
  border-bottom: 2px solid #55c57a;
  transition: all 0.3s;
}
.btn-text:hover {
  color: #fff;
  background-color: #55c57a;
  box-shadow: 0px 0.6rem 1rem 0px rgba(0, 0, 0, 0.3);
  transform: translateY(-0.2rem) scale(1.02);
}
.btn-text:active {
  box-shadow: 0px 0.3rem 0.5rem 0px rgba(0, 0, 0, 0.35);
  transform: translateY(0) scale(0.98);
}

.composition {
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .composition {
    display: flex;
    justify-content: center;
  }
}
.composition__photo {
  display: inline-block;
  width: 55%;
  box-shadow: 0 1.5rem 4rem 0 rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  position: absolute;
  transition: all 0.2s;
  outline-offset: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo {
    position: static;
    box-shadow: 0 1.5rem 3rem 0 rgba(0, 0, 0, 0.2);
  }
}
.composition__photo:hover {
  transform: scale(1.05) translateY(-0.5rem);
  outline: 1.5rem solid #55c57a;
  box-shadow: 0 3rem 4rem 0 rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.composition__photo--p1 {
  left: 0;
  top: -2rem;
}
.composition__photo--p2 {
  right: 0;
  top: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo--p2 {
    transform: scale(1.3);
  }
}
.composition__photo--p3 {
  left: 20%;
  top: 10rem;
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95);
}

.feature-box {
  max-width: 20%;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  box-shadow: 0rem 1.5rem 4rem 0rem rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: all 0.3s;
  padding: 3.2rem 1.6rem 3.2rem 1.6rem;
}
.feature-box:hover {
  transform: scale(1.05) translateY(-1rem);
}
@media only screen and (max-width: 56.25em) {
  .feature-box {
    max-width: 50rem;
    padding: 3.2rem 1.6rem 3.2rem 1.6rem;
  }
}
.feature-box-icon {
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 56.25em) {
  .feature-box-icon {
    margin-bottom: 0;
  }
}
.card {
  width: 28%;
  height: 52rem;
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
}
.card__side {
  display: inline-block;
  width: 100%;
  height: 52rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
}
.card__side--front {
  background-color: #f7f7f7;
}
.card__side--back {
  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(360deg);
}
.card__picture {
  width: 100%;
  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%);
}
.card__picture--1 {
  background: linear-gradient(to right bottom, #ffb900, #ff7730), url(/img/nat-5.jpg);
  background-position: center;
  background-size: cover;
}
.card__picture--2 {
  background: linear-gradient(to right bottom, #7ed56f, #28b485), url(/img/nat-6.jpg);
  background-position: center;
  background-size: cover;
}
.card__picture--3 {
  background: linear-gradient(to right bottom, #2998ff, #5643fa), url(/img/nat-7.jpg);
  background-position: center;
  background-size: cover;
}
.card__heading {
  font-size: 3.2rem;
  font-weight: 300;
  width: 75%;
  color: #fff;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
  position: absolute;
  top: 12rem;
  display: inline-block;
  right: 2rem;
}
.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, rgba(255, 185, 0, 0.85), rgba(255, 119, 48, 0.85));
}
.card__heading-span--2 {
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.85), rgba(40, 180, 133, 0.85));
}
.card__heading-span--3 {
  background-image: linear-gradient(to right bottom, rgba(41, 152, 255, 0.85), rgba(86, 67, 250, 0.85));
}
.card__details {
  padding: 3.2rem;
}
.card__details ul {
  display: flex;
  flex-direction: column;
  width: 80%;
  list-style: none;
  margin: 0 auto;
}
.card__details ul li {
  text-align: center;
  padding: 1rem;
}
.card__details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.card__price-box {
  color: white;
  margin-bottom: 3.2rem;
}
.card__price-only {
  text-transform: uppercase;
}
.card__price-value {
  font-size: 6rem;
  font-weight: 200;
}
@media only screen and (max-width: 56.25em), only screen and (hover: none) {
  .card {
    width: 50%;
    height: auto;
    overflow: hidden;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
  }
  .card__side {
    display: inline-block;
    width: 100%;
    height: auto;
    position: relative;
    background-color: inherit;
    box-shadow: none;
  }
  .card__side--front {
    display: block;
    border-radius: 0px;
  }
  .card__side--back {
    transform: rotateY(0deg);
    height: auto;
    border-radius: 0px;
    display: block;
    -webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  }
  .card:hover .card__side--front {
    transform: rotateY(0deg);
  }
  .card:hover .card__side--back {
    transform: rotateY(0deg);
  }
  .card__cta {
    position: relative;
    top: 0%;
    left: 0%;
    transform: translate(0);
    width: 100%;
    padding: 7rem 4rem 4rem 4rem;
  }
  .card__details {
    padding: 1rem 3rem;
    font-size: 1.8rem;
  }
  .card__price-box {
    margin-bottom: 2rem;
  }
  .card__price-value {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .card {
    width: 70%;
  }
}

.story {
  width: 75%;
  margin: 0 auto 8rem auto;
  padding: 6rem;
  background-color: rgba(255, 255, 255, 0.6);
  transform: skew(-12deg);
  font-size: 1.6rem;
  display: flex;
  gap: 2.4rem;
  box-shadow: 0rem 2rem 6rem 0rem rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 37.5em) {
  .story {
    display: block;
  }
}
.story > * {
  transform: skew(12deg);
}
@media only screen and (max-width: 37.5em) {
  .story > * {
    transform: skew(0deg);
  }
}
.story__shape {
  width: 15rem;
  height: 15rem;
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  position: relative;
  flex-shrink: 0;
}
@media only screen and (max-width: 37.5em) {
  .story__shape {
    float: left;
    margin-right: 1.6rem;
    width: 5rem;
    height: 5rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.story__text {
  color: rgb(66, 66, 66);
  flex-shrink: 2;
}
.story__img {
  height: 100%;
  transition: all 0.4s;
  transform: translateX(-4rem) scale(1.4);
}
@media only screen and (max-width: 37.5em) {
  .story__img {
    transform: translateX(-1rem);
  }
}
.story:hover .story__img {
  filter: blur(0.5rem) brightness(90%);
  transform: translateX(-4rem) scale(1);
}
@media only screen and (max-width: 37.5em) {
  .story:hover .story__img {
    transform: translateX(-1rem);
  }
}
.story__caption {
  width: 4rem;
  font-size: 1.6rem;
  text-align: center;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%) translateY(20%);
  transition: all 0.5s;
  backface-visibility: hidden;
  opacity: 0;
}
@media only screen and (max-width: 37.5em) {
  .story__caption {
    font-size: 1rem;
  }
}
.story:hover .story__caption {
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
}
@media only screen and (max-width: 37.5em) {
  .story {
    transform: skew(0deg);
  }
}

.test-head {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.text-quote {
  line-height: 1.8;
}

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

.form {
  width: 50%;
  height: 100%;
  padding: 6rem;
}
@media only screen and (max-width: 75em) {
  .form {
    width: 70%;
  }
}
@media only screen and (max-width: 56.25em) {
  .form {
    width: 100%;
  }
}
.form__input {
  font-size: 1.5rem;
  color: inherit;
  font-family: inherit;
  width: 90%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 2px;
  padding: 1.5rem 2rem;
  transition: all 0.3s;
}
@media only screen and (max-width: 37.5em) {
  .form__input {
    width: 100%;
  }
}
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid #55c57a;
}
.form__input:focus:invalid {
  border-bottom: 3px solid #ff7730;
}
.form__input::-webkit-input-placeholder {
  color: #999;
}
.form__label {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}
.form__input:-moz-placeholder-shown + .form__label {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-4.4rem);
}
.form__input:placeholder-shown + .form__label {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-4.4rem);
}
.form__group {
  border: none;
}
.form__group:not(:last-child) {
  margin-bottom: 2.4rem;
}
.form .form__group:nth-of-type(3) {
  display: flex;
  justify-content: flex-start;
  gap: 4.8rem;
  align-items: center;
}
@media only screen and (max-width: 37.5em) {
  .form .form__group:nth-of-type(3) {
    flex-direction: column;
    align-items: start;
    gap: 2.4rem;
  }
}
.form__radio-input {
  opacity: 1;
  width: 0;
  height: 0;
  visibility: visible;
  display: none;
}
.form__radio-label {
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.form__radio-button {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 5px solid #55c57a;
  position: relative;
}
.form__radio-button::after {
  content: "";
  height: 1.3rem;
  width: 1.3rem;
  background-color: #55c57a;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s;
}
.form__radio-input:checked + .form__radio-label .form__radio-button::after {
  opacity: 1;
}

.popup-screen {
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 35;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}
@supports ((-webkit-backdrop-filter: blur(5px)) or (backdrop-filter: blur(5px))) {
  .popup-screen {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.3);
  }
}
.popup-screen:target {
  opacity: 1;
  visibility: visible;
}
.popup-screen:target .popup {
  transform: scale(1);
  opacity: 1;
}

.popup {
  width: 75%;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 7px;
  overflow: hidden;
  transition: all 0.3s 0.2s;
  backface-visibility: hidden;
  transform: scale(0.25);
  opacity: 0;
  position: relative;
}
.popup__content {
  display: flex;
  gap: 3.6rem;
}
.popup__left {
  width: 35%;
}
.popup__img {
  width: 100%;
  display: block;
}
.popup__right {
  width: 65%;
  text-align: left;
}
.popup__text {
  gap: 2.4rem;
  padding-right: 2.4rem;
  margin-top: 1.2rem;
  font-size: 1.4rem;
  text-align: left;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  -moz-column-rule: 1px solid #eee;
       column-rule: 1px solid #eee;
  -webkit-hyphens: auto;
          hyphens: auto;
}
.popup__close:link, .popup__close:visited {
  text-decoration: none;
  font-size: 3.2rem;
  font-weight: 400;
  color: #777;
  transition: all 0.2s;
  line-height: 1;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
}
.popup__close:hover, .popup__close:active {
  color: #55c57a;
}

.header {
  height: 80vh;
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)), url(/img/hero-small.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}
@supports ((-webkit-clip-path: polygon(0 0)) or (clip-path: polygon(0 0))) or (-webkit-clip-path: polygon(0 0)) {
  .header {
    height: 95vh;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 90vh, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 37.5em), only screen and (min-resolution: 192dpi) and (min-width: 37.5em), only screen and (min-width: 125em) {
  .header {
    background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)), url(/img/hero.jpg);
  }
}
@media only screen and (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: 4rem;
  left: 4rem;
}
.header__logo {
  height: 3.2rem;
}
.header__text-box {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.flex-layout {
  display: flex;
  justify-content: space-evenly;
  gap: 6rem;
}
.flex-layout-item-1 {
  width: 43%;
}
@media only screen and (max-width: 56.25em) {
  .flex-layout-item-1 {
    width: 70%;
    text-align: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .flex-layout-item-1 {
    width: 100%;
    text-align: center;
  }
}
.flex-layout-item-2 {
  width: 43%;
}
@media only screen and (max-width: 56.25em) {
  .flex-layout {
    flex-direction: column;
    align-items: center;
  }
}

.footer {
  font-size: 1.4rem;
  background-color: #333;
  padding: 10rem 5rem;
}
@media only screen and (max-width: 56.25em) {
  .footer {
    padding: 8rem 0;
  }
}
.footer__logo-box {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__logo-box {
    margin-bottom: 6rem;
  }
}
.footer__logo {
  width: 15rem;
  height: auto;
}
.footer-flex-box {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 37.5em) {
  .footer-flex-box {
    flex-direction: column;
    align-items: stretch;
    gap: 6.4rem;
  }
}
.footer__navigation {
  border-top: 1px solid #777;
  padding-top: 2rem;
}
.footer__list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
@media only screen and (max-width: 37.5em) {
  .footer__list {
    justify-content: space-around;
  }
}
.footer__link:link, .footer__link:visited {
  display: inline-block;
  color: #f7f7f7;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
}
.footer__link:hover, .footer__link:active {
  color: #55c57a;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  transform: scale(1.2) rotate(5deg);
}
.footer__copyright-box {
  border-top: 1px solid #777;
  padding-top: 2rem;
  width: 40%;
}
@media only screen and (max-width: 37.5em) {
  .footer__copyright-box {
    width: 100%;
  }
}
.navigation__checkbox {
  display: none;
  width: 0;
}
.navigation__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 6rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 20;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@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__icon {
  position: relative;
}
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
  display: inline-block;
  width: 3rem;
  height: 2px;
  background-color: black;
  z-index: 25;
  transition: all 0.8s;
}
.navigation__icon::before {
  content: "";
  position: absolute;
  top: -0.8rem;
  left: 0;
}
.navigation__icon::after {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0;
}
.navigation__button:hover .navigation__icon:after {
  top: 1rem;
}
.navigation__button:hover .navigation__icon:before {
  top: -1rem;
}
.navigation__checkbox:checked ~ .navigation__button .navigation__icon {
  background-color: transparent;
}
.navigation__checkbox:checked ~ .navigation__button .navigation__icon::after {
  transform: rotate(405deg);
  top: 0;
}
.navigation__checkbox:checked ~ .navigation__button .navigation__icon::before {
  transform: rotate(-405deg);
  top: 0;
}
.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: 10;
  transition: all 0.7s;
}
@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;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  width: 0;
}
.navigation__list {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  background-image: linear-gradient(120deg, transparent 50%, #fff 50%);
  background-size: 220%;
  transition: all 0.4s;
}
.navigation__link:link span, .navigation__link:visited span {
  margin-right: 1.5rem;
}
.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #55c57a;
  transform: translateX(1rem);
}
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(70);
}
.navigation__checkbox:checked ~ .navigation__nav {
  width: 100%;
  opacity: 1;
  animation: moveInLeft 0.7s ease-in-out;
}

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

.section-feature {
  margin-top: -8rem;
  padding: 20rem 0;
  background-color: rgb(229, 246, 252);
  background: 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;
  background-position: center;
  transform: skewY(-7deg);
}
.section-feature-flex {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  transform: skewY(7deg);
}
@media only screen and (max-width: 56.25em) {
  .section-feature-flex {
    flex-direction: column;
    gap: 3.2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .section-feature {
    padding: 10rem 0;
  }
}

.section-tours {
  padding: 25rem 0 15rem 0;
  margin-top: -10rem;
  background-color: #f7f7f7;
}
.section-tours-flex {
  display: flex;
  justify-content: space-evenly;
  gap: 3rem;
}
@media only screen and (max-width: 56.25em) {
  .section-tours-flex {
    flex-direction: column;
    align-items: center;
  }
}

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

.section-booking {
  background: linear-gradient(to right bottom, #7ed56f, #28b485);
  padding: 15rem 0;
}
@media only screen and (max-width: 56.25em) {
  .section-booking {
    padding: 10rem 0;
  }
}

.book {
  width: 95%;
  margin: 0 auto;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url(/img/nat-10.jpg);
  background-size: cover;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 75em) {
  .book {
    background: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 65%, transparent 65%), url(/img/nat-10.jpg);
    background-size: cover;
  }
}
@media only screen and (max-width: 56.25em) {
  .book {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(/img/nat-10.jpg);
    background-size: cover;
  }
}