*,
*::after,
*::before {
  margin: 0;
  padding: 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 (max-width: 37.5em) {
  html {
    font-size: 10%;
  }
}
@media only screen and (max-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
}

::selection {
  background-color: lightgreen;
  color: white;
}

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

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

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

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

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  60% {
    transform: translateX(2rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateY(10rem);
  }
  60% {
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #777;
  padding: 0;
}

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 3rem;
}
.heading-primary--main {
  display: block;
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: 2rem;
  animation: moveInLeft 2s 1s;
}
@media only screen and (max-width: 56.25em) {
  .heading-primary--main {
    letter-spacing: 1rem;
    font-size: 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading-primary--main {
    letter-spacing: 0.1rem;
    font-size: 1.2rem;
  }
}
.heading-primary--sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.5rem;
  animation: moveInRight 2s 1s;
}
@media only screen and (max-width: 37.5em) {
  .heading-primary--sub {
    margin-top: 3rem;
    letter-spacing: 0.1rem;
    font-size: 1rem;
  }
}

.heading-secondary {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 3.5rem;
  display: inline-block;
  background-image: linear-gradient(to right, #7ed56f, #28b485);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.1rem;
  transition: all 0.1s;
}
@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: 1.5rem;
  }
}
.heading-secondary:hover {
  text-shadow: 0.5rem 1rem 5rem rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media only screen and (max-width: 37.5em) {
  .heading-tertiary {
    font-size: 1rem;
  }
}

.paragraph {
  font-size: 1.6rem;
}
@media only screen and (max-width: 37.5em) {
  .paragraph {
    font-size: 1rem;
  }
}
.paragraph:not(:last-child) {
  margin-bottom: 3rem;
}

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.5rem;
  padding: 1.5rem 2.5rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  border: none;
  cursor: pointer;
  animation: moveInBottom 2s 1s;
}
@media only screen and (max-width: 37.5em) {
  .btn, .btn:link, .btn:visited {
    padding: 1rem 0;
    font-size: 1rem;
  }
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  transform: scale(1.5);
  opacity: 0;
}
.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}
.btn--white {
  background-color: #fff;
  color: #777;
}
.btn--white::after {
  background-color: #fff;
}
.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.5s;
}
.btn--animated {
  transition: all 0.5s;
}

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

.composition {
  position: relative;
}
.composition__photo {
  width: 55%;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  position: absolute;
  z-index: 0;
  transition: all 0.3s;
  outline-offset: 1.5rem;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo {
    float: left;
    position: relative;
    width: 33.333%;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
  }
}
.composition__photo--p1 {
  left: 0;
  top: -2rem;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo--p1 {
    top: 1rem;
    transform: scale(1.1);
  }
}
.composition__photo--p2 {
  top: 2rem;
  right: 0;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo--p2 {
    top: -1rem;
    transform: scale(1.3);
    z-index: 100;
  }
}
.composition__photo--p3 {
  left: 20%;
  top: 10rem;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo--p3 {
    top: 1rem;
    left: 0;
    transform: scale(1.1);
  }
}
.composition__photo:hover {
  outline: 1rem solid darkseagreen;
  transform: scale(1.1) translateY(-0.5rem);
  box-shadow: 0 2rem 4rem rgba(239, 239, 239, 0.5);
  z-index: 1;
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.7);
  transition: 1s;
  transition-timing-function: ease-in-out;
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 2rem rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}
@media only screen and (max-width: 56.25em) {
  .feature-box {
    padding: 2rem;
  }
}
.feature-box__icon {
  font-size: 6rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  background-image: linear-gradient(to right, #7ed56f, #28b485);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 56.25em) {
  .feature-box__icon {
    margin-bottom: 0;
  }
}
.feature-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
}

