/* font-family: "Playfair Display", serif; */
/*
0 - 600px     phone
600 - 900px   Tablet portrait
900 - 1200px  Tablet landscape
(1200 - 1800) is where our normal styles apply
1800px + :    Big desktop

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

ORDER: base + typography > General layout + grid > page layout > components

1em = 16px
*/
@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);
  }
}
*,
*::after,
*::before {
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}
@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;
}

body {
  line-height: 1;
}

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  background-image: linear-gradient(to right, #9BBEC8, #164863);
  display: inline-block;
  -webkit-background-clip: text;
  color: transparent;
}
.heading-secondary:hover {
  text-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
  transition: 0.5s;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .heading-secondary {
    font-size: 3.5rem;
  }
}
@media (max-width: 37.5em) {
  .heading-secondary {
    font-size: 3rem;
  }
}

.heading {
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #5c5b5b;
}

.paragraph {
  font-size: 1.7rem;
  color: #5c5b5b;
}
.paragraph:not(:last-child) {
  margin-bottom: 3rem;
}

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

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

.u-margin-bottom-medium {
  margin-bottom: 5rem;
}
@media (max-width: 56.25em) {
  .u-margin-bottom-medium {
    margin-bottom: 3rem;
  }
}

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

.btn--white {
  background-color: #fff;
  color: #5c5b5b;
  border-radius: 3rem;
  font-size: 1.5rem;
}
.btn--primary {
  background-color: #427D9D;
  color: #fff;
  border-radius: 3rem;
}
.btn:hover {
  transform: translateY(-0.3rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  border: none;
}
.btn:active {
  transform: translateY(-0.1rem);
}
.btn:link {
  text-transform: uppercase;
  padding: 2rem 3rem;
  display: inline-block;
  transition: all 0.2s;
}
.btn:visited {
  text-transform: uppercase;
  padding: 2rem 3rem;
  display: inline-block;
  transition: all 0.2s;
}

.btn-text:link, .btn-text:visited {
  font-size: 1.7rem;
  color: #427D9D;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #427D9D;
  padding: 3px;
  transition: ease-out 0.3s;
  position: relative;
  z-index: 1;
  transition: color 300ms ease-in-out;
}
@media (max-width: 75em) {
  .btn-text {
    width: 13.4rem;
    text-align: center;
  }
}
.btn-text::before {
  content: "";
  background-color: #427D9D;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  transition: transform 300ms ease-in-out;
  transform: scaleX(0);
  transform-origin: left;
}
.btn-text:hover {
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transition: 1s;
}
.btn-text:hover::before {
  transform: scaleX(1);
}
.btn-text__center {
  width: 10%;
  margin: 0 auto;
}

.composition {
  position: relative;
}
.composition__photo {
  width: 65%;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.4);
  position: absolute;
  z-index: 10;
}
@media (max-width: 56.25em) {
  .composition__photo {
    float: left;
    position: relative;
    width: 33.33333333%;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
  }
}
.composition__photo--p1 {
  left: 0;
  top: -4rem;
}
@media (max-width: 56.25em) {
  .composition__photo--p1 {
    top: 0;
    transform: scale(1.2);
  }
}
.composition__photo--p2 {
  right: -3.5rem;
  top: 1rem;
}
@media (max-width: 56.25em) {
  .composition__photo--p2 {
    top: -1rem;
    right: 0;
    transform: scale(1.3);
    z-index: 20;
  }
}
.composition__photo--p3 {
  left: 7rem;
  top: 7rem;
}
@media (max-width: 56.25em) {
  .composition__photo--p3 {
    left: 0;
    top: 1rem;
    transform: scale(1.1);
  }
}
.composition__photo:hover {
  transform: scale(1.05);
  box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.5);
  transition: 0.2s;
  z-index: 20;
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  padding: 3.5rem;
  text-align: center;
  border-radius: 3px;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.15);
  transition: transform 0.5s;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .feature-box {
    padding: 2rem;
  }
}
.feature-box__icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  background-image: linear-gradient(to right, #9BBEC8, #164863);
  -webkit-background-clip: text;
  color: transparent;
}
@media (max-width: 56.25em) {
  .feature-box__icon {
    margin: 0;
  }
}
.feature-box:hover {
  transform: translateY(-1rem) scale(1);
}

