/*
 0 - 600px  phone
600 - 900px Tablet portrait
900 - 1200px Tablet landscape
1200 - 1800 Our normal styles applies here [Default]
1800 ---  Large Desktop 

$breakpoint arguement choices:
- phone  600px/16px = 37.5 em
- tab-port 900px/16px = 56.25 em
- tab-land 1200px/16px = 75 em
- big-desktop 1800px/16px = 112.5 em

16px = 1em

*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  60% {
    transform: translateX(4rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  60% {
    transform: translateX(-4rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(2rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@media (max-width: 37.5em) {
  html {
    font-size: 50%;
  }
}
@media (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

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

.container {
  display: grid;
  grid-template-rows: 80vh min-content 40vw repeat(3, min-content);
  grid-template-columns: [sidebar-start] 8rem [sidebar-end full-start] minmax(6rem, 1fr) [center-start] repeat(8, [col-start] minmax(min-content, 14rem) [col-end]) [center-end] minmax(6rem, 1fr) [full-end];
}

body {
  font-family: "lato";
  font-weight: 400;
  /* font-size: 16px; */
  line-height: 1.7;
  color: #404040;
}

.heading-primary {
  color: #fff;
  text-transform: uppercase;
  backface-visibility: hidden;
  margin-bottom: 3.6rem;
}
.heading-primary--main {
  display: block;
  font-size: 6rem;
  font-weight: 400;
  letter-spacing: 2.65rem;
  animation: moveInRight 850ms ease-out;
}
@media (max-width: 37.5em) {
  .heading-primary--main {
    font-size: 4.5rem;
    letter-spacing: 1rem;
  }
}
.heading-primary--sub {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1.04rem;
  animation: moveInLeft 850ms ease-out;
}
@media (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 bottom, #00aeef, #001a33);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1.03rem;
  transition: all 300ms;
}
@media (max-width: 56.25em) {
  .heading-secondary {
    font-size: 2.5rem;
    letter-spacing: 0.85rem;
  }
}
@media (max-width: 37.5em) {
  .heading-secondary {
    font-size: 2rem;
    margin-top: 3.5rem;
    letter-spacing: 0.35rem;
  }
}
.heading-secondary:hover {
  transform: skewX(-10.15deg);
}

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

.heading-tertiary-1 {
  font-size: 1.6rem;
  font-weight: 400;
}

.heading-tertiary-2 {
  font-size: 2.4rem;
  font-weight: 700;
}

.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;
}
@media (max-width: 56.25em) {
  .u-margin-bottom-medium {
    margin-bottom: 2.75rem !important;
  }
}

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

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

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

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

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

.bg-video-001 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -3;
  overflow: hidden;
}
.bg-video-001__content {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn, .btn:link, .btn:visited {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.6rem;
  letter-spacing: 0.15rem;
  border-radius: 5rem;
  padding: 2rem 5rem;
  transition: all 550ms;
  position: relative;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.5rem 2rem rgba(28, 28, 28, 0.15);
}
.btn:hover::after {
  transform: scaleX(1.15) scaleY(1.45);
  opacity: 0;
}
.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-0.1rem);
  box-shadow: 0 0.3rem 1rem rgba(28, 28, 28, 0.15);
}
.btn--white {
  background-color: #fff;
  color: #404040;
}
.btn--white::after {
  background-color: #fff;
}
.btn--green {
  background-color: #003366;
  color: #fff;
}
.btn--green::after {
  background-color: #003366;
}
.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 650ms;
}
.btn--animated {
  animation: moveInBottom 500ms ease-out 600ms;
  animation-fill-mode: backwards;
}

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

