@charset "UTF-8";
/*!
    Theme Name: Solsona Turisme
    Theme URI: https://solsonaturisme.cat/
    Description: Solsona Turisme
    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: #eae3d3;
  font-weight: 500;
  font-size: 14px;
  color: #907B09;
}
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 #907B09;
}
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: 500;
  line-height: 1.2;
  font-family: "Manrope", 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: 500;
  line-height: 1.2;
  font-family: "Manrope", 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: 500;
  line-height: 1.2;
  font-family: "Manrope", 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: 500;
  line-height: 1.2;
  font-family: "Manrope", 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: 500;
  line-height: 1.2;
  font-family: "Manrope", 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(244, 239, 233, 0.2);
  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(244, 239, 233, 0.2);
  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: #907B09 !important;
  opacity: 0.95 !important;
}

header#header {
  width: 100vw;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999999999;
  transition: all ease 0.3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 2rem;
  background-color: rgba(244, 239, 233, 0.9);
  backdrop-filter: blur(8px);
}
header#header.is-pre-home {
  backdrop-filter: blur(8px);
}
header#header .site-logo svg {
  width: auto;
  height: 56px;
}
header#header nav.main-menu ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
header#header nav.main-menu ul li {
  list-style: none;
  text-transform: uppercase;
  padding: 0;
}
header#header nav.main-menu ul li a {
  color: #907B09;
  padding: 10px 20px;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}
header#header nav.main-menu ul li a::after, header#header nav.main-menu ul li a::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  background-color: #C80E2F;
}
header#header nav.main-menu ul li a::after {
  bottom: 2px;
  height: 1px;
  width: calc(100% - 24px);
}
header#header nav.main-menu ul li a::before {
  bottom: -1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateX(-50%) scale(0);
}
header#header nav.main-menu ul li a:hover, header#header nav.main-menu ul li a:focus-visible {
  color: #C80E2F;
}
header#header nav.main-menu ul li a:hover::after, header#header nav.main-menu ul li a:hover::before, header#header nav.main-menu ul li a:focus-visible::after, header#header nav.main-menu ul li a:focus-visible::before {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}
header#header nav.main-menu ul li.current-menu-item > a, header#header nav.main-menu ul li.current-menu-parent > a, header#header nav.main-menu ul li.current-page-ancestor > a {
  color: #C80E2F;
}
header#header nav.main-menu ul li.current-menu-item > a::after, header#header nav.main-menu ul li.current-menu-item > a::before, header#header nav.main-menu ul li.current-menu-parent > a::after, header#header nav.main-menu ul li.current-menu-parent > a::before, header#header nav.main-menu ul li.current-page-ancestor > a::after, header#header nav.main-menu ul li.current-page-ancestor > a::before {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}
header#header nav.main-menu ul li.highlight {
  border: 1px solid #907B09;
  border-radius: 50px;
  transition: border-color 0.3s ease;
}
header#header nav.main-menu ul li.highlight a::after, header#header nav.main-menu ul li.highlight a::before {
  display: none;
}
header#header nav.main-menu ul li.highlight a:hover, header#header nav.main-menu ul li.highlight a:focus-visible {
  color: #C80E2F;
}
header#header nav.main-menu ul li.highlight:hover, header#header nav.main-menu ul li.highlight:focus-within {
  border-color: #C80E2F;
}
header#header.opened-mobile {
  background: #F4EFE9 !important;
}
@media (max-width: 991.98px) {
  header#header .language-selector {
    right: 90px;
  }
}
@media (max-width: 767.98px) {
  header#header {
    padding: 12px;
  }
  header#header .language-selector {
    right: 74px;
  }
}

.nav-container {
  background-color: #000000;
}

.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 {
  background-color: #F4EFE9;
  padding: 4rem 0;
}
footer#footer .footer-contact p {
  font-size: 16px;
  font-weight: 400;
  color: #C80E2F;
}
footer#footer .footer-logos {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
footer#footer .footer-logos img {
  height: 52px;
  width: auto;
}

#navico {
  display: flex;
  flex-direction: column;
  width: 70px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) scale(0.5);
  display: none;
}
#navico span {
  background: #F4EFE9;
  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) {
  width: 75%;
  transform-origin: bottom;
  width: 50%;
  transform: translate(30px, -11px) rotatez(45deg);
}
@media (max-width: 767.98px) {
  #navico {
    display: inherit;
    right: 6px;
    transform: translateY(-50%) scale(0.45);
  }
}

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 #C80E2F;
}
button.btn, a.btn, .btn {
  padding: 8px 40px;
  border-radius: 999px;
  transition: all ease 0.3s;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  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: #C80E2F;
  border: 1px solid #C80E2F;
  color: #F4EFE9;
}
button.btn-primary svg, a.btn-primary svg, .btn-primary svg {
  fill: #F4EFE9;
}
button.btn-primary.svg-is-stroke svg, a.btn-primary.svg-is-stroke svg, .btn-primary.svg-is-stroke svg {
  fill: transparent;
  stroke: #F4EFE9;
}
button.btn-primary:hover, a.btn-primary:hover, .btn-primary:hover {
  background-color: #C80E2F;
  border: 1px solid #C80E2F;
}

button.btn-secondary-outline, a.btn-secondary-outline, .btn-secondary-outline {
  background-color: transparent;
  border: 1px solid #907B09;
  color: #907B09;
}
button.btn-secondary-outline svg, a.btn-secondary-outline svg, .btn-secondary-outline svg {
  fill: #907B09;
}
button.btn-secondary-outline.svg-is-stroke svg, a.btn-secondary-outline.svg-is-stroke svg, .btn-secondary-outline.svg-is-stroke svg {
  fill: transparent;
  stroke: #907B09;
}
button.btn-secondary-outline:hover, a.btn-secondary-outline:hover, .btn-secondary-outline:hover {
  border: 1px solid #C80E2F;
  color: #C80E2F;
}

button.btn-primary-noborder, a.btn-primary-noborder, .btn-primary-noborder {
  background-color: transparent;
  border: 0;
  color: #C80E2F;
}
button.btn-primary-noborder svg, a.btn-primary-noborder svg, .btn-primary-noborder svg {
  fill: #C80E2F;
}
button.btn-primary-noborder.svg-is-stroke svg, a.btn-primary-noborder.svg-is-stroke svg, .btn-primary-noborder.svg-is-stroke svg {
  fill: transparent;
  stroke: #C80E2F;
}
button.btn-primary-noborder:hover, a.btn-primary-noborder:hover, .btn-primary-noborder:hover {
  color: #907B09;
}

.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(200, 14, 47, 0.7);
}
.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: 4px;
}
.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(144, 123, 9, 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(144, 123, 9, 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(144, 123, 9, 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: #C80E2F;
  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: #907B09;
  margin: 0;
}
.contact-form form .wpcf7-acceptance, .booking-form form .wpcf7-acceptance {
  display: block;
  color: #907B09;
  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: #907B09;
  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=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 #C80E2F;
}
.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: #C80E2F;
  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: #907B09;
}
@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 section.home-init {
  width: 100vw;
  height: 80dvh;
  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: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-logo {
  position: absolute;
  display: flex;
  max-width: 35vw;
  left: 50%;
  justify-content: flex-end;
  top: 50%;
  transform: translate(-50%, -50%);
}
main.page-front-page .home-starred {
  padding: 5rem 1rem;
  padding-bottom: 9rem;
  background-color: #F4EFE9;
}
main.page-front-page .home-starred .flexible-container {
  padding: 0;
}
main.page-front-page .home-starred h2 {
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}
main.page-front-page .home-starred .starred-content .starred-list .slick-list {
  margin: 0 -1rem;
}
main.page-front-page .home-starred .starred-content .starred-list .slick-slide {
  padding: 0 1rem;
  height: auto;
}
main.page-front-page .home-starred .starred-content .starred-list .slick-dots {
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  bottom: -4rem;
  list-style: none;
}
main.page-front-page .home-starred .starred-content .starred-list .slick-dots li {
  margin: 0;
}
main.page-front-page .home-starred .starred-content .starred-list .slick-dots li button:before {
  color: #907B09;
  opacity: 1;
  font-size: 11px;
}
main.page-front-page .home-starred .starred-content .starred-list .slick-dots li.slick-active button:before {
  color: #C80E2F;
}
main.page-front-page .home-starred .starred-content .starred-post {
  background-color: #907B09;
  transition: all 0.3s ease;
}
main.page-front-page .home-starred .starred-content .starred-post .starred-post-image {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
}
main.page-front-page .home-starred .starred-content .starred-post .starred-post-image img {
  position: absolute;
  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 0.3s ease;
}
main.page-front-page .home-starred .starred-content .starred-post .starred-post-image .post-tag {
  position: absolute;
  top: 0;
  left: 2rem;
  background-color: #C80E2F;
  color: #ffffff;
  letter-spacing: 1px;
  padding: 0.5rem 1.2rem;
  text-transform: uppercase;
  font-size: 12px;
  z-index: 2;
}
main.page-front-page .home-starred .starred-content .starred-post .starred-post-content {
  padding: 2rem;
}
main.page-front-page .home-starred .starred-content .starred-post .starred-post-content h3 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 1rem;
}
main.page-front-page .home-starred .starred-content .starred-post .starred-post-content p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  padding: 1rem 0;
}
main.page-front-page .home-starred .starred-content .starred-post .starred-post-content span.date {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}
main.page-front-page .home-starred .starred-content .starred-post:hover .starred-post-image img {
  transform: scale(1.05);
}
main.page-front-page section.news-list {
  padding: 5rem 0;
  background-color: #eae3d3;
}
main.page-front-page section.news-list h2 {
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 3rem;
}
main.page-front-page section.news-list .more-button {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

main.page-routes-child .routes-content {
  background-color: #eae3d3;
}
main.page-routes-child .routes-content .routes-header {
  width: 100%;
  height: 200px;
  position: relative;
}
main.page-routes-child .routes-content .routes-header img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
}
main.page-routes-child .routes-content .routes-header a {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #C80E2F;
  font-size: 14px;
  font-weight: 800;
  color: #F4EFE9;
  padding: 1rem 2rem;
  transition: background-color 0.3s ease;
}
main.page-routes-child .routes-content .routes-header a:hover {
  background-color: #907B09;
}
main.page-routes-child .routes-content .routes-list {
  margin: 1.5rem 0;
}
main.page-routes-child .routes-content .routes-list .route-card {
  margin-bottom: 2.5rem;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #907B09;
  padding-bottom: 1.5rem;
  transition: all 0.3s ease;
}
main.page-routes-child .routes-content .routes-list .route-card .route-card-image {
  width: 100%;
  overflow: hidden;
  height: 120px;
}
main.page-routes-child .routes-content .routes-list .route-card .route-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.3s ease;
}
main.page-routes-child .routes-content .routes-list .route-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
main.page-routes-child .routes-content .routes-list .route-card span {
  display: block;
}
main.page-routes-child .routes-content .routes-list .route-card:hover {
  color: #C80E2F;
  border-bottom: 1px solid #C80E2F;
}
main.page-routes-child .routes-content .routes-list .route-card:hover .route-card-image img {
  transform: scale(1.05);
}

main.page-quefer-standard {
  background-color: #eae3d3;
  padding-bottom: 2rem;
}
main.page-quefer-standard .que-fer-standard-image {
  width: 100%;
  height: 400px;
}
main.page-quefer-standard .que-fer-standard-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
main.page-quefer-standard .que-fer-standard-content {
  max-width: 80%;
}
main.page-quefer-standard .que-fer-standard-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
}
main.page-quefer-standard .que-fer-standard-content p {
  font-size: 16px;
}
main.page-quefer-standard .que-fer-standard-content a {
  margin-top: 2rem;
}

main.page-guia-practica-com-arribar {
  background-color: #eae3d3;
  padding-bottom: 2rem;
}
main.page-guia-practica-com-arribar .guia-practica-com-arribar-iframe iframe {
  width: 100%;
  height: 400px;
}
main.page-guia-practica-com-arribar .guia-practica-com-arribar-content {
  max-width: 80%;
}
main.page-guia-practica-com-arribar .guia-practica-com-arribar-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1rem;
}
main.page-guia-practica-com-arribar .guia-practica-com-arribar-content p {
  font-size: 16px;
}
main.page-guia-practica-com-arribar .guia-practica-com-arribar-content a {
  margin-top: 2rem;
  color: #C80E2F;
  font-weight: 700;
}
main.page-guia-practica-com-arribar .guia-practica-com-arribar-content a:hover {
  text-decoration: underline;
}
main.page-guia-practica-com-arribar .guia-practica-com-arribar-content ul li {
  font-size: 16px;
}

main.page-guia-practica-adreces {
  background-color: #eae3d3;
  padding-bottom: 2rem;
}
main.page-guia-practica-adreces .guia-practica-item h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #C80E2F;
}
main.page-guia-practica-adreces .guia-practica-item p {
  font-size: 16px;
}
main.page-guia-practica-adreces .guia-practica-item a {
  margin-top: 2rem;
  color: #C80E2F;
  font-weight: 700;
}
main.page-guia-practica-adreces .guia-practica-item a:hover {
  text-decoration: underline;
}
main.page-guia-practica-adreces .guia-practica-item ul li {
  font-size: 16px;
  padding: 0.3rem 0;
}

main.page-guia-practica-publicacions {
  background-color: #eae3d3;
  padding-bottom: 2rem;
}
main.page-guia-practica-publicacions .guia-practica-publicacio h3 {
  font-size: 22px;
  font-weight: 700;
  color: #907B09;
}
main.page-guia-practica-publicacions .guia-practica-publicacio p {
  font-size: 16px;
}

main.page-legal section.legal-main {
  width: 100vw;
  margin: 0 auto;
  padding: 4rem 0;
  padding-top: calc(88px + 2rem);
  background-color: #eae3d3;
  color: #907B09;
}
main.page-legal section.legal-main .page-breadcrumbs {
  margin-bottom: 3rem;
}
main.page-legal section.legal-main h1 {
  position: relative;
  width: auto;
  display: inline;
  padding-right: 1.5rem;
}
main.page-legal section.legal-main h1:after {
  content: "";
  display: block;
  width: 2px;
  height: 70px;
  position: absolute;
  background-color: #907B09;
  bottom: 0;
  right: 0;
  animation: cleca 1s step-start infinite;
}
main.page-legal section.legal-main .page-description {
  font-size: 18px;
}
main.page-legal section.legal-main .page-description p {
  line-height: 1.5;
  padding: 0.5rem 0;
}
@media (max-width: 991.98px) {
  main.page-legal section.legal-main {
    padding: 3rem 0;
    padding-top: calc(80px + 1rem);
  }
  main.page-legal section.legal-main .page-breadcrumbs {
    margin-bottom: 3rem;
  }
  main.page-legal section.legal-main .page-description {
    margin-top: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  main.page-legal section.legal-main .page-breadcrumbs {
    margin: 0;
  }
  main.page-legal section.legal-main h1 {
    padding: 0;
    padding-right: 0.5rem;
    margin: 0;
  }
  main.page-legal section.legal-main .page-description {
    margin-top: 1rem;
  }
}
main.page-legal .legal-content {
  padding-bottom: 1rem;
  font-size: 16px;
  font-weight: 400;
}
main.page-legal .legal-content h1, main.page-legal .legal-content h2, main.page-legal .legal-content h3, main.page-legal .legal-content h4, main.page-legal .legal-content h5, main.page-legal .legal-content h6 {
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  padding: 0.5rem 0;
  position: relative;
}
main.page-legal .legal-content h1 {
  font-size: 32px;
  font-weight: 600;
}
main.page-legal .legal-content h2 {
  font-size: 24px;
  margin-top: 1rem;
}
main.page-legal .legal-content h3, main.page-legal .legal-content h4, main.page-legal .legal-content h5, main.page-legal .legal-content h6 {
  font-size: 18px;
  font-weight: 600;
}
main.page-legal .legal-content ul li {
  margin-bottom: 1rem;
}
main.page-legal .legal-content p {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
  padding: 1.5rem 0;
}
main.page-legal .legal-content img {
  width: 100%;
  height: auto;
}
main.page-legal .legal-content a {
  color: #C80E2F;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  main.page-legal .legal-content h1 {
    font-size: 28px;
  }
  main.page-legal .legal-content h2 {
    font-size: 20px;
    padding: 1.5rem 0;
  }
  main.page-legal .legal-content h2:after {
    top: 0.5rem;
  }
  main.page-legal .legal-content p {
    padding: 1rem 0;
  }
}

.home-agenda {
  padding: 5rem 1.5rem;
  padding-top: 0;
  background-color: #F4EFE9;
}
.home-agenda h2 {
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #C80E2F;
}
.home-agenda .home-agenda__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .home-agenda .home-agenda__inner {
    flex-direction: row;
    align-items: stretch;
  }
}
.home-agenda .home-agenda__calendar,
.home-agenda .home-agenda__list {
  flex: 1 1 50%;
}
.home-agenda .home-agenda__calendar {
  flex: 0 0 44%;
  max-width: 520px;
  width: 100%;
}
.home-agenda .agenda-calendar {
  background-color: rgba(144, 123, 9, 0.05);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 90%;
}
.home-agenda .agenda-calendar .agenda-calendar__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}
.home-agenda .agenda-calendar .agenda-calendar__nav .agenda-calendar__nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #907B09;
  background-color: transparent;
  color: #907B09;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.home-agenda .agenda-calendar .agenda-calendar__nav .agenda-calendar__nav-btn:focus {
  outline: none;
}
.home-agenda .agenda-calendar .agenda-calendar__nav .agenda-calendar__nav-btn:focus-visible {
  outline: 1px solid #C80E2F;
}
.home-agenda .agenda-calendar .agenda-calendar__nav .agenda-calendar__nav-btn:hover {
  background-color: #907B09;
  color: #F4EFE9;
}
.home-agenda .agenda-calendar .agenda-calendar__nav .agenda-calendar__current {
  font-size: 1.25rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: #907B09;
}
.home-agenda .agenda-calendar .agenda-calendar__weekdays {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.2rem;
  color: #907B09;
  font-weight: 700;
  border-bottom: 1px solid #907B09;
  padding-bottom: 0.8rem;
  margin-bottom: 1.4rem;
}
.home-agenda .agenda-calendar .agenda-calendar__weekdays .agenda-calendar__weekday {
  text-align: center;
}
.home-agenda .agenda-calendar .agenda-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(26px, 1fr));
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  row-gap: 1.1rem;
  margin-bottom: 1.2rem;
}
.home-agenda .agenda-calendar .agenda-calendar__grid .agenda-calendar__day {
  border: 0;
  background: transparent;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  font-size: 15px;
  letter-spacing: 1px;
  color: #907B09;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.home-agenda .agenda-calendar .agenda-calendar__grid .agenda-calendar__day:focus {
  outline: none;
}
.home-agenda .agenda-calendar .agenda-calendar__grid .agenda-calendar__day:focus-visible {
  outline: 1px solid #C80E2F;
}
.home-agenda .agenda-calendar .agenda-calendar__grid .agenda-calendar__day.is-empty {
  pointer-events: none;
  cursor: default;
}
.home-agenda .agenda-calendar .agenda-calendar__grid .agenda-calendar__day.has-event::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background-color: #C80E2F;
}
.home-agenda .agenda-calendar .agenda-calendar__grid .agenda-calendar__day.is-active {
  background-color: #C80E2F;
  color: #F4EFE9;
}
.home-agenda .agenda-calendar .btn-secondary-outline {
  display: block;
  margin-top: auto;
  text-align: center;
}
.home-agenda .agenda-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 600px) {
  .home-agenda .agenda-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-agenda .agenda-list__empty {
  grid-column: 1/-1;
  font-size: 1rem;
  color: #907B09;
}
.home-agenda .agenda-card {
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  border-top: 2px solid #C80E2F;
  cursor: pointer;
  min-height: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.home-agenda .agenda-card:hover .agenda-card__title {
  color: #C80E2F;
}
.home-agenda .agenda-card .agenda-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.home-agenda .agenda-card .agenda-card__meta .agenda-card__badge {
  background-color: #C80E2F;
  color: #ffffff;
  letter-spacing: 1px;
  padding: 0.5rem 1.2rem;
  text-transform: uppercase;
  font-size: 12px;
  z-index: 2;
}
.home-agenda .agenda-card .agenda-card__meta .agenda-card__date {
  color: #907B09;
  text-align: right;
  font-weight: 400;
  letter-spacing: 1px;
}
.home-agenda .agenda-card .agenda-card__title {
  font-size: 20px;
  color: #907B09;
  margin: 0;
  max-width: 80%;
  font-weight: 400;
  line-height: 1.35;
  transition: all 0.3s ease;
}

.news-list .news-list-content .post-container {
  margin-bottom: 1.5rem;
}
.news-list .news-list-content .post-container .post {
  padding: 0;
  height: 100%;
  margin-bottom: 2.5rem;
  background-color: #907B09;
  color: #F4EFE9;
}
.news-list .news-list-content .post-container .post .post-image {
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  background-color: #C80E2F;
}
.news-list .news-list-content .post-container .post .post-image img {
  position: absolute;
  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 0.3s ease;
}
.news-list .news-list-content .post-container .post .post-image .post-tag {
  position: absolute;
  top: 0;
  left: 2rem;
  background-color: #C80E2F;
  color: #ffffff;
  letter-spacing: 1px;
  padding: 0.5rem 1.2rem;
  text-transform: uppercase;
  font-size: 12px;
  z-index: 2;
}
.news-list .news-list-content .post-container .post .post-content {
  padding: 2rem;
}
.news-list .news-list-content .post-container .post .post-content h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 1rem;
}
.news-list .news-list-content .post-container .post .post-content p {
  font-size: 18px;
  color: #ffffff;
  font-weight: 400;
  padding: 1rem 0;
}
.news-list .news-list-content .post-container .post .post-content span.post-date {
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  display: block;
}
.news-list .news-list-content .post-container .post:hover .post-image img {
  transform: scale(1.05);
}

.page-init {
  padding: 5rem 0;
  padding-top: 8rem;
  background-color: #eae3d3;
}
.page-init .page-init__content {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5rem;
}
.page-init .page-init__content h1 {
  font-family: "Caveat", Helvetica, Arial, sans-serif;
  max-width: 300px;
  font-size: 76px;
  text-align: right;
}
.page-init .page-init__content p {
  color: #C80E2F;
  font-size: 18px;
  font-weight: 800;
  padding: 0;
  max-width: 300px;
}
.page-init .page-init__content--long-text .page-init__description p {
  max-width: 600px;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  color: #907B09;
  font-size: 16px;
  font-weight: 500;
}
.page-init .page-init__content--long-text .page-init__description p p {
  color: #907B09;
  font-size: 16px;
  font-weight: 500;
}

.page-childs {
  padding: 3rem 0;
  background-color: #eae3d3;
}
.page-childs .page-siblings__list {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  background-color: #907B09;
  border-radius: 999px;
  /* Overflow horizontal en mòbil */
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  /* Amaga scrollbar en navegadors moderns */
  scrollbar-width: none;
}
.page-childs .page-siblings__list::-webkit-scrollbar {
  display: none;
}
.page-childs .page-siblings__item {
  position: relative;
  flex: 1 0 auto;
}
.page-childs .page-siblings__item:first-child {
  margin-left: 0.5rem;
}
.page-childs .page-siblings__item:last-child {
  margin-right: 0.5rem;
}
.page-childs .page-siblings__item a,
.page-childs .page-siblings__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.7rem 2rem;
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  font-size: 15px;
  text-decoration: none;
  border-radius: 999px;
  border: 0;
  color: #F4EFE9;
  background-color: transparent;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.page-childs .page-siblings__item a:focus,
