/*
0-600px:        Phone
600-900px:      Tablet Portrait
900-1200px:     Tablet Landscape
[1200-1800px:]  is where our normal styles apply
1800px + :      Big Desktop

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

1em = 16px
*/
/*animation function declare*/
@-webkit-keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@-webkit-keyframes moveInRight {
  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);
  }
}
/*animation function declare*/
/*buttoon animation funtion start*/
@-webkit-keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
/*buttoon animation funtion end*/
/*global style start*/
*,
*::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 (min-width: 112em) {
  html {
    font-size: 70%;
  }
}

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

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

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  margin-bottom: 6rem;
}
.heading-primary-main {
  display: block;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 3.5rem;
  -webkit-animation: moveInLeft 1s ease-out;
          animation: moveInLeft 1s ease-out;
}
@media only screen and (max-width: 37.5em) {
  .heading-primary-main {
    margin-top: 90px;
    letter-spacing: 1rem;
    font-size: 5rem;
  }
}
.heading-primary-sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.75rem;
  -webkit-animation: moveInRight 1s ease-out;
          animation: moveInRight 1s ease-out;
}
@media only screen and (max-width: 37.5em) {
  .heading-primary-sub {
    letter-spacing: 0.5rem;
  }
}

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

.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-small {
  margin-bottom: 1.5rem;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem;
}

.u-margin-bottom-big {
  margin-bottom: 8rem;
}

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

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

.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;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media only screen and (max-width: 37.5em) {
  .btn {
    font-size: 1.2rem;
  }
}
.btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}
.btn:active {
  transform: translateY(-0.1rem);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.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::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 {
  -webkit-animation: moveInBottom 0.5s ease-out 0.75s;
          animation: moveInBottom 0.5s ease-out 0.75s;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
}

.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.15);
  transform: translateY(-2px);
}
.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0);
}

