/*********************** ANIMATIONS ***********************/
/*********************** MISC ***********************/
/*********************** SECTIONS ***********************/
/**************** RESPONSIVE ****************/
/*
0 - 600:      phone
600 - 900:    Tablet portrait
900 - 1200:   Tablet landscape
1200 - 1800:  Initial CSS
1800+ :       Big desktop 

&breakpoints
  - phone
  - tab-port
  - tab-land
  - big-desktop
*/
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes pulsate {
  0% {
    transform: scale(1.01); }
  30% {
    transform: scale(1.03); }
  100% {
    transform: scale(1.01); } }

@keyframes pulsateMore {
  0% {
    transform: scale(1.01); }
  30% {
    transform: scale(1.08); }
  100% {
    transform: scale(1.01); } }

@keyframes pulsateBigger {
  0% {
    transform: scale(1.01); }
  30% {
    transform: scale(1.12); }
  100% {
    transform: scale(1.01); } }

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

*:active {
  -webkit-tap-highlight-color: transparent; }

html {
  font-size: 62.5%;
  overflow-y: scroll; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%;
      /* 1rem = 9px */ } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%;
      /* 1rem = 8px */ } }
  @media only screen and (min-width: 112.5em) {
    html {
      font-size: 75%;
      /* 1rem = 12px */ } }

body {
  font-family: 'Libre Franklin', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  box-sizing: border-box; }

ul {
  list-style: none;
  padding: 0;
  margin: 0; }

