/*
0-->600px : Phone
600-->900px : tablet

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

html {
  font-size: 62.5%;
}

body {
  font-family: "lato", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.7;
  color: #777;
  padding: 2rem;
  box-sizing: border-box;
}

/* Animation */
@keyframes moveToLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes moveToRight {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes moveButtomToUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*********/
.heading-primary {
  color: #fff;
  text-transform: uppercase;
  /*cool trick to stop the annimation for shaking   */
  backface-visibility: hidden;
  margin-bottom: 3rem;
}
.heading-primary--main {
  display: block;
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 2rem;
  animation-name: moveToLeft;
  animation-duration: 2s;
  animation-timing-function: ease-in;
}
.heading-primary--sub {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1.2rem;
  animation-name: moveToRight;
  animation-duration: 2s;
  animation-timing-function: ease-in;
}

.heading-secondery {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #76d56f, #28b485);
  display: inline-block;
  color: transparent;
  letter-spacing: 0.12rem;
  transition: all 0.2s;
}
.heading-secondery:hover {
  transform: skewY(2deg) skewX(15deg) scale(1.1);
  text-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.2);
}

.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-botton-small {
  margin-bottom: 1.5rem !important;
}

.u-margin-botton-medium {
  margin-bottom: 4rem !important;
}

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

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

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

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 2.2rem;
  display: inline-block;
  font-size: 1.4rem;
  border-radius: 8rem;
  transition: all 0.2s;
  position: relative;
}
.btn-1 {
  margin-left: 25%;
  border: none;
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px #000, 0.3;
}
.btn:focus,
.btn :active {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 5px 10px #000, 0.5;
}
.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 200px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}
.btn--animated {
  animation: moveButtomToUp 1.2s ease-in 0.75s;
  /* another trick to make the btn hidden before the animation start */
  animation-fill-mode: backwards;
}
.btn:hover::after {
  transform: scale(1.3, 1.7);
  /* the trick behind the feeding of the btn */
  opacity: 0;
}
.btn--white {
  background-color: #fff;
  color: #777;
}
.btn--white::after {
  background-color: #fff;
}
.btn--green {
  background-color: #28b485;
  color: #fff;
}
.btn--green::after {
  background-color: #55c57a;
}

.btn-text:link, .btn-text:visited {
  color: #55c57a;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #55c57a;
  padding: 0.8rem;
  font-size: 1.6rem;
  transition: all 0.2s;
}
.btn-text:hover {
  background-color: #55c57a;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}
.btn-text:active {
  box-shadow: 0 0.7rem 1rem rgba(0, 0, 0, 0.6);
  transform: translateY(2px);
}

.composition {
  position: relative;
}
.composition__photo {
  width: 50%;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  position: absolute;
  transition: all 0.5s;
  z-index: 1;
  outline-offset: 0.5rem;
}
.composition__photo--p1 {
  left: 0;
  top: -2rem;
}
.composition__photo--p2 {
  right: 0;
  top: 3rem;
}
.composition__photo--p3 {
  left: 4rem;
  top: 10rem;
}
.composition__photo:hover {
  outline: 0.5rem solid #55c57a;
  transform: scale(1.5) translateY(-0.5rem);
  box-shadow: 0 2.5rem 4rem rgba(0, 0, 0, 0.7);
  z-index: 2;
}
.composition:hover .composition__photo:not(:hover) {
  transform: scale(0.9);
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  padding: 2.5rem;
  text-align: center;
  border-radius: 0.3rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.25);
  transition: transform 1s;
}
.feature-box__icon {
  font-size: 6rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to right, #76d56f, #28b485);
  color: transparent;
}
.feature-box:hover {
  transform: translateY(-1.5rem) scale(1.03);
}