.card {
  -moz-perspective: 150rem;
  perspective: 150rem;
  position: relative;
  height: 60rem;
}
.card__side {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  color: white;
  font-size: 2rem;
  height: 60rem;
  transition: all 1.2s ease-in-out;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 1.5rem 3rem rgba(255, 174, 0, 0.525);
}
.card__side--front {
  background-image: linear-gradient(109.6deg, rgb(247, 253, 166) 11.2%, rgb(128, 255, 221) 57.8%, rgb(255, 128, 249) 85.9%);
}
.card__side--back {
  transform: rotateY(180deg);
}
.card__side--back-1 {
  background-image: radial-gradient(circle 311px at 8.6% 27.9%, rgba(62, 147, 252, 0.57) 12.9%, rgba(239, 183, 192, 0.44) 91.2%);
}
.card__side--back-2 {
  background-image: linear-gradient(103.3deg, rgb(252, 225, 208) 30%, rgb(255, 173, 214) 55.7%, rgb(162, 186, 245) 81.8%);
}
.card__side--back-3 {
  background-image: radial-gradient(circle 369px at -2.9% 12.9%, rgb(247, 234, 163) 0%, rgba(236, 180, 238, 0.56) 46.4%, rgb(163, 203, 247) 100.7%);
}
.card:hover .card__side--front {
  transform: rotateY(-180deg);
}
.card:hover .card__side--back {
  transform: rotateY(0);
}
.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%);
}
.card__picture--1 {
  background-image: url(../img/nat-5.jpg);
}
.card__picture--2 {
  background-image: url(../img/nat-6.jpg);
}
.card__picture--3 {
  background-image: url(../img/nat-7.jpg);
}
.card__heading {
  font-size: 3rem;
  font-weight: 500;
  text-transform: uppercase;
  text-align: right;
  color: white;
  position: absolute;
  top: 12rem;
  right: 2rem;
  width: 60%;
}
.card__heading-span {
  padding: 1rem 1rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.card__heading-span--1 {
  background-image: linear-gradient(102.4deg, rgb(253, 189, 85) 7.8%, rgb(249, 131, 255) 100.3%);
}
.card__heading-span--2 {
  background-image: linear-gradient(102.4deg, rgb(253, 189, 85) 7.8%, rgb(249, 131, 255) 100.3%);
}
.card__heading-span--3 {
  background-image: linear-gradient(102.4deg, rgb(253, 189, 85) 7.8%, rgb(249, 131, 255) 100.3%);
}
.card__details {
  padding: 3rem;
  color: #393e46;
}
.card__details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}
.card__details ul li {
  text-align: center;
  font-size: 1.5rem;
  padding: 2rem;
}
.card__details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #393e46;
  width: 90%;
  text-align: center;
}
.card__price-box {
  margin-bottom: 8rem;
}
.card__price-only {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
}
.card__price-value {
  font-size: 5rem;
  font-weight: 300;
}
@media only screen and (max-width: 56.25em), only screen and (hover: none) {
  .card {
    height: auto;
    background-color: #eee;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
  }
  .card__side {
    height: auto;
    border-radius: 0px;
    position: relative;
  }
  .card__side--back {
    transform: rotateY(0);
    clip-path: polygon(0 1%, 100% 1%, 100% 100%, 0 100%);
  }
  .card:hover .card__side--front {
    transform: rotateY(0);
  }
  .card__details {
    padding: 1rem 3rem;
  }
  .card__cta {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
    width: 100%;
    padding: 7rem 4rem 4rem 4rem;
  }
  .card__price-box {
    margin-bottom: 3rem;
  }
  .card__price-value {
    font-size: 3rem;
  }
}

.story {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgb(0, 0, 0);
  background-color: #fff;
  border-radius: 3px;
  font-size: 2rem;
  padding: 6rem;
  padding-left: 9rem;
  transform: skewX(-12deg);
}
@media only screen and (max-width: 56.25em) {
  .story {
    width: 100%;
    padding: 4rem;
    padding-left: 7rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .story {
    transform: skewX(0);
    font-size: 1rem;
    width: 100%;
    padding: 8rem;
  }
}
.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: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  transform: translateX(-3rem) skewX(12deg);
  position: relative;
  transform: skew();
}
@media only screen and (max-width: 37.5em) {
  .story__shape {
    transform: translateX(-3rem) skewX(0deg);
  }
}
.story__img {
  height: 100%;
  transform: translateX(-4rem) scale(1.1);
}
.story:hover .story__img {
  transform: translateX(-4rem) scale(1);
  filter: blur(3px) brightness(80%);
}
.story__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  color: whitesmoke;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.8rem;
  text-align: center;
  backface-visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.story:hover .story__caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.story__text {
  transform: skewX(12deg);
}
@media only screen and (max-width: 37.5em) {
  .story__text {
    transform: skewX(0deg);
    margin-top: 15rem;
    text-align: center;
  }
}

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