.card {
  perspective: 150rem;
  height: 52rem;
  position: relative;
}
.card__side {
  height: 52rem;
  transition: all 950ms ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0.7rem;
  box-shadow: 0 1.5rem 4rem rgba(28, 28, 28, 0.1);
  backface-visibility: hidden;
  overflow: hidden;
}
.card__side--front {
  background-color: #fff;
}
.card__side--back {
  transform: rotateY(180deg);
}
.card__side--back-1 {
  background-image: linear-gradient(to bottom right, #2998ff, #5643fa);
}
.card__side--back-2 {
  background-image: linear-gradient(to bottom right, #00aeef, #001a33);
}
.card__side--back-3 {
  background-image: linear-gradient(to bottom right, #ffb900, #ff7730);
}
.card:hover .card__side--front {
  transform: rotateY(-180deg);
}
.card:hover .card__side--back {
  transform: rotateY(0deg);
}
.card__picture {
  background-size: cover;
  height: 23rem;
  background-blend-mode: screen;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
@media (max-width: 56.25em) {
  .card__picture {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
  }
}
.card__picture--1 {
  background-image: linear-gradient(to bottom right, #1c1c1c, #5643fa), url(/img/AdobeStock_421952137.webp);
}
.card__picture--2 {
  background-image: linear-gradient(to bottom right, #00aeef, #001a33), url(/img/AdobeStock_297163679.webp);
}
.card__picture--3 {
  background-image: linear-gradient(to bottom right, #1c1c1c, #ff7730), url(/img/AdobeStock_371590015.webp);
}
.card__heading {
  font-size: 2.8rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  position: absolute;
  top: 12rem;
  right: 2rem;
  width: 65%;
}
.card__heading-span {
  padding: 1rem 1.5rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.card__heading-span--1 {
  background-image: linear-gradient(to bottom right, rgba(41, 152, 255, 0.85), rgba(86, 67, 250, 0.85));
}
.card__heading-span--2 {
  background-image: linear-gradient(to bottom right, rgba(0, 174, 239, 0.85), rgba(0, 26, 51, 0.85));
}
.card__heading-span--3 {
  background-image: linear-gradient(to bottom right, rgba(255, 185, 0, 0.85), rgba(255, 119, 48, 0.85));
}
.card__details {
  padding: 3rem;
}
.card__details ul {
  list-style: none;
  width: 70%;
  margin: 0 auto;
}
.card__details li {
  text-align: center;
  font-size: 1.5rem;
  padding: 1rem;
}
.card__details li:not(:last-child) {
  border-bottom: 1px solid #eeeeee;
}
.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  text-align: center;
}
.card__price-box {
  text-align: center;
  margin-bottom: 8rem;
  color: #fff;
}
.card__price-only {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.card__price-value {
  font-size: 6rem;
  font-weight: 200;
}
@media (max-width: 56.25em) {
  .card {
    height: auto;
    background-color: #fff;
    border-radius: 0.7rem;
    box-shadow: 0 1.5rem 4rem rgba(28, 28, 28, 0.1);
  }
  .card__side {
    height: auto;
    position: relative;
    box-shadow: none;
  }
  .card__side--back {
    transform: rotateY(0deg);
    background-size: cover;
    background-blend-mode: screen;
    border-top-left-radius: 0.3rem;
    border-top-right-radius: 0.3rem;
  }
  .card:hover .card__side--front {
    transform: rotateY(0deg);
  }
  .card__details {
    padding: 1.15rem 3rem;
  }
  .card__cta {
    position: relative;
    top: 0%;
    left: 0%;
    transform: translate(0);
    width: 100%;
    padding: 6.5rem 3.85rem 3.85rem 3.85rem;
  }
  .card__price-box {
    margin-bottom: 1rem;
  }
  .card__price-value {
    font-size: 4.25rem;
  }
}

.composition {
  position: relative;
}
.composition__photo {
  width: 80%;
  box-shadow: 0 1.5rem 2rem rgba(28, 28, 28, 0.15);
  position: absolute;
  z-index: 10;
  transition: all 200ms;
  outline-offset: 0.5rem;
  border-radius: 0.75rem;
}
@media (max-width: 56.25em) {
  .composition__photo {
    float: left;
    position: relative;
    width: 40%;
    box-shadow: 0 1.5rem 3rem rgba(28, 28, 28, 0.1);
  }
}
.composition__photo--p1 {
  left: 12rem;
  top: -2rem;
}
@media (max-width: 56.25em) {
  .composition__photo--p1 {
    top: 2rem;
    transform: scale(1.75);
  }
}
.composition__photo--p2 {
  right: -6.5rem;
  top: 4.5rem;
}
@media (max-width: 56.25em) {
  .composition__photo--p2 {
    top: -1rem;
    transform: scale(1.3);
    z-index: 100;
  }
}
.composition__photo--p3 {
  left: 11%;
  top: 12rem;
}
@media (max-width: 56.25em) {
  .composition__photo--p3 {
    left: 0;
    top: 1rem;
    transform: scale(1.1);
  }
}
.composition__photo:hover {
  outline: 0.25rem solid #003366;
  transform: scale(1.02) translateY(-0.35rem);
  box-shadow: 0 2.5rem 3rem rgba(28, 28, 28, 0.15);
  z-index: 15;
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.95);
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 4rem rgba(28, 28, 28, 0.1);
  transition: all 475ms;
}
@media (max-width: 56.25em) {
  .feature-box {
    padding: 1.95rem;
  }
}
.feature-box__icon {
  font-size: 4.5rem;
  margin-bottom: 0.75rem;
  display: inline-block;
  background-image: linear-gradient(to right, #00aeef, #001a33);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 56.25em) {
  .feature-box__icon {
    margin-bottom: 0;
  }
}
.feature-box:hover {
  transform: translateY(-1.75rem) scale(1.042);
}

.feature-box-001 {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: left;
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 4rem rgba(28, 28, 28, 0.1);
  transition: all 475ms;
  width: 65%;
}
@media (max-width: 56.25em) {
  .feature-box-001 {
    width: 100%;
  }
}

.feature-box-about-left {
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: left;
  border-radius: 1.25rem;
  transition: all 475ms;
}
@media (max-width: 56.25em) {
  .feature-box-about-left {
    padding: 1.95rem;
  }
}

.feature-box-about-right {
  background-image: url(/img/AdobeStock_421952137.webp);
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 1rem;
  height: 45rem;
  background-size: cover;
  margin-top: 4rem;
}
@media (max-width: 56.25em) {
  .feature-box-about-right {
    padding: 1.95rem;
  }
}

.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-bottom: 3px solid transparent;
  width: 80%;
  display: block;
  transition: all 350ms;
}
@media (max-width: 56.25em) {
  .form__input {
    width: 100%;
  }
}
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(28, 28, 28, 0.15);
  border-bottom: 3px solid #003366;
}
.form__input:focus:invalid {
  border-bottom: 3px solid #ff7730;
}
.form__input::-webkit-input-placeholder {
  color: #999999;
}
.form__label {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: 0.7rem;
  transition: all 350ms;
}
.form__input:-moz-placeholder-shown + .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: 49%;
  display: inline-block;
}
@media (max-width: 56.25em) {
  .form__radio-group {
    width: 100%;
    margin-bottom: 2.15rem;
  }
}
.form__radio-input {
  display: none;
}
.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 #003366;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: -0.4rem;
  left: 0;
}
.form__radio-button::after {
  content: "";
  display: block;
  height: 1.25rem;
  width: 1.25rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #003366;
  opacity: 0;
  transition: opacity 250ms;
}
.form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
  opacity: 1;
}

.gallery {
  background-color: #f7f7f7;
  grid-column: full-start/full-end;
  display: grid;
  /*grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(7, 5vw);*/
  grid-template: repeat(7, 5vw)/repeat(8, 1fr);
  grid-gap: 0.5rem;
  padding: 0.5rem;
}
.gallery__item--1 {
  grid-row: 1/span 2;
  grid-column: 1/span 2;
}
.gallery__item--2 {
  grid-row: 1/span 3;
  grid-column: 3/span 3;
}
.gallery__item--3 {
  grid-row: 1/span 2;
  grid-column: 6/7;
}
.gallery__item--4 {
  grid-row: 1/span 2;
  grid-column: 7/-1;
}
.gallery__item--5 {
  grid-row: 3/span 3;
  grid-column: 1/span 2;
}
.gallery__item--6 {
  grid-row: 4/span 2;
  grid-column: 3/span 2;
}
.gallery__item--7 {
  grid-row: 4/5;
  grid-column: 5/6;
}
.gallery__item--8 {
  grid-row: 3/span 2;
  grid-column: 6/span 2;
}
.gallery__item--9 {
  grid-row: 3/span 3;
  grid-column: 8/-1;
}
.gallery__item--10 {
  grid-row: 6/span 2;
  grid-column: 1/2;
}
.gallery__item--11 {
  grid-row: 6/span 2;
  grid-column: 2/span 2;
}
.gallery__item--12 {
  grid-row: 6/span 2;
  grid-column: 4/5;
}
.gallery__item--13 {
  grid-row: 5/span 3;
  grid-column: 5/span 3;
}
.gallery__item--14 {
  grid-row: 6/span 2;
  grid-column: 8/-1;
}
.gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.popup {
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(28, 28, 28, 0.975);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 350ms;
}
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(28, 28, 28, 0.15);
  border-radius: 6px;
  overflow: hidden;
  display: table;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.35);
  transition: all 450ms 180ms;
}
.popup__left {
  width: 33.33333%;
  display: table-cell;
}
.popup__right {
  width: 66.666667%;
  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 #eeeeee;
  column-rule: 1px solid #eeeeee;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.popup__close:link, .popup__close:visited {
  color: #404040;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 3rem;
  text-decoration: none;
  display: inline-block;
  transition: all 300ms;
  line-height: 1;
}
.popup__close:hover {
  color: #003366;
}
@media (max-width: 37.5em) {
  .popup {
    display: none;
    opacity: 0;
  }
}

.brandinfomain {
  width: 100%;
  top: 0;
  left: 0;
  padding: 4rem;
}
.brandinfomain__content {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  display: table;
}
@media (max-width: 56.25em) {
  .brandinfomain__content {
    display: block;
  }
}
.brandinfomain__left {
  width: 35%;
  display: table-cell;
  height: 100%;
}
@media (max-width: 56.25em) {
  .brandinfomain__left {
    width: 100%;
    display: inline-block;
    height: 100%;
  }
}
.brandinfomain__right {
  width: 55%;
  display: table-cell;
  vertical-align: middle;
  padding: 0 4.5rem;
}
@media (max-width: 56.25em) {
  .brandinfomain__right {
    width: 100%;
    display: inline-block;
    padding: 0 2.5rem;
  }
}
.brandinfomain__img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
}
.brandinfomain__img-logo {
  display: block;
  width: 30%;
  padding-bottom: 2rem;
  margin-left: -1rem;
}
@media (max-width: 56.25em) {
  .brandinfomain__img-logo {
    width: 50%;
    padding-top: 2rem;
  }
}
.brandinfomain__text {
  font-size: 1.4rem;
  margin-bottom: 4rem;
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 4rem;
  column-gap: 2rem;
  -moz-column-rule: 1px solid #eeeeee;
  column-rule: 1px solid #eeeeee;
}
@media (max-width: 56.25em) {
  .brandinfomain__text {
    display: inline-block;
    -moz-column-count: 0;
    column-count: unset;
    -moz-column-gap: 0rem;
    column-gap: 0;
    -moz-column-rule: 0px solid #eeeeee;
    column-rule: 0px solid #eeeeee;
  }
}

