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

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

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

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

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

body {
  line-height: 1.6;
  font-weight: 300;
  font-family: 'Lato', sans-serif;
  color: #777;
  padding: 3rem;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

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

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  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 {
  margin: 6rem 0;
  width: 100%;
  height: 1px;
  background-color: #e0e0e0;
}

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

.heading-secondary {
  font-size: 2.25rem;
  text-transform: uppercase;
  font-weight: 700;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#7dd56f),
    to(#28b487)
  );
  background-image: linear-gradient(to right, #7dd56f, #28b487);
  -webkit-background-clip: text;
  color: transparent;
  letter-spacing: 0.1rem;
  line-height: 1.3;
  display: inline-block;
}
.heading-secondary--error {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#ff7730),
    to(#eb4d4b)
  );
  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 {
  padding: 1rem 1.5rem;
  line-height: 1;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(rgba(125, 213, 111, 0.85)),
    to(rgba(40, 180, 135, 0.85))
  );
  background-image: linear-gradient(
    to bottom right,
    rgba(125, 213, 111, 0.85),
    rgba(40, 180, 135, 0.85)
  );
}

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

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

.btn,
.btn:link,
.btn:visited {
  font-size: 1.6rem;
  padding: 1.4rem 3rem;
  border-radius: 10rem;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  font-weight: 400;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /*Add later when we use this for the button in form*/
  border: none;
  cursor: pointer;
}

.btn:hover {
  -webkit-transform: translateY(-3px);
  transform: translateY(-3px);
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.btn:active {
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

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

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

.btn--green {
  background-color: #55c57a;
  color: #fff;
}
.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 {
  background-color: #55c57a;
  color: #fff;
  font-size: 1.4rem;
  padding: 1.25rem 3rem;
  border-radius: 10rem;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
  border: none;
}

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

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

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

.btn-text:active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

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

.header {
  background-color: #444;
  padding: 0 5rem;
  height: 8rem;
  position: relative;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* @media only screen and (max-width: 62.5em) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
} */
.header__logo img {
  height: 3.5rem;
}
/* @media only screen and (max-width: 62.5em) {
  .header__logo {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 1.5rem;
  }
} */

.section-header {
  position: relative;
  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%
  );
}

.header__hero {
  height: 100%;
}

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

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

.heading-box {
  position: absolute;
  bottom: 13vw;
  left: 50%;
  top: 35%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.heading-box__group {
  color: #f7f7f7;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.heading-box__detail {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
}
.heading-box__detail svg {
  margin-right: 0.8rem;
}
.heading-box__detail:not(:last-child) {
  margin-right: 4rem;
}
.heading-box__icon {
  height: 2rem;
  width: 2rem;
  fill: currentColor;
  -webkit-filter: drop-shadow(0 0.75rem 0.5rem rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0 0.75rem 0.5rem rgba(0, 0, 0, 0.25));
}

.section-description {
  background-color: #fcfcfc;
  margin-top: calc(0px - var(--section-rotate));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section-description > * {
  padding: 0 8vw;
  padding-top: 14vw;
  padding-bottom: calc(1vw + var(--section-rotate));
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  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;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.overview-box__group:not(:last-child) {
  margin-bottom: 7rem;
}
.overview-box__detail {
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 400;
}
.overview-box__detail svg {
  margin-right: 1.25rem;
}
.overview-box__detail:not(:last-child) {
  margin-bottom: 2.25rem;
}
.overview-box__icon {
  height: 2.25rem;
  width: 2.25rem;
  fill: #55c57a;
}
.overview-box__label {
  font-weight: 700;
  margin-right: 2.25rem;
  text-transform: uppercase;
  font-size: 1.4rem;
}
.overview-box__text {
  text-transform: capitalize;
}
.overview-box__img {
  border-radius: 50%;
  height: 3.5rem;
  margin-right: 1.25rem;
}

.section-pictures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  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));
  position: relative;
  z-index: 1000;
}

.picture-box__img {
  display: block;
  width: 100%;
  height: 110%;
  -o-object-fit: cover;
  object-fit: cover;
}
.picture-box__img--1 {
  padding-top: 15%;
}
.picture-box__img--2 {
  padding-bottom: 15%;
}
.picture-box__img--3 {
  padding-bottom: 27%;
}

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

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

.marker {
  background-image: url('../img/pin.png');
  background-size: cover;
  width: 32px;
  height: 40px;
  cursor: pointer;
}

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

.mapboxgl-popup-content {
  text-align: center;
  font-family: 'Lato', sans-serif;
  padding: 1.5rem !important;
  font-size: 1.4rem;
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15) !important;
}

.section-reviews {
  margin-top: calc(0px - var(--section-rotate));
  padding: calc(5rem + var(--section-rotate)) 0;
  position: relative;
  z-index: 1000;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#7dd56f),
    to(#28b487)
  );
  background: linear-gradient(to right bottom, #7dd56f, #28b487);
  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%
  );
}

.reviews {
  padding: 5rem 0;
  display: grid;
  grid-column-gap: 6rem;
  grid-auto-flow: column;
  overflow-x: scroll;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}
.reviews__card {
  width: 30rem;
  padding: 4rem;
  background-color: #f7f7f7;
  border-radius: 3px;
  -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  scroll-snap-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.reviews:before,
.reviews:after {
  content: '';
  width: 2rem;
}
.reviews__avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 2rem;
}
.reviews__avatar-img {
  height: 4.5rem;
  border-radius: 50%;
  margin-right: 1.5rem;
}
.reviews__user {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.reviews__text {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-style: italic;
  font-weight: 400;
}
.reviews__rating {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.reviews__star {
  height: 2rem;
  width: 2rem;
  margin-right: 1px;
}
.reviews__star--active {
  fill: #55c57a;
}
.reviews__star--inactive {
  fill: #bbb;
}

.section-reviews__header {
  display: flex;
  justify-content: flex-end;
  max-width: 120rem;
  margin: 0 auto;
  padding: 2rem 4rem 0 4rem;
}

.btn-write-review {
  --brand-1: #7dd56f;
  --brand-2: #28b487;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.4rem;
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 0.4rem 1.2rem rgba(40, 180, 135, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.btn-write-review::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #28b487 0%, #1f8f6c 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 0;
}

.btn-write-review > * {
  position: relative;
  z-index: 1;
}

.btn-write-review__icon {
  height: 1.8rem;
  width: 1.8rem;
  fill: currentColor;
  stroke: currentColor;
  transition: transform 0.35s ease;
}

.btn-write-review__label {
  white-space: nowrap;
}

.btn-write-review__stars {
  display: inline-flex;
  align-items: center;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.35s ease, opacity 0.25s ease, margin-left 0.25s ease;
}

.btn-write-review__star {
  height: 1.6rem;
  width: 1.6rem;
  margin-left: 2px;
  fill: #ffd76b;
  stroke: #ffd76b;
  transform: scale(0.6);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.btn-write-review:hover,
.btn-write-review:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 0.8rem 2rem rgba(40, 180, 135, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.btn-write-review:hover::before,
.btn-write-review:focus-visible::before {
  opacity: 1;
}

.btn-write-review:hover .btn-write-review__icon {
  transform: rotate(-12deg) scale(1.1);
}

.btn-write-review:hover .btn-write-review__stars,
.btn-write-review:focus-visible .btn-write-review__stars {
  max-width: 12rem;
  opacity: 1;
  margin-left: 0.4rem;
}

.btn-write-review:hover .btn-write-review__star,
.btn-write-review:focus-visible .btn-write-review__star {
  transform: scale(1);
  opacity: 1;
}

.btn-write-review:hover .btn-write-review__star:nth-child(1) { transition-delay: 0.02s; }
.btn-write-review:hover .btn-write-review__star:nth-child(2) { transition-delay: 0.08s; }
.btn-write-review:hover .btn-write-review__star:nth-child(3) { transition-delay: 0.14s; }
.btn-write-review:hover .btn-write-review__star:nth-child(4) { transition-delay: 0.2s; }
.btn-write-review:hover .btn-write-review__star:nth-child(5) { transition-delay: 0.26s; }

.btn-write-review:active {
  transform: translateY(0);
  box-shadow: 0 0.3rem 0.8rem rgba(40, 180, 135, 0.4),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

@media (max-width: 56.25em) {
  .btn-write-review {
    padding: 1rem 2rem;
    font-size: 1.3rem;
  }
  .btn-write-review__icon {
    height: 1.6rem;
    width: 1.6rem;
  }
  .btn-write-review:hover .btn-write-review__stars,
  .btn-write-review:focus-visible .btn-write-review__stars {
    max-width: 9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-write-review,
  .btn-write-review *,
  .btn-write-review::before {
    transition: none !important;
  }
}

.hidden {
  display: none !important;
}

.review-form-container {
  grid-column: 1 / -1;
  max-width: 60rem;
  margin: 4rem auto 0 auto;
  padding: 3rem 4rem;
  background-color: #f7f7f7;
  border-radius: 3px;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
}

.review-form .form__group {
  margin-bottom: 2rem;
}

.review-form textarea.form__input {
  width: 100%;
  resize: vertical;
  font-family: inherit;
  font-size: 1.5rem;
  padding: 1.25rem 1.75rem;
}

.review-form__rating {
  display: flex;
  cursor: pointer;
}

.review-form__star {
  height: 2.5rem;
  width: 2.5rem;
  margin-right: 4px;
  fill: #bbb;
  transition: fill 0.15s;
}

.review-form__star--active {
  fill: #55c57a;
}

.review-form__login {
  font-size: 1.5rem;
  text-align: center;
}

.review-form__login a {
  color: #55c57a;
  text-decoration: none;
  font-weight: 700;
}

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

.cta {
  position: relative;
  max-width: 105rem;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
  padding: 9rem 5rem 9rem 21rem;
  border-radius: 2rem;
  -webkit-box-shadow: 0 3rem 8rem 0.5rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 3rem 8rem 0.5rem rgba(0, 0, 0, 0.15);
}
.cta__img {
  height: 15rem;
  width: 15rem;
  position: absolute;
  left: 0;
  top: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 1rem 0.5rem 3rem rgba(0, 0, 0, 0.15);
  box-shadow: 1rem 0.5rem 3rem rgba(0, 0, 0, 0.15);
}
.cta__img--logo {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#7dd56f),
    to(#28b487)
  );
  background: linear-gradient(to right bottom, #7dd56f, #28b487);
  z-index: 10;
  -webkit-transform: translate(-35%, -50%);
  transform: translate(-35%, -50%);
}
.cta__img--logo img {
  width: 100%;
}
.cta__img--1 {
  -webkit-transform: translate(-10%, -50%) scale(0.97);
  transform: translate(-10%, -50%) scale(0.97);
  z-index: 9;
}
.cta__img--2 {
  -webkit-transform: translate(15%, -50%) scale(0.94);
  transform: translate(15%, -50%) scale(0.94);
  z-index: 8;
}
.cta__content {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr auto;
  grid-gap: 0.7rem;
  grid-auto-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.cta__text {
  font-size: 1.9rem;
  font-weight: 400;
}

.user-view {
  background-color: #fff;
  max-width: 120rem;
  margin: 0 auto;
  min-height: 100vh;
  border-radius: 3px;
  overflow: hidden;
  -webkit-box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.07);
  box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.user-view__menu {
  -webkit-box-flex: 32rem;
  -ms-flex: 32rem 0 0px;
  flex: 32rem 0 0;
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#7dd56f),
    to(#28b487)
  );
  background-image: linear-gradient(to right bottom, #7dd56f, #28b487);
  padding: 4rem 0;
}
.user-view__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 7rem 0;
}
.user-view__form-container {
  max-width: 68rem;
  margin: 0 auto;
  padding: 0 8rem;
}

.footer {
  background-color: #f7f7f7;
  padding: 6rem 4rem 3rem 4rem;
  font-size: 1.4rem;
  display: grid;
  grid-template-columns: auto auto;
  grid-row-gap: 0.75rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
/* @media only screen and (max-width: 50em) {
  .footer {
    grid-template-columns: 1fr;
    grid-row-gap: 1.25rem;
    justify-items: center;
  }
} */
.footer__logo {
  grid-row: 1 / 3;
  -ms-flex-item-align: center;
  align-self: center;
}
/* @media only screen and (max-width: 50em) {
  .footer__logo {
    grid-row: 1;
  }
} */
.footer__logo img {
  height: 3rem;
}
.footer__nav {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.75rem;
  font-weight: 500;
}
.footer__nav li {
  margin-left: 1.5rem;
}
.footer__nav a {
  color: #777;
  text-decoration: none !important;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.footer__nav a:hover,
.footer__nav a:active {
  color: #55c57a;
}
.footer__copyright {
  justify-self: end;
  color: #999;
}
/* @media only screen and (max-width: 50em) {
  .footer__copyright {
    justify-self: center;
  }
} */

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* @media only screen and (max-width: 37.5em) {
  .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
} */
.nav--tours {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
}
/* @media only screen and (max-width: 62.5em) {
  .nav--tours {
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .nav--tours {
    margin-bottom: 0;
  }
} */
.nav--user {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.nav__el,
.nav__el:link,
.nav__el:visited {
  color: #f7f7f7;
  text-transform: uppercase;
  font-size: 1.6rem;
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  font-weight: 400;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav__el:hover,
.nav__el:active {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  text-shadow: 0 0.7rem 1rem black;
}
.nav__el:not(:last-child) {
  margin-right: 3rem;
}
/* @media only screen and (max-width: 37.5em) {
  .nav__el:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1.2rem;
  }
} */
.nav__el:focus {
  outline: none;
}
.nav__el--cta {
  padding: 1rem 3rem;
  border-radius: 10rem;
  border: 1px solid currentColor !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav__el--cta:hover {
  background-color: #f7f7f7;
  color: #777;
  text-shadow: none;
  border-color: #f7f7f7;
}
.nav__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/* @media only screen and (max-width: 37.5em) {
  .nav__search {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 1.2rem;
  }
} */
.nav__search-btn {
  background: none;
  border: none;
  margin-right: 0.8rem;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}
.nav__search-btn svg {
  height: 2rem;
  width: 2rem;
  fill: #f7f7f7;
}
.nav__search-input {
  font-family: inherit;
  font-weight: inherit;
  text-transform: uppercase;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #f7f7f7;
  padding-bottom: 3px;
  border-bottom: 1px solid #999;
  width: 18rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.nav__search-input::-webkit-input-placeholder {
  color: #999;
}
.nav__search-input:-ms-input-placeholder {
  color: #999;
}
.nav__search-input::-ms-input-placeholder {
  color: #999;
}
.nav__search-input::placeholder {
  color: #999;
}
.nav__search-input:focus {
  outline: none;
  width: 25rem;
  border-bottom: 1px solid currentColor;
}
.nav__user-img {
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 50%;
  margin-right: 1rem;
}

.side-nav {
  list-style: none;
}
.side-nav li {
  margin: 1rem 0;
  border-left: 0 solid #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.side-nav--active,
.side-nav li:hover {
  border-left: 4px solid #fff !important;
}
.side-nav--active a {
  -webkit-transform: translateX(-3px);
  transform: translateX(-3px);
}
.side-nav a:link,
.side-nav a:visited {
  padding: 1rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.side-nav a:hover,
.side-nav a:active {
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
.side-nav svg {
  height: 1.9rem;
  width: 1.9rem;
  fill: #f7f7f7;
  margin-right: 2rem;
}

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

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

.card {
  border-radius: 3px;
  overflow: hidden;
  -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
  background-color: #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.card__header {
  position: relative;
}
.card__picture {
  position: relative;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 98%);
  clip-path: polygon(0 0, 100% 0%, 100% 83%, 0% 98%);
  height: 22rem;
}
.card__picture-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    right bottom,
    from(#7dd56f),
    to(#28b487)
  );
  background-image: linear-gradient(to right bottom, #7dd56f, #28b487);
  opacity: 0.7;
}
.card__picture-img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 1.75rem;
  grid-column-gap: 2rem;
  padding: 2.5rem 3rem;
}
.card__sub-heading {
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  grid-column: 1 / -1;
}
.card__text {
  grid-column: 1 / -1;
  font-size: 1.5rem;
  font-style: italic;
  margin-top: -1rem;
  margin-bottom: 0.75rem;
}
.card__data {
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.card__data svg {
  margin-right: 0.7rem;
}
.card__icon {
  height: 2rem;
  width: 2rem;
  fill: #55c57a;
}
.card__footer {
  background-color: #f7f7f7;
  padding: 2.5rem 3rem;
  border-top: 1px solid #f1f1f1;
  font-size: 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-top: auto;
}
.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;
  justify-self: end;
  -ms-flex-item-align: center;
  align-self: center;
}

.error {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 80rem;
  text-align: center;
}
.error__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.error__emoji {
  font-size: 3.75rem;
  margin-left: 1rem;
}
.error__msg {
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 50rem;
  margin: 0 auto;
}

.login-form {
  margin: 0 auto;
  max-width: 55rem;
  background-color: #fff;
  -webkit-box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.06);
  box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.06);
  padding: 5rem 7rem;
  border-radius: 5px;
}

.form__input {
  display: block;
  font-family: inherit;
  font-size: 1.5rem;
  color: inherit;
  padding: 1.25rem 1.75rem;
  border: none;
  width: 100%;
  background-color: #fff;
  background-color: #f2f2f2;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* Pseudo element (a visible thing that isn't really in the DOM).
      Also needs -ms- */
}
.form__input:focus {
  outline: none;
  border-bottom: 3px solid #55c57a;
}
.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 {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

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

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

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

.form__upload + label {
  color: #55c57a;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #55c57a;
  padding: 3px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
}
.form__upload + label:hover {
  background-color: #55c57a;
  color: #fff;
  -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

/* RESPOSIVE  */
@media only screen and (max-width: 75em) {
  .header {
    /* background: red; */
  }

  .main {
    padding: 6rem 4rem;
    grid-template-columns: repeat(3, 1fr);
    max-width: 120rem;
  }
  .card-container {
    max-width: 110rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem 20px;
  }

  .card {
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
    box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.1);
    background-color: #fff;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .card__footer {
    padding: 2rem 2.4rem;
  }
  .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;
    justify-self: end;
    -ms-flex-item-align: center;
    align-self: center;
  }

  .footer {
    grid-template-columns: 1fr;
    grid-row-gap: 1.25rem;
    justify-items: center;
  }
  .footer__logo {
    grid-row: 1;
  }
  .footer__copyright {
    justify-self: center;
  }
}
@media only screen and (max-width: 62.5em) {
  .header {
    display: flex;
    align-items: center;
  }
  .heading-primary {
    font-size: 4rem;
  }

  .heading-tertirary {
    font-size: 2.25rem;
  }
  .card-container {
    gap: 4rem;
  }

  .section-map {
    height: 52rem;
  }

  .card__details {
    grid-row-gap: 1rem;
    grid-column-gap: 1rem;
    padding: 2rem 2rem;
  }
  .card__sub-heading {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    grid-column: 1 / -1;
  }
  .card__text {
    grid-column: 1 / -1;
    font-size: 1.5rem;
    font-style: italic;
    margin-top: -1rem;
    margin-bottom: 0.75rem;
  }
  .card__data {
    font-size: 1.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .card__data svg {
    margin-right: 0.7rem;
  }
  .card__icon {
    height: 2rem;
    width: 2rem;
    fill: #55c57a;
  }
  .card__footer {
    padding: 1.5rem 1.5rem;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-top: auto;
  }
  .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;
    justify-self: end;
    -ms-flex-item-align: center;
    align-self: center;
  }
  .btn--small {
    padding: 1rem 2rem !important;
    font-size: 1.4rem !important;
  }

  .nav--tours {
    margin-bottom: 0.2rem;
    margin-left: 25.1px;
  }
  .nav__search {
    display: none;
  }

  .header__logo {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 1.5rem;
    height: 2.4rem;
  }
  .nav--tours {
    margin-bottom: 1.5rem;
  }
}

@media only screen and (max-width: 57em) {
  .card__details {
    grid-row-gap: 1rem;
    grid-column-gap: 1rem;
    padding: 1.8rem 1.8rem;
  }
  .card__footer {
    padding: 1rem 1rem;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-top: auto;
  }
  .card__picture {
    height: 20rem 200px;
  }
}

@media only screen and (max-width: 52em) {
  html {
    font-size: 56.25%;
  }
  .heading-primary {
    font-size: 3rem;
  }

  .header {
    /* background: hotpink; */
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  /* 
  .header nav {
    font-size: 1.6rem;
  } */

  .nav__el:not(:last-child) {
    /* margin-right: 3rem; */
    margin: 0 auto;
    font-size: 1.6rem;
  }

  .card-container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 64rem;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 1.25rem;
    justify-items: center;
  }
  .footer__logo {
    grid-row: 1;
  }
  .footer__copyright {
    justify-self: center;
  }
}

@media only screen and (max-width: 45em) {
  html {
    font-size: 46.25%;
  }
  .cta {
    max-width: 105rem;
    margin: 0 auto;
    padding: 6rem 3rem 5rem 18rem;
  }
}

@media only screen and (max-width: 38em) {
  /* .header {
    display: grid;
    grid-template-columns: 8.2rem 8.4rem 1fr;
    padding: 1px 39px;
  } */

  .header {
    display: grid;
    grid-template-columns: 4.2rem 4.4rem 1fr;
    padding: 1px 39px;
  }
  /* 
  .nav__el--cta {
    justify-self: end;
    padding: 1.6rem 3.2rem;
    width: 13.2rem;
    margin-right: 7.2rem;
    margin-top: 1rem 7.08px;
  } */

  .heading-tertirary {
    font-size: 2rem;
  }
  .card-container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 64rem;
    grid-gap: 1.8rem 18px;
  }

  .card {
    max-width: 34.2rem;
    margin: 0 auto;
  }

  .card__picture {
    height: 20rem;
  }
  .card__picture-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: -webkit-gradient(
      linear,
      left top,
      right bottom,
      from(#7dd56f),
      to(#28b487)
    );
    background-image: linear-gradient(to right bottom, #7dd56f, #28b487);
    opacity: 0.7;
  }
  .card__picture-img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  .card__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 1.75rem;
    grid-column-gap: 2rem;
    padding: 1.6rem 2.4rem;
  }
  .card__sub-heading {
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
    grid-column: 1 / -1;
  }
  .card__text {
    grid-column: 1 / -1;
    font-size: 1.2rem;
    font-style: italic;
    margin-top: -1rem;
    margin-bottom: 0.75rem;
  }
  .card__data {
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .card__data svg {
    margin-right: 0.7rem;
  }
  .card__icon {
    height: 2rem;
    width: 2rem;
    fill: #55c57a;
  }
  .card__footer {
    background-color: #f7f7f7;
    padding: 1.8rem 2rem;
    border-top: 1px solid #f1f1f1;
    font-size: 1.2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-top: auto;
  }
  .card__footer-value {
    font-weight: 700;
  }
  .card__footer-text {
    color: #999;
  }
  .card__ratings {
    grid-row: 2 / 3;
  }
  .card.btn-small,
  .card.btn {
    font-size: 1rem;
  }

  .footer__nav {
    grid-template-columns: repeat(5, 1fr);
    margin-top: 1rem 0;
    font-size: 1.4rem;
  }

  .nav {
    justify-content: flex-end;
    /* margin-left: 35rem; */
    margin-left: 28rem;
  }

  .nav--tours {
    margin-bottom: 0;
    margin-left: -2.8rem;
  }
  /* .nav__el:not(:last-child),
  .nav__el--cta {
    margin-right: 0;
    margin-bottom: 1.2rem;
    display: none;
  } */

  .nav__el:not(:last-child),
  .nav__el--cta {
    margin-right: 0;
    margin-bottom: 0.2rem;
    margin-right: 3rem;
    /* display: none; */
  }

  /* .nav__el--cta {
    justify-self: center;
    padding: 1.6rem 3.2rem;
    width: 1.2rem;
    margin-right: 7.2rem;
    margin-top: 1rem 7.08px;
  } */

  .nav__el--cta {
    justify-self: center;
    /* padding: 1.2rem 1.6rem; */
    padding: 1.2rem 1rem;
    font-size: 1.2rem;
    max-width: -7.8rem;
    margin-right: 0.2rem;
    margin-top: 1rem 7.08px;
  }

  .footer {
    margin-top: 0;
  }

  .footer__nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.2rem;
    justify-content: space-evenly;
    margin: 1.2rem 0 1.2rem 0;
  }

  .footer__nav li a {
    font-size: 2rem;
    font-weight: 550;
  }

  .section-map {
    height: 45rem;
  }

  html {
    font-size: 44.25%;
  }
  /* .cta {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 1.2rem;
    /* padding: 4rem 2rem 2rem 18rem; */
  */ .user-view {
    max-width: 120rem;
    margin: 0 auto;
    min-height: 100vh;
    border-radius: 3px;
    overflow: hidden;
    -webkit-box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.07);
    box-shadow: 0 2.5rem 8rem 2rem rgba(0, 0, 0, 0.07);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .user-view__form-container {
    padding: 0 3rem;
  }

  .user-view__menu {
    -webkit-box-flex: 32rem;
    -ms-flex: 32rem 0 0px;
    flex: 27rem 0 0;
    padding: 4rem 0;
  }

  .section-cta.cta {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1.2rem;
  }
}

@media only screen and (max-width: 35em) {
  html {
    font-size: 43.75%;
  }

  .nav__el--cta {
    justify-self: center;
    /* padding: 0.8rem 1.2rem; */
    padding: 0.8rem 1rem;
    font-size: 1rem;
    max-width: -7.8rem;
    margin-right: 0.2rem;
    margin-top: 1rem 7.08px;
  }

  .nav {
    justify-content: flex-end;
    /* margin-left: 35rem; */
    margin-left: 11rem;
  }
}

@media only screen and (max-width: 32em) {
  html {
    font-size: 37.5%;
  }

  .main {
    padding: 4rem 3.6rem;
    max-width: 120rem;
  }
  a.nav__el.nav__el--cta {
    font-size: 1.09rem;
  }

  .footer__nav li a {
    font-size: 1.8rem;
  }

  .footer__nav {
    grid-template-columns: 1fr;
    gap: -0.8rem;
    justify-content: space-evenly;
    margin: 1.2rem 0 1.2rem 0;
  }

  .cta__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .cta__text {
    font-size: 1.9rem;
    padding: 3.2rem;
    font-weight: 400;
  }

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

  /* .heading-secondary {
    grid-area: 1/1/2/4;
  } */
  /* .cta {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  } */
}

/* ===== Admin manage pages ===== */
.manage-page {
  padding: 3rem 4rem;
}
.manage-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.manage-page__note {
  font-size: 1.3rem;
  color: #999;
  font-style: italic;
}
.manage-table-wrap {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.06);
}
.manage-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  min-width: 60rem;
}
.manage-table thead {
  background: linear-gradient(135deg, #7dd56f 0%, #28b487 100%);
  color: #fff;
}
.manage-table th {
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.manage-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}
.manage-table tbody tr:hover {
  background: #f7fbf8;
}
.manage-table tbody tr:last-child td {
  border-bottom: none;
}
.manage-table__avatar {
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  object-fit: cover;
}
.manage-table__review {
  max-width: 32rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.manage-table__actions {
  display: flex;
  gap: 0.6rem;
  white-space: nowrap;
}
.manage-table__empty {
  text-align: center;
  padding: 3rem !important;
  color: #999;
  font-style: italic;
}

.role-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 999px;
  text-transform: capitalize;
  background: #eef;
  color: #557;
}
.role-badge--admin {
  background: #fde6e6;
  color: #a33;
}
.role-badge--lead-guide {
  background: #fff1d6;
  color: #a76b00;
}
.role-badge--guide {
  background: #e2f3ff;
  color: #1e6fb2;
}
.role-badge--user {
  background: #e8f5ec;
  color: #2c7a4a;
}

.rating-pill {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 999px;
  background: #fff7d6;
  color: #8b6a00;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.2rem;
  width: 3.2rem;
  padding: 0;
  border: 1px solid #d8e7dc;
  background: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn-icon svg {
  height: 1.6rem;
  width: 1.6rem;
  fill: none;
  stroke: #4a7a55;
  stroke-width: 2;
}
.btn-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.08);
  background: #f7fbf8;
}
.btn-icon--danger svg {
  stroke: #c0392b;
}
.btn-icon--danger:hover {
  background: #fdecea;
  border-color: #f3c4be;
}

/* ===== Admin modal ===== */
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.admin-modal.hidden {
  display: none;
}
.admin-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 40, 30, 0.55);
  backdrop-filter: blur(2px);
}
.admin-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 56rem;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.25);
  animation: admin-modal-in 0.2s ease;
}
@keyframes admin-modal-in {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.admin-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 2rem;
  border-bottom: 1px solid #eee;
}
.admin-modal__title {
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
}
.admin-modal__close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.admin-modal__close svg {
  height: 1.8rem;
  width: 1.8rem;
  stroke: #555;
  fill: none;
  stroke-width: 2;
}
.admin-modal__close:hover {
  background: #f3f3f3;
}
.admin-modal__form {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.admin-modal__body {
  padding: 1.8rem 2rem;
  overflow-y: auto;
  flex: 1;
}
.admin-modal__foot {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.4rem 2rem;
  border-top: 1px solid #eee;
  background: #fafafa;
}
.admin-form__group {
  margin-bottom: 1.6rem;
}
.admin-form__group:last-child {
  margin-bottom: 0;
}
.admin-form__label {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 0.6rem;
}
.admin-form__input {
  width: 100%;
  padding: 1rem 1.2rem;
  font-family: inherit;
  font-size: 1.4rem;
  border: 1px solid #d8e0d9;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.admin-form__input:focus {
  outline: none;
  border-color: #55c57a;
  box-shadow: 0 0 0 3px rgba(85, 197, 122, 0.18);
}
textarea.admin-form__input {
  resize: vertical;
  min-height: 8rem;
}
.btn--white {
  background: #fff;
  color: #444;
  border: 1px solid #d8e0d9;
}
.btn--white:hover {
  background: #f7f7f7;
}

.btn--red {
  background: linear-gradient(135deg, #ff7675 0%, #d63031 100%);
  color: #fff;
  border: none;
  box-shadow: 0 0.4rem 1.2rem rgba(214, 48, 49, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn--red:hover {
  transform: translateY(-1px);
  box-shadow: 0 0.6rem 1.6rem rgba(214, 48, 49, 0.4);
  filter: brightness(1.05);
}

.admin-modal__dialog--sm {
  max-width: 42rem;
}

.admin-confirm__message {
  font-size: 1.5rem;
  color: #444;
  margin: 0;
  line-height: 1.5;
}

/* ===== My reviews ===== */
.my-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
  gap: 2rem;
}
.my-review-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.my-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.1);
}
.my-review-card__img {
  width: 100%;
  height: 14rem;
  object-fit: cover;
  display: block;
}
.my-review-card__body {
  padding: 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}
.my-review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.my-review-card__tour {
  font-size: 1.5rem;
  font-weight: 700;
  color: #28b487;
  text-decoration: none;
}
.my-review-card__tour:hover {
  text-decoration: underline;
}
.my-review-card__text {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.my-review-card__date {
  font-size: 1.2rem;
  color: #999;
  margin: 0;
  margin-top: auto;
}

/* ===== Billing ===== */
.billing-summary {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.billing-summary__stat {
  flex: 1;
  min-width: 18rem;
  background: linear-gradient(135deg, #7dd56f 0%, #28b487 100%);
  color: #fff;
  border-radius: 10px;
  padding: 2rem 2.4rem;
  box-shadow: 0 0.8rem 2rem rgba(40, 180, 135, 0.25);
}
.billing-summary__stat:nth-child(2) {
  background: linear-gradient(135deg, #5f9ee2 0%, #2b6cb0 100%);
  box-shadow: 0 0.8rem 2rem rgba(43, 108, 176, 0.25);
}
.billing-summary__label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 0.4rem;
}
.billing-summary__value {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
}

/* ===== Empty state ===== */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.04);
}
.empty-state__icon {
  height: 5rem;
  width: 5rem;
  fill: #ccc;
  margin-bottom: 1.5rem;
}
.empty-state__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #444;
  margin: 0 0 0.8rem;
}
.empty-state__text {
  font-size: 1.4rem;
  color: #888;
  max-width: 40rem;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

/* Compact tour cards for /my-tours right-side panel */
.card-container--compact {
  max-width: 100%;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 3rem;
}
.card-container--compact .card__picture {
  height: 14rem;
}
.card-container--compact .card__details {
  grid-row-gap: 1rem;
  grid-column-gap: 1.2rem;
  padding: 1.5rem 1.8rem;
}
.card-container--compact .card__sub-heading {
  font-size: 1rem;
}
.card-container--compact .card__text {
  font-size: 1.2rem;
  margin-top: -0.5rem;
  margin-bottom: 0.4rem;
}
.card-container--compact .card__data {
  font-size: 1.1rem;
}
.card-container--compact .card__icon {
  height: 1.5rem;
  width: 1.5rem;
}
.card-container--compact .card__footer {
  padding: 1.5rem 1.8rem;
  font-size: 1.2rem;
}
@media only screen and (max-width: 75em) {
  .card-container--compact {
    grid-template-columns: 1fr;
  }
}
