@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

*::selection {
  background: #55c57a;
  color: #fff;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  color: #777;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.flow-content--s > * + * {
  margin-top: 0.5rem;
}

.flow-content--m > * + * {
  margin-top: 1.5rem;
}

.flow-content--l > * + * {
  margin-top: 2.5rem;
}

.flow-content--xl > * + * {
  margin-top: 3.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.grid {
  display: grid;
}

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

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

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

.btn {
  display: inline-block;
  border: 0;
  background: 0;
  padding: 1em 2.5em;
  font-size: 1.125rem;
}

.btn--round {
  border-radius: 100px;
}

.btn--white {
  background: #fff;
  color: #777;
  position: relative;
}
.btn--white::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 100px;
  z-index: -1;
  transition: 350ms;
}
.btn--white:hover::after, .btn--white:focus::after {
  transform: scale(1.3, 1.5);
  opacity: 0;
}
.btn--white:hover, .btn--white:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.btn--white:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.btn--green {
  background: #55c57a;
  color: #fff;
  text-transform: uppercase;
}
.btn--green::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: inherit;
  border-radius: 100px;
  z-index: -1;
  transition: 350ms;
}
.btn--green:hover::after, .btn--green:focus::after {
  transform: scale(1.3, 1.5);
  opacity: 0;
}
.btn--green:hover, .btn--green:focus {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.btn--green:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.btn--accent {
  padding: 0.5em 0.3em;
  color: #55c57a;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #55c57a;
  text-transform: initial;
  transition: 500ms;
}
.btn--accent:hover, .btn--accent:focus {
  background: #55c57a;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.btn--accent:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.section-title {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 2rem;
  text-align: center;
  background: linear-gradient(rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8));
  background-clip: text;
  color: transparent;
  transition: 250ms;
}
.section-title:hover {
  transform: skewY(2deg) skewX(15deg) scale(1.1);
  text-shadow: 0 0px 20px rgba(0, 0, 0, 0.3);
}

.py-1 {
  padding: 1rem 0;
}

.py-2 {
  padding: 2rem 0;
}

.py-3 {
  padding: 3rem 0;
}

.px-1 {
  padding: 0 1rem;
}

.px-2 {
  padding: 0 2rem;
}

.px-3 {
  padding: 0 3rem;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

@media (max-width: 1250px) {
  .booking {
    padding: 3rem;
  }
  .booking__wrapper {
    grid-template-columns: 1fr;
  }
  .booking__img {
    display: none;
  }
  .booking__form {
    width: 85%;
    margin: 0 auto;
  }
}
@media (max-width: 1200px) {
  .advices {
    padding: 3rem;
  }
  .advices__cards {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
  .p-tours .p-tours__wrapper {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    justify-items: center;
  }
  .p-tours .p-tours__wrapper .card-wrapper {
    perspective: 1500px;
  }
  .tours {
    padding-bottom: 35rem !important;
    padding: 3rem;
  }
  .tours__desc {
    max-width: 650px;
  }
  .btn--green {
    align-self: center;
    grid-column: 1 !important;
    width: fit-content !important;
  }
  .stories .story__content-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}
@media (max-width: 1200px) and (max-width: 950px) {
  .footer__grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .footer__list {
    flex-direction: column;
    border-top: 0 !important;
  }
  .footer li {
    padding-top: 2rem;
  }
}
@media (max-width: 1200px) and (max-width: 750px) {
  .hero__title {
    letter-spacing: 1rem !important;
    font-size: 2.5rem;
  }
  .hero__sub-title {
    letter-spacing: 0.5rem !important;
  }
  .advices {
    padding: 5rem 1.5rem;
  }
  .advices__cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1200px) {
  .tours__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1200px) {
  .stories .story__card {
    transform: skewX(0);
    width: 100%;
    padding: 1.5rem;
  }
  .stories .story__content-wrapper {
    transform: skewX(0);
  }
}
@media (max-width: 550px) {
  html {
    font-size: 62.5%;
  }
  .hero .fa-bars {
    height: 40px;
    width: 40px;
  }
  .booking {
    padding: 0 !important;
  }
  .booking__form .radio__wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }
  .booking__form .radio__wrapper .custom-radio-wrapper {
    width: 30px;
    height: 30px;
  }
  .booking__form .radio__wrapper .inner-circle {
    width: 10px;
    height: 10px;
  }
  .booking__form label[for=small],
.booking__form label[for=large] {
    font-size: 1.5rem !important;
  }
  .booking__form .input-wrapper input:focus:invalid {
    border-bottom: 2px solid #ff7730 !important;
  }
  .booking__form .input-wrapper input:focus {
    border-bottom: 2px solid rgba(40, 180, 133, 0.8) !important;
  }
  .bookig__btn-wrapper {
    margin: 0;
  }
  .p-tours .card-wrapper {
    width: 100% !important;
    height: 500px !important;
  }
}
.hero {
  min-height: 100vh;
  background: linear-gradient(to bottom right, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)), url("../img/hero-small.jpg") top/cover;
}
.hero__logo-wrapper {
  align-self: flex-start;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
}
.hero__logo-wrapper img {
  width: 85px;
}
.hero__logo-wrapper .bar-icon {
  font-size: 2rem;
  color: #000;
  background: #fff;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  padding: 2.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.hero__title {
  font-size: 3.75rem;
  letter-spacing: 2.2rem;
  font-weight: 400;
  animation: title-to-right 0.7s ease-out;
}
.hero__sub-title {
  font-size: 1.3rem;
  white-space: nowrap;
  letter-spacing: 1.125rem;
  margin-bottom: 4.5rem;
  font-weight: 700;
  animation: sub-title-to-left 0.7s ease-out;
}
.hero__btn {
  animation: btn-to-top 0.7s ease-in-out 1s backwards;
}

