@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) {
}

/* Portrait */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) {
}

/* Landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
}

body {
  font-family: "Helvetica-CondensedBold", Helvetica;
  font-weight: 400;
  line-height: 1.7;
  color: #777;
  padding: 3rem;
}

.heading-primary {
  text-transform: uppercase;
  backface-visibility: hidden;
  line-height: 1;
}
.heading-primary--main {
  color: #fff;
  font-size: 7rem;
  font-weight: 400;
  letter-spacing: 3.5rem;
  animation-name: moveInRight;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  margin-left: 3rem;
}

.heading-primary--l1 {
  color: #81c4ff;
  font-weight: bold;
  font-size: 10rem;
  letter-spacing: 0rem;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  /*
        animation-iteration-count;
        animation-delay: 3s;
        */
}

.heading-primary--l2 {
  color: #16588e;
  font-weight: bold;
  font-size: 10rem;
  letter-spacing: 0rem;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  /*
        animation-iteration-count;
        animation-delay: 3s;
        */
}

.heading-primary--l3 {
  color: #e7222e;
  font-weight: bold;
  font-size: 10rem;
  letter-spacing: 0rem;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  /*
        animation-iteration-count;
        animation-delay: 3s;
        */
}

.heading-primary--M {
  color: #fff;
  font-style: italic;
  font-size: 10rem;
  letter-spacing: 0rem;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  /*
        animation-iteration-count;
        animation-delay: 3s;
        */
}

.heading-primary--Cave {
  color: #fff;
  font-style: normal;
  font-size: 10rem;
  letter-spacing: 0rem;
  animation-name: moveInLeft;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  /*
        animation-iteration-count;
        animation-delay: 3s;
        */
}

.heading-primary--sub {
  color: #fff;
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.74rem;
  animation: moveInBottom;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  margin-bottom: 6rem;
  margin-left: 1.5rem;
}

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  color: #605960;
  letter-spacing: 0.2rem;
  transition: all 0.2s;
}
.heading-secondary.light {
  color: #e6e6e7;
}

.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 !important;
}

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-bottom-medium {
  margin-bottom: 4rem !important;
}

.u-margin-bottom-big {
  margin-bottom: 8rem !important;
}

.u-margin-top-medium {
  margin-top: 4rem !important;
}

.u-margin-top-big {
  margin-top: 8rem !important;
}

.u-margin-top-huge {
  margin-top: 10rem !important;
}

.u-font-size-medium {
  font-size: 1.6rem !important;
}

.u-font-size-big {
  font-size: 5rem !important;
}

.btn,
.btn:link,
.btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.5rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  border: none;
}

.btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem 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 0.5rem 1rem 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 {
  animation: moveInBottom 0.5s ease-out 0.75s;
  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.4s;
}

.btn-text:hover {
  transform: translateY(-0.3rem);
  background-color: #55c57a;
  color: #fff;
  box-shadow: 0 1.2rem 1.45rem rgba(0, 0, 0, 0.15);
}