.card {
  perspective: 150rem;
  -moz-perspective: 150rem;
  position: relative;
  height: 51rem;
}
.card__side {
  height: 51rem;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  backface-visibility: hidden;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.7);
}
.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, #76d56f, #28b485);
}
.card__side-back-3 {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa);
}
.card:hover .card__side-front {
  transform: rotateY(-180deg);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.5);
}
.card:hover .card__side-back {
  transform: rotateY(0);
}
.card__picture {
  background-size: cover;
  height: 23rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  background-blend-mode: soft-light;
}
.card__picture-1 {
  background-image: linear-gradient(to right bottom, #ffb900, #ff7730), url("../images/nat-5.jpg");
}
.card__picture-2 {
  background-image: linear-gradient(to right bottom, #76d56f, #28b485), url("../images/nat-6.jpg");
}
.card__picture-3 {
  background-image: linear-gradient(to right bottom, #2998ff, #5643fa), url("../images/nat-7.jpg");
}
.card__heading {
  font-size: 2.8rem;
  font-weight: 300;
  text-transform: uppercase;
  word-spacing: 0.2rem;
  color: #fff;
  position: absolute;
  text-align: right;
  top: 12rem;
  right: 2rem;
  margin-top: -2rem;
  width: 75%;
}
.card__heading-span--1 {
  background-image: linear-gradient(to right bottom, rgba(255, 185, 0, 0.85), rgba(255, 119, 48, 0.85));
}
.card__heading-span--2 {
  background-image: linear-gradient(to right bottom, rgba(118, 213, 111, 0.85), rgba(40, 180, 133, 0.85));
}
.card__heading-span--3 {
  background-image: linear-gradient(to right bottom, rgba(41, 152, 255, 0.85), rgba(86, 67, 250, 0.85));
}
.card__details {
  padding: 1rem;
}
.card__details ul {
  list-style-type: 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;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
}
.card__price-box {
  text-align: center;
  color: #fff;
  margin-bottom: 4rem;
}
.card__price-only {
  font-size: 1.4rem;
  text-transform: uppercase;
}
.card__price-value {
  font-size: 5rem;
  font-weight: 100;
}

.story {
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.6);
  padding: 6rem;
  border-radius: 2rem;
  padding-left: 9rem;
  font-size: 1.6rem;
  transform: skewX(-12deg);
}
.story__shape {
  width: 15rem;
  height: 15rem;
  float: left;
  shape-outside: circle(50% at 50% 50%);
  --webkit-shape-outside: circle(50% at 50% 50%);
  --webkit-shape-clip-path: circle(50% at 50% 50%);
  clip-path: circle(50% at 50% 50%);
  transform: translateX(-3rem) skewX(12deg);
  position: relative;
}
.story__img {
  height: 100%;
  transform: translateX(-4rem) scale(1.4);
  backface-visibility: hidden;
  transition: all 1s;
}
.story__text {
  transform: 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.8s;
  backface-visibility: hidden;
}
.story:hover .story__caption {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.story:hover .story__img {
  transform: translateX(-4rem) scale(1);
  filter: blur(5px) brightness(40%);
}

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

.form__group:not(:last-child) {
  margin-bottom: 2rem;
}
.form__input {
  font-size: 1.5rem;
  padding: 1.5rem 2rem;
  font-family: inherit;
  border-radius: 0.2rem;
  color: inherit;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-bottom: 5px solid transparent;
  width: 90%;
  display: block;
  transition: all 0.7s;
}
.form__input:focus {
  outline: none;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5);
  border-bottom: 5px solid #28b485;
}
.form__input:focus:invalid {
  border-bottom: 5px 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.2s ease-out;
}
.form__input:placeholder-shown + .form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4rem);
}
.form__radio-group {
  display: inline-block;
}
.form__radio-label {
  font-size: 1.6rem;
  cursor: pointer;
  padding-right: 8rem;
  width: 50%;
  position: relative;
  padding: 4rem;
}
.form__radio-input {
  display: none;
}
.form__radio_button {
  height: 2rem;
  width: 2rem;
  border: 0.4rem solid #55c57a;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 4.2rem;
  left: -0.5rem;
  /*  magic tick behind showing the custom radio btn*/
}
.form__radio_button::after {
  content: "";
  display: block;
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%);
  background-color: #55c57a;
  opacity: 0;
  transition: opacity 0.2s;
}
.form__radio-input:checked ~ .form__radio-label .form__radio_button::after {
  opacity: 1;
}

