.pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Font Face Definitions */
@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Recoleta";
  src: url("../fonts/Recoleta-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.paragraph-large {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
}

.heading-small-brand {
  font-family: "Abhaya Libre";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
}

.heading-medium-brand {
  font-family: "Abhaya Libre";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
}

.heading-large-brand {
  font-family: "Abhaya Libre";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
}

.h1 {
  font-family: "Abhaya Libre";
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
}

.h2 {
  font-family: "Abhaya Libre";
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
}

.h3 {
  font-family: "Abhaya Libre";
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
}

body {
  background-color: #ECE5DA;
}

.landing-page {
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .landing-page {
    overflow: visible;
  }
}

.landing-hero {
  padding: 64px 16px 32px;
  text-align: center;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  background-color: #394C39;
}
@media (min-width: 768px) {
  .landing-hero {
    padding: 96px 64px 64px;
  }
}
.landing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../gfx/landing-hero-swirl.svg");
  background-size: cover;
  background-position: unset;
  background-repeat: no-repeat;
  z-index: 0;
  margin-top: 75px;
}
@media (min-width: 768px) {
  .landing-hero::before {
    background-position: top;
  }
}
.landing-hero .landing-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.landing-hero .landing-hero-upper {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .landing-hero .landing-hero-upper {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
}
.landing-hero .landing-hero-upper .upper-left {
  flex: 1;
  min-width: 0;
  text-align: left;
}
.landing-hero .landing-hero-upper .upper-left h1 {
  color: white;
}
.landing-hero .landing-hero-upper .upper-left p {
  color: #DBE0D7;
}
.landing-hero .landing-hero-upper .upper-right {
  flex: 1;
  min-width: 0;
}
.landing-hero .landing-hero-upper .upper-right img {
  width: auto;
  height: 100%;
  display: block;
}
@media (min-width: 768px) {
  .landing-hero .landing-hero-upper .upper-right img {
    width: auto;
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .landing-hero .landing-hero-upper .upper-right img {
    width: 100%;
    height: auto;
  }
}
.landing-hero h1 {
  font-family: "Recoleta";
  font-weight: 600;
  font-style: normal;
  font-size: 32px;
  color: #322716;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .landing-hero h1 {
    font-size: 48px;
  }
}
.landing-hero p {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  color: #4E3D22;
  margin-bottom: 32px;
}
.landing-hero .landing-hero-buttons {
  display: flex;
  flex-flow: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .landing-hero .landing-hero-buttons {
    flex-flow: row;
    flex-wrap: wrap;
  }
}
.landing-hero .landing-hero-button {
  background-color: #506750;
  color: white;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 20px;
  padding: 16px;
  border-radius: 999px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 208px;
}
.landing-hero .landing-hero-button:hover {
  background-color: #E0AD98;
  color: #322716;
}
.landing-hero .landing-hero-button:hover img {
  filter: invert(90%);
}
.landing-hero .landing-hero-button img {
  margin-right: 8px;
}

.landing-hero-lower {
  margin-top: 96px;
}

.rating-container {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "badge text" "badge link";
  column-gap: 20px;
  row-gap: 4px;
  align-items: center;
  color: #DBE0D7;
  font-family: "Quicksand", sans-serif;
}
@media (min-width: 768px) {
  .rating-container {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

.rating-badge {
  grid-area: badge;
  background-color: #F3DF9B;
  color: #394C39;
  padding: 8px 16px;
  border-radius: 15px;
  display: flex;
  align-items: baseline;
  font-weight: 700;
}

.rating-text {
  grid-area: text;
  font-size: 16px;
  text-align: left;
  align-self: end;
}
@media (min-width: 768px) {
  .rating-text {
    font-size: 18px;
  }
}

.rating-link {
  grid-area: link;
  align-self: start;
}
.rating-link a {
  text-decoration: none;
  color: #F7EBC1;
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.rating-link .arrow {
  margin-left: 8px;
  position: relative;
}
.rating-link .arrow img {
  vertical-align: middle;
}

@media (min-width: 768px) {
  .rating-text,
  .rating-link {
    align-self: center;
  }
}

.divider {
  display: none;
}
@media (min-width: 768px) {
  .divider {
    display: block;
    width: 1px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 5px;
  }
}

.score {
  font-size: 32px;
  line-height: 1;
}

.total {
  font-size: 16px;
  margin-left: 2px;
}

.stars-rating {
  width: 120px;
  height: 24px;
  margin-bottom: 15px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e9e09a"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>');
  background-repeat: repeat-x;
  background-size: 24px 24px;
}

.reviews-flex-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 16px;
  text-align: left;
}

.review-card {
  display: none;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  flex: 0 1 calc(100% - 20px);
  flex-direction: column;
}
.review-card:nth-child(1) {
  display: flex;
  flex: 1;
}
@media (min-width: 768px) {
  .review-card {
    display: none;
    flex: 0 1 calc(50% - 10px);
  }
  .review-card:nth-child(1), .review-card:nth-child(2) {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .review-card {
    display: flex;
    flex: 0 1 calc(33.333% - 14px);
  }
}

.review-card h3 {
  color: #354235;
  margin: 0px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Kalam", cursive;
}

.review-card p {
  color: #4E3D22;
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.meta {
  color: #4E3D22;
  font-family: "Quicksand", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.btn-more {
  background-color: #ECE5DA;
  color: #4E3D22;
  font-family: "Quicksand", sans-serif;
  padding: 8px 10px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  width: fit-content;
}
.btn-more img {
  vertical-align: bottom;
}

.landing-cards-container {
  width: 100%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .landing-cards-container {
    padding: 0 64px;
  }
}
@media (min-width: 1280px) {
  .landing-cards-container {
    padding: 0;
  }
}

.landing-card {
  width: 100%;
  position: relative;
  overflow: visible;
  padding: 32px 0 16px;
}
@media (min-width: 768px) {
  .landing-card {
    display: flex;
    gap: 64px;
    padding: 64px 0;
  }
  .landing-card:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.landing-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #DACFBE;
  border-radius: 999px;
}
.landing-card ul {
  list-style: none;
  padding: 0;
}
.landing-card ul li {
  margin: 16px 0;
  font-size: 14px;
  font-weight: 700;
  color: #4E3D22;
  display: flex;
  align-items: center;
}
.landing-card ul li img {
  margin-right: 8px;
}
.landing-card .card-text {
  font-family: "Quicksand", sans-serif;
}
.landing-card .card-text > img {
  height: 32px;
  width: 32px;
}
@media (min-width: 768px) {
  .landing-card .card-text > img {
    height: 40px;
    width: 40px;
  }
}
.landing-card .card-text h2 {
  font-family: "Recoleta";
  font-weight: 600;
  font-style: normal;
  color: #322716;
  margin: 16px 0;
  font-size: 24px;
}
@media (min-width: 768px) {
  .landing-card .card-text h2 {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  .landing-card .card-text h2 {
    font-size: 48px;
  }
}
.landing-card .card-text p {
  font-size: 16px;
  font-weight: 500;
  color: #4E3D22;
}
@media (min-width: 768px) {
  .landing-card .card-text p {
    font-size: 18px;
  }
}

.landing-cta-container {
  text-align: center;
  margin: 64px 0 0;
  padding: 32px;
  background-color: #E7DED0;
}
@media (min-width: 768px) {
  .landing-cta-container {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    padding: 64px 0px;
  }
}
.landing-cta-container h2 {
  font-size: 32px;
  font-family: "Recoleta";
  font-weight: 600;
  font-style: normal;
  color: #4E3D22;
  text-align: left;
}
@media (min-width: 768px) {
  .landing-cta-container h2 {
    font-size: 48px;
  }
}
.landing-cta-container .landing-cta-buttons {
  display: flex;
  flex-flow: column;
}
@media (min-width: 768px) {
  .landing-cta-container .landing-cta-buttons {
    flex-flow: row;
    align-items: center;
    gap: 16px;
  }
}
.landing-cta-container .landing-cta-button {
  background-color: #506750;
  color: white;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 999px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px 0;
}
@media (min-width: 768px) {
  .landing-cta-container .landing-cta-button {
    width: 208px;
  }
}
.landing-cta-container .landing-cta-button:hover {
  background-color: #394C39;
}
.landing-cta-container .landing-cta-button img {
  margin-right: 8px;
}
.landing-cta-container .landing-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .landing-cta-container .landing-cta-inner {
    padding: 0 64px;
  }
}

.img-wrap {
  position: relative;
  overflow: visible;
  margin-bottom: 24px;
}
.img-wrap img.base {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.img-wrap img.overlay {
  position: absolute;
  inset: 0;
  width: 60%;
  height: auto;
  object-fit: cover;
  z-index: 2;
  pointer-events: none;
}

@media (min-width: 768px) {
  .img-wrap,
  .card-text {
    flex: 1;
    align-content: center;
  }
}

.card-01 .img-wrap > img.overlay {
  width: 60%;
  left: -13.5%;
  top: 2.5%;
}
@media (min-width: 768px) {
  .card-01 .img-wrap > img.overlay {
    width: 75%;
    left: -16.5%;
    top: 8.5%;
  }
}
@media (min-width: 1200px) {
  .card-01 .img-wrap > img.overlay {
    width: 60%;
    left: 2.5%;
    top: -9.5%;
  }
}

.card-02 .img-wrap > img.overlay {
  width: 70%;
  left: 49%;
  top: 49%;
}
@media (min-width: 1200px) {
  .card-02 .img-wrap > img.overlay {
    top: 30%;
  }
}

.card-03 .img-wrap > img.overlay {
  width: 130%;
  left: -10%;
  top: 10%;
}
@media (min-width: 768px) {
  .card-03 .img-wrap > img.overlay {
    top: 20%;
  }
}
@media (min-width: 1024px) {
  .card-03 .img-wrap > img.overlay {
    width: 100%;
    left: 5%;
    top: 5%;
  }
}

.card-04 .img-wrap > img.overlay {
  width: 90%;
  left: -15%;
  top: 15%;
}
@media (min-width: 1200px) {
  .card-04 .img-wrap > img.overlay {
    width: 75%;
    top: 5%;
  }
}

.card-05 .img-wrap > img.overlay {
  width: 120%;
  left: 0;
  top: 15%;
}
@media (min-width: 1200px) {
  .card-05 .img-wrap > img.overlay {
    width: 100%;
    left: 0;
    top: 3%;
  }
}

.card-06 .img-wrap > img.overlay {
  width: 75%;
  left: -10%;
  top: 45%;
}
@media (min-width: 1200px) {
  .card-06 .img-wrap > img.overlay {
    width: 60%;
    left: -5%;
    top: 40%;
  }
}

.card-07 .img-wrap > img.overlay {
  width: 67%;
  left: -4%;
  top: 5%;
}
@media (min-width: 1200px) {
  .card-07 .img-wrap > img.overlay {
    width: 50%;
    left: -3%;
    top: 0%;
  }
}/*# sourceMappingURL=landing.css.map */