.btn-text:active {
  transform: translateY(-0.1rem);
}

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 52rem;
  cursor: pointer;
}
.card__side {
  height: 52rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
}
.card__side--front {
  background-color: #fff;
}
.card__side--back {
  transform: rotateY(180deg);
  opacity: 0;
}
.card__side--back-1 {
  background-color: rgba(129, 196, 255, 0.85);
}
.card__side--back-2 {
  background-color: rgba(22, 88, 142, 0.85);
}
.card__side--back-3 {
  background-color: rgba(231, 34, 46, 0.85);
}
/* .card:hover .card__side--front {
  transform: rotateY(-180deg);
} */
/* .card:hover .card__side--back {
  transform: rotateY(0);
} */
.card__picture {
  background-size: cover;
  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-image: linear-gradient(
      to right bottom,
      #000,
      rgba(255, 255, 255, 0.75)
    ),
    url(../img/compressed/MECHANICS2.jpg);
}
.card__picture--2 {
  background-image: linear-gradient(
      to right bottom,
      #000,
      rgba(255, 255, 255, 0.75)
    ),
    url(../img/compressed/electronics.jpg);
}
.card__picture--3 {
  background-image: linear-gradient(
      to right bottom,
      #000,
      rgba(255, 255, 255, 0.75)
    ),
    url(../img/compressed/retrofit.jpg);
}
.card__picture--4 {
  background-image: linear-gradient(
      to right bottom,
      #000,
      rgba(255, 255, 255, 0.75)
    ),
    url(../img/compressed/diagnosis3.jpg);
}
.card__picture--5 {
  background-image: linear-gradient(
      to right bottom,
      #000,
      rgba(255, 255, 255, 0.75)
    ),
    url(../img/compressed/shipping.jpg);
}
.card__heading {
  font-size: 2.8rem;
  font-weight: 300;
  text-align: right;
  text-transform: uppercase;
  color: #fff;
  position: absolute;
  top: 12rem;
  right: 2rem;
  width: 75%;
}
.card__heading-span {
  padding: 0rem;
  --webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.card__heading-span--1 {
  background-color: rgba(129, 196, 255, 1);
}
.card__heading-span--2 {
  background-color: rgba(22, 88, 142, 1);
}
.card__heading-span--3 {
  background-color: rgba(231, 34, 46, 1);
}
.card__details {
  padding: 0rem;
}
.card__details ul {
  list-style: none;
  width: 80%;
  margin: 0 auto;
}
.card__details ul li {
  text-align: center;
  font-size: 1.5rem;
  padding: 1rem;
}
.card__details ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.card__cta {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
.card__price-box {
  color: #fff;
  margin-bottom: 8rem;
}
.card__descr {
  font-size: 2rem;
  line-height: 95%;
}
.card__price-only {
  font-size: 3rem;
}
.card__price-value {
  font-size: 6rem;
  font-weight: 100;
}

.composition {
  position: relative;
  margin-top: 20%;
}
.composition__photo {
  width: 55%;
  box-shadow: 0 1.5 4rem rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  position: absolute;
  outline-offset: 2rem;
}
.composition__photo--p1 {
  left: 0;
  top: -2rem;
  filter: sepia(60%);
}
.composition__photo--p2 {
  right: 0;
  top: 2rem;
  filter: contrast(175%) grayscale(50%);
}
.composition__photo--p3 {
  left: 20%;
  top: 10rem;
  filter: hue-rotate(330deg) saturate(45%);
}
.composition__photo:hover {
  transform: scale(1.05) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.5);
  z-index: 20;
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95);
}

.feature-box {
  background-color: rgba(220, 220, 220, 0.75);
  font-size: 1.5rem;
  height: 480px;
  padding: 2rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
}

.feature-box__icon {
  font-size: 6rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  color: #00000050;
}

.feature-box__text a {
  color: inherit;
  font-weight: bold;
  text-decoration: none;
  transition: all .3s;
  display: inline-block;
  backface-visibility: hidden;
}

.feature-box__text a:hover {
  transform: scale(1.05);
}
.feature-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
}

.story {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  padding: 6rem;
  font-size: 1.6rem;
  transform: skewX(-12deg);
}
.story__shape {
  position: relative;
  width: 15rem;
  height: 15rem;
  background-color: orangered;
  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);
}
.story__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  color: #fff;
  text-transform: uppercase;
  font-size: 1.7rem;
  text-align: center;
  opacity: 0;
  transition: all 0.5s;
  backface-visibility: hidden;
}
.story__img {
  height: 100%;
  transform: translateX(-4rem) scale(1.4);
  transition: all 0.5s;
}
.story__text {
  transform: skewX(12deg);
}
.story:hover .story__caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.story:hover .story__img {
  transform: translateX(-4rem) scale(1);
  -webkit-filter: blur(3px) brightness(80%);
  filter: blur(3px) brightness(80%);
}

.bg-video {
  position: absolute;
  top: -15rem;
  left: 0;
  height: 115%;
  width: 100%;
  opacity: 0.35;
  overflow: hidden;
  background: url("../img/compressed/SUNSET.jpg");
  background-size: 100% 100%;
  z-index: -1;
}

.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(255, 255, 255, 0.5);
  border: none;
  border-bottom: 3px solid transparent;
  width: 90%;
  display: block;
  transition: all 0.3s;
}
.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 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  display: block;
  transition: all 0.3s;
}

.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}

.form__radio-group {
  width: 49%;
  display: inline-block;
}

.form__radio-label {
  font-size: 1.6rem;
  cursor: pointer;
  position: relative;
  padding-left: 4.5rem;
}

