*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  position: relative;
  font-size: 62.5%;
  font-display: swap;
  color: black;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  box-sizing: border-box;
  min-height: 100vh;
  font-size: 1.6rem;
  /* mobile viewport bug fix */
  min-height: -webkit-fill-available;
  overflow-x: hidden;
}

header {
  width: 100%;
  display: block;
  position: relative;
}

header a {
  text-decoration: none;
}

a {
  text-decoration: none;
  color: #6D0F06;
  transition: all 0.2s ease-in-out 0s;
}
a:hover {
  color: #1D1D1B;
}

hr {
  display: block;
  width: 100px;
  margin: 20px 0px;
  border: 1px solid #6D0F06;
}

@font-face {
  font-family: "Metropolis";
  src: url("../css/fonts/Metropolis-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Metropolis";
  src: url("../css/fonts/Metropolis-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Metropolis";
  src: url("../css/fonts/Metropolis-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Metropolis";
  src: url("../css/fonts/Metropolis-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Metropolis";
  src: url("../css/fonts/Metropolis-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
}
@font-face {
  font-family: "Palmer Lake";
  src: url("../css/fonts/PalmerLakePrint-Regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}
html {
  font-family: "Metropolis", sans-serif;
  line-height: 1.6;
  font-weight: 400;
  font-display: swap;
}

h1, h2, h3, h4, h5 {
  font-weight: 500;
  line-height: 1.25;
  font-display: swap;
  font-family: "Palmer Lake", sans-serif;
}

p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
  color: #6D0F06;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 21px;
}

h4 {
  font-size: 18px;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.hide {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip: rect(1px 1px 1px 1px);
  width: 1px;
  height: 1px;
}

.heading {
  font-size: 24px;
  color: #FAECE2;
  padding-bottom: 40px;
  margin-bottom: 0;
  width: 100%;
  max-width: 600px;
  z-index: 10;
  position: relative;
}
.heading .btn {
  margin-top: 2rem;
}
.heading--center {
  text-align: center;
  margin: 0 auto;
}
.heading--white > * {
  color: #FAECE2 !important;
}
.heading--white > * p {
  color: #FAECE2;
}
.heading__title {
  font-size: 7rem;
  margin-top: 0;
  position: relative;
  font-family: "Palmer Lake";
  line-height: 0.7;
  color: #6D0F06;
}
.heading__desc {
  color: #6D0F06;
  line-height: 1.7;
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 1rem;
  max-width: 650px;
}
.heading__desc p {
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
  font-weight: #1D1D1B;
}
.heading__desc p + p {
  margin-top: 20px;
}
.heading__divider {
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #707070;
}

.heading--btn {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.heading--btn .heading__title {
  max-width: 800px;
}
.heading--btn .btn {
  display: inline-block;
  margin-top: 0;
}

.title--footer {
  color: #FAECE2;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.title--left {
  text-align: left;
}
.title--right {
  text-align: right;
}
.title--center {
  text-align: center;
}
.title--white {
  color: #fff;
}
.title--black {
  color: #1D1D1B;
}
.title--uppercase {
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .heading__title {
    font-size: 5rem;
    line-height: 40px;
  }

  .heading__desc {
    font-size: 1.7rem;
  }
}
.btn {
  padding: 0.8rem 3rem;
  color: #fff;
  background: #6D0F06;
  font-size: 1.6rem;
  transition: all 0.2s ease-in-out 0s;
  display: inline-block;
  text-align: center;
  font-weight: 400;
  font-family: "Metropolis", sans-serif;
  line-height: 20px;
  border-radius: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  align-self: baseline;
  transition: all 0.2s ease-in-out 0s;
}
.btn:hover {
  background-color: #FAECE2;
  color: #6D0F06 !important;
}

.icon--service {
  max-width: autos;
  max-height: 80px;
}

.cta {
  margin-top: 2rem;
}

.link {
  text-transform: uppercase;
  font-weight: 400;
  color: #1D1D1B;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 18px;
  border-bottom: 1px solid #1D1D1B;
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: block;
  align-self: flex-start;
  transition: all 0.2s ease-in-out 0s;
}
.link:hover {
  color: #6D0F06;
  border-bottom: 1px solid #6D0F06;
}

#hero {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100vh;
}

.hero__container {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  z-index: 5;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.hero__bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(1, 1, 1, 0.5);
}
.hero__bg img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero__content {
  color: white;
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  align-items: center;
  text-align: center;
}

.hero__text {
  max-width: 800px;
}

.hero__title {
  font-size: 10rem;
  color: #6D0F06;
  font-weight: 800;
}

.hero__logo {
  height: 20rem;
  object-fit: contain;
  margin: 0 auto;
  opacity: 0.9;
  max-width: 100%;
}

.hero__button {
  position: absolute;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  color: #FAECE2;
  font-family: "Palmer Lake";
  font-size: 4rem;
  letter-spacing: 0.1em;
}
.hero__button:hover {
  color: #fff;
}
.hero__button:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  height: 3rem;
  width: 3rem;
  background-image: url("../img/arrow-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 1024px) {
  #hero {
    height: 60vh;
  }

  .hero__title {
    font-size: 6rem;
  }
  .hero__title em {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  #hero {
    height: 100vh;
    margin-top: 0;
  }
  #hero .container {
    width: 100%;
    border-radius: 0;
  }

  .hero__content {
    padding: 12vw 7vw;
  }

  .hero__title {
    margin-bottom: 4rem;
    line-height: 1.2;
  }

  .hero__logo {
    height: 12rem;
  }

  .hero__button {
    bottom: 5rem;
    font-size: 3rem;
    line-height: 0.7;
  }

  .hero__services {
    display: none;
  }

  .hero__bg {
    border-radius: 0;
  }

  .hero__cta {
    flex-direction: column;
  }
  .hero__cta a {
    display: block;
    margin-left: 0 !important;
    align-self: baseline;
  }
}
p,
ul,
li {
  margin: 0;
  padding: 0;
}

a {
  color: #6D0F06;
  line-height: 1.5;
}

code {
  background: #ECEFF1;
}

#faq {
  background: transparent linear-gradient(223deg, #FAECE2 0%, #F7D7DC 100%) 0% 0% no-repeat padding-box;
}

#faq .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}

#faq .component {
  position: absolute;
  top: 0;
  right: 5%;
  height: 100%;
  opacity: 0.5;
}

#faq .heading {
  padding-bottom: 0;
}

.faq__illustration {
  position: relative;
  width: 40%;
  border-radius: 50px;
}
.faq__illustration .image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.faq__illustration .logo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 30%);
  width: 80%;
}

.faq__content {
  width: 55%;
  display: flex;
  flex-direction: column;
  padding: 8rem 0;
}

.faq__title {
  margin-bottom: 20px;
}

.faq__desc {
  max-width: 400px;
}

.faq__cta {
  text-align: left;
  margin-top: 3rem;
}
.faq__cta a + a {
  margin-left: 1rem;
}

.praticals__list {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.praticals__list ul {
  list-style: initial !important;
  margin: 10px 0px;
  margin-left: 2rem;
}
.praticals__list ol {
  list-style: decimal !important;
}
.praticals__list li {
  line-height: 30px;
  position: relative;
  font-size: 1.4rem;
}
.praticals__list em {
  font-style: normal;
  color: #6D0F06;
}

.praticals__text {
  width: 50%;
  padding: 0px 0px;
}

.praticals__item {
  overflow: hidden;
  transition: height 300ms ease-in-out;
  margin-bottom: 0px;
  background-color: #fff;
  margin: 2rem 0;
  border-radius: 12px;
}
.praticals__title, .praticals__content {
  padding: 0.8rem 2rem;
}
.praticals__title p, .praticals__content p {
  font-size: 1.4rem;
}
.praticals__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-family: "Metropolis";
  list-style: none;
  outline: 0;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: 400;
  transition: color 300ms ease-in-out;
  padding-left: 0;
  line-height: 1.4;
  padding: 0.8rem 2rem;
  color: #6D0F06;
}
.praticals__title:after {
  content: "";
  height: 2.6rem;
  width: 2.6rem;
  background-image: url("../img/icon-sun.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  transition: all 0.2s ease-in-out 0s;
}
[open] > .praticals__title:after {
  opacity: 0.5;
}
.praticals__title:hover {
  color: #6D0F06;
}
.praticals__title::-webkit-details-marker {
  display: none;
}
[open] .praticals__title span:after {
  opacity: 0;
  transform: translateY(25%);
}
.praticals__heading {
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1.7;
  max-width: 300px;
}
.praticals__desc {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 300;
  margin: 20px 0px;
}
.praticals__content {
  padding-top: 0;
  max-width: 90%;
}
.praticals__content p + p {
  margin-top: 15px;
}
.praticals__cta {
  text-align: center;
  margin-top: 50px;
}
.praticals__cta + a {
  margin-left: 1rem;
}

@media (max-width: 1024px) {
  .faq__content {
    width: 100%;
    padding: 4rem 0;
    margin-top: 0;
  }

  .faq__desc {
    margin: 0 auto;
  }

  .praticals__list {
    width: 100%;
  }

  .praticals__text {
    width: 100%;
  }

  .faq__cta {
    text-align: left;
    margin-top: 1rem;
  }
  .faq__cta .btn {
    margin-left: 0;
    margin-top: 1rem;
  }

  .faq__title {
    width: 100%;
    text-align: center;
  }

  #faq .component {
    height: 40%;
  }

  .faq__illustration {
    margin-top: 4rem;
  }
}
@media (max-width: 1024px) {
  #faq .container {
    flex-direction: column-reverse;
  }

  .faq__illustration {
    height: 60rem;
    width: 100%;
  }

  .praticals__text {
    padding: 0px 5%;
  }

  .praticals__title {
    font-size: 1.9rem;
  }

  .praticals__number {
    margin-right: 2rem;
  }

  .praticals__content {
    line-height: 1.6;
  }
}
@media (max-width: 550px) {
  .praticals__title {
    font-size: 1.6rem;
  }

  .faq__illustration {
    height: 40rem;
    width: 100%;
  }
}
#perks {
  position: relative;
  background: linear-gradient(180deg, #faece2 0%, #fadfcc 100%);
  padding: 10rem 0;
  z-index: 1;
  overflow: hidden;
}

