:root {
  --container-width: 1fr;
  --container-spacer: 15px;
  --text-shadow: 0 0 8px rgba(30,26,23,.8);
  --box-shadow: 0px 0px 16px -3px rgba(0, 0, 0, 0.5);
  --margin-big: 100px;
  --margin-default: 30px;
  --margin-smaller: 15px;
  --margin-small: 7px;
  --margin-mobile-default: 15px;
  --margin-zero: 0px;
}

.mt__30 {
  margin-top: 30px;
}

.footer__middle {
  padding: 20px 0;
}
@media (max-width: 767.98px) {
  .footer__middle {
    display: flex;
    flex-direction: column;
  }
}
.footer__middle ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.footer__middle ul li {
  gap: 10px;
  padding: 3px 0;
}
.footer__middle h3 {
  font-size: 1.125rem;
  font-weight: 600;
}
.footer__middle a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #381D2A;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.875rem;
}
.footer__middle a .fa-chevron-right {
  font-size: 0.75rem;
}
.footer__logo {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .footer__logo {
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
  }
}
.footer__contact {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .footer__contact {
    padding: 0 15px;
  }
}
.footer__rehearsal {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .footer__rehearsal {
    padding: 0 15px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.footer__map {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
@media (max-width: 767.98px) {
  .footer__map {
    padding: 0 15px;
  }
}
.footer__follow {
  display: flex;
  gap: 20px;
  list-style: none;
  justify-content: flex-end;
  flex-grow: 1;
}
.footer__follow a {
  color: hsl(0deg, 0%, 100%);
  text-decoration: none;
  border: solid 1px hsl(0deg, 0%, 100%);
  border-radius: 99px;
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.footer__follow .social {
  font-size: 1.5rem;
}
.footer__sitemap-left {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__navigation {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1280px) {
  :root {
    --container-spacer: auto;
    --container-width: 1280px;
  }
}
.base__content {
  padding: 20px 0;
}
.base__content h1 {
  margin-bottom: var(--margin-default);
}
.base__content p {
  margin-bottom: var(--margin-default);
}

.content__manager {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.content__grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.content__grid-wide {
  padding: 0;
}
.content__grid.no-margin-bottom {
  padding-bottom: 0;
}
.content__grid-default {
  display: grid;
  grid-template-columns: var(--container-spacer) var(--container-width) var(--container-spacer);
  grid-template-rows: 1fr;
  padding: 15px 0;
  grid-template-areas: ". container .";
}
.content__container {
  display: grid;
  grid-template-columns: var(--container-spacer) var(--container-width) var(--container-spacer);
  grid-template-rows: 1fr;
  padding: 15px 0;
  grid-template-areas: ". container .";
}
.content__container.content__wide {
  grid-template-columns: 1fr;
  grid-template-areas: "container";
  padding: 0;
}
.content__container.no-margin-bottom {
  padding-bottom: 0;
}
@media (max-width: 767.98px) {
  .content__container {
    display: flex;
    flex-direction: column;
  }
}
.content__container h1 {
  grid-area: container;
}
.content__gallery {
  grid-area: container;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-template-rows: auto;
  grid-gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.content__content {
  grid-area: container;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content__default {
  grid-area: container;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content__slider {
  grid-area: container;
  width: calc(100% - 100px);
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  .content__slider {
    width: 100%;
  }
}
.content__button {
  grid-area: container;
  width: 100%;
}
.content__split {
  grid-area: container;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 40px;
}
@media (max-width: 767.98px) {
  .content__split {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.content__center {
  display: flex;
  align-items: center;
}
.content__left {
  display: flex;
  justify-self: flex-end;
}
.content__right {
  display: flex;
  align-items: flex-start;
}
.content__text {
  display: flex;
  flex-direction: column;
}
.content__text p {
  margin-top: 0;
}
.content__text--left {
  justify-self: flex-end;
  align-items: flex-end;
}
.content__image--left {
  display: flex;
  justify-self: flex-end;
}
.content__button {
  display: flex;
  height: 100%;
  align-items: center;
}
.content__button--left {
  justify-content: flex-start;
}
.content__button--center {
  justify-content: center;
}
.content__button--right {
  justify-content: flex-end;
}
.content__button a {
  display: inline-flex;
  color: hsl(0deg, 0%, 100%);
  background-color: #FFFCE8;
  border: solid 1px #FFFCE8;
  text-decoration: none;
  border-radius: 8px;
  line-height: 20px;
  padding: 8px 20px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  font-size: 0.875rem;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}
.content__button a:visited, .content__button a.active, .content__button a.focus, .content__button a:active, .content__button a:focus {
  color: hsl(0deg, 0%, 100%);
  border: solid 1px #FFFCE8;
}
.content__button a:hover {
  color: hsl(0deg, 0%, 100%);
  background-color: hsl(190deg, 65%, 65%);
  border: solid 1px hsl(190deg, 65%, 65%);
}
.content__widget {
  display: flex;
  flex-direction: column;
}
.content__background-image.grayscale {
  filter: grayscale(100%);
}
.content__background-image.colored {
  background-blend-mode: overlay;
  background-color: #381D2A;
}
.content__image {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.content__image img.grayscale {
  filter: grayscale(100%);
}

a.content__link {
  display: inline-block;
  color: hsl(0deg, 0%, 100%);
  background-color: #F39B6D;
  border: solid 1px #F39B6D;
  text-decoration: none;
  border-radius: 8px;
  line-height: 20px;
  padding: 8px 20px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-size: 1rem;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}
a.content__link:visited, a.content__link.active, a.content__link.focus, a.content__link:active, a.content__link:focus {
  color: hsl(0deg, 0%, 100%);
  border: solid 1px #F39B6D;
}
a.content__link:hover {
  color: #F39B6D;
  background-color: hsl(0deg, 0%, 100%);
  border: solid 1px #F39B6D;
}

.salign {
  display: flex;
  justify-content: flex-start;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.salign img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
}

.lalign {
  display: flex;
  justify-content: flex-start;
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
}
.lalign img {
  object-fit: cover;
  max-width: 100%;
  height: auto;
}

.calign {
  display: flex;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ralign {
  display: flex;
  justify-content: flex-end;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.backgroundcolor__white {
  background-color: hsl(0deg, 0%, 100%);
}
.backgroundcolor__white h1, .backgroundcolor__white h2, .backgroundcolor__white h3, .backgroundcolor__white p, .backgroundcolor__white a {
  color: hsl(26deg, 13%, 10%);
}
.backgroundcolor__white .content__button a, .backgroundcolor__white .content__button a:visited {
  color: hsl(0deg, 0%, 100%);
}
.backgroundcolor__white .content__button a:hover, .backgroundcolor__white .content__button a:visited:hover {
  background-color: hsl(0deg, 0%, 100%);
  color: hsl(26deg, 13%, 10%);
}
.backgroundcolor__white a.content__link, .backgroundcolor__white a.content__link:visited {
  color: hsl(0deg, 0%, 100%);
}
.backgroundcolor__white a.content__link:hover, .backgroundcolor__white a.content__link:visited:hover {
  background-color: hsl(0deg, 0%, 100%);
  color: hsl(26deg, 13%, 10%);
}
.backgroundcolor__light {
  background-color: hsl(228deg, 33%, 97%);
}
.backgroundcolor__light h1, .backgroundcolor__light h2, .backgroundcolor__light h3, .backgroundcolor__light p, .backgroundcolor__light a {
  color: hsl(26deg, 13%, 10%);
}
.backgroundcolor__light .content__button a, .backgroundcolor__light .content__button a:visited {
  color: hsl(0deg, 0%, 100%);
}
.backgroundcolor__light .content__button a:hover, .backgroundcolor__light .content__button a:visited:hover {
  background-color: hsl(0deg, 0%, 100%);
  color: hsl(26deg, 13%, 10%);
}
.backgroundcolor__light a.content__link, .backgroundcolor__light a.content__link:visited {
  color: hsl(0deg, 0%, 100%);
}
.backgroundcolor__light a.content__link:hover, .backgroundcolor__light a.content__link:visited:hover {
  background-color: hsl(0deg, 0%, 100%);
  color: hsl(26deg, 13%, 10%);
}
.backgroundcolor__dark {
  background-color: hsl(0deg, 0%, 30%);
}
.backgroundcolor__dark h1, .backgroundcolor__dark h2, .backgroundcolor__dark h3, .backgroundcolor__dark p, .backgroundcolor__dark a {
  color: hsl(0deg, 0%, 100%);
}
.backgroundcolor__dark .content__button a, .backgroundcolor__dark .content__button a:visited {
  color: hsl(0deg, 0%, 100%);
  background-color: #381D2A;
  border: solid 1px #381D2A;
}
.backgroundcolor__dark .content__button a:hover, .backgroundcolor__dark .content__button a:visited:hover {
  background-color: hsl(0deg, 0%, 100%);
  color: #381D2A;
}
.backgroundcolor__dark a.content__link, .backgroundcolor__dark a.content__link:visited {
  color: hsl(0deg, 0%, 100%);
  background-color: #381D2A;
  border: solid 1px #381D2A;
}
.backgroundcolor__dark a.content__link:hover, .backgroundcolor__dark a.content__link:visited:hover {
  background-color: hsl(0deg, 0%, 100%);
  color: #381D2A;
}
.backgroundcolor__base {
  background-color: #381D2A;
}
.backgroundcolor__base h1, .backgroundcolor__base h2, .backgroundcolor__base h3, .backgroundcolor__base p, .backgroundcolor__base a {
  color: hsl(0deg, 0%, 100%);
}
.backgroundcolor__base .content__button a, .backgroundcolor__base .content__button a:visited {
  color: hsl(0deg, 0%, 100%);
  background-color: #381D2A;
  border: solid 1px #381D2A;
}
.backgroundcolor__base .content__button a:hover, .backgroundcolor__base .content__button a:visited:hover {
  background-color: hsl(0deg, 0%, 100%);
  color: #381D2A;
}
.backgroundcolor__base a.content__link, .backgroundcolor__base a.content__link:visited {
  color: hsl(0deg, 0%, 100%);
  background-color: #381D2A;
  border: solid 1px #381D2A;
}
.backgroundcolor__base a.content__link:hover, .backgroundcolor__base a.content__link:visited:hover {
  background-color: hsl(0deg, 0%, 100%);
  color: #381D2A;
}
.backgroundcolor__bgc1 {
  background-color: #381D2A;
}
.backgroundcolor__bgc1 h1, .backgroundcolor__bgc1 h2, .backgroundcolor__bgc1 h3, .backgroundcolor__bgc1 p, .backgroundcolor__bgc1 a {
  color: hsl(0deg, 0%, 100%);
}
.backgroundcolor__bgc1 .inner h1, .backgroundcolor__bgc1 .inner h2, .backgroundcolor__bgc1 .inner h3, .backgroundcolor__bgc1 .inner p, .backgroundcolor__bgc1 .inner a {
  color: hsl(26deg, 13%, 10%);
}
.backgroundcolor__bgc2 {
  background-color: #F39B6D;
}
.backgroundcolor__bgc3 {
  background-color: #FFFCE8;
}
.backgroundcolor__bgc4 {
  background-color: hsl(190deg, 65%, 65%);
}

@media (max-width: 767.98px) {
  .split__left {
    padding: 0 15px;
  }
}
@media (max-width: 767.98px) {
  .split__right {
    padding: 0 15px;
  }
}

.gallery__item {
  display: inline-flex;
}
.gallery__image {
  aspect-ratio: 1/1;
  object-fit: cover;
  max-width: 220px;
  height: auto;
  object-position: center;
}

.content1 .content__content {
  padding: 0 clamp(15px, 5vw, 100px);
}
.content1 .content__split {
  grid-template-columns: 4fr 6fr;
  padding: 40px;
}

.content3 .content__split {
  display: flex;
  gap: 0;
  max-height: clamp(300px, 30vw, 550px);
  overflow: hidden;
}
.content3 .content__split img {
  width: 50%; /* Equal width for both images */
  max-height: 100%;
  object-fit: cover; /* Maintain aspect ratio */
}
@media (max-width: 767.98px) {
  .content3 .content__split {
    max-height: unset;
    gap: 0px;
    overflow: unset;
    flex-direction: column;
  }
  .content3 .content__split img {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .content3 .content__wide .content__split {
    gap: 0px;
  }
}

.content9 .content__center {
  display: flex;
  align-items: center;
}
.content9 .content__split {
  grid-template-columns: 0.4fr 0.6fr;
}
@media (max-width: 1024px) {
  .content9 .content__split {
    grid-template-columns: 1fr 1fr;
  }
}
.content9 .content__wide .content__split {
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.content9 .content__left {
  display: flex;
  justify-self: flex-end;
}
.content9 .content__right {
  display: flex;
  align-items: flex-start;
}
.content9 .content__text {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .content9 .content__text {
    padding: 0 15px;
  }
}
.content9 .content__text--left {
  justify-self: flex-end;
  align-items: flex-end;
}
.content9 .content__wide .content__text {
  padding: 100px;
}
@media (max-width: 767.98px) {
  .content9 .content__wide .content__text {
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  .content9 .content__image {
    margin-bottom: var(--margin-mobile-default);
  }
}
.content9 .content__image--left {
  display: flex;
  justify-self: flex-end;
}

.content10 .content__center {
  display: flex;
  align-items: center;
}
.content10 .content__split {
  grid-template-columns: 0.6fr 0.4fr;
}
@media (max-width: 1024px) {
  .content10 .content__split {
    grid-template-columns: 1fr 1fr;
  }
}
.content10 .content__wide .content__split {
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.content10 .content__left {
  display: flex;
  justify-self: flex-end;
}
.content10 .content__right {
  display: flex;
  align-items: flex-start;
}
.content10 .content__text {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .content10 .content__text {
    padding: 0 15px;
  }
}
.content10 .content__text--left {
  justify-self: flex-start;
  align-items: flex-start;
}
.content10 .content__wide .content__text {
  padding: 100px;
}
@media (max-width: 767.98px) {
  .content10 .content__wide .content__text {
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  .content10 .content__image {
    margin-bottom: var(--margin-mobile-default);
  }
}
.content10 .content__image--left {
  display: flex;
  justify-self: flex-end;
}

.content13 {
  padding: 40px 0;
}
.content13 .content__container {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
}
.content13 .slider__header {
  margin-bottom: var(--margin-zero);
  text-align: center;
  line-height: 1.4;
}
.content13 .slider__content {
  margin-top: var(--margin-zero);
  margin-bottom: var(--margin-small);
  text-align: center;
}
.content13 .splide {
  padding-bottom: 40px;
}
.content13 .splide__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  background-size: cover;
  background-color: transparent;
  background-repeat: no-repeat;
}
.content13 .splide__alignment-start {
  background-position: left center;
}
.content13 .splide__alignment-center {
  background-position: center center;
}
.content13 .splide__alignment-end {
  background-position: right center;
}
.content13 .splide__slide {
  padding: 0 15px;
}
.content13 .splide__slide img {
  width: 100%;
  max-width: 100%;
  height: auto;
  grid-column: 1/-1;
  grid-row: 1/-1;
  z-index: 1;
}
.content13 .splide__slide .slide__title {
  grid-column: 1/-1;
  grid-row: 2/-1;
  z-index: 2;
  color: hsl(0deg, 0%, 100%);
  background-color: hsla(26deg, 13%, 10%, 0.8);
  padding: 5px 10px;
  font-size: 2rem;
  font-family: "Oswald", sans-serif;
  display: inline-flex;
  justify-content: center;
}
.content13 .splide__arrow--prev {
  left: -2rem;
  background-color: hsl(213deg, 55%, 70%);
}
@media (max-width: 767.98px) {
  .content13 .splide__arrow--prev {
    display: none;
  }
}
.content13 .splide__arrow--next {
  right: -2rem;
  background-color: hsl(213deg, 55%, 70%);
}
@media (max-width: 767.98px) {
  .content13 .splide__arrow--next {
    display: none;
  }
}
.content13 .splide__arrow svg {
  fill: hsl(0deg, 0%, 100%);
}
.content13 .splide__pagination__page {
  background-color: hsl(0deg, 0%, 70%);
  width: 10px;
  height: 10px;
}
.content13 .splide [aria-selected=true] {
  background-color: hsl(213deg, 55%, 70%);
}
.content13 .splide__progress {
  padding: 0 15px;
}
.content13 .splide__progress__bar {
  background-color: hsl(213deg, 55%, 70%);
}
.content13.hide-bar1 .splide .slide__title {
  background-color: transparent;
}

.content14 {
  padding-top: 30px;
}

.content26 h2 {
  margin-bottom: var(--margin-default);
}
@media (max-width: 767.98px) {
  .content26 {
    padding: 0 15px;
  }
  .content26 .content__text {
    order: 1;
  }
  .content26 .content__widget {
    order: 2;
  }
}

.content27 h2 {
  margin-bottom: var(--margin-default);
}
@media (max-width: 767.98px) {
  .content27 {
    padding: 0 15px;
  }
  .content27 .content__text {
    order: 1;
  }
  .content27 .content__widget {
    order: 2;
  }
}

.content29 {
  padding: 0;
}

.widget__holder {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cWidgetCta {
  margin: 0 auto;
  padding: 0 15px;
}
.cWidgetCtaGrey {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: var(--margin-default);
  padding: 0 15px;
}
.cWidgetCtaBeige {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: var(--margin-default);
  padding: 0 15px;
}
.cWidgetCtaBlue {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: var(--margin-default);
  padding: 0 15px;
}
.cWidgetCtaWhite {
  max-width: 500px;
  margin: 0 auto;
  margin-bottom: var(--margin-default);
  padding: 0 15px;
}

.cta__widget {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  gap: 40px;
}
@media (max-width: 767.98px) {
  .cta__widget {
    flex-direction: column;
    padding: 0;
  }
}
.cta__widget a {
  display: inline-flex;
  color: hsl(0deg, 0%, 100%);
  background-color: #FFFCE8;
  border: solid 1px #FFFCE8;
  text-decoration: none;
  border-radius: 8px;
  line-height: 20px;
  padding: 10px 20px;
  font-family: "Oswald", sans-serif;
  font-size: 1.25rem;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
}
.cta__widget a:visited, .cta__widget a.active, .cta__widget a.focus, .cta__widget a:active, .cta__widget a:focus {
  color: hsl(0deg, 0%, 100%);
  border: solid 1px #FFFCE8;
}
.cta__widget a:hover {
  color: hsl(0deg, 0%, 100%);
  background-color: hsl(190deg, 65%, 65%);
  border: solid 1px hsl(190deg, 65%, 65%);
}
.cta__grey {
  background-color: hsl(40deg, 8%, 83%);
}
.cta__grey h3 {
  color: #381D2A;
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--margin-default);
}
.cta__grey a {
  background-color: #381D2A;
  border: solid 1px #381D2A;
}
.cta__beige {
  background-color: hsl(200deg, 65%, 65%);
}
.cta__beige h3 {
  color: #381D2A;
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--margin-default);
}
.cta__beige a {
  background-color: #381D2A;
  border: solid 1px #381D2A;
}
.cta__blue {
  background-color: #FFFCE8;
}
.cta__blue h3 {
  color: #381D2A;
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--margin-default);
}
.cta__blue a {
  background-color: #381D2A;
  border: solid 1px #381D2A;
}
.cta__white {
  background-color: hsl(0deg, 0%, 100%);
}
.cta__white h3 {
  color: #381D2A;
  font-size: 1.125rem;
  line-height: 1.6;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--margin-default);
}
.cta__white a {
  background-color: #FFFCE8;
  border: solid 1px #FFFCE8;
}
.cta__base {
  background-color: #381D2A;
}
.cta__base h3 {
  color: hsl(0deg, 0%, 100%);
  font-size: 2rem;
  line-height: 1.1;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  text-align: center;
  padding: 0;
  margin: 0 50px;
}
.cta__base a {
  background-color: #FFFCE8;
  border: solid 1px #F39B6D;
  color: hsl(0deg, 0%, 100%);
  font-weight: 600;
  font-family: "Oswald", sans-serif;
}

.cWidgetQuote .quote {
  padding: 80px 40px;
  display: flex;
  justify-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.cWidgetQuote .quote h3 {
  font-size: clamp(1.188rem, 5vw + 0.5rem, 3rem);
  line-height: 1.6;
  color: hsl(0deg, 0%, 100%);
  font-family: "Raleway", sans-serif;
  text-align: center;
  max-width: 80vw;
}

.cWidgetServices .services__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-template-rows: auto;
  justify-items: center;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cWidgetServices .services__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.cWidgetServices .services__item h3 {
  font-size: 1.5rem;
  text-align: center;
  padding: 0 10px;
}
.cWidgetServices .services__title {
  min-height: 100px;
}
.cWidgetServices .services__icon {
  border-radius: 99px;
  width: 120px;
  height: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #381D2A;
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: hsl(0deg, 0%, 100%);
  z-index: 10;
  padding: 30px;
}
.cWidgetServices .services__icon img {
  max-width: 100%;
  height: auto;
}

.layer__image {
  display: grid;
  grid-template-columns: 60px auto 100px auto 60px;
  grid-template-rows: 60px auto 100px auto 60px;
}
.layer__image img.layer {
  object-fit: scale-down;
}
@media (max-width: 767.98px) {
  .layer__image {
    display: flex;
    flex-direction: column;
  }
  .layer__image img.layer {
    margin-top: 20px;
  }
}

.position__front .original {
  z-index: 1;
}
.position__front .layer {
  z-index: 2;
}

.position__back .original {
  z-index: 2;
}
.position__back .layer {
  z-index: 1;
}

.menu__container {
  padding: 0 clamp(0px, 5vw, 150px);
}
.menu__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-template-rows: auto;
  justify-items: center;
  grid-gap: 30px;
  list-style: none;
  margin: 0 0 var(--margin-default);
  padding: 0;
}
.menu__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}
.menu__image {
  width: 100%;
  height: auto;
  grid-column: 1/-1;
  grid-row: 1/-1;
  z-index: 1;
  box-shadow: var(--box-shadow);
}
.menu__title {
  grid-column: 1/-1;
  grid-row: 2/-1;
  z-index: 2;
  color: hsl(0deg, 0%, 100%);
  background-color: hsla(26deg, 13%, 10%, 0.8);
  padding: 5px 10px;
  font-size: 1.25rem;
  font-family: "Oswald", sans-serif;
  display: inline-flex;
  justify-content: center;
}
.menu__header {
  border-bottom: solid 1px hsl(228deg, 33%, 97%);
  margin-bottom: var(--margin-default);
}
.menu__grid {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  gap: 15px;
}

.buttons__container {
  padding: 0 clamp(0px, 5vw, 150px);
}
.buttons__list {
  display: flex;
  justify-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin: 0 0 var(--margin-default);
  padding: 0;
}

a.buttons__item {
  position: relative;
  text-decoration: none;
  background-color: #381D2A;
  color: hsl(0deg, 0%, 100%);
  border: solid 1px #381D2A;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 8px;
  line-height: 20px;
  padding: 8px 20px;
}
a.buttons__item:visited, a.buttons__item.active, a.buttons__item.focus, a.buttons__item:active, a.buttons__item:focus {
  color: hsl(0deg, 0%, 100%);
  border: solid 1px #381D2A;
}
a.buttons__item:hover {
  color: #381D2A;
  background-color: hsl(0deg, 0%, 100%);
  border: solid 1px #381D2A;
}

ul.directions {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.directions li {
  font-size: 0.875rem;
}

.widget__contact {
  padding: 0 15px;
}

ul.openhours {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.openhours li {
  display: flex;
  gap: 30px;
}
ul.openhours li span {
  width: 50%;
  text-align: left;
}
ul.openhours li span:first-child {
  text-align: right;
}
ul.openhours__widget {
  color: hsl(0deg, 0%, 100%);
  margin-bottom: 30px;
}
ul.openhours__widget li {
  display: flex;
  gap: 30px;
}
ul.openhours__widget li span {
  width: 100%;
  text-align: left;
}
ul.openhours__widget li span:first-child {
  text-align: left;
}
ul.openhours__widget a {
  color: hsl(0deg, 0%, 100%);
}

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

.single_foto {
  position: relative;
}

@media (max-width: 767.98px) {
  .block.background.card.extra .background_image {
    position: relative;
  }
}

/*# sourceMappingURL=all.css.map */