.card {
  perspective: 170rem;
  -moz-perspective: 170rem;
  position: relative;
  height: 40rem;
}
.card__side {
  color: #fff;
  font-size: 1.5rem;
  height: 30rem;
  transition: all 1s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  border-radius: 3px;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.15);
}
.card__side--front {
  background-color: #fff;
}
.card__side--back {
  transform: rotateY(180deg);
}
.card__side--back-1 {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730);
}
.card__side--back-2 {
  background-image: linear-gradient(to right bottom, #7ed56f, #28b485);
}
.card__side--back-3 {
  background-image: linear-gradient(to right bottom, #9BBEC8, #427D9D);
}
.card:hover .card__side--front {
  transform: rotateY(-180deg);
}
.card:hover .card__side--back {
  transform: rotateY(0);
}
.card__picture {
  background-size: cover;
  height: 12rem;
  background-blend-mode: screen;
}
.card__picture--1 {
  background-image: linear-gradient(to right bottom, rgba(255, 185, 0, 0.8), rgba(255, 119, 48, 0.8)), url(../img/flip1.jpg);
}
.card__picture--2 {
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)), url(../img/flip3.jpg);
}
.card__picture--3 {
  background-image: linear-gradient(to right bottom, rgba(155, 190, 200, 0.8), rgba(66, 125, 157, 0.8)), url(../img/flip2.jpg);
}
.card__heading {
  font-size: 1.3rem;
  font-weight: 300;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
  position: absolute;
  top: 9rem;
  right: 1rem;
  width: 75%;
}
.card__heading-span {
  padding: 0.3rem 0.7rem;
  -webkit-box-decoration-break: clone;
}
.card__heading-span--1 {
  background-image: linear-gradient(to right bottom, rgba(255, 185, 0, 0.5), rgba(255, 119, 48, 0.5));
}
.card__heading-span--2 {
  background-image: linear-gradient(to right bottom, rgba(126, 213, 111, 0.5), rgba(40, 180, 133, 0.5));
}
.card__heading-span--3 {
  background-image: linear-gradient(to right bottom, rgba(155, 190, 200, 0.5), rgba(66, 125, 157, 0.5));
}
.card__details {
  padding: 2.5rem;
}
.card__details ul {
  list-style-type: none;
  width: 80%;
  margin: 0 auto;
}
.card__details ul li {
  text-align: center;
  font-size: 1.5rem;
  padding: 0.5rem;
  color: #5c5b5b;
}
.card__details ul li:not(:last-child) {
  border-bottom: 1px solid rgb(226, 222, 222);
}
.card__cta {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  font-size: 1rem;
}
.card__price-box {
  text-align: center;
  margin-bottom: 2.5rem;
}
.card__price-only {
  text-transform: uppercase;
}
.card__price-value {
  font-size: 3rem;
  font-weight: 100;
}
@media (max-width: 56.25em) {
  .card {
    height: auto;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 1rem 4rem rgba(0, 0, 0, 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: 2rem 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: 5rem;
  }
}

.story {
  width: 90%;
  margin: 0 auto;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  padding: 8rem;
  transform: skewX(-12deg);
}
@media (max-width: 56.25em) {
  .story {
    width: 100%;
    padding: 6rem;
  }
}
@media (max-width: 37.5em) {
  .story {
    transform: skewX(0);
  }
}
.story__shape {
  width: 9rem;
  height: 9rem;
  float: left;
  -webkit-shape-outside: circle(50% at 50% 50%);
  shape-outside: circle(50% at 50% 50%);
  clip-path: circle(40% at 50% 50%);
  -webkit-clip-path: circle(50% at 50% 50%);
  transform: translatex(-1rem) skewX(12deg);
  position: relative;
}
@media (max-width: 37.5em) {
  .story__shape {
    transform: translatex(-3rem) skewX(0);
  }
}
.story__image {
  height: 100%;
  object-fit: cover;
  transform: translateX(-1rem) scale(1.4);
  transition: all 0.5s;
  backface-visibility: hidden;
}
.story__text {
  transform: skewX(12deg);
}
.story__text p {
  font-size: 1.5rem;
}
@media (max-width: 37.5em) {
  .story__text {
    transform: skewX(0);
  }
}
.story__caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -7%);
  color: #fff;
  text-align: center;
  font-size: 1.5rem;
  text-transform: uppercase;
  opacity: 0;
  transition: all 0.5s;
  backface-visibility: hidden;
}
.story:hover .story__caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.story:hover .story__image {
  transform: translateX(-1rem) scale(1);
  filter: blur(1px) brightness(80%);
}

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