.form__radio-button {
  height: 3rem;
  width: 3rem;
  border: 5px solid #55c57a;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -0.4rem;
}
.form__radio-button::after {
  content: "";
  display: block;
  height: 1.3rem;
  width: 1.3rem;
  border-radius: 50%;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #55c57a;
  opacity: 0;
}

.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1;
}

.form__radio-input {
  display: none;
}

.splide__pagination {
  height: 3rem;
  margin-top: 2rem !important;
  justify-content: space-evenly;
}
.splide__pagination li {
  height: 3rem;
  width: 3rem;
  margin: 0 2px !important;
}
.splide__pagination__page {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  outline: none;
  border: 1px solid #373485;
}
.splide__pagination__page.is-active {
  background: #373485;
}

.header {
  height: 95vh;
  background-image: linear-gradient(
      to right bottom,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)
    ),
    url(../img/compressed/hero1.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%);
}
.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;
  font-size: 1.6rem;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^="col-"] {
  float: left;
}
.row [class^="col-"]:not(:last-child) {
  margin-right: 6rem;
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(2 * (100% - 2 * 6rem) / 3 + 6rem);
}
.row .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.row .col-1-of-5 {
  width: calc((100% - 4 * 6rem) / 5);
}
.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: #404243;
  padding: 10rem 0;
  font-size: 1.4rem;
  color: #f7f7f7;
  position: relative;
}
.footer__logo-box {
  text-align: center;
  position: relative;
  margin-bottom: 8rem;
  margin-top: 2rem;
  min-height: 2rem;
}
.footer__logo {
  width: 15rem;
  height: auto;
}
.footer__navigation {
  border-top: 1px solid #777;
  padding-top: 2rem;
  display: inline-block;
}
.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: #f7f7f7;
  background-color: #404243;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.2s;
}
.footer__link:hover,
.footer__link:active {
  color: #33a0d1;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  transform: rotate(5deg) scale(1.3);
}
.footer__copyright {
  border-top: 1px solid #777;
  padding-top: 2rem;
  width: 80%;
  float: right;
}

.navigation__checkbox {
  display: none;
}

.navigation__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 4rem;
  left: 4rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}

.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  left: 6.5rem;
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  background: #404243;
  pointer-events: none;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 2px 1px 5px #000;
}

.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
}

.navigation__item {
  margin: 1rem;
}

.navigation__link:link,
.navigation__link:visited {
  display: inline-block;
  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%,
    #fff 50%
  );
  background-size: 250%;
  transition: all 0.4s;
}

.navigation__link:hover,
.navigation__link:active {
  background-position: 100%;
  color: #373485;
  transform: translateX(1rem);
}

.navigation__link span {
  margin-right: 1.5rem;
  display: inline-block;
}

.navigation__checkbox:checked ~ .navigation__nav {
  width: 35%;
  opacity: 1;
  pointer-events: all;
}

.navigation__icon {
  position: relative;
  margin-top: 3.5rem;
}
.navigation__icon,
.navigation__icon::before,
.navigation__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #404243;
  display: inline-block;
}
.navigation__icon::before,
.navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: 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__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  transform: rotate(135deg);
  top: 0;
}

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  transform: rotate(-135deg);
  top: 0;
}

.section-about {
  background-color: #e6e6e7;
  padding: 25rem 0 14rem;
  margin-top: -20vh;
}

.section-features {
  padding: 20rem 0;
  background-image: linear-gradient(
      to right bottom,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)
    ),
    url(../img/compressed/museum.jpg);
  background-size: cover;
  margin-top: -12rem;
  transform: skewY(-7deg);
}
.section-features > * {
  transform: skewY(7deg);
}

.section-contact {
  padding: 20rem 0;
  background-image: linear-gradient(
      to right bottom,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.75)
    ),
    url(../img/compressed/shipping.jpg);
  background-size: cover;
  margin-top: -12rem;
  transform: skewY(-7deg);
  position: relative;
  z-index: 0;
}
.section-contact > * {
  transform: skewY(7deg);
}

.section-tours {
  background-color: #e6e6e7;
  padding: 25rem 0 15rem 0;
  margin-top: -20rem;
}

.section-stories {
  position: relative;
  padding: 15rem 0;
}