.popup {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.popup__close:visited, .popup__close:link {
  color: #777;
  position: absolute;
  right: 3.2rem;
  top: 3.2rem;
  width: 3.2rem;
  height: 3.2rem;
  opacity: 0.3;
}
.popup__close:hover {
  opacity: 1;
}
.popup__close:before, .popup__close:after {
  position: absolute;
  left: 1.5rem;
  content: " ";
  height: 3.5rem;
  width: 0.3rem;
  background-color: #777;
}
.popup__close:before {
  transform: rotate(45deg);
}
.popup__close:after {
  transform: rotate(-45deg);
}
.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
  background-color: #fff;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  display: table;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(0.25);
  transition: all 0.4s 0.2s;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.popup__left {
  width: 33.33%;
  display: table-cell;
}
.popup__right {
  width: 66.66%;
  display: table-cell;
  vertical-align: middle;
  padding: 3rem 6rem;
}
.popup__img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.popup__text {
  font-size: 1.4rem;
  margin-bottom: 4rem;
  -moz-column-count: 2;
  -moz-column-gap: 2rem;
  -moz-column-rule: 1px solid #eee;
  column-count: 2;
  column-gap: 2rem;
  column-rule: 1px solid #eee;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.header {
  height: 95vh;
  background-image: linear-gradient(to right bottom, rgba(118, 213, 111, 0.512), rgba(40, 180, 133, 0.533)), url("../images/sebin.jpg");
  background-size: cover;
  background-position: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 75vh, 0 100%);
  position: relative;
}
.header__logo-box {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
}
.header__logo {
  height: 2rem;
}
.header__text-box {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.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% - 12rem) / 3);
}
.row .col-2-of-3 {
  width: calc(
			2 * ((100% - 12rem) / 3) + 6rem
		);
}
.row .col-1-of-4 {
  width: calc((100% - 18rem) / 4);
}
.row .col-2-of-4 {
  width: calc(
			2 * ((100% - 18rem) / 4) + 6rem
		);
}
.row .col-3-of-4 {
  width: calc(
			3 * ((100% - 18rem) / 4) + 2 * 6rem
		);
}

.footer {
  background-color: #333;
  position: relative;
  font-size: 1.4rem;
}
.footer__logo-box {
  text-align: center;
  margin-bottom: 5rem;
}
.footer__logo {
  padding-top: 5rem;
  width: 100px;
  height: 150px;
  border-radius: 80%;
  transition: transform 1s;
}
.footer__logo:hover {
  transform: scale(1.2);
}
.footer__alignement {
  display: flex;
  justify-content: space-between;
}
.footer__navigation {
  border-top: 0.2rem solid #777;
  padding-top: 2rem;
  position: absolute;
  left: 2rem;
  display: inline-block;
}
.footer__list {
  list-style: none;
}
.footer__item {
  display: inline-block;
}
.footer__item:not(:last-child) {
  margin-right: 2rem;
}
.footer__link:link, .footer__link:visited {
  color: #58a6ff;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.4s;
  background-color: #333;
}
.footer__link:hover, .footer__link:active {
  color: #28b485;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.5);
  transform: rotate(-2deg) scale(1.2);
}
.footer__copyright {
  border-top: 0.2rem solid #777;
  padding-top: 2rem;
  display: inline-block;
  right: 5rem;
  position: absolute;
}
.footer__copyright a {
  padding: 0 2rem;
}
.footer__copyright svg {
  position: absolute;
}

.navigation__checkbox {
  display: none;
}
.navigation__button {
  background-color: #fff;
  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;
}
.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 6.5rem;
  right: 6.5rem;
  background-image: radial-gradient(#76d56f, #28b485);
  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;
  opacity: 0;
  width: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
  display: none;
}
.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: 230%;
  transition: all 0.4s;
}
.navigation__link:hover, .navigation__link:active {
  background-position: 100%;
  color: #55c57a;
  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: #333;
  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);
}
.navigation__checkbox:checked ~ .navigation__nav > .navigation__list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
  width: 100%;
  display: block;
}

.section-about {
  background-color: #f7f7f7;
  padding: 25rem 0;
  margin-top: -25vh;
}

.section-feature {
  padding: 20rem 0;
  background-image: linear-gradient(to right bottom, rgba(118, 213, 111, 0.63), rgba(40, 180, 133, 0.63)), url("../images/tim.jpg");
  background-size: cover;
  margin-top: -10rem;
  transform: skewY(-7deg);
}
.section-feature > * {
  transform: skewY(7deg);
}

.section-tours {
  background-color: #f7f7f7;
  padding: 40rem 0 15rem 0;
  margin-top: -25rem;
}

.section-stories {
  position: relative;
  padding: 15rem 0;
}

.section-book {
  padding: 15rem;
  background-image: linear-gradient(to right bottom, #76d56f, #28b485);
}

.book {
  background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 50%, transparent 50%), url("../images/nat-10.jpg");
  background-size: cover;
  height: 50rem;
  border-radius: 0.3rem;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.6);
}
.book__form {
  width: 55%;
  padding: 6rem;
  margin-top: 0;
}

/*
Colors used during the project:

light-green: #76d56f
Medium-green:#55c57a
Dark-green:#28b485


*/

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