@keyframes title-to-right {
  from {
    transform: translateX(-5.5rem);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes sub-title-to-left {
  from {
    transform: translateX(5.5rem);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes btn-to-top {
  from {
    opacity: 0;
    transform: translateY(5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tours {
  background: #f7f7f7;
  text-transform: uppercase;
  padding-top: 10rem;
}
.tours__header {
  color: #55c57a;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  letter-spacing: 2px;
}
.tours__grid {
  align-items: center;
  padding: 3rem;
}
.tours__gallary {
  position: relative;
  width: 100%;
  align-self: start;
}
.tours__sub-title {
  font-weight: 600;
  font-size: 1.125rem;
}
.tours__content-wrapper {
  padding: 1.2rem;
}
.tours__desc {
  font-size: 0.9rem;
  line-height: 2;
}
.tours__desc:nth-child(2) {
  margin-bottom: 1.5rem;
}
.tours__img-1 {
  position: absolute;
  width: 55%;
  left: 0;
  top: 0rem;
}
.tours__img-2 {
  width: 55%;
  position: absolute;
  right: 0;
  top: 1rem;
}
.tours__img-3 {
  width: 55%;
  position: absolute;
  top: 5rem;
  left: 25%;
}
.tours__galary {
  transition: 250ms;
}
.tours__gallary:hover img:not(:hover) {
  transform: scale(0.95);
  overflow: hidden;
}
.tours img {
  transition: 250ms;
  outline-offset: 1.5rem;
  border-radius: 9px;
}
.tours img:hover {
  transform: scale(1.1) translateY(-5px);
  outline: 15px solid #55c57a;
  z-index: 1;
}

.span-2 {
  background: linear-gradient(to bottom right, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)) !important;
  transform: translateX(-1.5rem) !important;
}

.span-2:first-child {
  transform: translateX(0) !important;
}

.span-3 {
  background: linear-gradient(to bottom right, #2998ff, #5643fa) !important;
}

.span-3:first-child {
  transform: translateX(-1rem) !important;
}

.span-3:last-child {
  transform: translateX(-2.5rem) !important;
}

.advices {
  margin-bottom: 10rem;
  background: linear-gradient(to bottom right, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8)), url("../img/nat-4.jpg") center/cover;
  min-height: 100vh;
  transform: skewY(-7deg);
}
.advices > * {
  transform: skewY(7deg);
}
.advices__cards {
  align-items: center;
  justify-items: center;
  min-height: 100vh;
  gap: 3.75rem;
}
.advices .advice__card {
  background: rgba(255, 255, 255, 0.8);
  padding: 2.25rem;
  text-align: center;
  transition: 250ms;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}
.advices .advice__card-icon {
  font-size: 3.75rem;
  background: linear-gradient(to right, rgba(40, 180, 133, 0.8), #55c57a);
  background-clip: text;
  color: transparent;
}
.advices .advice__card:hover {
  transform: translateY(-1.5rem) scale(1.05);
}
.advices .advice__card-title {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.p-tours {
  background: #f7f7f7;
  margin-top: -16rem;
}
.p-tours__title {
  margin-bottom: 3.5rem;
  margin-top: 7rem;
}
.p-tours .card-wrapper {
  height: 600px;
  width: 350px;
  position: relative;
  perspective: 800px;
  margin-bottom: 3.5rem;
}
.p-tours .card-wrapper .card__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: 0.8s;
  transform-style: preserve-3d;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
}
.p-tours .card-wrapper .card__content > * {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.p-tours .card-wrapper .card__content--front .card__img {
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom right, #ffb900, #ff7730), url("../img/nat-5.jpg") center/cover;
  background-blend-mode: screen;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.p-tours .card-wrapper .card__content--front .card__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.5rem;
}
.p-tours .card-wrapper .card__content--front .front__title {
  text-transform: uppercase;
  position: absolute;
  top: 33%;
  left: 40%;
}
.p-tours .card-wrapper .card__content--front .front__title span {
  display: block;
  color: #fff;
  background: linear-gradient(to bottom right, #ffb900, #ff7730);
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 1.75rem;
  padding: 0.3rem;
}
.p-tours .card-wrapper .card__content--front .front__title span:first-child {
  transform: translateX(1.5rem);
}
.p-tours .card-wrapper .card__content--front .card__img-2 {
  background: linear-gradient(to bottom right, rgba(40, 180, 133, 0.8), rgba(126, 213, 111, 0.8)), url("../img/nat-6.jpg") center/cover !important;
}
.p-tours .card-wrapper .card__content--front .card__img-3 {
  background: linear-gradient(to bottom right, #2998ff, #5643fa), url("../img/nat-7.jpg") center/cover;
}
.p-tours .card-wrapper .card__content--front .card__item:not(:last-child) {
  width: 75%;
  text-align: center;
  border-bottom: 1px solid #eee;
  font-size: 1.125rem;
  padding-bottom: 0.25rem;
}
.p-tours .card-wrapper .card__content--back {
  background: blue;
  color: #fff;
  transform: rotateY(180deg);
  background: linear-gradient(to bottom right, #ffb900, #ff7730);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}
.p-tours .card-wrapper .card__content--back h3 {
  font-size: 1.125rem;
  margin-bottom: 2.25rem;
  font-weight: 400;
}
.p-tours .card-wrapper .card__content--back p {
  margin-bottom: 5rem;
  font-size: 5rem;
  font-weight: 100;
}
.p-tours .card-wrapper:hover .card__content {
  transform: rotateY(180deg);
}
.p-tours .btn--green {
  grid-column: 2;
  text-align: center;
  width: 85%;
}

.card__content--back-2 {
  background: linear-gradient(to right bottom, #7ed56f, #28b485) !important;
}

.card__content--back-3 {
  background: linear-gradient(to right bottom, #2998ff, #5643fa) !important;
}

.stories {
  overflow: hidden;
  position: relative;
}
.stories__title {
  position: relative;
  z-index: 1;
}
.stories__btn-wrapper {
  display: flex;
  justify-content: center;
}
.stories__btn-wrapper .btn {
  position: relative;
  z-index: 1;
  width: fit-content;
}

.story__content-wrapper {
  grid-template-columns: 1fr 3fr;
  gap: 2.5rem;
}
.story__card {
  transform: skewX(-15deg);
  width: 70%;
  margin: 0 auto;
  padding: 3rem;
  background: #fff;
  z-index: 1;
  margin-bottom: 3.5rem;
}
.story__card h3 {
  text-transform: uppercase;
}
.story__card p {
  font-size: 1.125rem;
}
.story__card > * {
  transform: skewX(15deg);
}
.story__card:hover .story__img {
  filter: blur(5px) brightness(85%);
}
.story__card:hover .author-name {
  opacity: 1;
}
.story__card:hover .story__img-wrapper img {
  transform: scale(1.1);
}
.story__card:hover .author-name {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.story__img-wrapper {
  position: relative;
  transition: 500ms;
}
.story__img {
  transition: 500ms;
  border-radius: 50%;
  width: 200px;
  height: 200px;
}

.author-name {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  white-space: nowrap;
  transition: 500ms;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
.video-bg video {
  opacity: 0.15;
  object-fit: cover;
}

.booking {
  min-height: 100vh;
  background: linear-gradient(to bottom right, rgba(126, 213, 111, 0.8), rgba(40, 180, 133, 0.8));
  padding: 5rem 1.5rem;
  display: grid;
  place-items: center;
}
.booking__wrapper {
  padding: 0;
  width: 100vw;
}
.booking__title {
  margin-bottom: 2.5rem;
}
.booking__form {
  padding: 2.25rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9)), url(../img/nat-10.jpg) center/cover;
}
.booking__img {
  height: 100%;
  width: 100%;
  background: url(../img/nat-10.jpg) center/cover;
}
.booking .input-wrapper input {
  display: block;
  width: 100%;
  padding: 0.7rem 1.4rem;
  border: 0;
  font: inherit;
  color: inherit;
  transition: 700ms;
  border-bottom: 4px solid transparent;
}
.booking .input-wrapper input:focus {
  outline: 0;
  border-bottom: 4px solid rgba(40, 180, 133, 0.8);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}
.booking .input-wrapper input:focus:invalid {
  border-bottom: 4px solid #ff7730;
}
.booking .input-wrapper input:placeholder-shown + label {
  opacity: 0;
  transform: translateY(-2rem);
  transform: translateY(-2.5rem);
}
.booking .input-wrapper label:not([for=large]),
.booking .input-wrapper label:not([for=small]) {
  display: inline-block;
  transition: 700ms;
  margin-top: 0.5rem;
  padding: 0 1.4rem;
}
.booking .input-wrapper label[for=large],
.booking .input-wrapper label[for=small] {
  padding: 0;
  margin: 0;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.booking .radio__wrapper {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
}
.booking input[type=radio] {
  display: none;
}
.booking input[type=radio]:checked ~ label .custom-radio-wrapper span {
  opacity: 1;
  visibility: visible;
}
.booking .custom-radio-wrapper {
  border: 5px solid rgba(40, 180, 133, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.booking .custom-radio-wrapper:active span {
  opacity: 1;
  visibility: active;
}
.booking .custom-radio-wrapper span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 5px solid rgba(40, 180, 133, 0.8);
  background: rgba(40, 180, 133, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: 250ms;
}
.booking .btn {
  text-transform: uppercase;
}
.booking .custom-radio-main-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.booking .custom-radio-main-wrapper .custom-radio-wrapper {
  order: -1;
}

.footer {
  background: #333;
}
.footer p {
  border-top: 1px solid #777;
  padding-top: 1.5rem;
  color: #fff;
  max-width: 650px;
}
.footer a {
  display: inline-block;
  color: inherit;
  transition: 250ms;
}
.footer a:hover, .footer a:focus {
  display: inline-block;
  box-shadow: 0 0.625rem 1.3rem rgb(0, 0, 0);
  color: rgba(40, 180, 133, 0.8);
  transform: rotate(5deg) scale(1.3);
  background: #333;
}
.footer__grid {
  gap: 2.25rem;
  width: 100vw;
  justify-items: space-between;
  margin: 0 auto;
  width: 100%;
}
.footer__logo-wrapper {
  margin-top: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
.footer__logo {
  display: inline-block;
  width: 150px;
}
.footer__list {
  display: inline-block;
  border-top: 1px solid #777;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: fit-content;
  text-transform: uppercase;
}
.footer__list li {
  color: #fff;
}
.footer__list-2 {
  padding-top: 1.5rem;
}

.nav {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #55c57a, lightgreen);
  clip-path: circle(0% at calc(100% - 7rem) 4rem);
  transition: 250ms ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}

.list {
  list-style: none;
}

.item {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: bolder;
}

.item:hover {
  color: dodgerblue;
}

.bar {
  display: inline-block;
  position: fixed;
  top: 2rem;
  right: 5rem;
  font-size: 2rem;
  z-index: 1000;
}

.bar i {
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  padding: 1rem;
  width: 65px;
  height: 65px;
  text-align: center;
  transition: 250ms;
  color: #000;
}

.bar i:hover {
  transform: rotate(180deg);
}

#toggle {
  display: none;
}

#toggle:checked ~ .nav {
  clip-path: circle(75%);
}

#toggle:checked ~ .bar i::before {
  content: "\f00d";
}

.item a::before {
  content: attr(data-text);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  color: #000;
  letter-spacing: 5rem;
  opacity: 0;
  pointer-events: none;
  transition: 250ms;
  font-size: 10rem;
}

.item a {
  cursor: pointer;
}

.item a:hover::before {
  opacity: 0.1;
  letter-spacing: 0;
}

.item a {
  display: inline-block;
  text-transform: uppercase;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  padding: 1rem 2rem;
  color: #fff;
  background-image: linear-gradient(120deg, transparent 0%, transparent 50%, #fff 50%);
  background-size: 220%;
  transition: 250ms;
}

.item a:hover,
.item a:focus {
  background-position: 100%;
  color: #55c57a;
  -webkit-transform: translateX(1rem);
  transform: translateX(1rem);
}

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