.section-book {
  padding: 15rem 0;
  background-image: linear-gradient(to right bottom, #7ed56f, #28b485);
}

.book {
  background-image: linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.9) 50%,
      transparent 50%
    ),
    url(../img/nat-10.jpg);
  background-size: cover;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.2);
  height: 50rem;
}

.book__form {
  width: 50%;
  padding: 6rem;
}

.card__more-button {
  font-size: 1.2rem;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}

.feature-social {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Style all font awesome icons */
.fa {
  padding: 20px;
  font-size: 60px;
  text-align: center;
  text-decoration: none;
  border-radius: 999%;
  margin: 5px;
}

/* Add a hover effect if you want */
.fa:hover {
  opacity: 0.7;
}

/* Set a specific color for each brand */

/* Facebook */
.fa-facebook {
  background: #3b5998;
  color: white;
}

/* Instagram */
.fa-instagram {
  background: #55acee;
  color: white;
}

/* Google */
.fa-google {
  background: #1aa260;
  color: white;
}

.CTA__container {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5rem;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #404243;
  z-index: 5;
}

.CTA__label {
  font-size: 1.7rem;
  padding: .5rem 1rem;
  color: #fff;
}

.CTA__action {
  color: #fff;
  text-decoration: none;
  backface-visibility: hidden;
  transition: all .3s;
  display: inline-block;
  font-weight: bold;
}

.CTA__action:hover {
  transform: scale(1.03);
  animation: none;
}

.label--mobile {
  display: none;
}

@media screen and (max-width: 1078px) {
  html {
    font-size: 50%;
  }

  body { padding: initial; }

  .section-tours {
    margin-top: -30rem;
  }

  .section-about {
    margin-top: -20rem;
  }

  .card__side {
    height: 60rem;
  }

  .card__heading {
    font-size: 2.5rem;
  }

  .navigation__button {
    height: 5rem;
    width: 5rem;
    top: 4rem;
    left: 2rem;
  }

  .navigation__icon {
    margin-top: 2.5rem;
  }

  .navigation__icon::before,
  .navigation__icon::after,
  .navigation__icon {
    width: 2rem;
  }

  .navigation__link:link,
  .navigation__link:visited {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .label--desktop {
    display: none;
  }
  .label--mobile { display: block; }

.CTA__label {
  font-size: 2rem;
}

  .navigation__checkbox:checked ~ .navigation__nav {
    width: 50%;
  }
  .card__heading {
    width: 80%;
  }
  .heading-primary--l1,
  .heading-primary--l2,
  .heading-primary--l3,
  .heading-primary--M {
    font-size: 8rem;
    font-style: italic;
  }

  .heading-primary--Cave {
    font-size: 8rem;
  }

  .heading-primary--main {
    font-size: 5rem;
  }

  .heading-primary--sub {
    letter-spacing: 1.25rem;
    margin-left: 1rem;
  }

  .header {
    background-position-x: right 46%;
  }

  .section-tours {
    margin-top: -27rem;
    padding: 25rem 0 7rem 0;
  }

  .row .col-1-of-3 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .card {
    width: 85%;
    margin-bottom: 2rem;
  }

  .card__side {
    height: 52rem;
  }

  .section-features {
    padding: 5rem 0;
  }

  .feature-box {
    height: fit-content;
    width: 85%;
    margin-bottom: 3rem;
  }

  .row .col-1-of-2 {
    width: 85%;
    margin-left: 3rem;
  }

  .row [class^="col-"]:not(:last-child) {
    margin-right: 3rem;
  }

  .composition {
    display: none;
  }

  .section-contact {
    padding: 5rem 0;
  }

  .section-stories {
    padding: 5rem 0;
  }

  .footer__logo-box {
    position: relative;
    margin-top: 2rem;
  }

  .story {
    transform: skewX(0);
  }

  .story__shape {
    transform: skewX(0);
  }

  .story__caption {
    transform: translate(-50%, -40%);
    opacity: 1;
  }

  .story__img {
    max-width: 50vw;
  }

  .story__text {
    transform: skewX(0);
    margin-top: 17rem;
  }
}

@media screen and (max-height: 1000px) and (max-width: 1134px) and (min-width: 1078px) {
  .feature-box {
    height: 530px;
  }
}
