@keyframes BtnToUp {
  0% {
    opacity: 0;
    transform: translateY(5rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftToRight {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes RightToLeft {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
*, ::after, ::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 1240px) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 900px) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 30%;
  }
}
@media only screen and (min-width: 1800px) {
  html {
    font-size: 75%;
  }
}

body {
  padding: 2rem;
  background-color: #ffffff;
}
@media only screen and (max-width: 1240px) {
  body {
    padding: 1rem;
  }
}
@media (max-width: 600px) {
  body {
    padding: 0.5rem;
  }
}

.container {
  background-color: #F7F7F7;
  position: relative;
  z-index: 0;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  color: #777777;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}

.title-one {
  color: #ffffff;
}
.title-one__first {
  display: block;
  font-weight: 800;
  font-size: 5rem;
  line-height: 6rem;
  letter-spacing: 1rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation-name: leftToRight;
  animation-duration: 1.7s;
  animation-delay: 1s;
  animation-timing-function: ease;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1240px) {
  .title-one__first {
    font-size: 4.5rem;
    letter-spacing: 0.5rem;
  }
}
@media (max-width: 600px) {
  .title-one__first {
    font-size: 5rem;
  }
}
.title-one__secondary {
  display: block;
  font-weight: 100;
  font-size: 4rem;
  line-height: 4.8rem;
  letter-spacing: 0.5rem;
  animation-name: RightToLeft;
  animation-duration: 1.7s;
  animation-delay: 1s;
  animation-timing-function: ease;
  backface-visibility: hidden;
  margin-bottom: 6.5rem;
}
@media only screen and (max-width: 1240px) {
  .title-one__secondary {
    font-size: 3.5rem;
    margin-bottom: 4.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .title-one__secondary {
    font-size: 3rem;
    letter-spacing: 0.2rem;
  }
}
@media (max-width: 600px) {
  .title-one__secondary {
    font-size: 3.2rem;
    margin-bottom: 5rem;
  }
}

.title-secondary {
  text-align: center;
  display: inline-block;
  font-size: 3.6rem;
  letter-spacing: 1rem;
  text-transform: uppercase;
  font-weight: 800;
  background: linear-gradient(90deg, rgba(186, 133, 84, 0.7) 0.03%, rgba(161, 79, 3, 0.7) 99.94%);
  -webkit-background-clip: text;
  color: transparent;
  transition: all 0.4s;
  backface-visibility: hidden;
}
@media only screen and (max-width: 1240px) {
  .title-secondary {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 900px) {
  .title-secondary {
    letter-spacing: 0.6rem;
  }
}
.title-secondary:hover {
  transform: skewY(2deg) skewX(15deg) scale(1.1);
  text-shadow: 0rem 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
}
.title-secondary_white {
  color: #ffffff;
}

.title-third {
  font-size: 2rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  font-weight: 700;
}
@media only screen and (max-width: 1240px) {
  .title-third {
    font-size: 1.8rem;
  }
}

.paragraph {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  line-height: 140%;
  font-weight: 400;
}
@media only screen and (max-width: 1240px) {
  .paragraph {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .paragraph {
    font-size: 1.8rem;
  }
}

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

.margin-bottom-10px {
  margin-bottom: 1rem;
}

.margin-bottom-20px {
  margin-bottom: 2rem;
}
@media only screen and (max-width: 900px) {
  .margin-bottom-20px {
    margin-bottom: 1rem;
  }
}

.margin-bottom-30px {
  margin-bottom: 3rem;
}

.margin-bottom-50px {
  margin-bottom: 5rem;
}

.margin-bottom-80px {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 900px) {
  .margin-bottom-80px {
    margin-bottom: 6rem;
  }
}

.margin-bottom-87px {
  margin-bottom: 8.7rem;
}

.btn, .btn:link, .btn:visited {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  color: #777777;
  padding: 1.5rem 4rem;
  background: #ffffff;
  border-radius: 5rem;
  transform: all 0.3s;
  position: relative;
  font-size: 2rem;
  border: none;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 1240px) {
  .btn {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 900px) {
  .btn {
    font-size: 2.2rem;
  }
}
.btn:hover {
  transform: translateY(-0.4rem);
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.3);
}
.btn:hover::after {
  opacity: 0;
  transform: scaleX(1.5) scaleY(1.7);
}
.btn:active {
  transform: translateY(-0.2rem);
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.3);
}
.btn::after {
  content: "";
  background: #ffffff;
  width: 100%;
  height: 100%;
  border-radius: 5rem;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.btn_animated {
  animation: BtnToUp 0.5s ease-out 0.7s;
  animation-fill-mode: backwards;
}

.btn_brown, .btn_brown:link, .btn_brown:visited {
  background: #A14F03;
  color: #ffffff;
}
.btn_brown::after {
  background: #A14F03;
}

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  font-weight: 700;
  color: #BA8554;
  text-decoration: none;
  padding: 1rem;
  border-bottom: 1px #BA8554 solid;
  display: inline-block;
  transition: 0.5 all;
}
@media only screen and (max-width: 1240px) {
  .btn-text:link, .btn-text:visited {
    margin-bottom: 8rem;
  }
}
.btn-text:hover {
  background-color: #BA8554;
  color: #ffffff;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.3);
  transform: translateY(-0.2rem);
}
.btn-text:active {
  transform: translateY(0rem);
}

.composition {
  position: relative;
}
.composition__photo {
  width: 55%;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.3);
  border-radius: 2rem;
  position: absolute;
  z-index: 10;
  transition: all 0.2s;
  outline-offset: 0.5rem;
}
.composition__photo_n1 {
  top: 0;
  left: 2rem;
}
.composition__photo_n2 {
  top: 2rem;
  right: 0rem;
}
.composition__photo_n3 {
  top: 13rem;
  left: 10rem;
}
.composition__photo:hover {
  outline: 0.5rem solid #BA8554;
  transform-origin: center;
  transform: scale(1.5);
  z-index: 20;
}
@media only screen and (max-width: 900px) {
  .composition__photo:hover {
    transform: scale(1);
  }
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95);
}

.adventure-cards {
  padding: 2.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: 0.2s all;
}
.adventure-cards:hover {
  transform: translateY(-1.5rem) scale(1.03);
}
.adventure-cards__icons {
  font-size: 6rem;
  background: linear-gradient(90deg, rgba(186, 133, 84, 0.7) 0.03%, rgba(161, 79, 3, 0.7) 99.94%);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.tour-cards {
  height: 50rem;
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
}
@media only screen and (max-width: 900px), (hover: none) {
  .tour-cards {
    margin-bottom: 2rem;
    height: auto;
  }
}
.tour-cards__side {
  height: 50rem;
  transition: 0.7s all ease-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 900px), (hover: none) {
  .tour-cards__side {
    height: auto;
    position: relative;
  }
}
@media only screen and (max-width: 900px), (hover: none) {
  .tour-cards__side_front {
    padding-bottom: 11rem;
  }
}
.tour-cards__side_back {
  background: linear-gradient(120deg, #BA8554, #A14F03);
  transform: rotateY(180deg);
}
@media only screen and (max-width: 900px), (hover: none) {
  .tour-cards__side_back {
    transform: rotateY(0);
    padding: 5rem;
    padding-top: 12rem;
    margin-top: -10rem;
    -webkit-clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%);
  }
}
.tour-cards:hover .tour-cards__side_front {
  transform: rotateY(-180deg);
}
@media only screen and (max-width: 900px) {
  .tour-cards:hover .tour-cards__side_front {
    transform: rotateY(0);
  }
}
.tour-cards:hover .tour-cards__side_back {
  transform: rotateY(0deg);
}
.tour-cards__img {
  background-blend-mode: hard-light;
  height: 24.5rem;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 80%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 80%);
}
.tour-cards__img_1 {
  background: #BA8554 url(../img/card-1.jpg) center/cover no-repeat;
}
.tour-cards__img_2 {
  background: #BA8554 url(../img/card-2.jpg) center/cover no-repeat;
}
.tour-cards__img_3 {
  background: #BA8554 url(../img/card-3.jpg) center/cover no-repeat;
}
.tour-cards__tittel {
  font-weight: 300;
  font-size: 2.8rem;
  text-align: right;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #FFFFFF;
  position: absolute;
  text-align: right;
  top: 17rem;
  right: 0rem;
  padding: 2rem, 2rem;
}
@media only screen and (max-width: 1240px) {
  .tour-cards__tittel {
    font-size: 2.2rem;
    top: 22rem;
  }
}
@media only screen and (max-width: 900px) {
  .tour-cards__tittel {
    font-size: 2.4rem;
    top: 21rem;
  }
}
.tour-cards__span {
  background: linear-gradient(90deg, #BA8554, #A14F03);
  padding: 1rem 2rem 1rem 1rem;
}
.tour-cards__span_2 {
  position: absolute;
  top: 3.2rem;
  right: 0;
  padding-bottom: 1rem;
  padding-top: 0rem;
}
@media only screen and (max-width: 1240px) {
  .tour-cards__span_2 {
    top: 2.8rem;
  }
}
@media only screen and (max-width: 900px) {
  .tour-cards__span_2 {
    top: 3rem;
  }
}
@media (max-width: 600px) {
  .tour-cards__span_2 {
    top: 3.1rem;
  }
}
.tour-cards__described ul {
  list-style: none;
  margin: 0 auto;
  width: 75%;
  text-align: center;
}
.tour-cards__described ul li {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  color: #777777;
}
@media only screen and (max-width: 1240px) {
  .tour-cards__described ul li {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 900px) {
  .tour-cards__described ul li {
    font-size: 2.2rem;
  }
}
.tour-cards__side_back-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 900px) {
  .tour-cards__side_back-box {
    position: relative;
    top: 0%;
    left: 0%;
    transform: translate(0%, 0%);
    text-align: center;
  }
}
.tour-cards__text {
  margin-bottom: 8rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}
@media only screen and (max-width: 900px) {
  .tour-cards__text {
    margin-bottom: 4rem;
  }
}
.tour-cards__text_1 {
  font-size: 1.6rem;
  font-weight: 300;
}
.tour-cards__text_2 {
  font-size: 6rem;
  font-weight: 500;
}
@media only screen and (max-width: 1240px) {
  .tour-cards__text_2 {
    font-size: 5rem;
  }
}

.feedBack-card {
  width: 85%;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  padding: 6rem;
  -webkit-clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
          clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}
.feedBack-card__img {
  width: 16rem;
  height: 16rem;
  border-radius: 100px;
  float: left;
  shape-outside: circle(50% at 50% 50%);
  -webkit-shape-outside: circle(50% at 50% 50%);
  margin-right: 4rem;
  margin-left: 4rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 900px) {
  .feedBack-card__img {
    float: none;
    margin: 0 auto;
    margin-bottom: 3rem;
  }
}
@media (max-width: 600px) {
  .feedBack-card__img {
    width: 12rem;
    height: 12rem;
  }
}
.feedBack-card__img img {
  height: 100%;
  transform: scale(1.2);
  transform: all 0.5s;
}
.feedBack-card__name {
  font-size: 2.4rem;
  letter-spacing: 0.2rem;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%);
  opacity: 0;
  transform: all 0.5s;
}
.feedBack-card:hover .feedBack-card__name {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.feedBack-card:hover img {
  transform: scale(1);
  filter: blur(0.3rem) brightness(70%);
}

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

.bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(186, 133, 84, 0.7), rgba(0, 0, 0, 0.7));
  z-index: -1;
}

.book {
  height: 50rem;
  background: linear-gradient(107deg, rgba(255, 255, 255, 0.92) 57%, rgba(186, 133, 84, 0.7) 57%, rgba(161, 79, 3, 0.7) 100%), url(../img/bg-form.jpg) center/cover no-repeat;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 900px) {
  .book {
    background: linear-gradient(107deg, rgba(255, 255, 255, 0.92) 57% 100%);
  }
}

.form {
  width: 70%;
  padding-top: 5rem;
  padding-left: 5rem;
}
@media only screen and (max-width: 900px) {
  .form {
    width: 100%;
    padding-top: 3rem;
    padding-left: 3rem;
  }
}
.form__group:not(:last-child) {
  margin-bottom: 1rem;
}
.form__group:nth-child(4) {
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1240px) {
  .form__group:not(:last-child) {
    margin-bottom: 0;
  }
  .form__group:nth-child(4) {
    margin-bottom: 2.5rem;
  }
}
.form__input {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  font-weight: 400;
  color: #000000;
  padding: 2rem 0rem 2rem 2rem;
  background: #ffffff;
  border: none;
  border-bottom: 0.3rem solid transparent;
  border-radius: 0.5rem;
  width: 75%;
}
@media only screen and (max-width: 1240px) {
  .form__input {
    padding: 1rem 0rem 1rem 1rem;
  }
}
@media only screen and (max-width: 900px) {
  .form__input {
    width: 90%;
    box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.3);
  }
}
.form__input:focus {
  outline: none;
  border-bottom: 0.3rem solid #66D763;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.3);
}
.form__input:focus:invalid {
  border-bottom: 0.3rem solid #D76363;
}
.form__label {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  font-weight: 400;
  display: block;
  margin-top: 1rem;
  margin-left: 1.5rem;
  transition: 0.2s all;
}
.form__input:-moz-placeholder-shown + .form__label {
  opacity: 0;
  visibility: none;
  transform: translateY(-3rem);
}
.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: none;
  transform: translateY(-3rem);
}
.form__group-radio {
  display: inline-block;
}
.form__group-radio:not(:last-child) {
  margin-right: 2rem;
}
@media only screen and (max-width: 1240px) {
  .form__group-radio {
    display: block;
    margin-bottom: 4rem;
  }
}
.form__input-radio {
  display: none;
}
.form__label-radio {
  position: relative;
  padding-left: 4rem;
}
.form__button-radio {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 0.5rem solid #A14F03;
  display: block;
  position: absolute;
  left: 0;
  top: -0.4rem;
}
.form__button-radio::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #A14F03;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.2s all;
}
.form__input-radio:checked ~ .form__label-radio .form__button-radio::after {
  opacity: 1;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 900px) {
  .row {
    margin-bottom: 4rem;
  }
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
@media only screen and (max-width: 1240px) {
  .row {
    max-width: 90.1rem;
  }
}
@media only screen and (max-width: 900px) {
  .row {
    max-width: 60rem;
  }
}

.col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}