.perks__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8vw;
}

.perks__title {
  font-family: "Palmer Lake";
  color: #6D0F06;
  font-size: 5rem;
  line-height: 45px;
  margin-bottom: 2rem;
}

.perks__text {
  margin-top: 1rem;
}

.perks__components {
  z-index: 10;
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -40%);
  opacity: 0.3;
}
.perks__components img {
  height: 35rem;
}

@media (max-width: 1024px) {
  .perks__list {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .perks__item img {
    height: 7rem;
  }

  .perks__components {
    display: none;
  }

  .perks__text p {
    font-size: 1.7rem;
  }
}
#banner {
  position: relative;
  height: 80vh;
}

#banner .component {
  position: absolute;
  top: 0;
  left: -5%;
  transform: translateY(-50%);
  height: 25vw;
  opacity: 1;
}

@keyframes spin {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
.banner__illustration {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.banner__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.banner__illustration:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(1, 1, 1, 0.2);
}

.marquee__container {
  display: flex;
  flex-direction: column;
  align-items: end;
  height: 100%;
}

.marquee__text {
  overflow: hidden;
  width: 100%;
  background: transparent;
  position: relative;
  margin-top: auto;
  padding-bottom: 5rem;
}

.marquee {
  display: flex;
  white-space: nowrap;
  font-family: "Palmer Lake";
  font-size: 30rem;
  -webkit-text-stroke: 2px white;
  line-height: 0.7;
  color: transparent;
}

.marquee span {
  padding-right: 2rem;
}

.marquee.left {
  animation: scroll-left 20s linear infinite;
}

.marquee.right {
  animation: scroll-right 20s linear infinite;
}

@media (max-width: 1024px) {
  #banner {
    position: relative;
    height: 60vh;
  }

  #banner .component {
    height: 40vw;
  }

  .marquee {
    font-size: 20rem;
  }
}
@media (max-width: 550px) {
  #banner {
    position: relative;
    height: 50vh;
  }

  #banner .component {
    height: 40vw;
  }

  .marquee {
    font-size: 12rem;
  }
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.about {
  padding: 2rem;
}
.about__container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  justify-content: space-between;
}
.about__title {
  font-weight: 900;
  font-size: 4rem;
  margin-bottom: 2rem;
  line-height: 40px;
}
.about__content {
  width: 45%;
}
.about__content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin: 1.5rem 0 1rem;
}
.about__content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 1.5rem 0 1rem;
}
.about__content p {
  line-height: 1.6;
  margin-bottom: 1rem;
}
.about__illustration {
  position: relative;
  flex: 0 0 50%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 45rem;
}
.about__illustration:before {
  content: "";
  padding-bottom: 70%;
  display: block;
}
.about__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: inherit;
}