.page-childs .page-siblings__item span:focus {
  outline: none;
}
.page-childs .page-siblings__item a:focus-visible,
.page-childs .page-siblings__item span:focus-visible {
  outline: 1px solid #C80E2F;
}
.page-childs .page-siblings__item a:hover {
  background-color: rgba(200, 14, 47, 0.12);
  color: #ffffff;
}
.page-childs .page-siblings__item.is-current span {
  background-color: #C80E2F;
  color: #ffffff;
}
@media (min-width: 768px) {
  .page-childs .page-siblings__list {
    justify-content: space-between;
    max-width: 100%;
  }
  .page-childs .page-siblings__item {
    flex: 1 1 auto;
  }
  .page-childs .page-siblings__item a,
  .page-childs .page-siblings__item span {
    width: 100%;
  }
}

.page-filters {
  background-color: #F4EFE9;
}
.page-filters .page-filters-header {
  background-color: #C80E2F;
  padding: 0.7rem 1rem;
}
.page-filters .page-filters-header h4 {
  color: #F4EFE9;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}
.page-filters .page-filters-content {
  padding: 1.25rem 1rem;
  background-color: #F4EFE9;
}
.page-filters .routes-filter-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  cursor: pointer;
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #907B09;
  line-height: 1.4;
}
.page-filters .routes-filter-item:last-child {
  margin-bottom: 0;
}
.page-filters .routes-filter-checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #907B09;
  border-radius: 2px;
  background-color: transparent;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.page-filters .routes-filter-checkbox:checked {
  background-color: #907B09;
}
.page-filters .routes-filter-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #eae3d3;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.page-filters .routes-filter-checkbox:focus {
  outline: none;
  border-color: #C80E2F;
}
.page-filters .routes-filter-label {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

section.que-fer-list {
  background-color: #eae3d3;
}
section.que-fer-list article.que-fer-card {
  margin-bottom: 2rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 270px;
}
section.que-fer-list article.que-fer-card img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s ease;
}
section.que-fer-list article.que-fer-card h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #C80E2F;
  color: #F4EFE9;
  font-size: 16px;
  font-weight: 700;
  padding: 1rem;
}
section.que-fer-list article.que-fer-card:hover img {
  transform: scale(1.05);
}
