*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth; }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%; } }
  @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: 40%; } }

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

::selection {
  background-color: #00e3fd;
  color: #fff; }

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%); }
  80% {
    transform: translateX(2rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(100%); }
  80% {
    transform: translateX(-2rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #200738;
  box-sizing: border-box; }

.heading-primary {
  text-transform: uppercase;
  backface-visibility: hidden; }
  .heading-primary--main {
    color: #fff;
    display: block;
    font-size: 4.3rem;
    font-weight: 700;
    letter-spacing: 1rem;
    animation-name: moveInLeft;
    animation-duration: 2s; }
    @media only screen and (max-width: 75em) {
      .heading-primary--main {
        letter-spacing: 0.9rem;
        font-size: 3.9rem; } }
    @media only screen and (max-width: 56.25em) {
      .heading-primary--main {
        letter-spacing: 0.7rem;
        font-size: 3.8rem; } }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--main {
        letter-spacing: 0.5rem;
        font-size: 3rem;
        margin-top: 8rem; } }
  .heading-primary--sub {
    color: #fff;
    display: block;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1.7rem;
    animation-name: moveInRight;
    animation-duration: 2s; }
    @media only screen and (max-width: 56.25em) {
      .heading-primary--sub {
        letter-spacing: 1.6rem;
        font-size: 1.8rem; } }
    @media only screen and (max-width: 37.5em) {
      .heading-primary--sub {
        letter-spacing: 0.5rem;
        font-size: 2rem; } }

.heading-secondary {
  font-size: 3.7rem;
  text-transform: uppercase;
  font-weight: 900;
  display: inline-block;
  background-image: linear-gradient(90deg, #020024 0%, #090979 35%, #00d4ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.2rem;
  transition: all 0.2s; }
  @media only screen and (max-width: 56.25em) {
    .heading-secondary {
      font-size: 3.3rem; } }
  @media only screen and (max-width: 37.5em) {
    .heading-secondary {
      font-size: 2.7rem; } }
  .heading-secondary:hover {
    transform: skewY(2deg) skewX(15deg) scale(1.1);
    text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2); }

.heading-terciary {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #200738;
  padding-bottom: 1rem;
  display: inline-block; }
  @media only screen and (max-width: 56.25em) {
    .heading-terciary {
      font-size: 1.9rem; } }
  @media only screen and (max-width: 37.5em) {
    .heading-terciary {
      font-size: 1.9rem; } }

.paragraph {
  color: #200738;
  font-size: 1.7rem;
  font-weight: 400; }
  .paragraph:not(:last-child) {
    margin-bottom: 3rem; }
  @media only screen and (max-width: 56.25em) {
    .paragraph {
      font-size: 1.6; } }
  @media only screen and (max-width: 37.5em) {
    .paragraph {
      font-size: 1.6rem; } }

.icon {
  font-size: 2rem;
  color: aqua; }

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

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

.u-margin-top-m {
  margin-top: 4rem; }

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

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

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

.margin-top-m {
  margin-top: 6rem !important; }

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

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

.container {
  /*1140px*/
  max-width: 120rem;
  padding: 0 3.2 rem;
  margin: 0 auto; }

.grid {
  display: grid;
  gap: 9.6rem; }

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr); }

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr); }

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr); }