@media (max-width: 1024px) {
  .about__container {
    flex-direction: column;
  }

  .about__content {
    width: 100%;
  }

  .about__illustration {
    height: 25rem;
    width: 100%;
  }
}
#social {
  position: relative;
  background-color: #6A6835;
  overflow: hidden;
}

#social .heading {
  width: 35%;
}

#social .component {
  position: absolute;
  top: 0;
  left: 5%;
  height: 100%;
  opacity: 0.25;
}

#social .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.social__list,
#sbi_images {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-template-rows: repeat(3, 1fr);
  width: 55%;
  gap: 1.5rem;
  align-items: start;
  max-height: 800px;
}

.social__card,
.sbi_item {
  position: relative;
  background-color: #FAECE2;
  border-radius: 25px;
}
.social__card:after,
.sbi_item:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../img/footer-instagram.svg");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: auto 1.2rem;
  margin-left: 2rem;
  height: 3rem;
  width: 50%;
}
.social__card:before,
.sbi_item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/instagram-header.svg");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 100% 2rem;
  margin-left: 2rem;
  height: 3rem;
  width: 80%;
  z-index: 3;
}

#sb_instagram .sbi_photo_wrap {
  margin: 3rem 0;
}

.social__card:nth-child(4n+1) {
  margin-top: -20%;
}

.social__card:nth-child(4n+2) {
  margin-top: -90%;
}

.social__card:nth-child(4n+4) {
  margin-top: -90%;
}

.social-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.social-header .left span {
  background-color: #F7D7DC;
  border-radius: 50%;
  display: block;
  height: 1rem;
  width: 1rem;
}

.social-header .right {
  display: flex;
  flex-direction: row;
}
.social-header .right span {
  background-color: #6A6835;
  border-radius: 50%;
  display: block;
  height: 0.5rem;
  width: 0.5rem;
}
.social-header .right span + span {
  margin-left: 0.2rem;
}

.social-header,
.social-footer {
  padding: 0.5rem 2rem;
}

.social__content {
  position: relative;
  height: 100%;
  width: 100%;
}