::selection {
  color: #fff;
  background-color: #708160; }

.content-box {
  position: relative;
  padding-bottom: 20rem; }

.main {
  min-height: 60vh;
  overflow: hidden; }
  .main.home {
    padding-top: 0; }

form {
  margin-bottom: 1rem;
  font-size: 1.6rem; }
  form .form__group {
    position: relative;
    display: block; }
    form .form__group a:focus {
      outline: none; }
    form .form__group--psw a {
      position: absolute;
      top: 1.3rem;
      right: 1.2rem; }
    form .form__group--psw svg {
      fill: #cfcccc;
      height: 2.7rem;
      width: 2.7rem;
      pointer-events: none; }
  form input:not([type='checkbox']) {
    display: block;
    width: 100%;
    padding: 0.4rem 1rem;
    font-size: 1.6rem;
    line-height: 2;
    outline: none;
    border: none;
    border-bottom: 5px solid transparent;
    border-top: 5px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease-in; }
    form input:not([type='checkbox']):not(:last-child) {
      margin-bottom: 5rem; }
    form input:not([type='checkbox']):focus {
      outline: 3px solid rgba(171, 92, 39, 0.3); }
      form input:not([type='checkbox']):focus:valid {
        border-bottom: 5px solid #21bf73; }
      form input:not([type='checkbox']):focus:not(:valid) {
        border-bottom: 5px solid #e62929; }
    form input:not([type='checkbox']):not(:placeholder-shown) + label {
      font-size: 1.1rem;
      transform: translateY(5.3rem);
      opacity: 1;
      visibility: visible; }
  form label {
    display: block;
    position: absolute;
    top: 0.6rem;
    left: 0.85rem;
    visibility: hidden;
    opacity: 0;
    font-size: 1.6rem;
    line-height: 2;
    transition: all 0.3s ease-out; }

.pulsate:hover {
  animation: pulsateMore 1s ease-out;
  animation-iteration-count: infinite; }

.pulsateAlways {
  animation: pulsateMore 1s ease-out;
  animation-iteration-count: infinite; }

.pulsateBigger:hover {
  animation: pulsateBigger 1s ease-out;
  animation-iteration-count: infinite; }

.goUp {
  transition: all 0.3s ease; }
  .goUp:hover {
    transform: translateY(-4px); }

.goLeft {
  transition: all 0.3s ease; }
  .goLeft:hover {
    transform: translateX(-4px); }

.underline {
  position: relative;
  display: inline-block;
  white-space: nowrap; }
  .underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
    transform: scaleX(0);
    transition: all 0.3s ease-out; }
  .underline:hover::after {
    transform: scaleX(1); }

.two-lines {
  position: relative; }
  .two-lines::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: scaleX(0);
    transition: all 0.3s ease-out; }
  .two-lines:hover::after {
    transform: scaleX(1); }

.red {
  color: #d32626;
  fill: #d32626; }

.green {
  color: #21bf73;
  fill: #21bf73; }

/******************* MARGINS ****************/
.margin-top-huge {
  margin-top: 10rem !important; }

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

.margin-top-medium {
  margin-top: 3rem !important; }

.margin-top-small {
  margin-top: 1rem !important; }

.margin-top-tiny {
  margin-top: 0.5rem !important; }

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

.margin-bottom-big {
  margin-bottom: 6rem !important; }

.margin-bottom-medium {
  margin-bottom: 3rem !important; }

.margin-bottom-small {
  margin-bottom: 1rem !important; }

.margin-bottom-tiny {
  margin-bottom: 0.5rem !important; }

.heading1 {
  color: #fff; }
  .heading1 > * {
    display: inline-block; }
  .heading1--top {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 5rem;
    font-weight: 500;
    line-height: 1.15;
    text-transform: uppercase;
    text-shadow: 2px 3px 12px rgba(255, 255, 140, 0.7);
    letter-spacing: 0.7rem; }
  .heading1--bottom {
    width: 100%;
    font-family: 'Playball', cursive;
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 0.4rem;
    text-shadow: 2px 3px 12px rgba(255, 255, 140, 0.7);
    padding: 0 2rem 4rem 2rem; }
  @media only screen and (max-width: 23.75em) {
    .heading1--top {
      font-size: 4.2rem; }
    .heading1--bottom {
      font-size: 2rem; } }

.heading2-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: min-content 1fr;
  grid-template-rows: repeat(2, min-content);
  justify-content: start; }
  .heading2-box svg {
    fill: #d32626;
    width: 3rem;
    height: 3rem;
    transform: translateX(-9px); }
  .heading2-box__brown {
    position: relative;
    width: 85%;
    margin: 0 auto;
    padding: 2rem 3.5rem;
    color: #fff;
    background-image: linear-gradient(to right, rgba(171, 92, 39, 0.9), rgba(177, 110, 66, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 7px;
    box-shadow: 0 0.8rem 1rem rgba(0, 0, 0, 0.4);
    overflow: hidden; }
    .heading2-box__brown h2 {
      text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5); }
    .heading2-box__brown h3 {
      color: #fff; }
    .heading2-box__brown svg {
      fill: #21bf73;
      margin-right: 0.5rem; }
    .heading2-box__brown .section__bg-pattern {
      height: 23rem;
      top: -5rem;
      left: 25rem;
      opacity: 0.2; }
    .heading2-box__brown .section__bg-img {
      position: absolute;
      top: -160px;
      right: -83px;
      width: 53%;
      clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
      filter: brightness(1.3); }

.heading2 {
  line-height: 7rem;
  font-family: 'Playball', cursive;
  font-size: 5rem;
  font-weight: 500;
  text-transform: capitalize;
  text-shadow: 3px 2px 15px rgba(0, 0, 0, 0.2);
  grid-column: 1 / span 2; }
  @media only screen and (max-width: 30em) {
    .heading2 {
      font-size: 4.2rem; } }

.heading3 {
  color: #777;
  font-size: 1.4rem;
  text-transform: uppercase;
  transform: translateX(-14px); }

.heading4 {
  font-size: 2rem;
  font-weight: 600;
  font-variant: small-caps; }

.heading5 {
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  text-align: center; }

.alert-box {
  position: fixed;
  z-index: 9100;
  /* above lightbox */
  top: 0;
  left: 0;
  width: 100vw;
  transform: translateY(-100%) scaleY(0);
  transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  display: flex;
  justify-content: center;
  pointer-events: none; }
  .alert-box__open {
    transform: translateY(0) scaleY(1); }

.alert {
  display: inline-block;
  min-width: 33%;
  max-width: 75%;
  margin: 0 auto;
  padding: 1.8rem 3rem;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  border: transparent;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0.4rem 0.7rem rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6); }
  .alert--error {
    background-color: red; }
  .alert--success {
    background-color: green; }
  .alert__open {
    transform: translateY(0) scaleY(1); }

.btn {
  display: inline-block;
  color: #fff;
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  text-transform: capitalize;
  padding: 0.5rem 1.8rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0.8rem 1rem rgba(0, 0, 0, 0.4); }
  .btn:link, .btn:visited {
    text-decoration: none; }
  .btn:focus {
    outline: 2px solid #ab5c27; }
  .btn--red {
    background-color: #d32626; }
  .btn--brown {
    background-color: #ab5c27; }
  .btn--square {
    border-radius: 7px; }
  .btn-link {
    border-radius: 5px; }
    .btn-link, .btn-link:link, .btn-link:visited {
      padding: 0.2rem 1rem;
      line-height: 1.6;
      color: #ab5c27;
      text-decoration: underline;
      text-transform: lowercase;
      letter-spacing: 0;
      box-shadow: none;
      transition: all 0.3s ease; }
    .btn-link--red, .btn-link--red:link, .btn-link--red:visited {
      color: #d32626; }
    .btn-link--red:hover {
      background-color: #d32626;
      color: #fff; }
    .btn-link--brown, .btn-link--brown:link, .btn-link--brown:visited {
      color: #ab5c27; }
    .btn-link--brown:hover {
      background-color: #ab5c27;
      color: #fff; }
  .btn--sign {
    display: inline-block;
    padding: 0.4rem 1.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.7;
    border-radius: 50px;
    background-color: #d32626; }
  .btn--animated, .btn:focus {
    transition: all 0.3s;
    box-shadow: 0 0.4rem 0.7rem rgba(0, 0, 0, 0.5); }
    .btn--animated:hover, .btn:focus:hover {
      transform: translateY(-4px);
      box-shadow: 0 0.8rem 1rem rgba(0, 0, 0, 0.4); }
    .btn--animated:active, .btn:focus:active {
      transform: translateY(0);
      box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.8); }

.story {
  position: relative; }
  .story__card {
    position: relative;
    min-width: 80% !important;
    margin: 0 auto;
    margin-top: 4rem;
    margin-bottom: 5rem;
    border-radius: 10px;
    border: 1px solid rgba(171, 92, 39, 0.4);
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3); }
  .story__body {
    padding: 18rem 12rem 14rem 14rem;
    font-size: 1.4rem; }
    @media only screen and (max-width: 30em) {
      .story__body {
        padding: 15rem 10rem 11rem 10rem; } }
    .story__body figure p:not(:last-child) {
      margin-bottom: 3rem; }
    .story__body figure figcaption {
      margin-top: 3rem;
      padding-right: 2rem;
      font-family: 'Playball', cursive;
      font-size: 2rem;
      text-align: right; }
    .story__body h4.story__title {
      max-width: 80%;
      margin-bottom: 3rem;
      font-family: 'Playball', cursive;
      text-transform: capitalize;
      font-size: 2.5rem;
      font-weight: 300; }
  .story__user-box {
    position: absolute;
    width: 10rem;
    height: 15rem;
    top: 2rem;
    left: 3rem;
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid rgba(171, 92, 39, 0.4);
    box-shadow: 0 0.4rem 0.7rem rgba(0, 0, 0, 0.5); }
    .story__user-box img {
      position: absolute;
      z-index: 20;
      top: 50%;
      left: 50%;
      display: block;
      height: 15rem;
      transform: translate(-50%, -50%) scale(1); }
    @media only screen and (max-width: 30em) {
      .story__user-box {
        height: 12rem;
        width: 8rem; } }
  .story__quote {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 18rem;
    height: 18rem;
    fill: #ab5c27;
    opacity: 0.1; }
  .story__corner {
    position: absolute;
    z-index: 10;
    width: 20rem;
    height: 20rem; }
    .story__corner--left {
      top: 0;
      left: 0;
      border-radius: 10px 0 0 0;
      clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
      background-image: linear-gradient(to right, rgba(171, 92, 39, 0.9), rgba(177, 110, 66, 0.9)); }
    .story__corner--right {
      bottom: 0;
      right: 0;
      border-radius: 0 0 10px 0;
      clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%);
      background-image: linear-gradient(to left, rgba(171, 92, 39, 0.9), rgba(177, 110, 66, 0.9)); }
  .story__bg-pattern {
    position: absolute;
    z-index: 20;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    opacity: 0.4;
    filter: brightness(180%); }

/*********************** CARDS TOURS ***********************/
.card {
  position: relative;
  display: inline-block;
  height: 48rem;
  min-width: 30rem;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position-x: center;
  display: flex;
  justify-content: center;
  align-items: flex-end; }
  .card:not(:last-child) {
    margin-bottom: 3rem; }
  .card__cover {
    display: block;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); }
  .card__cta {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 10;
    top: 4rem;
    padding: 0.5rem 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: capitalize;
    font-variant: small-caps;
    white-space: nowrap;
    color: #fff;
    border-radius: 7px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer; }
    @media (hover: none), only screen and (max-width: 75em) {
      .card__cta {
        display: block; } }
  .card__price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff; }
  .card__details {
    width: 100%;
    height: 35.28rem;
    padding: 0 0.2rem 2rem 0.2rem;
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(22.1rem);
    transition: all 0.3s ease-out;
    display: grid;
    grid-template-columns: 1fr 2fr;
    justify-content: center;
    justify-items: center; }
  .card__rating {
    width: 100%;
    margin-bottom: 2rem;
    padding: 0.2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    grid-area: 1 / 1 / 2 / span 2;
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .card__stars svg {
    fill: #e2a67e;
    height: 1.5rem;
    width: 1.5rem; }
  .card__votes {
    color: #fff; }
    .card__votes span:first-child {
      display: inline-block;
      margin-right: 1rem;
      font-size: 2rem; }
  .card__country {
    margin-bottom: 1rem;
    color: #eee;
    grid-area: 2 / 1 / 3 / span 2; }
  .card__title {
    width: 100%;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    grid-area: 3 / 1 / 4 / span 2; }
  .card__description {
    width: 98%;
    margin-top: 2rem;
    padding: 1rem;
    font-size: 1.1rem;
    color: #fff;
    border-radius: 3px; }
    .card__description ul {
      list-style: none; }
    .card__description li {
      display: flex;
      column-gap: 1rem;
      align-items: center; }
      .card__description li:not(:last-child) {
        margin-bottom: 1rem; }
    .card__description svg {
      fill: #fff;
      width: 1.5rem;
      height: 1.5rem; }
    .card__description--left {
      background-color: rgba(238, 233, 225, 0.2);
      grid-area: 4 / 1 / 5 / 2; }
    .card__description--right {
      text-align: center;
      font-size: 1.4rem;
      background-color: rgba(253, 250, 245, 0.2);
      grid-area: 4 / 2 / 5 / 3;
      display: flex;
      align-items: center;
      justify-content: center; }
  .card__btn-box {
    width: 90%;
    padding-top: 2rem;
    margin: 2rem auto 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    grid-area: 5 / 1 / 6 / span 2; }
  .card__btn {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 1.4rem;
    text-transform: capitalize;
    font-variant: small-caps;
    text-decoration: none;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    background-color: #ab5c27;
    transition: all 0.3s ease; }
    .card__btn:hover {
      color: #ab5c27;
      background-color: #fff; }
  .card__opencheckbox {
    position: absolute;
    z-index: 20;
    top: 10rem; }
  .card__opencheckbox:checked ~ .card__details {
    transform: translateY(0); }
  .card:hover {
    cursor: pointer;
    outline: 3px solid rgba(177, 110, 66, 0.4); }
  @media only screen and (min-width: 75em) {
    .card:hover .card__details {
      transform: translateY(0); } }
  .card__details.open {
    transform: translateY(0); }

.card-reviews {
  position: relative;
  padding: 2rem 4rem;
  border-radius: 7px;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: flex-start;
  column-gap: 3rem; }
  @media only screen and (max-width: 23.75em) {
    .card-reviews {
      padding: 2rem 2rem; } }
  .card-reviews--left {
    background-image: linear-gradient(to left, #fdfaf5, #eee9e1); }
  .card-reviews--right {
    background-image: linear-gradient(to right, #fdfaf5, #eee9e1); }
  .card-reviews:not(:last-child) {
    margin-bottom: 3rem; }
  .card-reviews__side {
    width: 7rem; }
  .card-reviews__date {
    margin-bottom: 1rem;
    font-family: 'Tenor Sans', cursive;
    font-size: 1.4rem;
    font-style: italic;
    color: #777; }
  .card-reviews__rating {
    white-space: nowrap;
    display: flex;
    align-items: center;
    column-gap: 1.5rem; }
    .card-reviews__rating svg {
      fill: #ab5c27;
      height: 1.5rem;
      width: 1.5rem; }
    .card-reviews__rating p {
      display: inline-block;
      font-family: 'Tenor Sans', sans-serif;
      font-size: 2rem; }
  .card-reviews__user {
    position: relative;
    height: 11rem;
    width: 7rem;
    border-radius: 100px;
    border: 2px solid #ab5c27;
    overflow: hidden; }
    .card-reviews__user img {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      height: 11rem; }
  .card-reviews__body {
    position: relative;
    width: 90%;
    height: 100%;
    font-size: 1.4rem;
    display: grid;
    grid-template-rows: repeat(6, min-content);
    grid-template-columns: 1fr;
    justify-content: start; }
  .card-reviews__sig {
    margin-top: 2rem;
    font-family: 'Playball', cursive;
    font-size: 2rem; }
  .card-reviews__deleteForm {
    position: absolute;
    right: 0;
    top: 2.5rem;
    padding: 0.8rem;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    background-color: #ab5c27; }
    .card-reviews__deleteForm button {
      padding: 0;
      background-color: transparent;
      border: none;
      display: flex; }
  .card-reviews__delete-btn {
    fill: #fff;
    width: 2rem;
    height: 2rem;
    cursor: pointer; }

.lightbox {
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: -10;
  transition: opacity 1s ease-out;
  display: flex;
  justify-content: center;
  align-items: center; }
  .lightbox__img-box {
    position: relative;
    width: 80%;
    height: 80%;
    border-radius: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer; }
  .lightbox__html-box {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center; }
  .lightbox__close-btn {
    position: absolute;
    z-index: 9200;
    top: 3rem;
    right: 4rem;
    height: 3.3rem;
    width: 3.3rem;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #fff;
    background-color: #d32626;
    border-radius: 100px;
    box-shadow: 0 0.4rem 0.7rem rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center; }
    .lightbox__close-btn:hover {
      transform: translateY(-3px);
      cursor: pointer; }
  .lightbox.lb-open {
    z-index: 9000;
    opacity: 1; }

.list {
  list-style: none;
  padding: 4rem 5rem; }
  @media only screen and (max-width: 37.5em) {
    .list {
      padding: 4rem 2rem; } }
  .list__item {
    display: grid;
    grid-template-columns: min-content minmax(20rem, 33vw);
    align-items: start;
    justify-content: center; }
    .list__item:not(:last-child) {
      margin-bottom: 3rem; }
    @media only screen and (max-width: 56.25em) {
      .list__item {
        grid-template-columns: min-content 100%; } }
    .list__item svg {
      fill: #21bf73;
      width: 2rem;
      height: 2rem;
      margin-right: 1rem;
      margin-top: .8rem; }
    .list__item p {
      font-size: 1.4rem;
      font-weight: 300;
      grid-column: 2 / 3; }

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

#map .mapboxgl-popup {
  max-width: 25rem; }
  #map .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; }

.mosaic {
  width: 100%;
  height: 65rem;
  padding: 4rem 5rem;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-gap: .8rem; }
  @media only screen and (max-width: 75em) {
    .mosaic {
      height: 60rem; } }
  @media only screen and (max-width: 65.625em) {
    .mosaic {
      height: 54rem; } }
  @media only screen and (max-width: 56.25em) {
    .mosaic {
      height: 90vw; } }
  @media only screen and (max-width: 37.5em) {
    .mosaic {
      padding: 4rem 0;
      grid-gap: .5rem; } }
  .mosaic__img {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    outline: 3px solid transparent;
    border-radius: 7px;
    transition: outline 0.2s; }
    .mosaic__img--1 {
      grid-column: 7 / -1;
      grid-row: 1 / span 2; }
    .mosaic__img--2 {
      grid-column: 6 / 7;
      grid-row: 1 / span 2; }
    .mosaic__img--3 {
      grid-column: 7 / span 2;
      grid-row: 7 / span 2; }
    .mosaic__img--4 {
      grid-column: 5 / span 2;
      grid-row: 7 / span 2; }
    .mosaic__img--5 {
      grid-column: 4 / 5;
      grid-row: 3 / span 3; }
    .mosaic__img--6 {
      grid-column: 1 / span 3;
      grid-row: 1 / span 3; }
    .mosaic__img--7 {
      grid-column: 2 / span 2;
      grid-row: 4 / span 2; }
    .mosaic__img--8 {
      grid-column: 5 / -1;
      grid-row: 3 / span 4; }
    .mosaic__img--9 {
      grid-column: 2 / span 3;
      grid-row: 6 / span 3; }
    .mosaic__img--10 {
      grid-column: 4 / 6;
      grid-row: 1 / span 2; }
    .mosaic__img--11 {
      grid-column: 1 / 2;
      grid-row: 4 / span 5; }
    .mosaic__img:hover {
      cursor: url(../img/magnifying-glass.png), zoom-in;
      z-index: 10;
      outline: 3px solid rgba(177, 110, 66, 0.5);
      animation: pulsate 1s ease-out;
      animation-iteration-count: infinite; }

/*********************** NAV ***********************/
.nav {
  position: fixed;
  top: 4.5rem;
  right: 4rem;
  z-index: 8999;
  display: grid;
  row-gap: 1.5rem; }
  @media only screen and (max-width: 23.75em) {
    .nav {
      top: 2.5rem;
      right: 2.5rem; } }
  .nav__main {
    display: grid;
    justify-items: center;
    align-items: center;
    row-gap: 2rem; }
    .nav__main-btn {
      grid-row: 1 / 2;
      grid-column: 1 / 2; }
    .nav__main-bg {
      grid-row: 1 / 2;
      grid-column: 1 / 2; }
  .nav__user {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    row-gap: 1rem; }
  .nav__btn {
    position: relative;
    z-index: 11;
    width: 5rem;
    height: 5rem;
    border-radius: 100px;
    border: 2px solid #ab5c27;
    background-color: #fff;
    box-shadow: 0 0.1rem 0.3rem rgba(0, 0, 0, 0.8);
    overflow: hidden;
    cursor: pointer; }
    .nav__btn:hover .nav__btn-caption,
    .nav__btn:hover + .nav__btn-caption {
      transform: translateX(-100%) scaleX(1);
      visibility: visible;
      opacity: 1; }
  .nav__btn-caption {
    position: absolute;
    top: 0;
    left: -1rem;
    overflow: hidden;
    padding-right: 0.5rem;
    color: #000;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: capitalize;
    font-variant: small-caps;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transform: translateX(0) scaleX(0);
    transition: all 0.4s ease-in-out; }
    .nav__btn-caption.username {
      top: 25%; }
  .nav__btn-sub {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    overflow: visible;
    border: 3px solid #c7773e;
    display: flex;
    justify-content: center;
    align-items: center; }
    .nav__btn-sub a {
      display: flex;
      padding: 1rem; }
    .nav__btn-sub svg {
      height: 2rem;
      width: 2rem; }
    .nav__btn-sub--red svg {
      fill: #ab5c27; }
  .nav__checkbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0; }

.main-nav__checkbox:checked + .main-nav__label .main-nav__line {
  border: transparent; }

.main-nav__checkbox:checked + .main-nav__label .main-nav__line::after {
  top: 0.8rem;
  left: 50%;
  transform: translateX(38%) rotate(-135deg);
  transform-origin: left; }

.main-nav__checkbox:checked + .main-nav__label .main-nav__line::before {
  top: -0.8rem;
  left: 50%;
  transform: translateX(38%) rotate(135deg);
  transform-origin: left; }

.main-nav__checkbox:checked ~ .main-nav__bg {
  transform: scale(200);
  visibility: visible; }

.main-nav__checkbox:checked ~ .main-nav__bg-pattern {
  opacity: 1; }

.main-nav__checkbox:checked ~ .main-nav__list {
  transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible; }

.main-nav__checkbox:checked ~ .main-nav__logo {
  transform: translateY(0%);
  opacity: 1;
  visibility: visible; }

.main-nav__checkbox:checked ~ .main-nav__bg-pattern {
  opacity: 0.3;
  visibility: visible; }

.user-nav__checkbox:checked ~ .user-nav__sub {
  height: 11.4rem;
  transform: translateY(0);
  padding: 3rem 0.5rem 2rem 0.5rem;
  opacity: 1;
  overflow: visible; }

.main-nav__label {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center; }

.main-nav__line {
  position: relative;
  width: 50%;
  border: none;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000; }
  .main-nav__line::before {
    content: '';
    position: absolute;
    top: -0.7rem;
    left: 0;
    width: 100%;
    height: 0;
    border: none;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    transition: all 0.2s ease; }
  .main-nav__line::after {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 0;
    width: 100%;
    height: 0;
    border: none;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    transition: all 0.2s ease; }

.main-nav__btn:hover .main-nav__line::after {
  top: 0.8rem; }

.main-nav__btn:hover .main-nav__line::before {
  top: -1rem; }

.main-nav__bg {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 100px;
  background-image: radial-gradient(#c7773e, #ab5c27);
  transition: all 0.5s ease-in-out; }
  .main-nav__bg-pattern {
    position: fixed;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 31rem;
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0, 0.44, 0.37, 0.79); }

.main-nav__logo {
  position: fixed;
  top: 3rem;
  left: 4rem;
  z-index: 10;
  transform: translateY(-5rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6); }
  .main-nav__logo img {
    display: block;
    height: 3rem; }

.main-nav__list {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-300%, -50%);
  transition: all 0.6s cubic-bezier(0.68, -0.6, 0.32, 1.6); }

.main-nav__item {
  text-align: center;
  padding: 0.7rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center; }

.main-nav__link {
  display: block; }
  .main-nav__link, .main-nav__link:link, .main-nav__link:visited {
    color: #fff;
    font-size: 2.5rem;
    line-height: 1.7;
    text-decoration: none;
    text-transform: capitalize;
    font-variant: small-caps; }

.user-nav__label {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center; }

.user-nav__photo {
  display: block;
  width: 5rem;
  height: 5rem;
  border-radius: 100px; }

.user-nav__sub {
  position: absolute;
  z-index: 9;
  top: 11.3rem;
  right: 0.2rem;
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 0.5rem 0 0;
  transform: translateY(-3.7rem);
  transition: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  row-gap: 1.6rem; }
  .user-nav__sub a {
    display: flex; }
  .user-nav__sub--line {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 47%;
    height: 90%;
    border-right: 2px solid #ab5c27; }

.notices {
  width: 70%;
  padding: 4rem 5rem;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
  border-radius: 7px;
  border-top: 8px solid #ab5c27;
  background-image: linear-gradient(to right, #fdfaf5, #eee9e1); }
  @media only screen and (max-width: 37.5em) {
    .notices {
      width: 100%; } }
  .notices .section__bg-pattern {
    top: -7rem;
    left: 0%;
    height: 35rem;
    opacity: 0.3; }
  .notices__header {
    grid-template-columns: min-content 1fr; }
  .notices .heading2 {
    font-family: 'Libre Franklin', sans-serif;
    justify-self: center; }
    @media only screen and (max-width: 30em) {
      .notices .heading2 {
        font-size: 3.5rem; } }
    .notices .heading2.red {
      margin-top: 0; }
  .notices__content {
    padding-top: 2rem;
    font-size: 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .notices__content p {
      text-align: center;
      margin-top: 4rem; }
  .notices__icon {
    display: inline-block;
    fill: #d32626;
    height: 10rem;
    width: 10rem; }
  .notices--full {
    width: 100%;
    min-height: 90vh;
    border-radius: 0;
    box-shadow: none; }
  .notices--full .notices__content {
    margin-top: 10vh;
    font-size: 2.5rem; }

.section {
  position: relative;
  width: 100%;
  padding: 5rem 4vw;
  padding-bottom: 7rem; }
  .section:not(:last-child) {
    border-bottom: 1px solid rgba(63, 62, 62, 0.2); }
  .section [class$="__content"] {
    position: relative;
    z-index: 2; }
  .section__bg-pattern {
    position: absolute;
    z-index: 0;
    opacity: 0.5;
    filter: brightness(50); }
  .section__screen {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.player {
  position: relative;
  z-index: 0;
  width: 100%;
  border-radius: 10px;
  background-color: #eee9e1;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
  overflow: hidden; }
  .player-controls {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    bottom: 2.3rem;
    height: 3.5rem;
    width: 70%;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    border: none;
    overflow: hidden;
    opacity: 0.2;
    transition: opacity 1s;
    display: grid;
    grid-template-columns: repeat(2, min-content) 3fr repeat(2, min-content);
    align-items: center; }
    @media (hover: none), only screen and (max-width: 56.25em) {
      .player-controls {
        opacity: .7;
        bottom: 0;
        width: 101%;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        transform: translateX(-50.5%); } }
  .player-btn {
    height: 90%;
    padding: 0.5rem 0.8rem;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.8) 10%, rgba(255, 255, 255, 0.2) 100%);
    display: flex;
    align-items: center; }
    .player-btn--prev {
      grid-column: 4 / 5; }
    .player-btn:hover {
      background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.9) 10%, rgba(255, 255, 255, 0.4) 100%);
      cursor: pointer; }
  .player svg {
    fill: #000;
    width: 2.5rem;
    height: 2.5rem; }
  .player-player-box {
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr; }
    .player-player-box video {
      width: 100%;
      height: 100%;
      transition: all 1.5s ease-out;
      grid-row: 1 / 2;
      grid-area: 1 / 1 / 2 / 2; }
  .player:hover .player-controls {
    opacity: 1; }

/*********************** DREAMS ***********************/
.dreams__header {
  padding: 1rem 0; }

.dreams__content {
  position: relative;
  z-index: 2;
  /* place above bg pattern */
  width: 100%;
  margin-top: 0rem;
  display: grid;
  grid-template-columns: max-content 2fr;
  grid-template-rows: 1fr;
  justify-content: center; }
  @media only screen and (max-width: 56.25em) {
    .dreams__content {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(min-content); } }
  .dreams__content--left {
    border-right: 1px solid rgba(63, 62, 62, 0.2); }
    @media only screen and (max-width: 56.25em) {
      .dreams__content--left {
        border-right: transparent; } }
  .dreams__content--right {
    padding: 3rem 0 3rem 4rem;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media only screen and (max-width: 56.25em) {
      .dreams__content--right {
        padding: 5rem 5rem 0 5rem; } }
    @media only screen and (max-width: 37.5em) {
      .dreams__content--right {
        padding: 5rem 1rem 0 1rem; } }

/*********************** FEATURES ***********************/
.features__header {
  padding: 1rem 0; }

.features__content {
  position: relative;
  z-index: 2;
  /* place above bg pattern */
  width: 100%;
  margin-top: 0rem;
  display: grid;
  grid-template-columns: 2fr max-content;
  grid-template-rows: 1fr;
  align-items: center; }
  @media only screen and (max-width: 56.25em) {
    .features__content {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(2, min-content); } }
  .features__content--left {
    border-right: 1px solid rgba(63, 62, 62, 0.2); }
    @media only screen and (max-width: 56.25em) {
      .features__content--left {
        border-right: transparent; } }
  .features__content--right {
    align-self: center; }

/*********************** FOOTER ***********************/
.footer {
  height: 20rem;
  padding: 3rem;
  font-size: 1.6rem;
  color: #fff;
  border-top: 3px solid #21bf73;
  overflow: hidden;
  display: grid;
  grid-template-rows: repeat(3, fr);
  align-content: space-between; }
  .footer__logo {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start; }
  .footer__img {
    width: 20rem; }
  .footer__copy {
    padding-top: 2rem;
    font-size: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.4); }

/*********************** HEADER ***********************/
.header-box {
  position: relative;
  height: 100vh;
  width: 100%;
  background-color: #000;
  border-bottom: 3px solid #21bf73; }
  .header-box.secondary {
    height: 35rem; }
    .header-box.secondary .header__bg {
      background-position: bottom center; }
    .header-box.secondary .header__cta {
      margin: 0; }
    .header-box.secondary .header__btn-box {
      display: none; }

.header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-image: linear-gradient(black 0%, rgba(0, 0, 0, 0.3) 5%, transparent 100%), url(../img/cliff.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%; }

.header {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 6rem 5vw;
  display: flex;
  align-items: flex-end;
  justify-content: center; }
  .header__logo {
    position: absolute;
    top: 3rem;
    left: 4rem;
    z-index: 3; }
    @media only screen and (max-width: 23.75em) {
      .header__logo {
        top: 2.5rem;
        left: 2.5rem; } }
    .header__logo img {
      display: block;
      height: 2.5rem; }
  .header__cta {
    margin-bottom: 4rem;
    text-align: center; }
  .header__btn-box {
    padding-top: 4rem; }
  .header__btn {
    width: 30rem;
    margin: 0 auto;
    color: #d32626;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: capitalize;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center; }
    .header__btn .header__leaf {
      position: relative;
      z-index: -1;
      fill: #21bf73;
      width: 2rem;
      height: 2rem;
      transition: all 0.3s ease; }
      .header__btn .header__leaf--right {
        transform: translateX(-8rem);
        opacity: 0; }
      .header__btn .header__leaf--left {
        transform: translateX(8rem);
        opacity: 0; }
    .header__btn p {
      position: relative;
      display: inline-block;
      margin: 0 2rem;
      color: #fff;
      box-shadow: 0 0.8rem 1rem rgba(0, 0, 0, 0.4); }
    .header__btn:hover .header__leaf--right,
    .header__btn:hover .header__leaf--left {
      transform: translateX(0);
      opacity: 1; }

.stories {
  width: 100%; }
  .stories__container {
    width: 95%;
    max-width: 150rem;
    margin: 0 auto;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    grid-column-gap: 5vw;
    justify-content: space-between; }
    @media only screen and (max-width: 65.625em) {
      .stories__container {
        grid-template-columns: 1fr; } }

/*********************** TOURS ***********************/
.tours {
  padding-bottom: 30rem; }
  .tours__nav {
    margin-top: 2rem; }
  .tours__cards {
    width: 90%;
    max-width: 130rem;
    margin: 0 auto;
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(min-content, 45rem));
    justify-content: space-between;
    column-gap: 2vw; }
    @media only screen and (max-width: 65.625em) {
      .tours__cards {
        width: 100%; } }
    @media only screen and (max-width: 56.25em) {
      .tours__cards {
        grid-template-columns: minmax(min-content, max-content);
        grid-template-rows: repeat(3, min-content);
        justify-content: center; } }
  .tours__cta {
    width: 90%;
    margin: 0 auto;
    margin-top: 4rem;
    text-align: center; }

.main .profile {
  /************ MAIN LAYOUT *************/
  /************ HEADER *************/
  /************ FORMS *************/
  /************ MISC STYLING *************/ }
  .main .profile__form {
    height: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: min-content 1fr; }
  .main .profile__header {
    width: 100%;
    padding: 4rem 8rem;
    background-image: linear-gradient(to right, #fdfaf5, #eee9e1); }
    @media only screen and (max-width: 30em) {
      .main .profile__header {
        padding: 4rem 0; } }
  .main .profile__form--photo, .main .profile__header {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 2rem; }
  .main .profile__content {
    position: relative;
    padding: 0 4rem 5rem 4rem;
    background-image: linear-gradient(to right, #fdfaf5, #eee9e1); }
    @media only screen and (max-width: 30em) {
      .main .profile__content {
        padding: 0 0 5rem 0; } }
  @media only screen and (max-width: 56.25em) {
    .main .profile__footer {
      text-align: center; } }
  .main .profile__separator {
    width: 70%;
    margin: 3rem auto;
    border-top: 1px solid rgba(0, 0, 0, 0.2); }
  .main .profile__photo-box {
    position: relative;
    border-radius: 100px;
    border: 2px solid #ab5c27;
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
    overflow: hidden; }
  .main .profile__label--photo {
    display: block;
    position: absolute;
    bottom: 1px;
    left: 0;
    z-index: 12;
    width: 10rem;
    height: 10rem;
    border-radius: 100px;
    visibility: visible;
    cursor: pointer; }
  .main .profile__photo {
    position: relative;
    z-index: 1;
    display: block;
    height: 10rem;
    width: 10rem;
    transform: scale(1.2);
    transition: all 0.25s ease-out; }
    .main .profile__photo-caption {
      position: absolute;
      z-index: 10;
      top: 50%;
      left: 50%;
      width: 100%;
      color: #000;
      font-size: 1.4rem;
      font-weight: 500;
      text-align: center;
      transform: translate(-50%, 100%);
      background-color: rgba(255, 255, 255, 0.6);
      transition: all 0.3s ease-out; }
      .main .profile__photo-caption span {
        display: inline-block;
        margin-bottom: 0.3rem;
        padding: 0.4rem 0.1rem; }
      .main .profile__photo-caption svg {
        fill: #000;
        width: 2.5rem;
        height: 2.5rem; }
  .main .profile__label--photo:hover ~ img {
    transform: scale(1);
    filter: blur(2px) brightness(90%); }
  .main .profile__label--photo:hover + .profile__photo-caption {
    transform: translate(-50%, -23%); }
  .main .profile__title {
    font-family: 'Tenor Sans', sans-serif;
    color: #000; }
    .main .profile__title--name {
      font-size: 3.5rem;
      font-weight: 700;
      text-transform: capitalize;
      font-variant: small-caps; }
    .main .profile__title--fullname {
      display: inline-block;
      margin-left: 1.5rem;
      font-size: 2rem;
      font-weight: 300;
      font-style: italic;
      text-transform: capitalize;
      white-space: nowrap; }
      @media only screen and (max-width: 37.5em) {
        .main .profile__title--fullname {
          display: block;
          margin-left: 0;
          margin-bottom: 1rem;
          font-size: 1.6rem; } }
    .main .profile__title--role {
      display: inline-block;
      padding: 0.3rem 1rem;
      color: #fff;
      font-size: 1.4rem;
      border-radius: 7px; }
      .main .profile__title--role.admin {
        background-color: #d32626; }
      .main .profile__title--role.lead-guide {
        background-color: #ab5c27; }
      .main .profile__title--role.guide {
        background-color: #21bf73; }
      .main .profile__title--role.user {
        background-color: transparent;
        font-style: italic; }
  .main .profile__inp--photo {
    display: none; }
  .main .profile__cluster {
    position: relative;
    padding: 2rem 2rem 4rem 2rem; }
    .main .profile__cluster:not(:last-child) {
      margin-bottom: 3rem; }
  .main .profile__row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    column-gap: 3rem; }
  .main .profile__group {
    position: relative; }
  .main .profile__save {
    position: absolute;
    display: inline-block;
    width: auto;
    right: 2rem;
    bottom: 2rem;
    margin: 0;
    padding: 0.4rem 1.5rem;
    box-shadow: 0 0.4rem 0.7rem rgba(0, 0, 0, 0.3); }
    @media only screen and (max-width: 56.25em) {
      .main .profile__save {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 90%;
        padding: 1.5rem; } }
    .main .profile__save:disabled {
      opacity: 0.5;
      filter: saturate(20%);
      cursor: auto; }
  .main .profile__legend {
    margin-bottom: 2rem; }
    @media only screen and (max-width: 56.25em) {
      .main .profile__legend {
        transform: translateX(0); }
        .main .profile__legend a.btn {
          padding: 0;
          margin: 0; } }

.main .profile__content {
  margin-top: 2rem; }

.main .profile__warning {
  margin: 3rem 0;
  display: flex;
  align-items: center;
  column-gap: 1.5rem; }
  .main .profile__warning span {
    display: block;
    margin-top: 0.4rem; }
  .main .profile__warning span.warning {
    font-size: 2rem;
    font-weight: 700;
    font-variant: small-caps; }
  .main .profile__warning svg {
    fill: #d32626;
    width: 5.5rem;
    height: 5.5rem; }

.main .profile__group--consent {
  display: flex;
  align-items: baseline; }

.main .profile__inp--consent {
  display: inline-block;
  margin-left: 1rem; }

.main .profile__label--consent {
  position: initial;
  display: inline-block;
  margin-left: 2rem;
  margin-bottom: 5rem;
  margin-top: -1rem;
  font-size: 1.4rem;
  opacity: 1;
  visibility: visible; }

.account__list-header {
  font-size: 2rem; }

.account__list-item {
  display: block;
  position: relative;
  margin: 0;
  width: 100%;
  white-space: nowrap;
  font-size: 1.6rem !important; }

.account__list-link {
  position: relative;
  width: 100%;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem; }
  .account__list-link:not(:last-child) {
    margin-bottom: 1rem; }
  .account__list-link:focus {
    outline: none; }

.account__list-icon {
  fill: #fff;
  width: 2rem;
  height: 2rem; }

.pages.main .main-nav__list-header {
  margin-bottom: 1rem;
  margin-left: 4.4rem;
  font-weight: 700;
  text-shadow: 1px 2px 4px rgba(171, 92, 39, 0.6);
  white-space: nowrap; }

.pages.main .main-content__title span {
  font-size: 1.6rem;
  font-weight: 400; }

@media only screen and (max-width: 30em) {
  .pages.main .main-content {
    padding: 5.5rem 2rem !important; } }

.filter__loading {
  font-size: 2rem; }

.filter__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center; }

.filter__select-inp {
  padding: 0.5rem;
  font-size: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 5px;
  background-image: linear-gradient(to left, #fdfaf5, #eee9e1);
  cursor: pointer; }
  @media only screen and (max-width: 56.25em) {
    .filter__select-inp {
      padding: .5rem; } }
  .filter__select-inp:focus {
    outline: none; }

.filter__checkbox-inp {
  display: none; }

.filter__checkbox-inp:checked + .filter__checkbox::after {
  visibility: visible; }

.filter__checkbox {
  position: relative;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 100px;
  border: 3px solid white; }
  @media only screen and (max-width: 37.5em) {
    .filter__checkbox {
      width: 1.9rem;
      height: 1.9rem; } }
  .filter__checkbox::after {
    content: '';
    position: absolute;
    top: 1.4px;
    left: 1.7px;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 100px;
    background-color: white;
    visibility: hidden; }
    @media only screen and (max-width: 37.5em) {
      .filter__checkbox::after {
        top: 1.5px;
        left: 1.5px;
        width: .7rem;
        height: .7rem; } }

.filter__label {
  position: relative;
  top: unset;
  left: unset;
  padding: 0.3rem 0.5rem;
  line-height: 1.7rem;
  display: inline-block;
  visibility: visible;
  opacity: 1;
  cursor: pointer; }

.tours-section {
  padding: 0;
  margin-top: 4rem; }
  .tours-section__list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    column-gap: 4rem;
    row-gap: 6rem;
    justify-items: center; }
    .tours-section__list .card {
      width: 100%;
      margin: 0; }
  .tours-section__results {
    margin-bottom: 2rem;
    font-family: 'Tenor Sans', sans-serif; }
    .tours-section__results > * {
      display: inline-block; }
    .tours-section__results p {
      font-size: 1.6rem; }
  .tours-section__count {
    margin-right: 0.5rem;
    font-size: 2.5rem; }

.construction {
  margin-top: 20rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center; }
  .construction svg {
    fill: #ab5c27; }
  .construction h1 {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 2.5rem; }

#dreams {
  background-image: linear-gradient(to left, #fdfaf5, #eee9e1); }
  #dreams .section__bg-pattern {
    top: -18rem;
    left: 10%;
    height: 30rem;
    opacity: 0.3; }

#features {
  background-image: linear-gradient(to right, #fdfaf5, #eee9e1); }
  #features .section__bg-pattern {
    top: -20rem;
    left: 70%;
    height: 60rem; }

#tours {
  background-image: linear-gradient(to left, #fdfaf5, #eee9e1); }
  #tours .section__bg-pattern {
    top: -18rem;
    left: 10%;
    height: 30rem;
    opacity: 0.3; }

#stories {
  background-image: linear-gradient(to right, #fdfaf5, #eee9e1); }
  #stories .section__bg-pattern {
    top: -7rem;
    left: 0%;
    height: 35rem;
    opacity: 0.3; }

#footer {
  position: absolute;
  bottom: 0;
  background-image: linear-gradient(to right, rgba(171, 92, 39, 0.9), rgba(177, 110, 66, 0.9)); }
  #footer .section__bg-pattern {
    top: -15rem;
    left: 70rem;
    height: 53rem;
    opacity: 0.1; }

.pages.main {
  width: 100%;
  min-height: 60rem;
  padding: 0;
  background-image: linear-gradient(to left, #fdfaf5, #eee9e1);
  overflow: hidden;
  display: flex;
  /*************** MENU FUNCTIONALITY **************/ }
  .pages.main .main-menu {
    position: relative;
    width: 28rem;
    font-size: 2rem;
    color: #fff;
    border-right: 1px solid rgba(171, 92, 39, 0.2);
    background-image: linear-gradient(to left, #e2a67e, #b97649);
    transition: all 0.3s ease-out;
    overflow: hidden;
    flex-shrink: 0; }
    @media only screen and (max-width: 56.25em) {
      .pages.main .main-menu {
        width: 50%; } }
    @media only screen and (max-width: 37.5em) {
      .pages.main .main-menu {
        width: 60%; } }
    @media only screen and (max-width: 30em) {
      .pages.main .main-menu {
        width: 70%; } }
    .pages.main .main-menu .section__bg-pattern {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      height: 20rem;
      opacity: 0.2; }
    .pages.main .main-menu__header {
      position: relative;
      padding-top: 0.2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      background-image: linear-gradient(to left, rgba(171, 92, 39, 0.9), rgba(177, 110, 66, 0.9));
      display: flex;
      justify-content: space-between;
      align-items: center; }
    .pages.main .main-menu__lists {
      margin-top: 0;
      margin-bottom: 8rem;
      text-transform: capitalize;
      font-variant: small-caps;
      transform: translateX(0);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: center; }
    .pages.main .main-menu__list-header {
      width: 100%;
      margin: 0;
      margin-bottom: 2rem;
      padding: .5rem 0;
      padding-left: 2rem;
      background-image: linear-gradient(to right, #e2a67e, #b97649); }
    .pages.main .main-menu__list {
      display: inline-block;
      width: 70%;
      margin: 0 auto 5rem auto; }
      @media only screen and (max-width: 56.25em) {
        .pages.main .main-menu__list {
          width: 50%; } }
    .pages.main .main-menu__item {
      padding: .5rem;
      font-size: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.3);
      border-bottom: 1px solid rgba(255, 255, 255, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      column-gap: .5rem; }
      .pages.main .main-menu__item:not(:last-child) {
        margin-bottom: 1.5rem; }
      .pages.main .main-menu__item.difficulty {
        padding-left: 3rem;
        justify-content: flex-start; }
    .pages.main .main-menu__label {
      display: inline-block;
      padding: 0.6rem 1rem;
      cursor: pointer; }
      .pages.main .main-menu__label--open {
        transform: scale(1);
        transition: all 0.3s ease-out; }
        .pages.main .main-menu__label--open:hover {
          transform: scale(1.3); }
    .pages.main .main-menu__btn {
      fill: #fff;
      height: 2.5rem;
      width: 2.5rem; }
    .pages.main .main-menu__checkbox {
      display: none;
      position: fixed;
      top: 0;
      left: 0; }
  .pages.main .main-content {
    position: relative;
    width: 100%;
    min-width: 40rem;
    padding: 5.5rem 4.5rem;
    background-image: linear-gradient(to right, #fdfaf5, #eee9e1); }
    .pages.main .main-content__title {
      position: absolute;
      top: 0;
      left: 0;
      display: inline-block;
      padding: 0.90rem 2rem;
      font-size: 2rem;
      font-weight: 700;
      font-variant: small-caps;
      color: #fff;
      border-right: 1px solid rgba(255, 255, 255, 0.9);
      border-left: 1px solid rgba(255, 255, 255, 0.3);
      border-bottom: 1px solid rgba(255, 255, 255, 0.9);
      border-bottom-right-radius: 10px;
      background-image: linear-gradient(to right, rgba(171, 92, 39, 0.9), rgba(177, 110, 66, 0.9)); }
  .pages.main .main-menu__btn--open {
    display: none;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease; }
  .pages.main .main-menu__checkbox:checked + .main-menu {
    width: 4.4rem; }
  .pages.main .main-menu__checkbox:checked + .main-menu .main-menu__lists {
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none; }
  .pages.main .main-menu__checkbox:checked + .main-menu .main-menu__btn--close {
    opacity: 0; }
  .pages.main .main-menu__checkbox:checked + .main-menu .main-menu__btn--open {
    opacity: 1;
    z-index: 1;
    display: inline-block; }

.tour {
  padding-top: 4rem;
  background-image: linear-gradient(to right, #fdfaf5, #eee9e1); }
  .tour-details__header .heading2 {
    display: flex;
    align-items: center;
    column-gap: 3rem; }
    .tour-details__header .heading2 .rating {
      display: flex;
      align-items: center;
      align-content: center; }
      .tour-details__header .heading2 .rating--stars {
        display: flex;
        align-items: center; }
        .tour-details__header .heading2 .rating--stars svg {
          height: 2rem;
          width: 2rem; }
          @media only screen and (max-width: 23.75em) {
            .tour-details__header .heading2 .rating--stars svg {
              height: 1.5rem;
              width: 1.5rem; } }
      .tour-details__header .heading2 .rating--votes {
        font-family: 'Franklin Libre', sans-serif;
        font-size: 1.4rem; }
  .tour__section {
    position: relative;
    width: 85%;
    margin: 0 auto;
    margin-top: 5rem;
    margin-bottom: 5rem;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(171, 92, 39, 0.4);
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3); }
    @media only screen and (max-width: 56.25em) {
      .tour__section {
        width: 100%; } }
  .tour-header {
    margin-top: 5rem; }
    .tour-header__img {
      display: block;
      width: 100%; }
    .tour-header__title {
      position: absolute;
      display: inline-block;
      bottom: 0;
      left: 0;
      padding: 2rem 4rem;
      color: #fff;
      text-align: center;
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 0 10px 0 0;
      border: none;
      border-right: 1px solid rgba(171, 92, 39, 0.5);
      border-top: 1px solid rgba(171, 92, 39, 0.5); }
      @media only screen and (max-width: 37.5em) {
        .tour-header__title {
          padding: 1.5rem 2rem; } }
      .tour-header__title .heading3 {
        margin-bottom: 0.5rem;
        color: #fff;
        font-size: 2.5rem;
        transform: translateX(0);
        display: flex;
        justify-content: center;
        align-items: center; }
        @media only screen and (max-width: 37.5em) {
          .tour-header__title .heading3 {
            font-size: 2rem; } }
        @media only screen and (max-width: 23.75em) {
          .tour-header__title .heading3 {
            font-size: 1.6rem; } }
        .tour-header__title .heading3 svg {
          fill: #fff;
          width: 3rem;
          height: 3rem;
          margin-right: 0.5rem; }
          @media only screen and (max-width: 23.75em) {
            .tour-header__title .heading3 svg {
              height: 2.5rem;
              width: 2.5rem; } }
      .tour-header__title .heading4 {
        display: flex;
        justify-content: space-between;
        column-gap: 9rem; }
        @media only screen and (max-width: 23.75em) {
          .tour-header__title .heading4 {
            column-gap: 5rem; } }
        .tour-header__title .heading4 span {
          font-size: 1.4rem;
          font-weight: 400;
          font-variant: normal;
          display: flex;
          align-items: center; }
          .tour-header__title .heading4 span svg {
            fill: #fff;
            width: 1.7rem;
            height: 1.7rem;
            margin-right: 1rem; }
      .tour-header__title--difficulty {
        display: inline-block;
        padding: 0.1rem 1rem;
        line-height: 1.5;
        border-radius: 0 7px; }
        .tour-header__title--difficulty.difficult {
          background-color: #d32626; }
        .tour-header__title--difficulty.medium {
          background-color: #ab5c27; }
        .tour-header__title--difficulty.easy {
          background-color: #21bf73; }
      .tour-header__title--days {
        text-transform: uppercase; }
    .tour-header__photos {
      position: absolute;
      bottom: 0;
      right: 0;
      padding: 0.6rem;
      background-color: rgba(0, 0, 0, 0.7);
      border-radius: 10px 0 0 0;
      border: none;
      border-right: 1px solid rgba(171, 92, 39, 0.5);
      border-top: 1px solid rgba(171, 92, 39, 0.5);
      display: flex;
      align-items: center;
      column-gap: 0.5rem; }
      @media only screen and (max-width: 43.75em) {
        .tour-header__photos {
          flex-direction: column; } }
      @media only screen and (max-width: 30em) {
        .tour-header__photos {
          padding: 0.3rem; } }
      .tour-header__photos img {
        position: relative;
        display: inline-block;
        height: 9.5rem;
        cursor: url(../img/magnifying-glass.png), zoom-in;
        filter: brightness(80%);
        border: 2px solid transparent;
        transition: all 0.4s ease; }
        @media only screen and (max-width: 43.75em) {
          .tour-header__photos img {
            height: 11rem; } }
        @media only screen and (max-width: 37.5em) {
          .tour-header__photos img {
            height: 10rem; } }
        @media only screen and (max-width: 30em) {
          .tour-header__photos img {
            height: 7rem; } }
        @media only screen and (max-width: 23.75em) {
          .tour-header__photos img {
            height: 6rem; } }
        .tour-header__photos img:first-child {
          border-radius: 10px 0 0 0; }
        .tour-header__photos img:last-child {
          border-radius: 0 0 10px 0; }
        .tour-header__photos img:hover {
          filter: brightness(100%);
          border: 2px solid rgba(171, 92, 39, 0.8); }
  .tour-body {
    margin-top: 5rem;
    border: 1px solid rgba(171, 92, 39, 0.3);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: space-between; }
    @media only screen and (max-width: 37.5em) {
      .tour-body {
        display: flex;
        flex-direction: column; } }
    .tour-body .section__screen {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 10;
      width: 100%;
      height: 100%; }
    .tour-body .section__bg-pattern {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 11;
      opacity: 0.1; }
    .tour-body--left {
      position: relative;
      padding: 11rem 0;
      font-size: 1.4rem;
      color: #fff;
      background-image: linear-gradient(to left, rgba(171, 92, 39, 0.9), rgba(177, 110, 66, 0.9)); }
      @media only screen and (max-width: 65.625em) {
        .tour-body--left {
          padding: 11rem 0rem; } }
      @media only screen and (max-width: 56.25em) {
        .tour-body--left {
          grid-template-columns: 7rem 1fr;
          padding: 11rem 0; } }
      @media only screen and (max-width: 37.5em) {
        .tour-body--left {
          padding: 6rem 0;
          row-gap: 8rem; } }
      .tour-body--left .tour-body__left-box {
        width: 90%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 10rem 1fr;
        grid-template-rows: repeat(2, 1fr);
        grid-row-gap: 12rem;
        align-items: center;
        justify-content: space-between; }
        @media only screen and (max-width: 37.5em) {
          .tour-body--left .tour-body__left-box {
            width: 65%; } }
        @media only screen and (max-width: 30em) {
          .tour-body--left .tour-body__left-box {
            width: 80%; } }
        @media only screen and (max-width: 23.75em) {
          .tour-body--left .tour-body__left-box {
            width: 100%; } }
      .tour-body--left .tour-body__list-header {
        padding: 0.3rem 3rem;
        font-size: 2rem;
        font-weight: 700;
        font-variant: small-caps;
        white-space: nowrap;
        border-bottom: 1px solid #fff;
        transform: rotate(-90deg);
        justify-self: center; }
      .tour-body--left .tour-body__list-content {
        position: relative; }
        .tour-body--left .tour-body__list-content svg {
          fill: #fff;
          width: 2rem;
          height: 2rem;
          margin-right: 0.5rem; }
        .tour-body--left .tour-body__list-content img {
          width: 5rem;
          height: 5rem;
          border-radius: 100%;
          margin-right: 2rem; }
      .tour-body--left .tour-body__listItem {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center; }
        .tour-body--left .tour-body__listItem:not(:last-child) {
          margin-bottom: 3rem; }
        .tour-body--left .tour-body__listItem--key {
          font-weight: 700;
          text-transform: uppercase;
          margin-right: 1.5rem; }
        .tour-body--left .tour-body__listItem--value {
          font-weight: 300;
          text-transform: capitalize; }
    .tour-body--right {
      position: relative;
      z-index: 12;
      padding: 11rem 12rem;
      font-size: 1.4rem;
      background-image: linear-gradient(to left, #fdfaf5, #eee9e1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      row-gap: 8rem; }
      @media only screen and (max-width: 56.25em) {
        .tour-body--right {
          padding: 7rem 6rem; } }
      @media only screen and (max-width: 37.5em) {
        .tour-body--right {
          padding: 7rem 15rem;
          row-gap: 5rem; } }
      @media only screen and (max-width: 30em) {
        .tour-body--right {
          padding: 7rem 10rem;
          row-gap: 5rem; } }
      @media only screen and (max-width: 23.75em) {
        .tour-body--right {
          padding: 7rem 7rem;
          row-gap: 5rem; } }
      .tour-body--right svg {
        position: absolute;
        bottom: 1.5rem;
        right: 1.5rem;
        fill: #ab5c27;
        width: 3rem;
        height: 3rem;
        opacity: 0.8;
        align-self: center; }
    .tour-body__title {
      position: absolute;
      top: 0;
      padding: 0.2rem 1.5rem;
      font-size: 2rem;
      font-weight: 400;
      font-variant: small-caps; }
      .tour-body__title--right {
        left: 0;
        color: #fff;
        background-image: linear-gradient(to right, rgba(171, 92, 39, 0.9), rgba(177, 110, 66, 0.9));
        border-radius: 0 0 5px 0; }
      .tour-body__title--left {
        right: 0;
        font-weight: 700;
        color: #ab5c27;
        background-color: #eee9e1;
        border-radius: 0 0 0 5px; }
        @media only screen and (max-width: 37.5em) {
          .tour-body__title--left {
            right: auto;
            left: 0;
            border-radius: 0 0 5px 0; } }
  .tour-map {
    height: 60rem;
    margin-top: 5rem; }
  .tour-reviews {
    padding: 0 3rem;
    background-image: linear-gradient(to right, rgba(171, 92, 39, 0.9), rgba(177, 110, 66, 0.9)); }
    .tour-reviews__header {
      margin-bottom: 6rem;
      display: flex;
      justify-content: center; }
      .tour-reviews__header p {
        margin: 0 auto;
        padding: 0.5rem 2rem;
        font-size: 1.6rem;
        font-variant: small-caps;
        font-weight: 700;
        color: #ab5c27;
        background-image: linear-gradient(to left, #fdfaf5, #eee9e1);
        border: 1px solid rgba(171, 92, 39, 0.4);
        border-bottom: none;
        border-bottom-right-radius: 7px;
        border-bottom-left-radius: 7px; }
    .tour-reviews__add-btn {
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      column-gap: 1rem; }
      .tour-reviews__add-btn-box {
        display: inline-block;
        padding: 0;
        font-size: 1.6rem;
        color: #000;
        background-image: linear-gradient(to left, #fdfaf5, #eee9e1);
        border-radius: 7px;
        border: 1px solid rgba(171, 92, 39, 0.4);
        box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
        overflow: hidden;
        cursor: pointer; }
      .tour-reviews__add-btn svg {
        fill: #000;
        width: 2.5rem;
        height: 2.5rem; }
    .tour-reviews__add-checkbox {
      display: none; }
    .tour-reviews__add-checkbox:checked ~ .tour-reviews-form {
      max-height: 36.7rem;
      padding: 2rem; }
    .tour-reviews-form {
      width: 80%;
      max-height: 0;
      margin: 0 auto;
      margin-bottom: 3rem;
      padding: 0;
      border-radius: 7px;
      border: 1px solid rgba(171, 92, 39, 0.4);
      background-image: linear-gradient(to left, #fdfaf5, #eee9e1);
      overflow: hidden;
      transition: all 0.5s ease-in-out; }
      @media only screen and (max-width: 37.5em) {
        .tour-reviews-form {
          width: 100%; } }
      .tour-reviews-form__stars {
        display: grid;
        grid-template-columns: repeat(5, min-content);
        grid-template-rows: 1fr;
        justify-content: left; }
        .tour-reviews-form__stars svg {
          fill: #ab5c27;
          height: 3rem;
          width: 3rem; }
        .tour-reviews-form__stars .stars-block {
          cursor: pointer; }
          .tour-reviews-form__stars .stars-block--full--1, .tour-reviews-form__stars .stars-block--empty--1 {
            grid-area: 1 / 1 / 2 / 2; }
          .tour-reviews-form__stars .stars-block--full--2, .tour-reviews-form__stars .stars-block--empty--2 {
            grid-area: 1 / 2 / 2 / 3; }
          .tour-reviews-form__stars .stars-block--full--3, .tour-reviews-form__stars .stars-block--empty--3 {
            grid-area: 1 / 3 / 2 / 4; }
          .tour-reviews-form__stars .stars-block--full--4, .tour-reviews-form__stars .stars-block--empty--4 {
            grid-area: 1 / 4 / 2 / 5; }
          .tour-reviews-form__stars .stars-block--full--5, .tour-reviews-form__stars .stars-block--empty--5 {
            grid-area: 1 / 5 / 2 / 6; }
          .tour-reviews-form__stars .stars-block--full {
            visibility: hidden; }
      .tour-reviews-form textarea {
        width: 100%;
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding: 1rem;
        font-family: 'Franklin Libre', sans-serif;
        font-size: 1.6rem;
        border: none;
        border-radius: 7px;
        resize: none; }
        .tour-reviews-form textarea:focus {
          outline: 1px solid rgba(171, 92, 39, 0.4); }
      .tour-reviews-form__footer {
        text-align: right; }
    .tour-reviews__no-reviews {
      margin-top: -2rem;
      margin-bottom: 4rem;
      font-size: 1.4rem;
      color: #fff; }
    .tour-reviews__list {
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
      overflow: hidden;
      transition: all 0.4s ease-out; }
    .tour-reviews__footer {
      padding: 2.5rem; }
    .tour-reviews__btn {
      position: absolute;
      bottom: 0;
      right: 4rem;
      display: inline-block;
      padding: 1rem;
      cursor: pointer;
      transition: all 0.3s ease; }
      .tour-reviews__btn svg {
        fill: #fff;
        height: 3rem;
        width: 3rem; }
      .tour-reviews__btn:hover {
        transform: translateY(4px); }

.connect {
  padding-top: 10rem;
  background-image: linear-gradient(to right, #fdfaf5, #eee9e1); }
  .connect__content {
    margin: 10rem 0 7rem 0;
    display: flex;
    justify-content: center;
    column-gap: 8rem; }

.form-card {
  width: 45rem;
  padding: 4rem 5rem;
  background-image: linear-gradient(to left, #fdfaf5, #eee9e1);
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.3);
  border-radius: 7px;
  border-top: 8px solid rgba(171, 92, 39, 0.3); }
  .form-card__title {
    font-size: 2rem; }
  .form-card__form {
    width: 100%;
    margin-top: 4rem; }
  .form-card__submit {
    margin: 2rem 0; }
  .form-card .form__group--login {
    display: flex;
    justify-content: space-between;
    align-items: first baseline; }
  .form-card .login__submit {
    margin-bottom: 5rem; }
  .form-card .login__reset, .form-card .login__reset:link, .form-card .login__reset:visited {
    color: #000;
    font-size: 1.4rem;
    text-decoration: none; }
  .form-card .login__reset:hover {
    color: #ab5c27;
    text-decoration: underline; }

.google {
  margin-top: 4rem;
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-rows: repeat(2, min-content);
  row-gap: 4rem;
  justify-content: center;
  justify-items: center;
  align-items: center; }
  .google__separator--line {
    display: block;
    border: 1px solid rgba(63, 62, 62, 0.2);
    justify-self: stretch;
    grid-column: 1 / 2;
    grid-row: 1 / 2; }
  .google__separator--text {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1.6rem;
    background-color: #e9e7e3;
    grid-column: 1 / 2;
    grid-row: 1 / 2; }
  .google__img {
    height: 7rem;
    grid-column: 1 / 2;
    grid-row: 2 / 3; }
    .google__img:hover {
      cursor: pointer; }