.cards {
  perspective: 150rem;
  position: relative;
  height: 52rem;
  margin-right: 4rem;
}
@media only screen and (max-width: 75em) {
  .cards {
    margin-right: 0;
    height: 55rem;
  }
}
.cards_side {
  height: 52rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 75em) {
  .cards_side {
    height: 55rem;
  }
}
.cards_side-front {
  background-color: #fff;
}
.cards_side-back {
  transform: rotateY(180deg);
}
.cards_side-back-1 {
  background-image: linear-gradient(to right bottom, rgba(255, 187, 0, 0.7882352941), #fa7832);
}
.cards_side-back-2 {
  background-image: linear-gradient(to right bottom, rgba(215, 235, 37, 0.7882352941), rgba(158, 173, 18, 0.6431372549));
}
.cards_side-back-3 {
  background-image: linear-gradient(to right bottom, #2998ff, rgba(99, 83, 238, 0.8078431373));
}
.cards:hover .cards_side-front {
  transform: rotateY(-180deg);
}
.cards:hover .cards_side-back {
  transform: rotateY(0);
}
.cards-picture {
  background-size: cover;
  height: 24rem;
  background-blend-mode: hue;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.cards-picture-1 {
  background-image: linear-gradient(to right bottom, rgba(255, 187, 0, 0.7882352941), #fa7832), url(../img/nat-5.jpg);
}
.cards-picture-2 {
  background-image: linear-gradient(to right bottom, rgba(215, 235, 37, 0.7882352941), rgba(158, 173, 18, 0.6431372549)), url(../img/nat-6.jpg);
}
.cards-picture-3 {
  background-image: linear-gradient(to right bottom, #2998ff, rgba(99, 83, 238, 0.8078431373)), url(../img/nat-7.jpg);
}
.cards-heading {
  font-size: 2.8rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  position: absolute;
  top: 16rem;
  right: 3rem;
  width: 70%;
}
.cards-heading-span {
  padding: 0.5rem 1.5rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.cards-heading-span-1 {
  background-image: linear-gradient(to right bottom, rgba(255, 187, 0, 0.85), rgba(250, 120, 50, 0.85));
}
.cards-heading-span-2 {
  background-image: linear-gradient(to right bottom, rgba(215, 235, 37, 0.85), rgba(158, 173, 18, 0.85));
}
.cards-heading-span-3 {
  background-image: linear-gradient(to right bottom, rgba(41, 152, 255, 0.85), rgba(99, 83, 238, 0.85));
}
.cards-details {
  padding: 3rem;
}
.cards-details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}
.cards-details ul li {
  text-align: center;
  font-size: 1.5rem;
  padding: 1rem;
}
@media only screen and (max-width: 75em) {
  .cards-details ul li {
    padding: 1rem 0;
  }
}
.cards-details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.cards-cta {
  position: absolute;
  top: 30%;
  left: 30%;
  transform: translate(-30, -30);
}
.cards-price-box {
  text-align: center;
  color: #fff;
  margin-bottom: 5rem;
}
.cards-price-only {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.cards-price-value {
  font-size: 6rem;
  font-weight: 300;
}
@media only screen and (max-width: 56.25em) {
  .cards {
    margin-bottom: 4rem;
    margin-right: 0;
    height: auto;
    background-color: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  }
  .cards_side {
    height: auto;
    position: relative;
    border-radius: 0;
    box-shadow: none;
  }
  .cards_side-back {
    transform: rotateY(0);
    -webkit-clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
  }
  .cards:hover .cards_side-front {
    transform: rotateY(0);
  }
  .cards-cta {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
    width: 100%;
    padding: 7rem 4rem 4rem 4rem;
    text-align: center;
  }
  .cards-price-box {
    margin-bottom: 3rem;
  }
  .cards-price-value {
    font-size: 4rem;
  }
}

.composition {
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .composition {
    margin-top: 4rem;
    padding: 0 1rem;
  }
}
.composition__photo {
  position: absolute;
  width: 55%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  transition: all 0.5s;
  outline-offset: 2rem;
  z-index: 10;
}
@media only screen and (max-width: 56.25em) {
  .composition__photo {
    float: left;
    position: relative;
    width: 33.33%;
    box-shadow: 0 1.5rem 3rem black;
  }
}
.composition__photo:hover {
  outline: 1rem solid #55c57a;
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.4);
  z-index: 20;
}
.composition--p1 {
  left: 0;
  top: -2rem;
}
@media only screen and (max-width: 56.25em) {
  .composition--p1 {
    top: 0;
    transform: scale(1.2);
  }
}
.composition--p2 {
  right: 0;
  top: 2rem;
}
@media only screen and (max-width: 56.25em) {
  .composition--p2 {
    top: -1rem;
    transform: scale(1.3);
    z-index: 100;
  }
}
.composition--p3 {
  left: 20%;
  top: 10rem;
}
@media only screen and (max-width: 56.25em) {
  .composition--p3 {
    top: 1rem;
    left: 0;
    transform: scale(1.1);
  }
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.9);
}

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

.story {
  width: 75%;
  margin: 0 auto;
  margin-bottom: 8rem;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  padding: 9rem;
  font-size: 1.6rem;
  transform: skewX(-13deg);
}
@media only screen and (max-width: 56.25em) {
  .story {
    width: 100%;
    padding: 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .story {
    transform: skewX(0);
  }
}
.story-shape {
  width: 15rem;
  height: 15rem;
  float: left;
  shape-outside: circle(50% at 50% 50%);
  position: relative;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  transform: translateX(-3rem) skewX(13deg);
}
@media only screen and (max-width: 37.5em) {
  .story-shape {
    transform: translateX(-3rem) skewX(0);
  }
}
.story-image {
  height: 100%;
  transform: translateX(-4rem) scale(1.4);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.3s;
}
.story-text {
  transform: skewX(13deg);
}
@media only screen and (max-width: 37.5em) {
  .story-text {
    transform: skewX(0);
  }
}
.story-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  color: #fff;
  text-transform: uppercase;
  font-size: 1.7rem;
  text-align: center;
  opacity: 0;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.story:hover .story-caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.story:hover .story-image {
  transform: translateX(-4rem) scale(1);
  filter: blur(3px) brightness(80%);
}

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

.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: 0.5rem;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-bottom: 0.4rem solid transparent;
  width: 80%;
  display: block;
}
.form-input:focus {
  outline: none;
  box-shadow: 0 1rem 3rem rgba(255, 255, 255, 0.1);
  border-bottom: 0.4rem solid #55c57a;
}
.form-input:focus:invalid {
  border-bottom: 0.4rem solid #fa7832;
}
.form-input::-webkit-input-placeholder {
  color: #999;
}
.form-label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  transition: all 0.3s;
}
.form-input:-moz-placeholder-shown + .form-label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form-input:-ms-input-placeholder + .form-label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form-input:placeholder-shown + .form-label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form-radio-group {
  width: 50%;
  display: inline-block;
}
.form-radio-label {
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  padding-left: 4rem;
}
.form-radio-input {
  display: none;
}
.form-radio-button {
  height: 3rem;
  width: 3rem;
  border: 0.5rem solid #55c57a;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -0.2rem;
}
.form-radio-button::after {
  content: "";
  display: block;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #55c57a;
  opacity: 0;
  transition: opacity 0.3s;
}
.form-radio-input:checked ~ .form-radio-label .form-radio-button::after {
  opacity: 1;
}
.form-group .btn-success {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  color: #fff;
  padding: 1rem 3rem;
  background-color: #28a745;
  border-color: #28a745;
  border: none;
  border-radius: 3rem;
}

body > main > section.section-book > div > div > div > div > form > div:nth-child(6) {
  margin-top: 4rem;
  text-align: center;
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  height: 50rem;
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  display: table;
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  transition: all 0.4s 0.2s;
}
.popup-left {
  width: 33.33%;
  display: table-cell;
}
.popup-right {
  width: 66.66%;
  display: table-cell;
  vertical-align: middle;
  padding: 3rem 5rem;
}
.popup-img {
  display: block;
  width: 100%;
}
.popup-text {
  font-size: 1.4rem;
  margin-bottom: 4rem;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  -moz-column-rule: 1px solid #999;
       column-rule: 1px solid #999;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup-content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.popup-close {
  color: #777;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  text-decoration: none;
  font-size: 3rem;
  display: inline-block;
  line-height: 1;
}
.popup-close:hover {
  text-decoration: none;
  color: red;
}

.footer {
  background-color: #333;
  padding: 10rem 0;
  font-size: 1.4rem;
  margin: auto;
}
@media only screen and (max-width: 56.25em) {
  .footer {
    padding: 8rem 0;
  }
}
.footer-logo-box {
  text-align: center;
  margin-bottom: 8rem;
}
.footer-logo {
  width: 15rem;
  height: auto;
}
.footer-navigation {
  border-top: 1px solid #55c57a;
  padding-top: 2rem;
  display: inline-block;
}
@media only screen and (max-width: 56.25em) {
  .footer-navigation {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
  }
}
.footer-list {
  list-style: none;
}
.footer-item {
  display: inline-block;
}
.footer-item:not(:last-child) {
  margin-right: 2rem;
}
.footer-link:link, .footer-link:visited {
  color: #f7f7f7;
  background-color: #333;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  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);
}
.footer-copyright {
  font-size: 1.4rem;
  border-top: 1px solid #55c57a;
  padding-top: 2rem;
  width: 90%;
  float: right;
}
@media only screen and (max-width: 56.25em) {
  .footer-copyright {
    width: 100%;
    float: none;
  }
}

.header {
  height: 95vh;
  background-image: linear-gradient(to right bottom, rgba(255, 34, 255, 0.1333333333), #000), url(../img/hero.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
}
@media only screen and (max-width: 75em) {
  .header {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
    margin-bottom: 10rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .header {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
    margin-bottom: 10rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .header {
    height: 80vh;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 73vh, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 73vh, 0 100%);
    margin-bottom: 0;
  }
}
.header .logo-box {
  position: absolute;
  top: 4rem;
  left: 4rem;
}
.header .logo {
  height: 3.5rem;
}
.header .text-box {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.navigation-checkbox {
  display: none;
}
.navigation-button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 6rem;
  right: 6rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
@media only screen and (max-width: 56.25em) {
  .navigation-button {
    top: 4rem;
    right: 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .navigation-button {
    height: 6rem;
    width: 6rem;
    top: 3rem;
    right: 3rem;
  }
}
.navigation-background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#00050a, rgba(255, 255, 255, 0.431372549));
  z-index: 1000;
  transition: transform 0.9s cubic-bezier(0.86, 0, 0.07, 1);
}
@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;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  width: 0;
  transition: all 0.9s;
}
.navigation-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.navigation-item {
  list-style: none;
  margin: 1rem;
}
.navigation-link:link, .navigation-link:visited {
  font-size: 3rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0, transparent 50%, white 50%);
  background-size: 250%;
  transition: all 0.4s;
}
.navigation-link:hover, .navigation-link:active {
  color: #212529;
  background-position: 100%;
}
.navigation-checkbox:checked ~ .navigation-background {
  transform: scale(80);
}
.navigation-checkbox:checked ~ .navigation-nav {
  opacity: 1;
  visibility: visible;
  width: 100vw;
}
.navigation-icon {
  position: relative;
  margin-top: 3.5rem;
  margin-left: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .navigation-icon {
    margin-top: 3rem;
    margin-left: 1.5rem;
  }
}
.navigation-icon, .navigation-icon::before, .navigation-icon::after {
  width: 3rem;
  height: 2px;
  background-color: #333;
  display: inline-block;
}
.navigation-icon::before, .navigation-icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.navigation-icon::before {
  top: -1rem;
}
.navigation-icon::after {
  top: 1rem;
}
.navigation-button:hover .navigation-icon::before {
  top: -1.3rem;
}
.navigation-button:hover .navigation-icon::after {
  top: 1.3rem;
}
.navigation-checkbox:checked + .navigation-button .navigation-icon {
  background-color: transparent;
}
.navigation-checkbox:checked + .navigation-button .navigation-icon::before {
  top: 0;
  transform: rotate(315deg);
}
.navigation-checkbox:checked + .navigation-button .navigation-icon::after {
  top: 0;
  transform: rotate(-315deg);
}

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

.section-features {
  padding: 20rem 0;
  background-image: linear-gradient(to right bottom, rgba(255, 34, 255, 0.1333333333), #28b485), url(../img/nat-4.jpg);
  background-size: cover;
  transform: skewY(-7deg);
  margin-top: -12rem;
}
.section-features > * {
  transform: skewY(7deg);
}
@media only screen and (max-width: 56.25em) {
  .section-features {
    padding: 15rem 0;
  }
}

.section-tours {
  background-color: #f7f7f7;
  padding: 25rem 0 15rem 0;
  margin-top: -12rem;
}
@media only screen and (max-width: 56.25em) {
  .section-tours {
    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(255, 34, 255, 0.1333333333), #28b485);
}
@media only screen and (max-width: 56.25em) {
  .section-book {
    padding: 10rem 0;
  }
}

.book {
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 55%, transparent 45%), url(../img/nat-10.jpg);
  background-size: cover;
  width: 100%;
  border-radius: 0.3rem;
  box-shadow: 0 2.5rem 3rem rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 75em) {
  .book {
    background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 65%, transparent 65%), url(../img/nat-10.jpg);
  }
}
@media only screen and (max-width: 56.25em) {
  .book {
    background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%), url(../img/nat-10.jpg);
  }
}
.book-form {
  width: 60%;
  padding: 6rem;
}
@media only screen and (max-width: 75em) {
  .book-form {
    width: 70%;
  }
}
@media only screen and (max-width: 75em) {
  .book-form {
    width: 85%;
  }
}/*# sourceMappingURL=main.css.map */