.story {
  width: 85%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(28, 28, 28, 0.1);
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 1.25rem;
  padding: 6rem;
  padding-left: 5rem;
  font-size: 1.6rem;
}
@media (max-width: 56.25em) {
  .story {
    width: 100%;
    padding: 4rem;
    padding-left: 7rem;
  }
}
@media (max-width: 37.5em) {
  .story {
    transform: skewX(0);
  }
}
.story__shape {
  height: 14rem;
  width: 14rem;
  float: left;
  shape-outside: circle(50% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  position: relative;
  margin-right: 3rem;
}
@media (max-width: 37.5em) {
  .story__shape {
    transform: translateX(-3rem) skewX(0);
  }
}
.story__img {
  height: 100%;
  backface-visibility: hidden;
  transition: all 400ms;
}
@media (max-width: 37.5em) {
  .story__text {
    transform: skewX(0);
  }
}
.story__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 20%);
  text-transform: uppercase;
  color: #fff;
  font-size: 1.7rem;
  text-align: center;
  opacity: 0;
  backface-visibility: hidden;
  transition: all 400ms;
}
.story:hover .story__caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.story:hover .story__img {
  transform: translateX(-4rem) scale(1);
  filter: blur(5px) brightness(70%);
}

.features {
  grid-column: center-start/center-end;
  padding: 12rem;
  background-color: #eeeeee;
}
@supports (display: grid) {
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    grid-gap: 6rem;
    align-items: start;
  }
}