.form__group:not(:last-child) {
  margin-bottom: 1.5rem;
}
.form__input {
  font-size: 1.5rem;
  font-family: inherit;
  color: inherit;
  padding: 0.5rem 0.8rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  border: none;
  border-bottom: 2px solid transparent;
  width: 90%;
  display: inline-block;
}
@media (max-width: 56.25em) {
  .form__input {
    width: 100%;
  }
}
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  border-bottom: 2px solid #427D9D;
}
.form__input:focus:invalid {
  border-bottom: 2px solid #ff7730;
}
.form__input::-webkit-input-placeholder {
  color: #5c5b5b;
}
.form__label {
  font-size: 1rem;
  font-weight: 700;
  margin-left: 0.8rem;
  transition: all 0.3s;
}
.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2rem);
}

.header {
  height: 95vh;
  background-image: linear-gradient(to top, rgba(155, 190, 200, 0.6), rgba(22, 72, 99, 0.6)), url(../img/banner.jpg);
  background-size: cover;
  background-position: top;
  position: relative;
}
.header__logo-area {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
}
.header__logo {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: #fff;
  font-size: 4rem;
}
.header__banner-area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.header__banner-area h1 {
  font-size: 7rem;
  letter-spacing: 3rem;
  display: block;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  text-transform: uppercase;
  backface-visibility: hidden;
  animation-name: moveInLeft;
  animation-duration: 2s;
}
@media (max-width: 37.5em) {
  .header__banner-area h1 {
    letter-spacing: 2rem;
    font-size: 4rem;
  }
}
.header__banner-area p {
  font-size: 1.7rem;
  letter-spacing: 1rem;
  margin-top: 1.5rem;
  display: block;
  margin-bottom: 3rem;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  text-transform: uppercase;
  backface-visibility: hidden;
  animation-name: moveInRight;
  animation-duration: 2s;
}
@media (max-width: 37.5em) {
  .header__banner-area p {
    letter-spacing: 0.5rem;
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

.row {
  max-width: 90rem;
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 9rem;
}
@media (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 9rem;
  }
}
@media (max-width: 56.25em) {
  .row {
    max-width: 40rem;
  }
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
@media (max-width: 56.25em) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 9rem;
  }
}
@media (max-width: 56.25em) {
  .row [class^=col-] {
    width: 100% !important;
  }
}
.row .col-1-of-2 {
  width: calc((90rem - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((90rem - 2 * 6rem) / 3);
}
.row .col-1-of-4 {
  width: calc((90rem - 3 * 6rem) / 4);
}
.row .col-2-of-3 {
  width: calc(2 * (90rem - 2 * 6rem) / 3 + 6rem);
}
.row .col-2-of-4 {
  width: calc(2 * (90rem - 3 * 6rem) / 4 + 6rem);
}
.row .col-3-of-4 {
  width: calc(3 * (90rem - 3 * 6rem) / 4 + 12rem);
}

.navigation__checkbox {
  display: none;
}
.navigation__button {
  background-color: #fff;
  height: 6rem;
  width: 6rem;
  position: fixed;
  top: 3rem;
  right: 3rem;
  border-radius: 50%;
  z-index: 200;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}
@media (max-width: 56.25em) {
  .navigation__button {
    top: 1.5rem;
    right: 1.5rem;
  }
}
@media (max-width: 37.5em) {
  .navigation__button {
    top: 1rem;
    right: 1rem;
  }
}
.navigation__background {
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  position: fixed;
  top: 4rem;
  right: 4rem;
  background-image: radial-gradient(#9BBEC8, #164863);
  z-index: 100;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}
@media (max-width: 56.25em) {
  .navigation__background {
    top: 2.5rem;
    right: 2.5rem;
  }
}
@media (max-width: 37.5em) {
  .navigation__background {
    top: 2rem;
    right: 2rem;
  }
}
.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  opacity: 0;
  transition: all 0.8s;
}
.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}
.navigation__item {
  margin: 2rem;
}
.navigation__link:link, .navigation__link:visited {
  display: inline-block;
  font-size: 2.7rem;
  font-weight: 300;
  padding: 0.2rem 2rem;
  color: #fff;
  text-transform: uppercase;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 220%;
  transition: all 0.4s;
}
.navigation__link:link span, .navigation__link:visited span {
  margin: 0.5rem;
  display: inline-block;
}
.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #427D9D;
  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: 2.8rem;
}
.navigation__icon, .navigation__icon::before, .navigation__icon::after {
  width: 2rem;
  height: 2px;
  background-color: #5c5b5b;
  display: inline-block;
}
.navigation__icon::before, .navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.1s;
}
.navigation__icon::before {
  top: -0.5rem;
}
.navigation__icon::after {
  top: 0.5rem;
}
.navigation__button:hover .navigation__icon::before {
  top: -0.6rem;
}
.navigation__button:hover .navigation__icon::after {
  top: 0.6rem;
}
.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-color: #5c5b5b;
  padding: 7rem 0;
  font-size: 1.5rem;
}
@media (max-width: 56.25em) {
  .footer {
    padding: 4rem 0;
  }
}
.footer__logo-box {
  text-align: center;
  height: auto;
}
.footer__logo {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 5rem;
}
.footer__list {
  list-style-type: none;
  width: 40rem;
}
.footer__item {
  display: inline-block;
  font-size: 1.4rem;
}
.footer__item:not(:last-child) {
  margin-right: 1rem;
}
.footer__link:link, .footer__link:visited {
  color: #f7f7f7;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
}
.footer__link:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.4);
  transition: 0.5s;
}
.footer__copyright {
  text-align: end;
  color: rgb(226, 222, 222);
}

.about {
  background-color: #f7f7f7;
  padding: 10rem 0;
}
@media (max-width: 56.25em) {
  .about {
    padding-bottom: 10rem;
  }
}

.features {
  padding: 15rem 0;
  background-image: linear-gradient(to top, rgba(155, 190, 200, 0.6), rgba(22, 72, 99, 0.6)), url(../img/features.jpg);
  background-size: cover;
}
@media (max-width: 56.25em) {
  .features {
    padding: 8rem 0;
  }
}

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

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

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

.book {
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.8), 0%, rgba(255, 255, 255, 0.8) 50%, transparent 50%), url(../img/landscape.jpg);
  background-size: cover;
  border-radius: 3px;
  box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.15);
}
.book__form {
  width: 50%;
  padding: 3rem;
}
@media (max-width: 56.25em) {
  .book__form {
    width: 100%;
  }
}
@media (max-width: 56.25em) {
  .book {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8), 0%, rgba(255, 255, 255, 0.8) 100%), url(../img/landscape.jpg);
  }
}

/*# sourceMappingURL=style.css.map */