.social__image {
  position: relative;
  width: 100%;
  z-index: 2;
}
.social__image:before {
  content: "";
  padding-bottom: 120%;
  display: block;
}
.social__image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#sb_instagram {
  width: 60%;
  margin: 0;
}

@media (max-width: 1024px) {
  #social {
    padding-top: 10rem;
  }

  #social .container {
    flex-direction: column;
  }

  #social .component {
    height: 50%;
  }

  #social .heading {
    width: 100%;
  }

  .social__list,
#sbi_images {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
  }

  #sb_instagram .sbi_photo {
    height: 10rem !important;
  }
}
@media (max-width: 768px) {
  .social__list,
#sbi_images {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
  }

  #sb_instagram .sbi_photo {
    height: 20rem !important;
  }
}
#contact {
  background: transparent linear-gradient(223deg, #FAECE2 0%, #F7D7DC 100%) 0% 0% no-repeat padding-box;
  padding-bottom: 20rem;
}

#contact .container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

#contact .component {
  position: absolute;
  top: 0;
  right: -5%;
  transform: translateY(-50%);
  height: 20vw;
  opacity: 1;
  z-index: 10;
}

#contact .heading {
  width: 55%;
  max-width: 800px;
  padding-left: 5%;
}

.contact__container {
  width: 40%;
  background-color: #FAECE2;
  padding: 6rem 6rem;
  border-radius: 100px 100px 25px 25px;
  border: 10px solid #6D0F06;
}

@media (max-width: 1024px) {
  #contact .container {
    flex-direction: column;
  }

  #contact .heading {
    width: 100%;
  }

  .contact__container {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contact__container {
    padding: 6rem 4rem;
  }
}
#services {
  position: relative;
  background-color: #F7D7DC;
}

.services__list {
  display: flex;
  flex-direction: column;
}

.services__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 10rem;
}
.services__item:nth-child(2) {
  flex-direction: row-reverse;
}
.services__item:last-child {
  padding-bottom: 10rem;
}

.services__content {
  width: 40%;
  padding: 10rem 0;
}

.services__title {
  color: #fff;
}

.services__text {
  margin: 3rem 0;
}
.services__text p + p {
  margin-top: 1.5rem;
}

.services__illustration {
  position: relative;
  width: 50%;
  -webkit-mask: url("../img/blob.svg") no-repeat center/contain;
  mask: url("../img/blob.svg") no-repeat center/contain;
  z-index: 0;
}
.services__illustration:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.services__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .services__item {
    flex-direction: column;
    align-items: baseline;
  }
  .services__item:nth-child(even) {
    flex-direction: column;
  }

  .services__content {
    width: 100%;
    padding: 0;
  }

  .services__illustration {
    width: 100%;
    margin-top: 4rem;
    max-height: 50rem;
  }
}
#booking {
  padding-bottom: 20rem;
  background: linear-gradient(180deg, #faece2 0%, #fadfcc 100%);
}

.booking__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.booking-form {
  max-width: 800px;
  width: 50%;
  background-color: #FAECE2;
  padding: 4rem;
  border-radius: 100px 100px 25px 25px;
  border: 10px solid #6D0F06;
  align-self: baseline;
}

.booking__title {
  font-size: 5rem;
  color: #6D0F06;
  line-height: 0.8;
}

.booking__content {
  position: relative;
  width: 45%;
}

@media (max-width: 1024px) {
  .booking__container {
    flex-direction: column;
  }

  .booking-form {
    width: 100%;
  }

  .booking__content {
    width: 100%;
    margin-top: 8rem;
  }
}
#workshops {
  position: relative;
  background-color: #F7D7DC;
}

.workshops__list {
  display: flex;
  flex-direction: column;
}

.workshops__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.workshops__item:nth-child(even) {
  flex-direction: row-reverse;
}
.workshops__item + .workshops__item {
  padding-top: 5rem;
}

.workshops__content {
  width: 55%;
  padding: 10rem 0;
}

.workshops__title {
  color: #fff;
}

.workshops__text {
  margin: 3rem 0;
}
.workshops__text p + p {
  margin-top: 1.5rem;
}

.workshops__illustration {
  position: relative;
  width: 40%;
  -webkit-mask: url("../img/blob.svg") no-repeat center/contain;
  mask: url("../img/blob.svg") no-repeat center/contain;
  z-index: 0;
}
.workshops__illustration:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.workshops__illustration img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#workshops .component {
  position: absolute;
  top: 0;
  right: -5%;
  transform: translateY(-50%);
  height: 20vw;
  opacity: 1;
  z-index: 10;
}

@media (max-width: 1024px) {
  .workshops__item {
    flex-direction: column;
  }
  .workshops__item:nth-child(even) {
    flex-direction: column;
  }

  .workshops__content {
    width: 100%;
    padding: 2rem 0;
  }

  .workshops__illustration {
    width: 100%;
  }
}
#page-header {
  background-color: #F7D7DC;
  padding: 25rem 0rem 4rem;
}

@media (max-width: 768px) {
  #page-header {
    background-color: #F7D7DC;
    padding: 15rem 0rem 4rem;
  }
}
/* HEADER */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