.feature {
  float: left;
  width: 33.3333%;
  margin-bottom: 6rem;
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-row-gap: 1.5rem;
  grid-column-gap: 2.5rem;
}
@supports (display: grid) {
  .feature {
    width: auto;
    margin-bottom: 0;
  }
}
.feature__icon {
  fill: #003366;
  width: 4.5rem;
  height: 4.5rem;
  grid-row: 1/span 2;
  transform: translateY(-1rem);
}
.feature__text {
  font-size: 1.7rem;
}

.footer {
  background-color: #333333;
  padding: 10rem 0;
  font-size: 1.4rem;
  color: #f7f7f7;
}
@media (max-width: 56.25em) {
  .footer {
    padding: 8rem 0;
  }
}
.footer__logo-box {
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 56.25em) {
  .footer__logo-box {
    margin-bottom: 4.5rem;
  }
}
.footer__logo {
  width: 30rem;
  height: auto;
}
.footer__navigation {
  border-top: 1px solid #eeeeee;
  padding: 2rem 0;
  display: inline-block;
}
@media (max-width: 56.25em) {
  .footer__navigation {
    width: 100%;
    text-align: center;
  }
}
.footer__list {
  list-style: none;
}
.footer__item {
  display: inline-block;
}
.footer__item:not(:last-child) {
  margin-right: 1.5rem;
}
.footer__link:link, .footer__link:visited {
  background-color: #333333;
  color: #f7f7f7;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 250ms;
}
.footer__link:hover, .footer__link:active {
  color: #00aeef;
  box-shadow: 0 1rem 2rem rgba(28, 28, 28, 0.15);
}
.footer__link-1:link, .footer__link-1:visited {
  color: #1c1c1c;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 250ms;
}
.footer__link-1:hover, .footer__link-1:active {
  color: #00aeef;
  box-shadow: 0 1rem 2rem rgba(28, 28, 28, 0.15);
}
.footer__copyright {
  border-top: 1px solid #eeeeee;
  padding: 2rem 0;
  float: right;
}
@media (max-width: 56.25em) {
  .footer__copyright {
    width: 100%;
    float: none;
    text-align: center;
  }
}
.footer .social-icons {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  padding-top: 1.8rem;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media (max-width: 75em) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media (max-width: 75em) {
  .row {
    max-width: 52rem;
    padding: 0 3rem;
  }
}
@media (max-width: 37.5em) {
  .row {
    max-width: 69rem;
  }
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
@media (max-width: 75em) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media (max-width: 75em) {
  .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-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);
}

.row-center {
  max-width: 70rem;
  margin: 0 auto;
  text-align: center;
}
.row-center:not(:last-child) {
  margin-bottom: 8rem;
}
@media (max-width: 75em) {
  .row-center:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media (max-width: 75em) {
  .row-center {
    max-width: 52rem;
    padding: 0 3rem;
  }
}
@media (max-width: 37.5em) {
  .row-center {
    max-width: 69rem;
  }
}
.row-center::after {
  content: "";
  display: table;
  clear: both;
}
.row-center [class^=col-] {
  float: left;
}
.row-center [class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
@media (max-width: 75em) {
  .row-center [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media (max-width: 75em) {
  .row-center [class^=col-] {
    width: 100% !important;
  }
}
.row-center .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row-center .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row-center .col-2-of-3 {
  width: calc(2 * (100% - 2 * 6rem) / 3 + 6rem);
}
.row-center .col-1-of-4 {
  width: calc((100% - 3 * 6rem) / 4);
}
.row-center .col-1-of-5 {
  width: calc((100% - 4 * 6rem) / 5);
}
.row-center .col-2-of-4 {
  width: calc(2 * (100% - 3 * 6rem) / 4 + 6rem);
}
.row-center .col-3-of-4 {
  width: calc(3 * (100% - 3 * 6rem) / 4 + 2 * 6rem);
}

/* 
.header {
  height: 95vh;
  background-image: linear-gradient(
      to right bottom rgba($color-primary-light, 0.8),
      rgba($color-primary-dark, 0.8)
    ),
    url(../img/hero.jpg);
  background-size: cover;
  background-position: top;
} */
.header {
  /* height: 95vh; */
  height: 100vh;
  position: relative;
  background-color: #1c1c1c;
  background-size: cover;
  opacity: 0.98;
}
.header__logo-box {
  position: absolute;
  top: 4rem;
  left: 5.5rem;
}
.header__logo {
  height: 3.5rem;
}
.header__text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.header__logo-font {
  font-size: 2.4rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.6rem;
  font-weight: 600;
  text-decoration: none;
}

.navigation__checkbox {
  display: none;
}
.navigation__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 4rem;
  right: 6rem;
  border-radius: 50%;
  text-align: center;
  z-index: 1000;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .navigation__button {
    top: 4rem;
    right: 4rem;
  }
}
@media (max-width: 37.5em) {
  .navigation__button {
    top: 3rem;
    right: 3rem;
  }
}
.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 4.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#00aeef, #001a33);
  z-index: 500;
  box-shadow: 0 1rem 3rem rgba(28, 28, 28, 0.15);
  transition: transform 800ms cubic-bezier(0.86, 0, 0.07, 1);
}
@media (max-width: 56.25em) {
  .navigation__background {
    top: 4.5rem;
    right: 4.5rem;
  }
}
@media (max-width: 37.5em) {
  .navigation__background {
    top: 3.5rem;
    right: 3.5rem;
  }
}
.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 750;
  opacity: 0;
  width: 0;
  transition: all 650ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navigation__list {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}
.navigation__item {
  margin: 1rem;
}
.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.25rem;
  padding: 1rem 2rem;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 230%;
  transition: all 500ms;
}
.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #003366;
  transform: translateX(0.65rem);
}
.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: #404040;
  display: inline-block;
}
.navigation__icon::before, .navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 165ms;
}
.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: #f7f7f7;
  padding: 12rem 0;
}
@media (max-width: 56.25em) {
  .section-about {
    padding: 10rem 0;
  }
}