.gradient-radial {
  font-weight: 900;
  background-image: radial-gradient(circle, #00d4ff 0%, #090979 35%, #00d4ff 100%); }

.gradient-linear-o {
  font-weight: 900;
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730); }

.form-messages {
  width: 50%;
  margin: 0 auto;
  padding: 1rem; }

.success {
  background-color: rgba(0, 255, 255, 0.7);
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  text-align: center; }

.error {
  background-color: rgba(255, 68, 0, 0.7);
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  text-align: center; }

.text-con li {
  margin-left: 2.5rem;
  padding: 0.5rem;
  font-size: 1.7rem;
  color: #fff;
  font-weight: 400; }

.n-border {
  border-radius: 0%; }

.h2-c {
  color: #00e3fd; }

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

.section-features {
  padding: 20rem 0;
  background-image: radial-gradient(rgba(2, 0, 36, 0.8) 0%, rgba(9, 9, 121, 0.8) 50%, rgba(0, 212, 255, 0.7) 100%), url(/img/gallery.jpg);
  background-size: cover;
  background-attachment: fixed;
  margin-top: -10rem;
  transform: skewY(-7deg); }
  .section-features > * {
    transform: skewY(7deg); }
  @media only screen and (max-width: 56.25em) {
    .section-features {
      padding: 10rem 0; } }

.section-tours {
  background-color: #fff;
  padding: 25rem 0 15rem 0;
  margin-top: -10rem; }
  @media only screen and (max-width: 56.25em) {
    .section-tours {
      padding: 20rem 0 1rem 0; } }

.section-stories {
  background-color: radial-gradient(#00e3fd, #0061ff);
  position: relative;
  padding: 15rem 0;
  margin-top: -10rem; }
  @media only screen and (max-width: 56.25em) {
    .section-stories {
      padding: 15rem 0; } }

.section-book {
  padding: 15rem 0;
  background: #020024;
  background: linear-gradient(#00d4ff 0%, #090979 50%, #020024 100%); }
  @media only screen and (max-width: 56.25em) {
    .section-book {
      padding: 10rem 0;
      background-image: lineal-gradient(top bottom, #00d4ff 0%, rgba(9, 9, 121, 0.7) 50%, rgba(2, 0, 36, 0.7) 100%);
      background-size: 100%; } }
  @media only screen and (max-width: 37.5em) {
    .section-book {
      background-image: lineal-gradient(top bottom, #00d4ff 0%, rgba(9, 9, 121, 0.7) 50%, rgba(2, 0, 36, 0.7) 100%);
      background-size: 100%; } }

.book {
  background-image: linear-gradient(105deg, rgba(40, 40, 71, 0.7) 0%, rgba(32, 7, 56, 0.7) 50%, transparent 50%), url(../../img/surging-img.jpg);
  background-size: 100%;
  box-shadow: 0 1.5rem 2.5rem rgba(12, 2, 21, 0.5);
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem; }
  @media only screen and (max-width: 75em) {
    .book {
      background-image: linear-gradient(105deg, rgba(40, 40, 71, 0.7) 0%, rgba(32, 7, 56, 0.7) 65%, transparent 65%), url(../../img/surging-img.jpg);
      background-size: cover;
      background-position: bottom;
      background-attachment: fixed; } }
  @media only screen and (max-width: 56.25em) {
    .book {
      background-image: linear-gradient(to left bottom, rgba(40, 40, 71, 0.8) 0%, rgba(32, 7, 56, 0.8) 100%), url(../../img/s-sub-min.jpg);
      background-size: cover; } }
  @media only screen and (max-width: 37.5em) {
    .book {
      background-image: linear-gradient(to right bottom, rgba(40, 40, 71, 0.8) 0%, rgba(32, 7, 56, 0.8) 100%), url(../../img/s-sub-min.jpg);
      background-size: cover; } }
  .book__form {
    width: 70%;
    padding: 2rem; }
    @media only screen and (max-width: 75em) {
      .book__form {
        width: 65%; } }
    @media only screen and (max-width: 56.25em) {
      .book__form {
        width: 100%; } }

.btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.6rem;
  padding: 1.3rem 1.5rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative; }

.btn:hover {
  transform: translateY(-3px);
  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(-1px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }

.btn--white {
  background-image: linear-gradient(to right, #ffb900, #ff7730);
  color: #282847;
  font-weight: 700; }
  .btn--white::after {
    background-color: #00e3fd; }

.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-name: moveInBottom;
  animation-duration: 2s; }

.btn-blue {
  padding: 2rem;
  outline: none;
  border: none;
  padding: 1.3rem 1.5rem;
  font-size: 1.8rem;
  color: #00e3fd;
  text-decoration: none;
  background-image: radial-gradient(#020024 0%, #090979 35%, #00d4ff 100%);
  border-radius: 10rem; }
  .btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
  .btn-blue:active {
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    transform: translateY(0); }

.composition {
  position: relative; }
  .composition__photo {
    width: 55%;
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
    /*    border-radius: 2px; */
    position: absolute;
    z-index: 10;
    transition: all 0.2s;
    outline: 1px solid #282847;
    outline-offset: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .composition__photo {
        float: left;
        position: relative;
        width: 33.33333333%;
        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: 0;
          transform: scale(1.2); } }
    .composition__photo--p2 {
      right: 0;
      top: 2rem; }
      @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: 1.5rem solid #00e3fd;
      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); }

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 52rem; }
  .card__side {
    height: 55rem;
    transition: all 0.8s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-top-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.2); }
    .card__side--front {
      background-color: #fff; }
      @media only screen and (max-width: 56.25em) {
        .card__side--front {
          background-color: #fff;
          box-shadow: none; } }
      @media only screen and (max-width: 37.5em) {
        .card__side--front {
          box-shadow: none; } }
    .card__side--back {
      transform: rotateY(180deg); }
      .card__side--back--1 {
        background: rgba(13, 65, 225, 0.8);
        background-image: linear-gradient(320deg, #020024 0%, rgba(9, 9, 121, 0.703595) 50%, #00d4ff 100%); }
      .card__side--back--2 {
        background-image: linear-gradient(to right bottom, #ffb900, #ff7730); }
      .card__side--back--3 {
        background: rgba(13, 65, 225, 0.8);
        background-image: linear-gradient(320deg, #020024 0%, rgba(9, 9, 121, 0.703595) 50%, #00d4ff 100%); }
  .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%);
    border-top-left-radius: 3px;
    border-top-left-radius: 3px; }
    .card__picture--1 {
      background-image: radial-gradient(circle, rgba(2, 0, 36, 0.9) 0%, rgba(9, 9, 121, 0.9) 50%, rgba(0, 212, 255, 0.9) 100%), url(../../img/nat-5.jpg); }
    .card__picture--2 {
      background-image: radial-gradient(circle, rgba(2, 0, 36, 0.9) 0%, rgba(9, 9, 121, 0.9) 50%, rgba(0, 212, 255, 0.9) 100%), url(../../img/nat-6.jpg); }
    .card__picture--3 {
      background-image: radial-gradient(circle, rgba(2, 0, 36, 0.9) 0%, rgba(9, 9, 121, 0.9) 50%, rgba(0, 212, 255, 0.9) 100%), url(../../img/nat-7.jpg); }
  .card__heading {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1rem;
    text-transform: uppercase;
    text-align: right;
    color: #fff;
    position: absolute;
    top: 17rem;
    left: 2rem;
    width: 85%; }
  .card__heading-span {
    padding: 1rem 1.5rem; }
    .card__heading-span--1 {
      background-image: linear-gradient(to right bottom, rgba(0, 97, 255, 0.85), rgba(0, 227, 253, 0.85)); }
    .card__heading-span--2 {
      background-image: linear-gradient(to right bottom, rgba(255, 185, 0, 0.85), rgba(255, 119, 48, 0.85)); }
    .card__heading-span--3 {
      background-image: linear-gradient(to right bottom, rgba(0, 97, 255, 0.85), rgba(0, 227, 253, 0.85)); }
  .card__details {
    font-weight: 700;
    padding: 2.5rem; }
    .card__details ul {
      list-style: none;
      width: 80%;
      margin: 0 auto; }
      .card__details ul li {
        text-align: center;
        font-size: 1.7rem;
        padding: 0.8rem; }
        .card__details ul li:not(:last-child) {
          border-bottom: 1px solid #777; }
        @media only screen and (max-width: 37.5em) {
          .card__details ul li {
            font-size: 1.8rem;
            font-weight: 700; } }
  .card__cta {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%; }
  .card__price-box {
    color: #fff;
    margin-bottom: 8rem; }
  .card__price-only {
    font-size: 2.4rem;
    text-transform: uppercase;
    font-weight: 400; }
  .card__price-text {
    font-size: 1.7rem;
    font-weight: 400; }
  .card__price-value {
    font-size: 3rem;
    font-weight: 700; }
  @media only screen and (max-width: 56.25em) {
    .card {
      height: auto;
      border-radius: 3px;
      background-color: #fff;
      box-shadow: 0 1.5rem 4rem rgba(2, 0, 36, 0.15); }
      .card__side {
        height: auto;
        position: relative;
        box-shadow: none; }
        .card__side--back {
          transform: rotateY(0);
          clip-path: polygon(0 15%, 100% 0, 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: 4rem; } }

.story {
  width: 90%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 227, 253, 0.6);
  border-top-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  padding: 6rem;
  padding-left: 9rem;
  font-size: 1.6rem;
  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 {
      width: 100%;
      padding: 2rem;
      padding-left: 5rem;
      transform: skewX(0); } }
  .story__shape {
    width: 15rem;
    height: 15rem;
    float: left;
    -webkit-shape-outside: circle(50% at 50% 50%);
    shape-outside: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
    -webkit-clip-path: circle(50% at 50% 50%);
    transform: translateX(-3rem) skewX(12deg);
    position: relative;
    overflow: hidden;
    border-radius: 50%; }
    @media only screen and (max-width: 37.5em) {
      .story__shape {
        transform: translateX(-3rem) skewX(0); } }
  .story__img {
    height: 100%;
    transform: translateX(-4rem) scale(1.4);
    backface-visibility: hidden;
    transition: all 0.5s; }
  .story__text {
    transform: skewX(12deg); }
    @media only screen and (max-width: 37.5em) {
      .story__text {
        transform: skewX(0); } }
  .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:hover .story__caption {
    opacity: 1;
    transform: translate(-50%, -50%); }
  .story:hover .story__img {
    transform: translateX(-4rem) scale(1);
    filter: blur(3px) brightness(80%); }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.6rem;
  padding: 2.6rem; }
  @media only screen and (max-width: 56.25em) {
    .gallery {
      gap: 0;
      padding: 0; } }

.gallery-img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  padding: 1.6rem; }
  @media only screen and (max-width: 56.25em) {
    .gallery-img {
      gap: 0;
      padding: 0; } }

.gallery-item img {
  display: block;
  max-width: 100%;
  outline: 1px solid orangered; }
  @media only screen and (max-width: 56.25em) {
    .gallery-item img {
      outline: none; } }

.form__group:not(:last-child) {
  margin-bottom: 2rem; }

.form__input {
  font-size: 1.6rem;
  font-family: inherit;
  font-weight: 400;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 3px;
  background-color: rgba(7, 200, 249, 0.5);
  border: none;
  border-bottom: 3px solid transparent;
  width: 40%;
  display: block;
  transition: all 0.3s; }
  @media only screen and (max-width: 56.25em) {
    .form__input {
      width: 100%; } }
  @media only screen and (max-width: 37.5em) {
    .form__input {
      font-size: 1.7; } }
  .form__input:focus {
    outline: none;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #7ed56f; }
  .form__input:focus:invalid {
    border-bottom: 3px solid #ff7730; }
  .form__input::-webkit-input-placeholder {
    color: #fff; }

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

.header {
  background-image: linear-gradient(to right bottom, rgba(2, 0, 36, 0.7) 0%, rgba(9, 9, 121, 0.7) 50%, rgba(0, 212, 255, 0.8) 100%), url(../../img/landing.jpg);
  background-size: cover;
  background-position: bottom;
  background-attachment: fixed;
  position: relative; }
  @supports (clip-path: polygon(0 0)) or (-webkit-clip-path: polygon(0 0)) {
    .header {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
      height: 90vh; } }
  @media (min-resolution: 192dpi) and (min-width: 37.5em), (-webkit-min-device-pixel-ratio: 2) and (min-width: 37.5em), (min-width: 125em) {
    .header {
      background-image: linear-gradient(to right bottom, rgba(2, 0, 36, 0.7) 0%, rgba(9, 9, 121, 0.7) 50%, rgba(0, 212, 255, 0.7) 100%), url(../img/landing.jpg); } }
  @media only screen and (max-width: 56.25em) {
    .header {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 80vh, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 80vh, 0 100%); } }
  @media only screen and (max-width: 37.5em) {
    .header {
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%);
      clip-path: polygon(0 0, 100% 0, 100% 85vh, 0 100%); } }
  .header__logo-box {
    top: 1.5rem;
    left: 1rem;
    position: absolute;
    z-index: 2000; }
    @media only screen and (max-width: 56.25em) {
      .header__logo-box {
        top: 2rem; } }
  .header__spanish-box {
    top: 13rem;
    right: 3.8rem;
    position: absolute;
    z-index: 2000; }
    @media only screen and (max-width: 75em) {
      .header__spanish-box {
        right: 4rem;
        top: 14rem; } }
    @media only screen and (max-width: 56.25em) {
      .header__spanish-box {
        right: 5.2rem;
        top: 14rem; } }
    @media only screen and (max-width: 37.5em) {
      .header__spanish-box {
        right: 4.6rem;
        top: 14rem; } }
  .header__spanish-img {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    width: 5rem;
    border-radius: 50%;
    z-index: 2000;
    cursor: pointer; }
    @media only screen and (max-width: 56.25em) {
      .header__spanish-img {
        width: 5rem; } }
    @media only screen and (max-width: 37.5em) {
      .header__spanish-img {
        width: 4.5rem; } }
  .header__logo {
    width: 16rem;
    z-index: 2000; }
    @media only screen and (max-width: 56.25em) {
      .header__logo {
        width: 15rem; } }
  .header__text-box {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
    @media only screen and (max-width: 56.25em) {
      .header__text-box {
        width: 100%;
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center; } }

.logo-box--animated {
  animation-name: moveInLeft;
  animation-duration: 2s; }

.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: 2rem; } }
  @media only screen and (max-width: 56.25em) {
    .row {
      max-width: 60rem;
      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: 2rem; } }
    @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); }

.navigation__checkbox {
  display: none; }

.navigation__button {
  background-image: radial-gradient(#ff7730, #ffb900);
  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);
  text-align: center;
  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 {
      top: 3.5rem;
      right: 3.5rem; } }

.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(rgba(2, 0, 36, 0.8) 0%, rgba(9, 9, 121, 0.8) 50%, rgba(0, 212, 255, 0.8) 100%);
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.83, 0, 0.17, 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;
  opacity: 0;
  width: 0;
  transition: all 0.8s; }

.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__icon-2 {
  color: #07C8F9;
  margin-right: 2rem; }

.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%);
  backface-visibility: hidden;
  background-size: 220%;
  transition: all 0.4s; }
  .navigation__link:link span, .navigation__link:visited span {
    margin-right: 1.3rem;
    display: inline-block; }

.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #282847;
  transform: translateX(1rem); }

.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80); }

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%; }