.col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
@media only screen and (max-width: 1240px) {
  .col-1-of-3 {
    width: calc((100% - 2 * 2rem) / 3);
  }
}
@media only screen and (max-width: 900px) {
  .col-1-of-3 {
    margin-right: 0;
  }
}

.col-2-of-3 {
  width: calc(2 * (100% - 2 * 6rem) / 3);
}

.col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
@media only screen and (max-width: 1240px) {
  .col-1-of-4 {
    width: calc((100% - 3 * 2rem) / 4);
  }
}

.col-2-of-4 {
  width: calc(2 * (100% - 3 * 6rem) / 4 + 6rem);
}

.col-3-of-4 {
  width: calc(3 * (100% - 3 * 6rem) / 4 + 2 * 6rem);
}

[class^=col-] {
  float: left;
}
[class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
@media only screen and (max-width: 1240px) {
  [class^=col-]:not(:last-child) {
    margin-right: 2rem;
  }
}
@media only screen and (max-width: 900px) {
  [class^=col-] {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.header {
  position: relative;
  height: 95vh;
  background: linear-gradient(90deg, rgba(186, 133, 84, 0.7) 0.03%, rgba(0, 0, 0, 0.7) 99.94%), url(../img/header-background.jpg) center/cover no-repeat;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
}
.header__logo {
  position: absolute;
  left: 5rem;
  top: 5rem;
  height: 8rem;
  width: 8rem;
}
.header__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 1240px) {
  .header__box {
    top: 45%;
  }
}
@media (max-width: 600px) {
  .header__box {
    top: 47%;
  }
}

.footer {
  padding: 8rem;
  background: #333333;
}
.footer__logo {
  width: 12rem;
}
.footer__list {
  list-style: none;
  text-align: center;
}
.footer__item {
  display: inline-block;
  margin-bottom: 2rem;
}
.footer__item:not(:last-child) {
  margin-right: 5rem;
}
@media only screen and (max-width: 1240px) {
  .footer__item:not(:last-child) {
    margin-right: 2rem;
  }
}
@media (max-width: 600px) {
  .footer__item {
    display: block;
  }
}
.footer__link:link, .footer__link:visited {
  font-family: "Inter";
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
  color: #777777;
  display: inline-block;
}
@media only screen and (max-width: 900px) {
  .footer__link:link:not(:last-child), .footer__link:visited:not(:last-child) {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
}
.footer__link:hover {
  color: #A14F03;
}
@media only screen and (max-width: 1240px) {
  .footer__link {
    font-size: 1.4rem;
  }
}

.navigation__toggle {
  display: none;
}
.navigation__button {
  background: #ffffff;
  height: 8rem;
  width: 8rem;
  border-radius: 50%;
  position: fixed;
  top: 5rem;
  right: 8rem;
  z-index: 200;
  text-align: center;
  box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.3);
}
.navigation__background {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: radial-gradient(#BA8554, #A14F03);
  position: fixed;
  right: 9rem;
  top: 6rem;
  z-index: 100;
  transition: all 0.3s;
}
.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  opacity: 0;
  width: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  width: 100%;
}
.navigation__item {
  text-align: center;
}
.navigation__item:not(:last-child) {
  margin-bottom: 5rem;
}
.navigation__link:link, .navigation__link:visited {
  font-size: 4rem;
  color: #ffffff;
  letter-spacing: 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(120deg, transparent 0%, transparent 50%, #ffffff 50%);
  background-size: 220%;
  padding: 1rem 2rem;
  transition: all 0.4s;
  display: inline-block;
}
.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #A14F03;
  transform: translateX(1rem);
}
.navigation__toggle:checked ~ .navigation__background {
  transform: scale(80);
}
.navigation__toggle:checked ~ .navigation__nav {
  width: 100%;
  opacity: 1;
}
.navigation__icon {
  position: relative;
  margin-top: 3.7rem;
}
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
  width: 3rem;
  height: 0.2rem;
  background: #000000;
  display: inline-block;
}
.navigation__icon::before, .navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transform: all 0.2s;
}
.navigation__icon::before {
  top: -0.8rem;
}
.navigation__icon::after {
  top: 0.8rem;
}
.navigation__button:hover .navigation__icon::before {
  top: -1rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 1rem;
}
.navigation__toggle:checked + .navigation__button .navigation__icon {
  background: transparent;
}
.navigation__toggle:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}
.navigation__toggle:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