@media only screen and (max-width: 37.5em) {
  .form__group {
    width: 80%;
  }
}
.form__group:not(:last-child) {
  margin-bottom: 2rem;
}
.form__input {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 1.5rem 2rem;
  border-radius: 2px;
  background-color: rgba(248, 247, 247, 0.5);
  border: none;
  border-bottom: 2px solid transparent;
  width: 85%;
  display: block;
}
@media only screen and (max-width: 37.5em) {
  .form__input {
    font-size: 1rem;
  }
}
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem rgba(128, 128, 128, 0.1);
  border-bottom: 2px solid green;
  background-color: rgba(128, 128, 128, 0.1);
}
.form__input:focus:invalid {
  border-bottom: 2px solid orange;
}
.form__input::-webkit-input-placeholder {
  color: gray;
}
.form__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}
@media only screen and (max-width: 37.5em) {
  .form__label {
    font-size: 1rem;
  }
}
.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form__radio-grp {
  padding: 1rem;
  width: 40%;
  display: inline-block;
}
@media only screen and (max-width: 56.25em) {
  .form__radio-grp {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .form__radio-grp {
    width: 80%;
  }
}
@media only screen and (max-width: 37.5em) {
  .form__radio-input {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}
.form__radio-label {
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  padding-left: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .form__radio-label {
    font-size: 1rem;
  }
}
.form__radio-btn {
  height: 3rem;
  width: 3rem;
  border: 5px solid #55c57a;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: -2.38rem;
  top: -0.56rem;
}
@media only screen and (max-width: 37.5em) {
  .form__radio-btn {
    border: 1px solid #55c57a;
    margin-left: 2rem;
    height: 1.5rem;
    width: 1.5rem;
  }
}
.form__radio-btn::after {
  content: "";
  display: block;
  height: 1rem;
  width: 1.5rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s;
}
.form__radio-btn__radio-input:checked ~ .form__radio-btn__radio-label .form__radio-btn__radio-btn::after {
  opacity: 1;
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
@supports (-webkit-backdrop-filter: blur 10px) or (backdrop-filter: blur 10px) {
  .popup {
    -webkit-backdrop-filter: blur 10px;
    backdrop-filter: blur 10px;
    background-color: rgba(0, 0, 0, 0.3);
  }
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.popup__close:link, .popup__close:visited {
  color: #777;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3rem;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  transition: all 0.2s;
}
.popup__close:hover {
  color: orangered;
}
.popup__content {
  position: absolute;
  display: table;
  overflow: hidden;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  width: 75%;
  background-color: white;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  transition: all 0.4s 0.2s;
}
.popup__left {
  width: 33.3333%;
  display: table-cell;
}
.popup__right {
  width: 66.6666%;
  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 rgba(119, 119, 119, 0.2);
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

.header {
  height: 95vh;
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.807), rgba(40, 180, 133, 0.807)), url(../img/hero.jpg);
  background-size: cover;
  background-position: top;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
}
@media only screen and (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: 1rem;
  left: 1rem;
}
.header__logo {
  height: 3rem;
}
.header__text-box {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.loader-bar {
  position: relative;
  text-align: center;
  margin-top: 0px;
  left: 50%;
  width: 100%;
  height: 0.3rem;
  background-color: rgb(248, 219, 218);
}
.loader-bar__runner {
  content: "";
  display: inline;
  position: absolute;
  width: 0;
  height: 100%;
  left: 50%;
  text-align: center;
}
.loader-bar:nth-child(1) {
  background-color: rgb(255, 0, 34);
  animation: loading 3s linear infinite;
}
@keyframes loading {
  from {
    left: 0%;
    width: 0;
    z-index: 99999;
  }
  50% {
    left: 50%;
    width: 50%;
  }
  to {
    left: 0;
    width: 100%;
  }
}

.loader {
  position: absolute;
  min-height: 100vh;
  width: 100%;
  z-index: 9999;
  overflow: visible;
  background: black url(../../img/load.gif) no-repeat center center;
  animation: loaderDelay 1.5s ease-in 1 forwards;
  background-size: contain;
}

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

.footer {
  background-color: #222024;
  color: #f7f7f7;
  padding: 1rem 0;
  font-size: 1.4rem;
}
.footer__logo-box {
  text-align: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__logo-box {
    margin-bottom: 0rem;
  }
}
.footer__logo {
  width: 30rem;
  height: auto;
}
@media only screen and (max-width: 56.25em) {
  .footer__logo {
    width: 80%;
    height: 10rem;
  }
}
.footer__navigation {
  border-top: 1px solid #f7f7f7;
  padding-top: 2rem;
  display: inline-block;
}
@media only screen and (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:link, .footer__link:visited {
  color: #f7f7ff;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.2s;
}
.footer__link:hover, .footer__link:active {
  color: cornflowerblue;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  transform: rotate(1deg) scale(1.1);
}
.footer__copyright {
  cursor: help;
  border-top: 1px solid #f7f7f7;
  padding-top: 2rem;
  text-align: center;
  width: 100%;
  float: right;
}
@media only screen and (max-width: 56.25em) {
  .footer__copyright {
    width: 100%;
    text-align: center;
    float: none;
  }
}

.nav__checkbox {
  display: none;
}
.nav__btn {
  background-color: whitesmoke;
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  position: fixed;
  text-align: center;
  top: 6rem;
  right: 6rem;
  cursor: pointer;
  box-shadow: 0 0.5rem 0.5rem #222024;
  z-index: 20;
}
@media only screen and (max-width: 56.25em) {
  .nav__btn {
    top: 4rem;
    right: 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .nav__btn {
    top: 3rem;
    right: 3rem;
  }
}
.nav__bg {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  transition: transform 0.5s cubic-bezier(0.64, 0, 0.78, 0);
  background-image: radial-gradient(#78febf 0%, #f4a34e 100%);
  z-index: 10;
}
@media only screen and (max-width: 56.25em) {
  .nav__bg {
    top: 4.5rem;
    right: 4.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .nav__bg {
    top: 3.5rem;
    right: 3.5rem;
  }
}
.nav__nav {
  opacity: 0;
  height: 100vh;
  width: 0;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.8s cubic-bezier(0.45, -0.37, 0.4, 1.59);
  z-index: 15;
}
.nav__list {
  width: 100%;
  list-style: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nav__item {
  margin: 1rem;
}
.nav__link:link, .nav__link:visited {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  padding: 1rem 2rem;
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, whitesmoke 100%);
  background-size: 200%;
  transition: all 0.4s;
}
.nav__link:hover, .nav__link:active {
  background-position: 100%;
  color: #222024;
  transform: translateX(1rem);
}
.nav__checkbox:checked ~ .nav__bg {
  transform: scale(60);
}
.nav__checkbox:checked ~ .nav__nav {
  opacity: 1;
  width: 100%;
}
.nav__icon {
  position: relative;
  margin-top: 3.5rem;
}
.nav__icon, .nav__icon::before, .nav__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #333;
  display: inline-block;
}
.nav__icon::before, .nav__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.4s;
}
.nav__icon::before {
  top: -0.8rem;
}
.nav__icon::after {
  top: 0.8rem;
}
.nav__btn:hover .nav__icon::before {
  top: -1rem;
}
.nav__btn:hover .nav__icon::after {
  top: 1rem;
}
.nav__checkbox:checked + .nav__btn .nav__icon {
  background-color: transparent;
}
.nav__checkbox:checked + .nav__btn .nav__icon::before {
  top: 0;
  transform: rotate(45deg);
}
.nav__checkbox:checked + .nav__btn .nav__icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.section-about {
  background-color: #f7f7f7;
  padding: 25rem 0;
  margin-top: -10vh;
  background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
}
@media only screen and (max-width: 56.25em) {
  .section-about {
    padding: 20rem 0;
  }
}

.section-features {
  padding: 20rem 0;
  margin-top: -10rem;
  background-size: cover;
  transform: skewY(-7deg);
}
.section-features > * {
  transform: skewY(7deg);
}
@media only screen and (max-width: 56.25em) {
  .section-features {
    padding: 10rem 0;
  }
}

.section-plans {
  background-color: #f7f7f7;
  padding: 25rem 0 15rem 0;
  margin-top: -10rem;
  background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
}
@media only screen and (max-width: 56.25em) {
  .section-plans {
    padding: 20rem 0 10rem 0;
  }
}

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

.section-book {
  padding: 15rem 0;
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.807), rgba(40, 180, 133, 0.807)), url(../img/nat-4.jpg);
}
@media only screen and (max-width: 56.25em) {
  .section-book {
    padding: 10rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-book {
    padding: 5rem 0;
  }
}

.book {
  background-image: linear-gradient(105deg, #edebe7 0%, #f7f5f3 50%, transparent 50%), url(/img/nat-10.jpg);
  background-size: 100%;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 75em) {
  .book {
    background-size: cover;
    background-image: linear-gradient(105deg, #edebe7 0%, #f7f5f3 60%, transparent 60%), url(/img/nat-10.jpg);
  }
}
@media only screen and (max-width: 56.25em) {
  .book {
    background-size: cover;
    background-image: linear-gradient(to right, #edebe7 0%, #fddcbc 100%), url(/img/nat-10.jpg);
  }
}
.book__form {
  width: 60%;
  padding: 6rem;
}
@media only screen and (max-width: 75em) {
  .book__form {
    width: 60%;
  }
}
@media only screen and (max-width: 56.25em) {
  .book__form {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .book__form {
    padding: 2rem;
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