.navigation__icon {
  position: relative;
  margin-top: 3.5rem; }
  .navigation__icon, .navigation__icon::before, .navigation__icon::after {
    width: 3rem;
    height: 2px;
    background-color: #282847;
    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 {
  top: 0;
  transform: rotate(135deg); }

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg); }

.footer {
  background-image: linear-gradient(#020024, #090719);
  padding: 2rem 0;
  font-size: 1.7rem;
  color: #00e3fd;
  text-align: center; }
  @media only screen and (max-width: 56.25em) {
    .footer {
      padding: 8rem 0; } }
  .footer__logo-box {
    text-align: center;
    padding: 1rem 0; }
    @media only screen and (max-width: 56.25em) {
      .footer__logo-box {
        margin-bottom: 2rem; } }
  .footer__p {
    font-size: 1.8rem;
    font-weight: 400;
    color: #00e3fd;
    margin-bottom: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #777; }
    @media only screen and (max-width: 37.5em) {
      .footer__p {
        font-size: 1.6rem; } }
  .footer__number {
    color: #00e3fd;
    padding: 1rem; }
  .footer__email {
    color: #00e3fd;
    font-size: 2rem; }
  .footer__copy {
    background-image: radial-gradient(#00e3fd, #200738);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-top: 1rem;
    font-size: 2rem;
    text-align: center; }
    @media only screen and (max-width: 37.5em) {
      .footer__copy {
        font-size: 1.6rem;
        margin-bottom: 0; } }
  .footer__contact {
    margin-right: 1.5rem;
    font-size: 2rem;
    padding-bottom: 1rem; }
  .footer__link {
    color: #07C8F9;
    text-decoration: none; }
  .footer__img {
    width: 20rem; }
  .footer__media {
    margin-top: 1rem;
    padding: 1rem; }
  .footer__list {
    padding: 1rem;
    list-style: none;
    text-align: center;
    margin-bottom: 1rem; }
  .footer__item {
    display: inline-block;
    text-align: center; }
  .footer__contact-icon {
    font-size: 3rem;
    color: #0D41E1;
    padding-right: 1rem; }
  .footer__icon {
    font-size: 4rem;
    margin: 2rem;
    padding: 1rem; }
  .footer__trip {
    text-align: center;
    margin-bottom: 1rem; }