.section-about {
  padding-top: 8rem;
  margin-bottom: 20rem;
}
@media only screen and (max-width: 1240px) {
  .section-about {
    margin-bottom: 13rem;
  }
}
@media only screen and (max-width: 900px) {
  .section-about {
    margin-bottom: 40rem;
  }
}

.section-adventure {
  padding: 20rem 0;
  min-height: 73.1rem;
  background: linear-gradient(90deg, rgba(186, 133, 84, 0.7), rgba(0, 0, 0, 0.7)), url(../img/section-adventure.jpg) center/cover no-repeat;
  transform: skewY(7deg);
}
.section-adventure > * {
  transform: skewY(-7deg);
}
@media only screen and (max-width: 1240px) {
  .section-adventure {
    padding: 15rem 0;
    min-height: 60rem;
  }
}

.section-tour {
  padding: 8rem;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 900px) {
  .section-tour {
    margin-bottom: 2rem;
    min-height: 200rem;
  }
}

.section-feedBack {
  padding: 5rem 0rem;
  position: relative;
}

.section-book {
  padding: 10rem;
  background: linear-gradient(90deg, rgba(186, 133, 84, 0.7), rgba(161, 79, 3, 0.7));
}
@media only screen and (max-width: 900px) {
  .section-book {
    padding: 4rem;
  }
}/*# sourceMappingURL=style.css.map */