.section-features {
  padding: 12rem 0;
  background-image: linear-gradient(to bottom right, rgba(0, 174, 239, 0.55), rgba(0, 26, 51, 0.55)), url(../img/AdobeStock_267407716.webp);
  background-size: cover;
  background-position: top;
}
.section-features > * {
  padding: 0;
}
@media (max-width: 56.25em) {
  .section-features {
    padding: 10rem 4.5rem;
  }
}

.section-features-about {
  padding: 12rem 0;
}
.section-features-about > * {
  padding: 0;
}
@media (max-width: 56.25em) {
  .section-features-about {
    padding: 5rem 0;
  }
}

.section-tours {
  background-color: #f7f7f7;
  padding: 12rem 0 12rem 0;
}
@media (max-width: 56.25em) {
  .section-tours {
    padding: 13rem 0 10rem 0;
  }
}

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

.section-book {
  padding: 15rem 0;
  background-image: linear-gradient(to bottom right, #00aeef, #001a33);
}
@media (max-width: 56.25em) {
  .section-book {
    padding: 20rem 0;
  }
}

.book {
  background-image: linear-gradient(93deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 55%, transparent 55%), url(../img/AdobeStock_366910624--01.jpg);
  background-size: cover;
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 4rem rgba(28, 28, 28, 0.15);
}
@media (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);
    background-size: cover;
  }
}
@media (max-width: 56.25em) {
  .book {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%), url(../img/nat-10.jpg);
    background-size: cover;
  }
}
.book__form {
  width: 62%;
  padding: 6rem;
}
@media (max-width: 75em) {
  .book__form {
    width: 65%;
  }
}
@media (max-width: 56.25em) {
  .book__form {
    width: 100%;
  }
}

.book-001 {
  background-image: linear-gradient(93deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0) 85%, transparent 85%), url(../img/AdobeStock_371590015.webp);
  background-size: cover;
  border-radius: 1.25rem;
  box-shadow: 0 1.5rem 4rem rgba(28, 28, 28, 0.15);
}
@media (max-width: 75em) {
  .book-001 {
    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);
    background-size: cover;
  }
}
@media (max-width: 56.25em) {
  .book-001 {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%), url(../img/nat-10.jpg);
    background-size: cover;
  }
}
.book-001__form {
  width: 62%;
  padding: 6rem;
}
@media (max-width: 75em) {
  .book-001__form {
    width: 65%;
  }
}
@media (max-width: 56.25em) {
  .book-001__form {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */