@charset "UTF-8";
/*!
    Theme Name: El Call d'Odèn
    Theme URI: https://elcall.cat/
    Description: El Call d'Odèn
    Version: 1.0.1
    Author: Nordkat Solutions SL
    Author URI: https://nordkat.com
*/
.scroll-animation {
  opacity: 0;
  transition: opacity 500ms;
}

.scroll-animation.scrolled {
  opacity: 1;
}

.scrolled.fade-in {
  animation: fade-in 0.5s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 0.5s ease-in-out both;
}

.scrolled.fade-in-top {
  animation: fade-in-top 0.5s ease-in-out both;
}

.scrolled.slide-left {
  animation: slide-in-left 0.5s ease-in-out both;
}

.scrolled.slide-right {
  animation: slide-in-right 0.5s ease-in-out both;
}

/* Keyframes */
@keyframes slide-in-left {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: var(--bs-border-width) solid;
  opacity: 0.25;
}

h6, h5, h4, h3, h2, h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-heading-color);
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 0.875em;
}

mark {
  padding: 0.1875em;
  color: var(--bs-highlight-color);
  background-color: var(--bs-highlight-bg);
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: var(--bs-code-color);
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.1875rem 0.375rem;
  font-size: 0.875em;
  color: var(--bs-body-bg);
  background-color: var(--bs-body-color);
  border-radius: 0.25rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: var(--bs-secondary-color);
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator {
  display: none !important;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  line-height: inherit;
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type=search]::-webkit-search-cancel-button {
  cursor: pointer;
  filter: grayscale(1);
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0;
  }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0;
  }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0;
  }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0;
  }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0;
  }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

html, body {
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  background: #F1E9DF;
  font-weight: 400;
  font-size: 16px;
  color: #776F58;
  overscroll-behavior: none;
}
html img, body img {
  max-width: 100%;
}
html a, body a {
  text-decoration: none;
}
html a:focus, body a:focus {
  outline: none;
}
html a:focus-visible, body a:focus-visible {
  outline: 1px solid #B29979;
}
html a:hover, body a:hover {
  text-decoration: none;
}
html b, html strong, body b, body strong {
  font-weight: 700;
}
html p, body p {
  line-height: 1.3;
}

body {
  overflow-X: hidden;
}

h1, .h1 {
  font-size: 56px;
  font-weight: 400;
  line-height: 0.9;
  font-family: "DM Serif Text", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  h1, .h1 {
    font-size: 50px;
  }
}
@media (max-width: 767.98px) {
  h1, .h1 {
    font-size: 46px;
  }
}
@media (max-width: 575.98px) {
  h1, .h1 {
    font-size: 40px;
  }
}

h2, .h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 0.9;
  font-family: "DM Serif Text", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  h2, .h2 {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  h2, .h2 {
    font-size: 28px;
  }
}
@media (max-width: 575.98px) {
  h2, .h2 {
    font-size: 22px;
  }
}

h3, .h3 {
  font-size: 36px;
  font-weight: 400;
  line-height: 0.9;
  font-family: "DM Serif Text", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  h3, .h3 {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  h3, .h3 {
    font-size: 24px;
  }
}
@media (max-width: 575.98px) {
  h3, .h3 {
    font-size: 22px;
  }
}

h4, .h4 {
  font-size: 32px;
  font-weight: 400;
  line-height: 0.9;
  font-family: "DM Serif Text", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  h4, .h4 {
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
  h4, .h4 {
    font-size: 24px;
  }
}
@media (max-width: 575.98px) {
  h4, .h4 {
    font-size: 22px;
  }
}

h5, .h5 {
  font-size: 22px;
  font-weight: 400;
  line-height: 0.9;
  font-family: "DM Serif Text", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}
@media (max-width: 575.98px) {
  h5, .h5 {
    font-size: 18px;
  }
}

.m1 {
  margin: 1rem !important;
}

.m15 {
  margin: 1.5rem !important;
}
@media (max-width: 575.98px) {
  .m15 {
    margin: 1rem !important;
  }
}

.m2 {
  margin: 2rem !important;
}
@media (max-width: 575.98px) {
  .m2 {
    margin: 1.5rem !important;
  }
}

.m25 {
  margin: 2.5rem !important;
}
@media (max-width: 575.98px) {
  .m25 {
    margin: 1.5rem !important;
  }
}

.m3 {
  margin: 3rem !important;
}
@media (max-width: 575.98px) {
  .m3 {
    margin: 2rem !important;
  }
}

.mL {
  margin-left: 1.5rem !important;
}

.mR {
  margin-right: 1.5rem !important;
}

.mT {
  margin-top: 1.5rem !important;
}

.mB {
  margin-bottom: 1.5rem !important;
}

.mLxl {
  margin-left: 2.5rem !important;
}
@media (max-width: 575.98px) {
  .mLxl {
    margin-left: 1.5rem !important;
  }
}

.mRxl {
  margin-right: 2.5rem !important;
}
@media (max-width: 575.98px) {
  .mRxl {
    margin-right: 1.5rem !important;
  }
}

.mTxl {
  margin-top: 2.5rem !important;
}
@media (max-width: 575.98px) {
  .mTxl {
    margin-top: 1.5rem !important;
  }
}

.mBxl {
  margin-bottom: 2.5rem !important;
}
@media (max-width: 575.98px) {
  .mBxl {
    margin-bottom: 1.5rem !important;
  }
}

.mLsm {
  margin-left: 0.5rem !important;
}

.mRsm {
  margin-right: 0.5rem !important;
}

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

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

.p1 {
  padding: 1rem !important;
}

.p15 {
  padding: 1.5rem !important;
}

.p2 {
  padding: 2rem !important;
}

.p25 {
  padding: 2.5rem !important;
}

.p3 {
  padding: 3rem !important;
}

.p-l {
  padding-left: 1.5rem !important;
}

.p-r {
  padding-right: 1.5rem !important;
}

.p-t {
  padding-top: 1.5rem !important;
}

.p-b {
  padding-bottom: 1.5rem !important;
}

.pl-sm {
  padding-left: 0.5rem !important;
}

.pt-sm {
  padding-right: 0.5rem !important;
}

.pt-sm {
  padding-top: 0.5rem !important;
}

.pb-sm {
  padding-bottom: 0.5rem !important;
}

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

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

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

.align-items-center {
  align-items: center;
}

.align-items-baseline {
  align-items: baseline;
}

.align-items-end {
  align-items: flex-end;
}

.justify-content-between {
  justify-content: space-between;
  display: flex;
}

.justify-content-center {
  justify-content: center;
  display: flex;
}

.justify-content-end {
  justify-content: flex-end;
  display: flex;
}

@keyframes cleca {
  50% {
    opacity: 0;
  }
}
@keyframes mainArrow {
  0% {
    transform: translateY(0) translateX(-50%) rotate(90deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(10px) translateX(-50%) rotate(90deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) translateX(-50%) rotate(90deg);
    opacity: 0.3;
  }
}
body.hidden-scroll {
  overflow: hidden;
}

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  display: none;
  z-index: 1035;
}

.sl-wrapper {
  z-index: 1040;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
}
.sl-wrapper * {
  box-sizing: border-box;
}
.sl-wrapper button {
  border: 0 none;
  background: transparent;
  font-size: 28px;
  padding: 0;
  cursor: pointer;
}
.sl-wrapper button:hover {
  opacity: 0.7;
}
.sl-wrapper .sl-close {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 10060;
  margin-top: -14px;
  margin-right: -14px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-family: Arial, Baskerville, monospace;
  color: #000;
  font-size: 3rem;
}
.sl-wrapper .sl-counter {
  display: none;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 10060;
  color: #000;
  font-size: 1rem;
}
.sl-wrapper .sl-download {
  display: none;
  position: fixed;
  bottom: 5px;
  width: 100%;
  text-align: center;
  z-index: 10060;
  color: #fff;
  font-size: 1rem;
}
.sl-wrapper .sl-download a {
  color: #fff;
}
.sl-wrapper .sl-navigation {
  width: 100%;
  display: none;
}
.sl-wrapper .sl-navigation button {
  position: fixed;
  top: 50%;
  margin-top: -22px;
  height: 44px;
  width: 22px;
  line-height: 44px;
  text-align: center;
  display: block;
  z-index: 10060;
  font-family: Arial, Baskerville, monospace;
  color: #000;
}
.sl-wrapper .sl-navigation button.sl-next {
  right: 5px;
  font-size: 2rem;
}
.sl-wrapper .sl-navigation button.sl-prev {
  left: 5px;
  font-size: 2rem;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 10px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 10px;
    font-size: 3rem;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 20px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 20px;
    font-size: 3rem;
  }
}
.sl-wrapper.sl-dir-rtl .sl-navigation {
  direction: ltr;
}
.sl-wrapper .sl-image {
  position: fixed;
  touch-action: none;
  z-index: 10000;
}
.sl-wrapper .sl-image img {
  margin: 0;
  padding: 0;
  display: block;
  border: 0 none;
  width: 100%;
  height: auto;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
.sl-wrapper .sl-image iframe {
  background: #000;
  border: 0 none;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
.sl-wrapper .sl-image .sl-caption {
  display: none;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.sl-wrapper .sl-image .sl-caption.pos-top {
  bottom: auto;
  top: 0;
}
.sl-wrapper .sl-image .sl-caption.pos-outside {
  bottom: auto;
}

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  animation: pulsate 1s ease-out infinite;
}

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.sl-transition {
  transition: transform ease 200ms;
}
@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.simple-lightbox .sl-close {
  width: 40px !important;
  height: 40px !important;
  background-color: rgba(110, 98, 82, 0.8);
  color: transparent !important;
  background-image: url("img/ico/close.svg") !important;
  background-size: 25px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}
.simple-lightbox .sl-navigation .sl-next, .simple-lightbox .sl-navigation .sl-prev {
  width: 40px !important;
  height: 40px !important;
  background-color: rgba(110, 98, 82, 0.8);
  color: transparent !important;
  background-image: url("img/ico/arrow.svg") !important;
  background-size: 25px;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
  border-radius: 10px;
}
.simple-lightbox .sl-navigation .sl-next:hover, .simple-lightbox .sl-navigation .sl-prev:hover {
  opacity: 0.5;
  transition: all 0.3s ease;
}
.simple-lightbox .sl-navigation .sl-next:hover {
  right: 15px;
}
.simple-lightbox .sl-navigation .sl-prev {
  transform: rotate(180deg);
}
.simple-lightbox .sl-navigation .sl-prev:hover {
  left: 15px;
}
@media (max-width: 575.98px) {
  .simple-lightbox .sl-image {
    width: calc(100% - 1.5rem) !important;
    height: auto !important;
    left: 0.75rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }
  .simple-lightbox .sl-navigation .sl-next, .simple-lightbox .sl-navigation .sl-prev {
    display: none !important;
  }
}

.sl-overlay {
  background-color: #F1E9DF !important;
  opacity: 0.95 !important;
}

header#header {
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  transition: all ease 0.3s;
  padding: 0 2rem;
}
header#header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #F1E9DF;
  padding: 1.5rem 0;
  padding-top: 3rem;
  transition: all ease 0.3s;
}
header#header .site-logo svg {
  width: auto;
  height: 25px;
}
header#header.active {
  background-color: rgba(110, 98, 82, 0.9);
  backdrop-filter: blur(12px);
}
header#header.active .header-container {
  padding: 1.2rem 0;
  border-bottom: none;
}
header#header.opened-mobile {
  background: #6E6252 !important;
}
header#header.opened-mobile .header-container {
  border-bottom: none;
}
header#header .main-menu-desktop {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  header#header .main-menu-desktop {
    display: none;
  }
}
header#header .main-menu-desktop nav.main-menu ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
header#header .main-menu-desktop nav.main-menu li {
  list-style: none;
  margin: 0;
  position: relative;
}
header#header .main-menu-desktop nav.main-menu li a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  transition: all ease 0.3s;
  text-transform: uppercase;
  position: relative;
}
header#header .main-menu-desktop nav.main-menu li:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-color: #F1E9DF;
  transition: all ease 0.3s;
}
header#header .main-menu-desktop nav.main-menu li:hover:after {
  width: 100%;
}
header#header .main-menu-desktop nav.main-menu li.current-menu-item:after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 100%;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F1E9DF;
}
header#header .main-menu-desktop nav.main-menu li.highlight.current-menu-item:after {
  width: 0;
}
header#header .main-menu-desktop nav.main-menu li.highlight a {
  color: #ffffff;
  padding: 0.5rem 1rem;
  border: 1px solid #ffffff;
  transition: all ease 0.3s;
}
header#header .main-menu-desktop nav.main-menu li.highlight:hover a {
  background-color: #ffffff;
  color: #6E6252;
}
header#header .main-menu-desktop nav.main-menu li.highlight:hover:after {
  width: 0;
}
@media (min-width: 992px) {
  header#header #navico {
    display: none !important;
  }
}
@media (max-width: 991.98px) {
  header#header .language-selector {
    right: 90px;
  }
  header#header .header-container {
    padding: 1rem 0;
  }
  header#header .site-logo svg {
    width: auto;
    height: 20px;
  }
  header#header #navico {
    transform: translateY(-50%) scale(0.3);
  }
}
@media (max-width: 767.98px) {
  header#header {
    padding: 0 1rem;
  }
  header#header .language-selector {
    right: 74px;
  }
  header#header .header-container {
    padding: 1.2rem 0;
  }
  header#header.active .header-container {
    padding: 1.2rem 0;
  }
}

.site-content {
  background: #ffffff;
}

.flexible-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767.98px) {
  .flexible-container {
    padding: 0 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .flexible-container {
    padding: 0 1rem;
  }
}

.container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 767.98px) {
  .container {
    padding: 0 1.2rem;
  }
}
@media (max-width: 575.98px) {
  .container {
    padding: 0 1rem;
  }
}

footer#footer {
  padding: 3rem 0;
  background-color: #B29979;
  color: #ffffff;
  font-size: 15px;
}
footer#footer a {
  transition: all ease 0.3s;
}
footer#footer a:hover {
  opacity: 0.7;
}
footer#footer .footer-logo img {
  width: 90%;
}
footer#footer .footer-data {
  padding-top: 0.5rem;
}
footer#footer .footer-data p {
  margin: 0;
}
footer#footer .footer-social {
  padding-top: 0.5rem;
}
footer#footer .footer-social .copyright {
  display: block;
  margin-bottom: 1rem;
}
footer#footer .footer-social .footer-social-links {
  display: flex;
  gap: 1rem;
}
footer#footer .footer-menu {
  padding-top: 0.5rem;
}
footer#footer .footer-menu ul {
  padding: 0;
  margin: 0;
}
footer#footer .footer-menu ul li {
  list-style: none;
  margin: 0;
}
footer#footer .footer-menu ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: all ease 0.3s;
}

.whatsapp-fixed {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
  background-color: #ffffff;
  border-radius: 50%;
}
.whatsapp-fixed img {
  width: 60px;
  height: 60px;
  transition: all ease 0.3s;
}
.whatsapp-fixed:hover {
  transform: scale(1.1);
}
.whatsapp-fixed:hover img {
  filter: brightness(1.1);
}
@media (max-width: 767.98px) {
  .whatsapp-fixed {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .whatsapp-fixed img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 575.98px) {
  .whatsapp-fixed {
    bottom: 1rem;
    right: 1rem;
  }
  .whatsapp-fixed img {
    width: 45px;
    height: 45px;
  }
}

#navico {
  flex-direction: column;
  width: 70px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) scale(0.5);
  display: inherit;
}
#navico span {
  background: #F1E9DF;
  border-radius: 10px;
  height: 7px;
  margin: 7px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}
#navico span:nth-of-type(1) {
  width: 100%;
}
#navico span:nth-of-type(2) {
  width: 100%;
}
#navico span:nth-of-type(3) {
  width: 100%;
}
#navico.opened span:nth-of-type(1) {
  width: 50%;
  transform-origin: bottom;
  transform: rotatez(45deg) translate(8px, 0px);
}
#navico.opened span:nth-of-type(2) {
  width: 100%;
  transform-origin: top;
  transform: rotatez(-45deg);
}
#navico.opened span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(30px, -11px) rotatez(45deg);
}
@media (max-width: 767.98px) {
  #navico {
    right: -6px;
    transform: translateY(-50%) scale(0.45);
  }
}

.nav-container {
  width: 100vw;
  top: 55px;
  left: 0;
  display: none;
  background: #6E6252;
  position: fixed;
  z-index: 9999;
  padding: 2rem 1rem;
  padding-top: 4rem;
}
.nav-container .full-space {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.nav-container .main-menu-container nav.main-menu {
  padding-top: 2rem;
}
.nav-container .main-menu-container nav.main-menu ul {
  padding: 0;
  list-style: none;
  margin: 0;
}
.nav-container .main-menu-container nav.main-menu ul li {
  list-style: none;
  margin: 0;
}
.nav-container .main-menu-container nav.main-menu ul li a {
  color: #F1E9DF;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 400;
  margin: 1rem 0;
  display: block;
  transition: all ease 0.3s;
}
.nav-container .main-menu-container nav.main-menu ul li a:hover {
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .nav-container {
    padding-top: 2.5rem;
  }
  .nav-container .main-menu-container ul li a {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .nav-container {
    top: 0;
  }
  .nav-container .main-menu-container ul li a {
    font-size: 24px;
    margin: 0.3rem 0;
  }
}
@media (min-width: 992px) {
  .nav-container {
    display: none !important;
  }
}

button.btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  margin: 0;
}
button.btn:focus {
  outline: 0;
  box-shadow: none;
}

button.btn:focus, a.btn:focus, .btn:focus {
  outline: none;
}
button.btn:focus-visible, a.btn:focus-visible, .btn:focus-visible {
  outline: 1px solid #B29979;
}
button.btn, a.btn, .btn {
  padding: 8px 24px;
  border-radius: 50px;
  transition: all ease 0.3s;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  position: relative;
  font-size: 16px;
  cursor: pointer;
}
button.btn svg, a.btn svg, .btn svg {
  width: 16px;
  height: 16px;
  transition: all ease 0.3s;
}
button.btn.lg-svg, a.btn.lg-svg, .btn.lg-svg {
  padding: 12px 32px;
}
button.btn.lg-svg svg, a.btn.lg-svg svg, .btn.lg-svg svg {
  width: 24px;
  height: 24px;
}
button.btn.xl-svg, a.btn.xl-svg, .btn.xl-svg {
  padding: 8px 32px;
}
button.btn.xl-svg svg, a.btn.xl-svg svg, .btn.xl-svg svg {
  width: 32px;
  height: 32px;
}
@media (max-width: 575.98px) {
  button.btn, a.btn, .btn {
    padding: 14px 28px;
  }
  button.btn.lg-svg, a.btn.lg-svg, .btn.lg-svg {
    padding: 10px 28px;
  }
  button.btn.xl-svg, a.btn.xl-svg, .btn.xl-svg {
    padding: 6px 28px;
  }
}

button.btn-xl, a.btn-xl, .btn-xl {
  padding: 1.5rem 2.5rem;
  font-size: 16px;
}

button.btn-md, a.btn-md, .btn-md {
  padding: 8px 20px;
  font-size: 16px;
}

button.btn-block, a.btn-block, .btn-block {
  width: 100%;
  display: block;
  text-align: center;
}

button.btn-primary, a.btn-primary, .btn-primary {
  background-color: #6E6252;
  border: 1px solid #6E6252;
  color: #ffffff;
}
button.btn-primary svg, a.btn-primary svg, .btn-primary svg {
  fill: #ffffff;
}
button.btn-primary.svg-is-stroke svg, a.btn-primary.svg-is-stroke svg, .btn-primary.svg-is-stroke svg {
  fill: transparent;
  stroke: #ffffff;
}
button.btn-primary:hover, a.btn-primary:hover, .btn-primary:hover {
  background-color: #776F58;
  border: 1px solid #776F58;
}

button.btn-secondary, a.btn-secondary, .btn-secondary {
  background-color: #776F58;
  border: 1px solid #776F58;
  color: #ffffff;
}
button.btn-secondary svg, a.btn-secondary svg, .btn-secondary svg {
  fill: #ffffff;
}
button.btn-secondary.svg-is-stroke svg, a.btn-secondary.svg-is-stroke svg, .btn-secondary.svg-is-stroke svg {
  fill: transparent;
  stroke: #ffffff;
}
button.btn-secondary:hover, a.btn-secondary:hover, .btn-secondary:hover {
  background-color: #6E6252;
  border: 1px solid #6E6252;
}

button.btn-tertiary, a.btn-tertiary, .btn-tertiary {
  background-color: #B29979;
  border: 1px solid #B29979;
  color: #ffffff;
}
button.btn-tertiary svg, a.btn-tertiary svg, .btn-tertiary svg {
  fill: #ffffff;
}
button.btn-tertiary.svg-is-stroke svg, a.btn-tertiary.svg-is-stroke svg, .btn-tertiary.svg-is-stroke svg {
  fill: transparent;
  stroke: #ffffff;
}
button.btn-tertiary:hover, a.btn-tertiary:hover, .btn-tertiary:hover {
  background-color: #6E6252;
  border: 1px solid #6E6252;
}

button.btn-light, a.btn-light, .btn-light {
  background-color: #F1E9DF;
  border: 1px solid #F1E9DF;
  color: #6E6252;
}
button.btn-light svg, a.btn-light svg, .btn-light svg {
  fill: #6E6252;
}
button.btn-light.svg-is-stroke svg, a.btn-light.svg-is-stroke svg, .btn-light.svg-is-stroke svg {
  fill: transparent;
  stroke: #6E6252;
}
button.btn-light:hover, a.btn-light:hover, .btn-light:hover {
  background-color: #776F58;
  border: 1px solid #776F58;
  color: #ffffff;
}
button.btn-light:hover svg, a.btn-light:hover svg, .btn-light:hover svg {
  fill: #ffffff;
}
button.btn-light:hover.svg-is-stroke svg, a.btn-light:hover.svg-is-stroke svg, .btn-light:hover.svg-is-stroke svg {
  fill: transparent;
  stroke: #ffffff;
}

.loader, .loader:before, .loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation: bblFadInOut 1.8s infinite ease-in-out;
  animation-fill-mode: both;
}

.loader {
  color: #FFF;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

.loader:before, .loader:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@keyframes bblFadInOut {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
.contact-form.inputs-has-border input[type=text], .contact-form.inputs-has-border input[type=tel], .contact-form.inputs-has-border input[type=email], .contact-form.inputs-has-border input[type=date], .contact-form.inputs-has-border input[type=number], .contact-form.inputs-has-border select, .contact-form.inputs-has-border textarea, .booking-form.inputs-has-border input[type=text], .booking-form.inputs-has-border input[type=tel], .booking-form.inputs-has-border input[type=email], .booking-form.inputs-has-border input[type=date], .booking-form.inputs-has-border input[type=number], .booking-form.inputs-has-border select, .booking-form.inputs-has-border textarea {
  border: 1px solid rgba(110, 98, 82, 0.7);
}
.contact-form form .mt-4, .booking-form form .mt-4 {
  margin-top: 1rem;
}
.contact-form form p, .booking-form form p {
  margin: 0;
  padding: 0;
}
.contact-form form label, .booking-form form label {
  width: 100%;
  font-weight: 700;
}
.contact-form form input[type=text], .contact-form form input[type=tel], .contact-form form input[type=email], .contact-form form input[type=date], .contact-form form input[type=number], .contact-form form select, .contact-form form textarea, .booking-form form input[type=text], .booking-form form input[type=tel], .booking-form form input[type=email], .booking-form form input[type=date], .booking-form form input[type=number], .booking-form form select, .booking-form form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  margin: 0;
}
.contact-form form input[type=text]:focus, .contact-form form input[type=tel]:focus, .contact-form form input[type=email]:focus, .contact-form form input[type=date]:focus, .contact-form form input[type=number]:focus, .contact-form form select:focus, .contact-form form textarea:focus, .booking-form form input[type=text]:focus, .booking-form form input[type=tel]:focus, .booking-form form input[type=email]:focus, .booking-form form input[type=date]:focus, .booking-form form input[type=number]:focus, .booking-form form select:focus, .booking-form form textarea:focus {
  outline: 0;
  box-shadow: none;
}
.contact-form form input[type=text], .contact-form form input[type=tel], .contact-form form input[type=email], .contact-form form input[type=date], .contact-form form input[type=number], .contact-form form select, .contact-form form textarea, .booking-form form input[type=text], .booking-form form input[type=tel], .booking-form form input[type=email], .booking-form form input[type=date], .booking-form form input[type=number], .booking-form form select, .booking-form form textarea {
  background-color: #ffffff;
  font-family: "Manrope", Helvetica, Arial, sans-serif !important;
  font-size: 15px;
  width: 100%;
  padding: 1rem;
  margin: 0.5rem 0;
  color: #000000;
  border-radius: 15px;
}
.contact-form form input[type=text]::-moz-placeholder, .contact-form form input[type=tel]::-moz-placeholder, .contact-form form input[type=email]::-moz-placeholder, .contact-form form input[type=date]::-moz-placeholder, .contact-form form input[type=number]::-moz-placeholder, .contact-form form select::-moz-placeholder, .contact-form form textarea::-moz-placeholder, .booking-form form input[type=text]::-moz-placeholder, .booking-form form input[type=tel]::-moz-placeholder, .booking-form form input[type=email]::-moz-placeholder, .booking-form form input[type=date]::-moz-placeholder, .booking-form form input[type=number]::-moz-placeholder, .booking-form form select::-moz-placeholder, .booking-form form textarea::-moz-placeholder {
  color: rgba(119, 111, 88, 0.5);
  font-family: "Manrope", Helvetica, Arial, sans-serif !important;
  font-size: 15px;
}
.contact-form form input[type=text]::placeholder, .contact-form form input[type=tel]::placeholder, .contact-form form input[type=email]::placeholder, .contact-form form input[type=date]::placeholder, .contact-form form input[type=number]::placeholder, .contact-form form select::placeholder, .contact-form form textarea::placeholder, .booking-form form input[type=text]::placeholder, .booking-form form input[type=tel]::placeholder, .booking-form form input[type=email]::placeholder, .booking-form form input[type=date]::placeholder, .booking-form form input[type=number]::placeholder, .booking-form form select::placeholder, .booking-form form textarea::placeholder {
  color: rgba(119, 111, 88, 0.5);
  font-family: "Manrope", Helvetica, Arial, sans-serif !important;
  font-size: 15px;
}
.contact-form form input[type=text]:disabled, .contact-form form input[type=tel]:disabled, .contact-form form input[type=email]:disabled, .contact-form form input[type=date]:disabled, .contact-form form input[type=number]:disabled, .contact-form form select:disabled, .contact-form form textarea:disabled, .booking-form form input[type=text]:disabled, .booking-form form input[type=tel]:disabled, .booking-form form input[type=email]:disabled, .booking-form form input[type=date]:disabled, .booking-form form input[type=number]:disabled, .booking-form form select:disabled, .booking-form form textarea:disabled {
  color: rgba(119, 111, 88, 0.5);
  cursor: not-allowed;
}
.contact-form form textarea, .booking-form form textarea {
  width: 100%;
  height: 130px;
  resize: none;
}
.contact-form form small, .booking-form form small {
  font-size: 12px;
  font-weight: 400;
}
.contact-form form small a, .booking-form form small a {
  color: #6E6252;
  font-weight: 600;
}
.contact-form form small a:hover, .booking-form form small a:hover {
  text-decoration: underline;
}
.contact-form form .wpcf7-not-valid-tip, .booking-form form .wpcf7-not-valid-tip {
  font-size: 15px;
}
.contact-form form .wpcf7-list-item, .booking-form form .wpcf7-list-item {
  margin: 0;
}
.contact-form form .wpcf7-response-output, .booking-form form .wpcf7-response-output {
  border: none;
  padding: 0.7rem;
  font-size: 15px;
  background-color: #776F58;
  margin: 0;
}
.contact-form form .wpcf7-acceptance, .booking-form form .wpcf7-acceptance {
  display: block;
  color: #776F58;
  font-family: "Manrope", Helvetica, Arial, sans-serif !important;
  font-size: 14px;
}
.contact-form form .wpcf7-acceptance label, .booking-form form .wpcf7-acceptance label {
  font-weight: 400;
}
.contact-form form .wpcf7-acceptance a, .booking-form form .wpcf7-acceptance a {
  color: #776F58;
  font-weight: 600;
}
.contact-form form .wpcf7-acceptance a:hover, .booking-form form .wpcf7-acceptance a:hover {
  text-decoration: underline;
}
.contact-form form input[type=radio], .contact-form form input[type=checkbox], .booking-form form input[type=radio], .booking-form form input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(110, 98, 82, 0.6);
  background-color: rgba(255, 255, 255, 0.7);
  display: inline-grid;
  place-content: center;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.contact-form form .wpcf7-radio, .booking-form form .wpcf7-radio {
  display: block;
  margin-top: 0.5rem;
}
.contact-form form .wpcf7-radio .wpcf7-list-item, .booking-form form .wpcf7-radio .wpcf7-list-item {
  margin-right: 1rem;
}
.contact-form form .wpcf7-radio .wpcf7-list-item label, .booking-form form .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-form form input[type=radio], .booking-form form input[type=radio] {
  border-radius: 999px;
}
.contact-form form input[type=radio]::before, .booking-form form input[type=radio]::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #6E6252;
  transform: scale(0);
  transition: transform 0.2s ease;
}
.contact-form form input[type=radio]:checked::before, .booking-form form input[type=radio]:checked::before {
  transform: scale(1);
}
.contact-form form input[type=checkbox], .booking-form form input[type=checkbox] {
  border-radius: 4px;
}
.contact-form form input[type=checkbox]::before, .booking-form form input[type=checkbox]::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  background-color: #6E6252;
  clip-path: polygon(14% 44%, 0 60%, 43% 100%, 100% 16%, 84% 0, 41% 62%);
  transition: transform 0.2s ease;
}
.contact-form form input[type=checkbox]:checked::before, .booking-form form input[type=checkbox]:checked::before {
  transform: scale(1);
}
.contact-form form input[type=submit], .booking-form form input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  margin: 0;
}
.contact-form form input[type=submit]:focus, .booking-form form input[type=submit]:focus {
  outline: 0;
  box-shadow: none;
}
.contact-form form input[type=submit]:focus, .booking-form form input[type=submit]:focus {
  outline: none;
}
.contact-form form input[type=submit]:focus-visible, .booking-form form input[type=submit]:focus-visible {
  outline: 1px solid #B29979;
}
.contact-form form input[type=submit], .booking-form form input[type=submit] {
  padding: 1rem 3rem;
  transition: background ease 0.3s, color ease 0.3s;
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background-color: #6E6252;
  color: #ffffff;
}
.contact-form form input[type=submit]:hover, .booking-form form input[type=submit]:hover {
  transition: background ease 0.3s, color ease 0.3s;
  background-color: #776F58;
}
@media (max-width: 575.98px) {
  .contact-form form input[type=submit], .booking-form form input[type=submit] {
    padding: 1rem 1.7rem;
    font-size: 14px;
  }
}

main.page-front-page {
  background-color: #6E6252;
}
main.page-front-page section.home-init {
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  position: relative;
}
main.page-front-page section.home-init .bg-image, main.page-front-page section.home-init .bg-slider {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
}
main.page-front-page section.home-init .bg-image img, main.page-front-page section.home-init .bg-slider img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
main.page-front-page section.home-init .bg-video {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
}
main.page-front-page section.home-init .bg-video iframe {
  width: 110vw;
  height: calc(100dvh + 200px);
  pointer-events: none;
  position: relative;
  top: -100px;
  left: -5vw;
  z-index: 1;
}
@media only screen and (max-width: 1600px) {
  main.page-front-page section.home-init .bg-video {
    height: 56.25vw;
  }
  main.page-front-page section.home-init .bg-video iframe {
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 991.98px) {
  main.page-front-page section.home-init .bg-video {
    height: 80vh;
  }
  main.page-front-page section.home-init .bg-video iframe {
    width: 250%;
    height: calc(80vh + 200px);
  }
}
@media (max-width: 575.98px) {
  main.page-front-page section.home-init .bg-video {
    height: 85vh;
  }
  main.page-front-page section.home-init .bg-video iframe {
    width: 400%;
    height: calc(85vh + 200px);
  }
}
@media only screen and (max-width: 1600px) {
  main.page-front-page section.home-init {
    height: 56.25vw;
  }
}
@media (max-width: 991.98px) {
  main.page-front-page section.home-init {
    height: 70vh;
  }
}
@media (max-width: 575.98px) {
  main.page-front-page section.home-init {
    height: 75vh;
  }
}
main.page-front-page section.home-init:after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) -10%, rgba(0, 0, 0, 0));
  top: 0;
  left: 0;
  width: 100vw;
  height: 30%;
  z-index: 2;
}
main.page-front-page section.home-init:before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.15);
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 2;
}
main.page-front-page section.home-init .flexible-container {
  height: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 3;
}
main.page-front-page section.home-init .main-title {
  position: absolute;
  display: flex;
  max-width: 35vw;
  left: 5vw;
  justify-content: flex-end;
  top: 70%;
  transform: translateY(-50%);
}
main.page-front-page section.home-init .main-title h1 {
  color: #ffffff;
  font-size: 6vw;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
main.page-front-page section.environment-section {
  background-color: #F1E9DF;
  padding: 5rem 0;
}
main.page-front-page section.environment-section .environment-content h2 {
  max-width: 340px;
}
main.page-front-page section.environment-section .environment-content .environment-description {
  max-width: 340px;
  padding: 1rem 0;
  color: #000000;
}
main.page-front-page section.environment-section .environment-content .environment-description p {
  margin: 0;
  padding: 1rem 0;
}
main.page-front-page section.environment-section .environment-content .btn {
  margin-top: 1.5rem;
}
main.page-front-page section.environment-section .environment-images {
  display: flex;
  gap: 1rem;
}
main.page-front-page section.environment-section .environment-images .environment-image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main.page-front-page section.environment-section .environment-images .environment-image-container.image-1 {
  width: 40%;
}
main.page-front-page section.environment-section .environment-images .environment-image-container.image-2 {
  width: 60%;
}
main.page-front-page .image-separator {
  width: 100%;
  height: 600px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
main.page-front-page .image-separator img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 1200px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: -300px;
  left: 0;
}
main.page-front-page .thanks-section {
  background-color: #F1E9DF;
  padding: 5rem 0;
}
main.page-front-page .thanks-section .thanks-content .thanks-description {
  max-width: 440px;
  padding: 1rem 0;
  color: #000000;
}
main.page-front-page .thanks-section .thanks-content .thanks-description p {
  margin: 0;
  padding: 1rem 0;
}
main.page-front-page .thanks-section .thanks-content .btn {
  margin-top: 1.5rem;
}

.page-template-page-cases .page-main.houses {
  min-height: 100vh;
  align-items: center;
  display: flex;
}
.page-template-page-cases .page-main.houses .main-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-template-page-cases .page-main.houses .main-content .content-text {
  width: 30%;
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 3rem;
  padding-right: 1rem;
}
.page-template-page-cases .page-main.houses .main-content .content-text h1 {
  font-size: 4.5vw;
  font-weight: 500;
  color: #ffffff;
}
.page-template-page-cases .page-main.houses .main-content .content-text p {
  font-size: 20px;
}
.page-template-page-cases .page-main.houses .main-content .houses-section {
  width: 66%;
}
.page-template-page-cases .page-main.houses .main-content .houses-section .houses-list {
  padding: 3rem;
  position: relative;
  z-index: 2;
}
.page-template-page-cases .page-main.houses .main-content .houses-section .houses-list:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  width: 85%;
  height: 100%;
  z-index: 1;
  border-radius: 30px 0 0 30px;
}
.page-template-page-cases .page-main.houses .main-content .houses-section .houses-list .row {
  --bs-gutter-x: 3rem;
}
.page-template-page-cases .page-main.houses .main-content .houses-section .houses-list .house-card {
  height: 300px;
  position: relative;
  z-index: 2;
}
.page-template-page-cases .page-main.houses .main-content .houses-section .houses-list .house-card .house-card-content {
  gap: 1rem;
}
.page-template-page-cases .page-main.houses .main-content .houses-section .houses-list .house-card .house-card-content h3 {
  font-size: 40px;
}
.page-template-page-cases section.nature-section {
  background-color: #776F58;
  padding: 5rem 0;
}
.page-template-page-cases section.nature-section .nature-content {
  padding-left: 3rem;
}
.page-template-page-cases section.nature-section .nature-content h2 {
  max-width: 340px;
  font-size: 50px;
  color: #ffffff;
}
.page-template-page-cases section.nature-section .nature-content .nature-description {
  max-width: 340px;
  padding: 1rem 0;
  color: #ffffff;
}
.page-template-page-cases section.nature-section .nature-content .nature-description p {
  margin: 0;
  padding: 1rem 0;
}
.page-template-page-cases section.nature-section .nature-images {
  display: flex;
  gap: 1rem;
}
.page-template-page-cases section.nature-section .nature-images .nature-image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-template-page-cases section.nature-section .nature-images .nature-image-container.image-1 {
  width: 60%;
}
.page-template-page-cases section.nature-section .nature-images .nature-image-container.image-2 {
  width: 40%;
}

.page-template-page-entorn .environment-initial-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, #6e6252 0%, #6e6252 80%, #f1e9df 80.01%, #f1e9df 100%);
}
.page-template-page-entorn .environment-initial-section .environment-initial-content {
  color: #F1E9DF;
  padding-right: 3rem;
}
.page-template-page-entorn .environment-initial-section .environment-initial-content h2 {
  padding: 1rem 0;
}
.page-template-page-entorn .environment-initial-section .environment-initial-image {
  max-height: 500px;
  overflow: hidden;
}
.page-template-page-entorn .environment-initial-section .environment-initial-image img {
  width: 100%;
}
.page-template-page-entorn .environment-initial-section .environment-initial-image2 {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-top: 3rem;
}
.page-template-page-entorn .environment-initial-section .environment-initial-image2 img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
.page-template-page-entorn .environment-activities {
  padding: 4rem 0;
  background-color: #F1E9DF;
}
.page-template-page-entorn .environment-activities .environment-activities-content {
  padding: 4rem 0;
}
.page-template-page-entorn .environment-activities .environment-activities-content .activity {
  color: #000000;
  margin-bottom: 3rem;
}
.page-template-page-entorn .environment-activities .environment-activities-content .activity img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 0 1rem;
}
.page-template-page-entorn .environment-activities .environment-activities-content .activity .activity-content {
  width: 85%;
}
.page-template-page-entorn .environment-activities .environment-activities-content .activity .activity-content h3 {
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.page-template-page-entorn .environment-activities .environment-activities-content .activity .activity-content p {
  margin: 0;
  padding: 0;
}

.page-template-page-historia .history-main-section {
  padding: 5rem 0;
  background-color: #F1E9DF;
}
.page-template-page-historia .history-main-section .history-main-section-content h2 {
  font-size: 40px;
}
.page-template-page-historia .history-main-section .history-main-section-content h3 {
  color: #000000;
  font-style: italic;
  font-size: 26px;
  padding: 2rem 0;
}
.page-template-page-historia .history-main-section .history-main-section-content p {
  color: #000000;
}
.page-template-page-historia .history-main-section .history-links {
  padding: 2rem 0;
  padding-left: 5rem;
}
.page-template-page-historia .history-main-section .history-links .history-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-template-page-historia .history-main-section .history-links .history-links-list .history-link-item {
  position: relative;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(110, 98, 82, 0.3);
}
.page-template-page-historia .history-main-section .history-links .history-links-list .history-link-item:first-child {
  border-top: 1px solid rgba(110, 98, 82, 0.3);
}
.page-template-page-historia .history-main-section .history-links .history-links-list .history-link-item:before {
  content: "";
  width: 9px;
  border-radius: 50%;
  height: 9px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #6E6252;
  font-size: 24px;
}
.page-template-page-historia .history-main-section .history-links .history-links-list .history-link-item a {
  display: block;
  padding-left: 2rem;
  color: #6E6252;
  font-family: "DM Serif Text", Helvetica, Arial, sans-serif;
  font-size: 22px;
  line-height: 1.5;
  text-decoration: none;
  transition: all ease 0.3s;
  font-weight: 400;
}
.page-template-page-historia .history-main-section .history-links .history-links-list .history-link-item a:hover {
  color: #000000;
  transform: translateX(10px);
}
.page-template-page-historia .image-separator {
  width: 100%;
  height: 600px;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.page-template-page-historia .image-separator img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 1200px;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: -300px;
  left: 0;
}
.page-template-page-historia .history-end-section {
  padding: 5rem 0;
  background-color: #F1E9DF;
}
.page-template-page-historia .history-end-section .history-end-content {
  padding-left: 3rem;
  color: #000000;
}

.page-template-page-reserva .booking-section {
  padding: 5rem 0;
}
.page-template-page-reserva .booking-section h2 {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(110, 98, 82, 0.3);
}
.page-template-page-reserva .booking-section .booking-calendars {
  max-width: 80%;
}
.page-template-page-reserva .booking-section .booking-calendars .booking-calendar {
  margin: 1rem 0;
}
.page-template-page-reserva .booking-section .booking-calendars .booking-calendar iframe {
  width: 100%;
  height: 440px !important;
  border-radius: 20px;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 1rem;
}
.page-template-page-reserva .booking-section .booking-pricing .pricing-item h3 {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(110, 98, 82, 0.3);
  cursor: pointer;
  transition: opacity 200ms ease-in-out;
}
.page-template-page-reserva .booking-section .booking-pricing .pricing-item h3:hover {
  opacity: 0.7;
}
.page-template-page-reserva .booking-section .booking-pricing .pricing-item .pricing-item-pricings {
  padding: 1rem 0;
}
.page-template-page-reserva .booking-section .booking-pricing .pricing-item .pricing-item-pricings .pricing-item-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
}
.page-template-page-reserva .booking-section .booking-pricing .booking-pricing-text {
  padding: 2rem 0;
  border-top: 1px solid rgba(110, 98, 82, 0.3);
}
.page-template-page-reserva .booking-section .booking-pricing .booking-pricing-text ul {
  padding-left: 1rem;
}
.page-template-page-reserva .booking-section .booking-pricing .booking-pricing-text ul li {
  padding: 0.5rem 0;
}

.page-template-page-contacta .contact-form-section {
  padding: 6rem 0;
}
.page-template-page-contacta .contact-form-section h2 {
  max-width: 400px;
}
.page-template-page-contacta .contact-form-section .form-content {
  background-color: #F1E9DF;
}

main.page-base .base-content {
  padding: 4rem 0;
  background-color: #F1E9DF;
}
main.page-base .base-content h2 {
  margin: 0;
  padding: 0;
  padding-bottom: 1rem;
}
main.page-base .base-content p {
  padding: 0.5rem 0;
  margin: 0;
}
main.page-base .base-content img {
  border-radius: 10px;
}
main.page-base .base-content .gallery {
  --gallery-columns: 3;
  display: grid;
  grid-template-columns: repeat(var(--gallery-columns), minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
main.page-base .base-content .gallery-item {
  margin: 0;
}
main.page-base .base-content .gallery-icon a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1/1;
}
main.page-base .base-content .gallery-icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
main.page-base .base-content .gallery-icon a:hover img {
  transform: scale(1.03);
}
main.page-base .base-content .gallery-caption {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #000000;
}
main.page-base .base-content .gallery-columns-1 {
  --gallery-columns: 1;
}
main.page-base .base-content .gallery-columns-2 {
  --gallery-columns: 2;
}
main.page-base .base-content .gallery-columns-3 {
  --gallery-columns: 3;
}
main.page-base .base-content .gallery-columns-4 {
  --gallery-columns: 4;
}
main.page-base .base-content .gallery-columns-5 {
  --gallery-columns: 5;
}
main.page-base .base-content .gallery-columns-6 {
  --gallery-columns: 6;
}
main.page-base .base-content .gallery-columns-7 {
  --gallery-columns: 7;
}
main.page-base .base-content .gallery-columns-8 {
  --gallery-columns: 8;
}
main.page-base .base-content .gallery-columns-9 {
  --gallery-columns: 9;
}
@media (max-width: 767.98px) {
  main.page-base .base-content .gallery {
    --gallery-columns: 2;
  }
}
@media (max-width: 575.98px) {
  main.page-base .base-content .gallery {
    --gallery-columns: 1;
  }
}

main.page-404 {
  background-color: #6E6252;
  color: #F1E9DF;
}
main.page-404 .page-404__hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  padding-top: 12rem;
}
main.page-404 .page-404__content {
  max-width: 560px;
}
main.page-404 .page-404__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  margin: 0 0 0.75rem;
  color: rgba(241, 233, 223, 0.85);
}
main.page-404 .page-404__title {
  font-family: "DM Serif Text", Helvetica, Arial, sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
  margin: 0 0 1rem;
}
main.page-404 .page-404__text {
  margin: 0 0 2rem;
  color: rgba(241, 233, 223, 0.9);
}
main.page-404 .page-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 992px) {
  main.page-404 .page-404__hero {
    padding: 6rem 0;
  }
  main.page-404 .page-404__title {
    font-size: 2.6rem;
  }
}
@media (max-width: 576px) {
  main.page-404 .page-404__hero {
    min-height: auto;
    padding: 5rem 0;
  }
  main.page-404 .page-404__title {
    font-size: 2.1rem;
  }
}

main.page-legal {
  background-color: #6E6252;
  color: #F1E9DF;
  padding: 8rem 0;
  padding-top: 12rem;
}

.page-main {
  width: 100vw;
  min-height: 700px;
  padding-top: 16rem;
  padding-bottom: 8rem;
  position: relative;
  overflow: hidden;
}
.page-main:after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) -10%, rgba(0, 0, 0, 0));
  top: 0;
  left: 0;
  width: 100vw;
  height: 30%;
  z-index: 2;
}
.page-main:before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.15);
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 2;
}
.page-main .bg-image {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.page-main .bg-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.page-main .main-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 3rem;
}
.page-main .main-content .content-text {
  width: 40%;
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 3rem;
  padding-right: 1rem;
}
.page-main .main-content .content-text h1 {
  font-size: 5.5vw;
  font-weight: 500;
  color: #ffffff;
}
.page-main .main-content .content-text p {
  font-size: 20px;
  margin-top: 1rem;
}

.houses-section {
  position: relative;
  overflow: hidden;
}
.houses-section .bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
.houses-section .bg-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.houses-section .houses-list .row {
  --bs-gutter-x: 6rem;
}
.houses-section .houses-list .house-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid #F1E9DF;
  height: 450px;
}
.houses-section .houses-list .house-card a {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.houses-section .houses-list .house-card .house-card-image {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 1;
}
.houses-section .houses-list .house-card .house-card-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all ease 0.3s;
}
.houses-section .houses-list .house-card .house-card-image:after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) -10%, rgba(0, 0, 0, 0));
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.houses-section .houses-list .house-card .plus-button {
  position: absolute;
  font-weight: 100;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 3;
  font-size: 34px;
  line-height: 50px;
  text-align: center;
  font-family: "DM Serif Text", Helvetica, Arial, sans-serif;
  background-color: #ffffff;
  color: #6E6252;
  transition: all ease 0.3s;
}
.houses-section .houses-list .house-card .house-card-content {
  height: 100%;
  padding: 2rem;
  position: relative;
  z-index: 2;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2rem;
}
.houses-section .houses-list .house-card .house-card-content h3 {
  color: #ffffff;
  font-size: 50px;
}
.houses-section .houses-list .house-card .house-card-content .house-capacity {
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.houses-section .houses-list .house-card .house-card-content .house-capacity img {
  width: 30px;
  height: 30px;
}
.houses-section .houses-list .house-card .house-card-content .house-capacity span {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
}
.houses-section .houses-list .house-card:hover .plus-button {
  background-color: #6E6252;
  color: #ffffff;
}
.houses-section .houses-list .house-card:hover .house-card-image img {
  transform: scale(1.1);
}
.houses-section.home {
  padding: 8rem 0;
  padding-bottom: 13rem;
}
.houses-section.home:after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) -10%, rgba(0, 0, 0, 0));
  top: 0;
  left: 0;
  width: 100vw;
  height: 50%;
  z-index: 1;
}
.houses-section.home .container {
  position: relative;
  z-index: 2;
}
.houses-section.home .container .house-shape {
  text-align: center;
  z-index: 2;
  position: relative;
}
.houses-section.home .container .house-shape img {
  height: 80px;
}
.houses-section.home .container .houses-list {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 3rem 5rem;
  border-radius: 30px;
  margin-top: 2rem;
}

.page-template-template-casa .house-main .main-content .content-text {
  width: 23%;
}
.page-template-template-casa .house-content {
  padding: 4rem 0;
  background-color: #F1E9DF;
}
.page-template-template-casa .house-content .house-content-back {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}
.page-template-template-casa .house-content .house-content-back a {
  color: #B29979;
  transition: all ease 0.3s;
}
.page-template-template-casa .house-content .house-content-back a:hover {
  color: #776F58;
}
.page-template-template-casa .house-content .house-content-text {
  width: 80%;
  color: #000000;
}
.page-template-template-casa .house-content .house-media {
  padding-left: 3rem;
}
.page-template-template-casa .house-content .house-media .gallery-photos .row {
  --bs-gutter-x: 1.5rem;
}
.page-template-template-casa .house-content .house-media .gallery-photos .photo-slide {
  border-radius: 20px;
  overflow: hidden;
  height: 200px;
  margin-bottom: 2rem;
}
.page-template-template-casa .house-content .house-media .gallery-photos .photo-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all ease 0.3s;
}
.page-template-template-casa .house-content .house-media .gallery-photos .photo-slide:hover img {
  transform: scale(1.05);
}
.page-template-template-casa .house-content .house-media .house-icons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.page-template-template-casa .house-content .house-media .house-icons img {
  width: 40px;
  height: 40px;
}
.page-template-template-casa .house-content .house-media .house-logos {
  margin-top: 2rem;
}
.page-template-template-casa .house-content .house-media .house-logos img {
  max-width: 250px;
}
