:root {
  --section-rotate: 9vw;
}

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

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

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  color: #777;
  flex-direction: column;
  min-height: 100vh;
  padding: 3rem;
  font-family: Lato, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  display: flex;
}

.main {
  background-color: #f7f7f7;
  flex: 1;
  padding: 8rem 6rem;
  position: relative;
}

.flex {
  display: flex;
}

.span-all-rows {
  grid-row: 1 / -1;
}

.container {
  max-width: 120rem;
  margin: 0 auto;
}

.ma-bt-md {
  margin-bottom: 3rem !important;
}

.ma-bt-lg {
  margin-bottom: 3.5rem !important;
}

.right {
  text-align: right !important;
}

.line {
  background-color: #e0e0e0;
  width: 100%;
  height: 1px;
  margin: 6rem 0;
}

.alert {
  z-index: 9999;
  color: #fff;
  text-align: center;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 1.6rem 15rem;
  font-size: 1.8rem;
  font-weight: 400;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2rem 4rem #00000040;
}

.alert--success {
  background-color: #20bf6b;
}

.alert--error {
  background-color: #eb4d4b;
}

.heading-secondary {
  text-transform: uppercase;
  color: #0000;
  letter-spacing: .1rem;
  background-image: linear-gradient(to right, #7dd56f, #28b487);
  -webkit-background-clip: text;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  display: inline-block;
}

.heading-secondary--error {
  background-image: linear-gradient(to right, #ff7730, #eb4d4b);
  font-size: 3.5rem;
}

.heading-primary, .heading-tertirary {
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
}

.heading-primary span, .heading-tertirary span {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: linear-gradient(to bottom right, #7dd56fd9, #28b487d9);
  padding: 1rem 1.5rem;
  line-height: 1;
}

.heading-primary {
  text-align: center;
  width: 70%;
  margin: 0 auto;
  font-size: 5rem;
}

.heading-tertirary {
  text-align: right;
  z-index: 10;
  width: 70%;
  font-size: 2.75rem;
  position: absolute;
  bottom: 1rem;
  right: 2rem;
}

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  backface-visibility: hidden;
  cursor: pointer;
  border: none;
  border-radius: 10rem;
  padding: 1.4rem 3rem;
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .4s;
  display: inline-block;
  position: relative;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem #00000026;
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 .5rem 1rem #00000026;
}

.btn:focus {
  background-color: #2e864b;
  outline: none;
}

.btn--white {
  color: #777;
  background-color: #fff;
}

.btn--white:after {
  background-color: #fff;
}

.btn--green {
  color: #fff;
  background-color: #55c57a;
}

.btn--green:after {
  background-color: #55c57a;
}

.btn--small {
  padding: 1.25rem 3rem !important;
  font-size: 1.4rem !important;
}

.btn-small, .btn-small:link, .btn-small:visited {
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  background-color: #55c57a;
  border: none;
  border-radius: 10rem;
  padding: 1.25rem 3rem;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s;
  position: relative;
}

.btn-small:hover {
  background-color: #7dd56f;
}

.btn-text:link, .btn-text:visited {
  color: #55c57a;
  border-bottom: 1px solid #55c57a;
  padding: 3px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.btn-text:hover {
  color: #fff;
  background-color: #55c57a;
  transform: translateY(-2px);
  box-shadow: 0 1rem 2rem #00000026;
}

.btn-text:active {
  transform: translateY(0);
  box-shadow: 0 .5rem 1rem #00000026;
}

.btn-text:focus {
  outline-offset: 3px;
  outline: 3px solid #55c57a;
}

.header {
  z-index: 100;
  background-color: #444;
  justify-content: space-between;
  align-items: center;
  height: 8rem;
  padding: 0 5rem;
  display: flex;
  position: relative;
}

@media only screen and (width <= 62.5em) {
  .header {
    flex-direction: column;
  }
}

.header__logo img {
  height: 3.5rem;
}

@media only screen and (width <= 62.5em) {
  .header__logo {
    order: -1;
    margin-bottom: 1.5rem;
  }
}

.section-header {
  height: 38vw;
  clip-path: polygon(0 0,
    100% 0,
    100% calc(100% - var(--section-rotate)),
    0 100%);
  -webkit-clip-path: polygon(0 0,
    100% 0,
    100% calc(100% - var(--section-rotate)),
    0 100%);
  position: relative;
}

.header__hero {
  height: 100%;
}

.header__hero-img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 25%;
  object-position: 50% 25%;
  width: 100%;
  height: 100%;
}

.header__hero-overlay {
  opacity: .85;
  background-image: linear-gradient(to bottom right, #7dd56f, #28b487);
  width: 100%;
  height: 100%;
  position: absolute;
}

.heading-box {
  position: absolute;
  top: 35%;
  bottom: 13vw;
  left: 50%;
  transform: translate(-50%, -50%);
}

.heading-box__group {
  color: #f7f7f7;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
  display: flex;
}

.heading-box__detail {
  text-transform: uppercase;
  text-shadow: 0 .5rem 2rem #00000026;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
}

.heading-box__detail svg {
  margin-right: .8rem;
}

.heading-box__detail:not(:last-child) {
  margin-right: 4rem;
}

.heading-box__icon {
  fill: currentColor;
  filter: drop-shadow(0 .75rem .5rem #00000040);
  width: 2rem;
  height: 2rem;
}

.section-description {
  margin-top: calc(0px - var(--section-rotate));
  background-color: #fcfcfc;
  display: flex;
}

.section-description > * {
  padding: 14vw 8vw 0;
  padding-bottom: calc(1vw + var(--section-rotate));
  flex: 0 0 50%;
}

.description-box .description {
  margin-right: 5rem;
}

.description-box .description__text {
  font-size: 1.7rem;
}

.description-box .description__text:not(:last-child) {
  margin-bottom: 2rem;
}

.overview-box {
  background-color: #f7f7f7;
  justify-content: center;
  display: flex;
}

.overview-box__group:not(:last-child) {
  margin-bottom: 7rem;
}

.overview-box__detail {
  align-items: center;
  font-size: 1.5rem;
  font-weight: 400;
  display: flex;
}

.overview-box__detail svg {
  margin-right: 1.25rem;
}

.overview-box__detail:not(:last-child) {
  margin-bottom: 2.25rem;
}

.overview-box__icon {
  fill: #55c57a;
  width: 2.25rem;
  height: 2.25rem;
}

.overview-box__label {
  text-transform: uppercase;
  margin-right: 2.25rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.overview-box__text {
  text-transform: capitalize;
}

.overview-box__img {
  border-radius: 50%;
  height: 3.5rem;
  margin-right: 1.25rem;
}

.section-pictures {
  clip-path: polygon(0 var(--section-rotate),
    100% 0,
    100% calc(100% - var(--section-rotate)),
    0 100%);
  -webkit-clip-path: polygon(0 var(--section-rotate),
    100% 0,
    100% calc(100% - var(--section-rotate)),
    0 100%);
  margin-top: calc(0px - var(--section-rotate));
  z-index: 1000;
  display: flex;
  position: relative;
}

.picture-box__img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 110%;
  display: block;
}

.picture-box__img--1 {
  padding-top: 15%;
}

.picture-box__img--2 {
  padding-bottom: 15%;
}

.picture-box__img--3 {
  padding-bottom: 27%;
}

.section-map {
  height: 65rem;
  margin-top: calc(0px - var(--section-rotate));
  position: relative;
}

#map {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
}

.marker {
  cursor: pointer;
  background-size: cover;
  width: 32px;
  height: 40px;
}

.custom-large-popup {
  font-size: 17px;
  font-weight: 900;
}

.mapboxgl-popup {
  max-width: 25rem;
}

.mapboxgl-popup-content {
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 1.4rem;
  padding: 1.5rem !important;
  box-shadow: 0 1rem 3rem #00000026 !important;
}

.section-reviews {
  margin-top: calc(0px - var(--section-rotate));
  padding: calc(5rem + var(--section-rotate)) 0;
  z-index: 1000;
  clip-path: polygon(0 var(--section-rotate),
    100% 0,
    100% calc(100% - var(--section-rotate)),
    0 100%);
  -webkit-clip-path: polygon(0 var(--section-rotate),
    100% 0,
    100% calc(100% - var(--section-rotate)),
    0 100%);
  background: linear-gradient(to bottom right, #7dd56f, #28b487);
  position: relative;
}

.reviews {
  grid-column-gap: 6rem;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  grid-auto-flow: column;
  padding: 5rem 0;
  display: grid;
  overflow-x: scroll;
}

.reviews__card {
  scroll-snap-align: center;
  background-color: #f7f7f7;
  border-radius: 3px;
  flex-direction: column;
  align-items: center;
  width: 30rem;
  padding: 4rem;
  display: flex;
  box-shadow: 0 1.5rem 4rem #00000026;
}

.reviews:before, .reviews:after {
  content: "";
  width: 2rem;
}

.reviews__avatar {
  align-items: center;
  margin-bottom: 2rem;
  display: flex;
}

.reviews__avatar-img {
  border-radius: 50%;
  height: 4.5rem;
  margin-right: 1.5rem;
}

.reviews__user {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 700;
}

.reviews__text {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
}

.reviews__rating {
  margin-top: auto;
  display: flex;
}

.reviews__star {
  width: 2rem;
  height: 2rem;
  margin-right: 1px;
}

.reviews__star--active {
  fill: #55c57a;
}

.reviews__star--inactive {
  fill: #bbb;
}

.section-cta {
  margin-top: calc(0px - var(--section-rotate));
  padding: 3rem 3rem 11rem;
  padding-top: calc(15rem + var(--section-rotate));
  background-color: #f7f7f7;
}

.cta {
  background-color: #fff;
  border-radius: 2rem;
  max-width: 105rem;
  margin: 0 auto;
  padding: 9rem 5rem 9rem 21rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3rem 8rem .5rem #00000026;
}

.cta__img {
  border-radius: 50%;
  width: 15rem;
  height: 15rem;
  position: absolute;
  top: 50%;
  left: 0;
  box-shadow: 1rem .5rem 3rem #00000026;
}

.cta__img--logo {
  z-index: 10;
  background: linear-gradient(to bottom right, #7dd56f, #28b487);
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
  transform: translate(-35%, -50%);
}

.cta__img--logo img {
  width: 100%;
}

.cta__img--1 {
  z-index: 9;
  transform: translate(-10%, -50%) scale(.97);
}

.cta__img--2 {
  z-index: 8;
  transform: translate(15%, -50%) scale(.94);
}

.cta__content {
  grid-gap: .7rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr auto;
  grid-auto-flow: column;
  align-items: center;
  display: grid;
}

.cta__text {
  font-size: 1.9rem;
  font-weight: 400;
}

.user-view {
  background-color: #fff;
  border-radius: 3px;
  max-width: 120rem;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2.5rem 8rem 2rem #00000012;
}

.user-view__menu {
  -webkit-box-flex: 32rem;
  -ms-flex: 32rem 0 0px;
  background-image: linear-gradient(to bottom right, #7dd56f, #28b487);
  flex: 0 0 32rem;
  padding: 4rem 0;
}

.user-view__content {
  flex: 1;
  padding: 7rem 0;
}

.user-view__form-container {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 8rem;
}

.footer {
  grid-row-gap: .75rem;
  background-color: #f7f7f7;
  grid-template-columns: auto auto;
  justify-content: space-between;
  padding: 6rem 4rem 3rem;
  font-size: 1.4rem;
  display: grid;
}

@media only screen and (width <= 50em) {
  .footer {
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.footer__logo {
  grid-row: 1 / 3;
  align-self: center;
}

@media only screen and (width <= 50em) {
  .footer__logo {
    grid-row: 1;
  }
}

.footer__logo img {
  height: 3rem;
}

.footer__nav {
  justify-content: flex-end;
  list-style: none;
  display: flex;
}

.footer__nav li {
  margin-left: 1.5rem;
}

.footer__nav a {
  color: #777;
  transition: all .2s;
  text-decoration: none !important;
}

.footer__nav a:hover, .footer__nav a:active {
  color: #55c57a;
}

.footer__copyright {
  color: #999;
  justify-self: end;
}

@media only screen and (width <= 50em) {
  .footer__copyright {
    justify-self: center;
  }
}

.nav {
  align-items: center;
  display: flex;
}

@media only screen and (width <= 37.5em) {
  .nav {
    flex-direction: column;
  }
}

.nav--tours {
  flex: 0 40%;
}

@media only screen and (width <= 62.5em) {
  .nav--tours {
    margin-bottom: 1.5rem;
  }
}

@media only screen and (width <= 37.5em) {
  .nav--tours {
    margin-bottom: 0;
  }
}

.nav--user {
  flex: 0 40%;
  justify-content: flex-end;
}

.nav__el, .nav__el:link, .nav__el:visited {
  color: #f7f7f7;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.nav__el:hover, .nav__el:active {
  text-shadow: 0 .7rem 1rem #000;
  transform: translateY(-2px);
}

.nav__el:not(:last-child) {
  margin-right: 3rem;
}

@media only screen and (width <= 37.5em) {
  .nav__el:not(:last-child) {
    margin-bottom: 1.2rem;
    margin-right: 0;
  }
}

.nav__el:focus {
  outline: none;
}

.nav__el--cta {
  border-radius: 10rem;
  padding: 1rem 3rem;
  transition: all .3s;
  border: 1px solid !important;
}

.nav__el--cta:hover {
  color: #777;
  text-shadow: none;
  background-color: #f7f7f7;
  border-color: #f7f7f7;
}

.nav__search {
  align-items: center;
  display: flex;
}

@media only screen and (width <= 37.5em) {
  .nav__search {
    order: -1;
    margin-bottom: 1.2rem;
  }
}

.nav__search-btn {
  background: none;
  border: none;
  margin-right: .8rem;
  transform: translateY(1px);
}

.nav__search-btn svg {
  fill: #f7f7f7;
  width: 2rem;
  height: 2rem;
}

.nav__search-input {
  font-family: inherit;
  font-weight: inherit;
  text-transform: uppercase;
  color: #f7f7f7;
  background: none;
  border: none;
  border-bottom: 1px solid #999;
  width: 18rem;
  padding-bottom: 3px;
  font-size: 1.5rem;
  transition: all .3s;
}

.nav__search-input::-webkit-input-placeholder {
  color: #999;
}

.nav__search-input:-ms-placeholder-shown {
  color: #999;
}

.nav__search-input::placeholder {
  color: #999;
}

.nav__search-input:focus {
  border-bottom: 1px solid;
  outline: none;
  width: 25rem;
}

.nav__user-img {
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  margin-right: 1rem;
}

.side-nav {
  list-style: none;
}

.side-nav li {
  border-left: 0 solid #fff;
  margin: 1rem 0;
  transition: all .3s;
}

.side-nav--active, .side-nav li:hover {
  border-left: 4px solid #fff !important;
}

.side-nav--active a {
  transform: translateX(-3px);
}

.side-nav a:link, .side-nav a:visited {
  color: #fff;
  text-transform: uppercase;
  align-items: center;
  padding: 1rem 4rem;
  font-size: 1.5rem;
  font-weight: 400;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.side-nav a:hover, .side-nav a:active {
  transform: translateX(3px);
}

.side-nav svg {
  fill: #f7f7f7;
  width: 1.9rem;
  height: 1.9rem;
  margin-right: 2rem;
}

.admin-nav {
  margin-top: 5.5rem;
}

.admin-nav__heading {
  text-transform: uppercase;
  color: #f2f2f2;
  border-bottom: 1px solid;
  margin: 0 5rem 1.5rem 4rem;
  padding-bottom: 3px;
  font-size: 1.2rem;
}

.card-container {
  grid-gap: 7rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
}

.card {
  backface-visibility: hidden;
  background-color: #fff;
  border-radius: 3px;
  flex-direction: column;
  transition: all .3s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem #0000001a;
}

.card__header {
  position: relative;
}

.card__picture {
  clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 98%);
  height: 22rem;
  position: relative;
}

.card__picture-overlay {
  opacity: .7;
  background-image: linear-gradient(to bottom right, #7dd56f, #28b487);
  width: 100%;
  height: 100%;
  position: absolute;
}

.card__picture-img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.card__details {
  grid-row-gap: 1.75rem;
  grid-column-gap: 2rem;
  grid-template-columns: 1fr 1fr;
  padding: 2.5rem 3rem;
  display: grid;
}

.card__sub-heading {
  text-transform: uppercase;
  grid-column: 1 / -1;
  font-size: 1.2rem;
  font-weight: 700;
}

.card__text {
  grid-column: 1 / -1;
  margin-top: -1rem;
  margin-bottom: .75rem;
  font-size: 1.5rem;
  font-style: italic;
}

.card__data {
  align-items: center;
  font-size: 1.3rem;
  display: flex;
}

.card__data svg {
  margin-right: .7rem;
}

.card__icon {
  fill: #55c57a;
  width: 2rem;
  height: 2rem;
}

.card__footer {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #f7f7f7;
  border-top: 1px solid #f1f1f1;
  grid-template-columns: auto 1fr;
  margin-top: auto;
  padding: 2.5rem 3rem;
  font-size: 1.4rem;
  display: grid;
}

.card__footer-value {
  font-weight: 700;
}

.card__footer-text {
  color: #999;
}

.card__ratings {
  grid-row: 2 / 3;
}

.card .btn-small, .card .btn {
  grid-row: 1 / 3;
  place-self: center end;
}

.error {
  text-align: center;
  max-width: 80rem;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.error__title {
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.error__emoji {
  margin-left: 1rem;
  font-size: 3.75rem;
}

.error__msg {
  max-width: 50rem;
  margin: 0 auto;
  font-size: 2.5rem;
  font-weight: 700;
}

.login-form {
  background-color: #fff;
  border-radius: 5px;
  max-width: 55rem;
  margin: 0 auto;
  padding: 5rem 7rem;
  box-shadow: 0 2.5rem 8rem 2rem #0000000f;
}

.signup-form {
  background-color: #fff;
  border-radius: 5px;
  width: 60rem;
  margin: 0 auto;
  padding: 5rem 7rem;
  box-shadow: 0 2.5rem 8rem 2rem #0000000f;
}

.form__input {
  color: inherit;
  box-sizing: border-box;
  background-color: #f2f2f2;
  border: 3px solid #0000;
  border-left: none;
  border-right: none;
  border-radius: 4px;
  width: 100%;
  padding: 1.25rem 1.75rem;
  font-family: inherit;
  font-size: 1.5rem;
  transition: all .3s;
  display: block;
}

.form__input:focus {
  border-bottom: 3px solid #55c57a;
  outline: none;
}

.form__input:focus:invalid {
  border-bottom: 3px solid #ff7730;
}

.form__input::-webkit-input-placeholder {
  color: #bbb;
}

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

.form__label {
  margin-bottom: .75rem;
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
}

.form__photo-upload {
  align-items: center;
  font-size: 1.6rem;
  display: flex;
}

.form__user-photo {
  border-radius: 50%;
  width: 7.5rem;
  height: 7.5rem;
  margin-right: 2rem;
}

.form__upload {
  opacity: 0;
  z-index: -1;
  width: .1px;
  height: .1px;
  position: absolute;
  overflow: hidden;
}

.form__upload:focus + label {
  outline-offset: 3px;
  outline: 3px solid #55c57a;
}

.form__upload + label {
  color: #55c57a;
  cursor: pointer;
  border-bottom: 1px solid #55c57a;
  padding: 3px;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

.form__upload + label:hover {
  color: #fff;
  background-color: #55c57a;
  transform: translateY(-2px);
  box-shadow: 0 1rem 2rem #00000026;
}

.form__password-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.form__password-toggle {
  color: #999;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  right: 12px;
}

.form__password-toggle:hover {
  color: #555;
}

.form__group--utils {
  justify-content: space-between;
  align-items: center;
  font-size: 1.4px;
  display: flex;
}

.form__remember-box {
  align-items: center;
  gap: 18px;
  display: flex;
}

.form__link {
  color: #20bf6b;
  font-size: 16px;
  text-decoration: none;
}

.form__link:hover {
  text-decoration: underline;
}

.login-form__footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.4rem;
}

.btn:disabled {
  cursor: not-allowed;
  color: #666;
  background-color: #ccc;
}
/*# sourceMappingURL=main.css.map */