#breadcrumbs {
  padding: 2rem 0 3rem;
}
#breadcrumbs + .section {
  padding-top: 0;
}

.section {
  position: relative;
  padding: 10rem 0;
}
.section--centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section--columns {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
}
.section--grey {
  background-color: #F3F2EE;
  padding-bottom: 100px;
}
.section--grey-gradient {
  position: relative;
  padding-bottom: 100px;
}
.section--grey-gradient:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  z-index: 0;
  background: linear-gradient(40deg, #99C55C 0%, #1AA9E2 70%);
  opacity: 0.2;
}
.section--gradient .container {
  padding: 5rem;
  border-radius: 12px;
}
.section--gradient .container:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(110deg, #99C55C 0%, #1AA9E2 100%);
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  border-radius: 12px;
  z-index: -1;
}
.section--primary .container {
  padding: 5rem;
  border-radius: 12px;
}
.section--primary .container:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(110deg, #99C55C 0%, #1AA9E2 100%);
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
  border-radius: 12px;
  z-index: -1;
}
.section--secondary {
  background: linear-gradient(40deg, #99C55C 0%, #1AA9E2 70%);
  color: #fff;
}
.section--secondary:after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  opacity: 0.05;
  background-size: 50%;
  background-repeat: repeat;
  background-image: url("../img/pattern-bg.png");
  z-index: 1;
}

.wrapper {
  width: calc(1380/1680 * 100%);
}
.wrapper--centered {
  margin-left: auto;
  margin-right: auto;
}
.wrapper--accent {
  background-color: #F3F2EE;
  padding-left: calc(150/1680 * 100%);
  padding-right: calc(150/1680 * 100%);
}
.wrapper--white {
  background-color: #fff;
  padding-left: calc(150/1680 * 100%);
  padding-right: calc(150/1680 * 100%);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.column {
  display: flex;
  flex-wrap: wrap;
}
.column--free {
  display: flex;
}
.column--spaced {
  justify-content: space-between;
}
.column--centered {
  align-items: center;
}
.column--reversed {
  flex-direction: row-reverse;
}
.column--equal {
  align-items: stretch;
}
.column--centered-w {
  justify-content: center;
}
.column--half {
  width: 45%;
}
.column--third {
  width: 30%;
}
.column--fourth {
  width: 23%;
}

.container {
  width: calc(1380/1680 * 100%);
  margin: 0 auto;
  position: relative;
  height: 100%;
  z-index: 2;
}
.container--stretch {
  max-width: 1000px;
}

.list--inline li {
  display: inline-block;
}

.breadcrumbs {
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .section {
    padding-top: 10rem;
  }
  .section:last-child {
    padding-bottom: 10rem;
  }
  .section + .section {
    padding-top: 10rem;
  }
  .section + .section--gradient {
    margin-top: 10rem;
  }
  .section + .section--grey {
    margin-top: 10rem;
  }

  .section--gradient .container:after {
    background: linear-gradient(360deg, #99C55C 0%, #1AA9E2 100%);
  }

  .section--gradient .container {
    padding: 7.5rem 2rem;
  }

  .section--primary .container {
    padding: 7.5rem 2rem;
  }
}
@media (max-width: 768px) {
  .container {
    width: calc(1480/1680 * 100%);
  }
}
/* FORM */
.form__title {
  color: #6D0F06;
  margin-bottom: 2rem;
  color: #6D0F06;
  font-size: 5rem;
  line-height: 0.8;
}

#gform_confirmation_message_1 {
  margin-bottom: 40px;
}

.gform_heading {
  display: none !important;
}

#gform .gform_fields {
  gap: 1rem;
}

#gform .gform-field-label {
  color: #6D0F06;
  opacity: 1;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

#gform .gfield_label {
  color: #6D0F06;
  opacity: 1;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

#gform input {
  width: 100%;
  border: none;
  padding: 1rem 1rem;
  font-family: "Metropolis", sans-serif;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #F7D7DC;
  -webkit-appearance: none;
  font-weight: 400;
  font-size: 1.4rem;
  color: #6D0F06;
  border-radius: 5px;
}
#gform input::placeholder {
  color: #1D1D1B;
  opacity: 0.6;
  font-weight: 400;
  font-size: 1.5rem;
}

#gform select {
  width: 100%;
  border: none;
  font-family: "Metropolis", sans-serif;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #F7D7DC;
  -webkit-appearance: none;
  font-weight: 400;
  font-size: 1.4rem;
  color: #6D0F06;
  border-radius: 5px;
}
#gform select::placeholder {
  color: #1D1D1B;
  opacity: 0.6;
  font-weight: 400;
  font-size: 1.5rem;
}

#gform textarea {
  width: 100%;
  border: none;
  padding: 1rem;
  font-family: "Metropolis", sans-serif;
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #F7D7DC;
  -webkit-appearance: none;
  font-weight: 400;
  font-size: 1.4rem;
  color: #6D0F06;
}
#gform textarea::placeholder {
  color: #1D1D1B;
  opacity: 0.6;
  font-weight: 400;
  font-size: 1.5rem;
}

#gform .gfield-choice-input {
  border: 1px solid rgba(1, 1, 1, 0.2) !important;
  padding: 0;
  margin: 0;
  cursor: default;
  box-sizing: border-box;
  margin: 2px;
  padding: initial;
  border: initial;
}

#gform .gform_button {
  width: auto;
  color: #fff;
  line-height: 1;
  border: none;
  font-size: 1.6rem;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out 0s;
  background: #6D0F06;
  font-family: "Metropolis", sans-serif;
  padding: 10px 20px;
  display: block;
  cursor: pointer;
  letter-spacing: 0.1em;
  border-radius: 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
}

#gform .gf_progressbar_percentage {
  background: #FF7E2D;
}

#gform .gf_progressbar_title {
  color: #6D0F06;
  font-size: 2rem;
  text-align: center;
}

#input_1_10 {
  display: block;
  width: 100%;
  margin: 10px 0px;
}

#input_1_10 label {
  max-width: 100%;
}

#input_1_10.gchoice {
  display: inline-block;
  margin-left: 20px;
}

.gform_heading {
  display: none;
}

#gform .gchoice {
  vertical-align: middle;
}
#gform .gchoice .gform-field-label {
  text-transform: none;
  color: rgba(1, 1, 1, 0.5);
  font-weight: 500;
  letter-spacing: normal;
}

#gform .gfield_checkbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
}

.gchoice:first-child {
  margin-left: 0px;
}

#gform .gform_confirmation_message {
  font-size: 2rem;
  color: #6D0F06;
  line-height: 1.7;
  margin-bottom: 10rem;
  margin-top: 5rem;
}

#booking .gfield_description.instruction {
  display: none;
}

#gform .gsection_title {
  font-size: 4rem;
  color: #6D0F06;
  line-height: 0.7;
  margin-bottom: 1rem;
}

#gform .gfield--type-product {
  padding: 2rem;
  background-color: #fff;
  border-radius: 5px;
}
#gform .gfield--type-product .gfield_label_product {
  margin-bottom: 0;
  font-size: 1.6rem;
  color: #FF7E2D;
  text-transform: none;
  line-height: 1.2;
}
#gform .gfield--type-product .ginput_quantity_label {
  margin-top: 0.5rem;
  margin-bottom: 0;
  text-transform: none;
}
#gform .gfield--type-product .ginput_product_price_wrapper {
  text-transform: none;
}
#gform .gfield--type-product .ginput_product_price_label {
  text-transform: none;
}
#gform .gfield--type-product .ginput_quantity {
  margin: 0.5rem 0;
}
#gform .gfield--type-product input {
  width: auto;
  align-self: baseline;
  background-color: #FAECE2 !important;
}

#gform .gfield--type-total {
  padding: 2rem;
  background-color: white;
  margin-top: 2rem;
}
#gform .gfield--type-total input {
  background-color: #FAECE2 !important;
}

#gform .gfield--type-section {
  margin-bottom: 2rem;
}

#gform .gfield_total label {
  font-weight: 900;
}

#gform .gform_page_footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
#gform .gform_page_footer input {
  width: 100%;
}

#booking #gform .gfield input {
  background-color: #fff;
}

#booking #gform select {
  background-color: #fff;
}

#booking #gform textarea {
  background-color: #fff;
}

#booking #gform .gform_button {
  width: auto;
  color: #fff;
  line-height: 1;
  border: none;
  font-size: 1.4rem;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out 0s;
  background: #6D0F06;
  font-family: "Metropolis", sans-serif;
  padding: 10px 20px;
  display: block;
  cursor: pointer;
  letter-spacing: 0.1em;
  border-radius: 5px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
#booking #gform .gform_button:hover {
  background-color: #F7D7DC;
  color: #6D0F06;
}

@media (max-width: 768px) {
  #gform .gform_page_footer {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.footer {
  background: #FAECE2;
  position: relative;
  margin: 0 auto;
  padding-top: 5rem;
}

.footer__title {
  font-size: 4vw;
  color: #6D0F06;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  z-index: 1;
  padding-bottom: 6rem;
}

.footer__logo {
  height: 13rem;
  margin-top: -10rem;
  padding: 0rem 10rem;
}
.footer__logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.footer__part {
  position: relative;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}
.footer__part p {
  font-size: 2rem;
}
.footer__part span {
  display: block;
}
.footer__part a {
  font-size: 2rem;
}
.footer__part a:hover {
  color: #FF7E2D;
}
.footer__part:nth-child(2) {
  text-align: center;
}
.footer__part:nth-child(3) {
  text-align: right;
}

.footer__text {
  color: white;
}
.footer__text h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer__text p {
  color: #BCBCBC;
  font-weight: 300;
}

/* LEGAL */
.footer__legal a {
  font-size: 2rem;
}
.footer__legal a + a {
  margin-left: 4rem;
}

/* SOCIAL */
.footer-social {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 5rem auto;
}
.footer-social a {
  height: 6.5rem;
  width: 6.5rem;
  display: block;
  background-image: url("../img/social-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover {
  transform: scale(1.04);
}
.footer-social a + a {
  margin-left: 3rem;
}
.footer-social a img {
  position: relative;
  height: 3rem;
  width: 3rem;
  object-fit: contain;
}

/* COPYRIGHT */
.footer__copyright {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background: transparent linear-gradient(180deg, #6A6835 0%, #888653 100%) 0% 0% no-repeat padding-box;
  z-index: 1;
}
.footer__copyright p {
  font-size: 3rem;
  opacity: 1;
  font-family: "Palmer Lake";
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer__copyright p a {
  opacity: 1;
  line-height: 1;
  color: #fff;
  margin-left: 1rem;
  cursor: pointer;
}
.footer__copyright p a:hover {
  color: #FF7E2D;
}

.footer__copyright {
  text-align: center;
  margin: 6rem auto 0;
}
.footer__copyright .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1024px) {
  .footer {
    width: 100%;
    border-radius: 0px;
  }

  .footer__main {
    flex-direction: column;
  }

  .footer__part {
    max-width: 100%;
    text-align: center !important;
  }
  .footer__part + .footer__part {
    margin-top: 2rem;
  }

  .footer__title {
    font-size: 5rem;
  }

  .footer__copyright .container {
    flex-direction: column;
  }

  .footer__legal {
    text-align: center;
  }

  .footer__legal a {
    display: block;
  }
  .footer__legal a + a {
    margin-top: 2rem;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .footer__logo {
    padding: 0rem 5rem;
  }

  .footer__copyright > * {
    width: 100%;
    margin: 5px 0px;
    margin-left: 0;
    padding-left: 0;
    line-height: 1.4;
    flex-direction: column;
  }
  .footer__copyright > *:before {
    display: none;
  }

  .menu--footer li {
    display: block;
    margin-left: 0 !important;
    margin-bottom: 10px;
  }
  .menu--footer li:last-child {
    margin-bottom: 0px;
  }

  .footer__contact li {
    justify-content: center;
  }

  .footer__copyright > *:before {
    display: none;
  }
}
.slick-track,
.slick-list {
  height: 100%;
  width: 100%;
}

.slick-arrow {
  display: inline-block !important;
  transition: all 0.2s ease-in-out 0s;
}
.slick-arrow:hover {
  opacity: 0.5;
}

.slick-next {
  position: relative;
  width: 5rem;
  height: 2rem;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border: none;
  color: transparent;
  background: transparent;
  outline: none;
}
.slick-next:before {
  content: "";
  background-image: url("../img/icon-arrow.svg");
  height: 2rem;
  width: 5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
}

.slick-prev {
  position: relative;
  z-index: 10;
  width: 5rem;
  height: 2rem;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  border: none;
  color: transparent;
  background: transparent;
  outline: none;
}
.slick-prev:before {
  content: "";
  background-image: url("../img/icon-arrow.svg");
  height: 2rem;
  width: 5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  transform: rotate(180deg);
}

.slick-dots {
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots li + li {
  margin-left: 10px;
  margin-top: 0;
}
.slick-dots button {
  background-color: #707070;
  cursor: pointer;
  border: 1px solid #707070;
  text-indent: -999999px;
  width: 7px;
  height: 7px;
  border-radius: 1px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.3;
}
.slick-dots button:focus {
  outline: none;
}
.slick-dots .slick-active button {
  width: 10px;
  height: 15px;
  opacity: 1;
  background: transparent;
  border: none;
  background-image: url("../img/icon-dot.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.menu {
  position: relative;
  width: 100%;
  z-index: 99;
}

.menu--container {
  padding: 4rem 0;
  max-width: calc(1380/1680 * 100%);
  margin: 0 auto;
}

.menu--header {
  margin-left: auto;
}

.menu--logo {
  height: 100%;
  width: 120px;
}
.menu--logo a {
  height: 100%;
  width: 100%;
  display: inline-block;
}
.menu--logo img {
  height: 100%;
  width: 100%;
  text-align: center;
  object-fit: contain;
  margin-right: auto;
}

.menu--button {
  margin-left: 4rem;
  background-color: rgba(250, 236, 226, 0.8);
  padding: 0.3rem 4rem;
  border-radius: 12px;
}

.menu--button a {
  font-weight: 500;
  line-height: 1;
  font-size: 4.5rem;
  font-family: "Palmer Lake";
  color: #6D0F06;
  text-transform: none;
}
.menu--button a:hover {
  color: #fff;
}

.menu__list {
  width: 100%;
  display: inline-block;
  padding: 0.3rem 4rem;
  border-radius: 12px;
  background-color: rgba(109, 15, 6, 0.8);
}
.menu__list li {
  position: relative;
  display: inline-block;
}
.menu__list li + li {
  margin-left: 4.5vw;
}
.menu__list a {
  display: block;
  color: #FAECE2;
  text-decoration: none;
  font-weight: 300;
  line-height: 1;
  font-size: 2rem;
  font-family: "Metropolis";
  text-transform: uppercase;
  padding: 1.4rem;
}
.menu__list a:hover, .menu__list a:active, .menu__list a.active {
  color: #fff;
}

.menu__list .menu--button.current-menu-item a:before {
  display: none;
}

.unclickable > a {
  pointer-events: none !important;
}

/* MOBILE MENU */
.button--mobile {
  display: none;
}

/* MENU BURGER */
.menu--burger {
  position: fixed;
  text-align: right;
  display: none;
  z-index: 1022;
  right: 2.5rem;
  cursor: pointer;
  margin-left: 2rem;
  background-color: rgba(109, 15, 6, 0.8);
  border-radius: 5px;
}
.menu--burger .line1 {
  background-color: #FAECE2;
}
.menu--burger .line2 {
  background-color: #FAECE2;
}
.menu--burger .line3 {
  background-color: #FAECE2;
}

.menu--burger div {
  width: 3rem;
  height: 0.3rem;
  margin: 10px;
  transition: all 0.5s ease-in;
  border-radius: 1px;
}

.menu--burger.active div {
  background: #FAECE2;
  margin: 4px;
}

.menu--burger.active .line1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu--burger.active .line2 {
  opacity: 0;
}

.menu--burger.active .line3 {
  transform: rotate(-45deg) translate(5px, -5px);
}

.menu--burger {
  display: none;
}

.action--close {
  position: fixed;
  z-index: 100;
  top: 40px;
  right: 20px;
}

/* TOP BAR */
.top-bar {
  background-color: #6D0F06;
  padding: 1.2rem 4rem;
}

.top-bar__content {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  flex-direction: row;
  line-height: 1.4;
}
.top-bar__content > * {
  font-size: 1.6rem;
  letter-spacing: 0.7px;
  line-height: 1.4;
}
.top-bar__content em {
  font-style: normal;
  font-weight: 700;
}

.top-bar__btn {
  color: #EBD58C;
  margin-left: 2rem;
  border-bottom: 1px solid #EBD58C;
}
.top-bar__btn:hover {
  color: white;
  border-bottom: 1px solid white;
}

@keyframes navLinksFade {
  0% {
    opacity: 0;
    transform: translateY(50px) translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}
.mobile {
  display: none;
}

@media (max-width: 1024px) {
  .header {
    height: 100px;
  }

  .menu {
    height: 100%;
  }

  .mobile.menu--logo {
    display: inline;
    height: auto;
    margin-right: 0;
    width: 180px;
    position: relative;
  }
  .mobile.menu--button {
    display: inline;
    margin-right: 0;
    margin-left: 0;
  }
  .mobile.menu--button a {
    font-size: 4rem;
  }

  .menu--button {
    display: none;
  }

  .menu--logo {
    margin-right: auto;
    position: fixed;
    height: auto;
  }

  .menu--container {
    padding: 20px 0;
  }

  .menu--header {
    display: flex;
    position: fixed;
    left: 0;
    top: -120%;
    width: 100%;
    background: #6D0F06;
    padding: 80px calc(150/1680 * 100%) 80px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    transition: top 1s ease-in;
    z-index: 99;
    overflow-y: scroll;
  }

  .menu__list a {
    color: #FAECE2;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
  }

  .menu--header .menu__list > li {
    opacity: 1;
    display: block;
    text-align: right;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-bottom: 0;
  }
  .menu--header .menu__list > li a {
    padding: 2rem 0;
    width: 100%;
    display: block;
  }

  .menu--header.active {
    top: 0;
    width: 100%;
    height: 100%;
  }

  .menu--burger {
    display: block;
  }

  .menu__list {
    margin-right: 0;
    padding: 3rem;
  }

  .menu__list .menu-item-has-children {
    padding-right: 0;
  }
  .menu__list .menu-item-has-children:after {
    display: none;
  }
  .menu__list .menu-item-has-children .sub-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    opacity: 1;
    gap: 1rem;
    visibility: visible;
    position: relative;
    transform: none;
    min-width: auto;
    left: auto;
    top: 0;
    margin-top: 0;
  }
  .menu__list .menu-item-has-children .sub-menu li {
    display: block;
    padding: 0;
  }
  .menu__list .menu-item-has-children .sub-menu li a {
    font-weight: 400;
    color: #1D1D1B;
    font-size: 14px;
  }

  .menu__list .current-menu-item a:before {
    bottom: 15px;
    right: 0;
    left: auto;
    width: 50px;
  }
}
@media (max-width: 1024px) {
  .menu--logo {
    width: 80px;
  }
  .menu--logo a {
    display: block;
    width: 100%;
  }
  .menu--logo img {
    width: 100%;
  }

  .burger {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu--header {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .menu--container {
    padding: 15px 2.5rem;
    max-width: 100%;
  }

  .menu--button {
    margin-left: 0;
    margin-right: 1rem;
  }
  .menu--button a {
    font-size: 12px;
  }

  .top-bar__title {
    font-size: 1.4rem;
  }
}
@media (max-width: 550px) {
  .menu--logo {
    width: 80px;
  }

  .menu-logo {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .menu__list a {
    font-weight: 600;
  }

  .menu--burger {
    margin-left: 1rem;
  }
}

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