@charset "UTF-8";
/* ----------------------- */
/********** Fonts **********/
/* ----------------------- */
/*
@font-face {
  font-family: "Meursault";
  src:
    url("../fonts/MeursaultWeb-Regular.woff2") format("woff2"),
    url("../fonts/MeursaultWeb-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*/
/* -------------------------------------- */
/********** Responsive Variables **********/
/* -------------------------------------- */
/* ------------------------------ */
/********** Brand Colors **********/
/* ------------------------------ */
/* --------------------------- */
/********** Structure **********/
/* --------------------------- */
.post, .page, .page-content {
  margin: 0;
  padding: 0;
}
.wrap {
  /*
  @media screen and (min-width: $md) {
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1440px;
  }

  @media screen and (max-width: $md) {
    padding-left: 20px;
    padding-right: 20px;
  }
  */
}
.flex, .col-wrap {
  display: flex;
}
.flex.flex-row, .col-wrap.flex-row {
  flex-direction: row;
}
.flex.flex-row-reverse, .col-wrap.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex.flex-column, .col-wrap.flex-column {
  flex-direction: column;
}
.flex.flex-wrap, .col-wrap.flex-wrap {
  flex-wrap: wrap;
}
.flex.flex-no-wrap, .col-wrap.flex-no-wrap {
  flex-wrap: no-wrap;
}
.flex.flex-align-start, .col-wrap.flex-align-start {
  align-items: flex-start;
}
.flex.flex-align-end, .col-wrap.flex-align-end {
  align-items: flex-end;
}
.flex.flex-align-center, .col-wrap.flex-align-center {
  align-items: center;
}
.flex.flex-justify-between, .col-wrap.flex-justify-between {
  justify-content: space-between;
}
.flex.flex-justify-even, .col-wrap.flex-justify-even {
  justify-content: space-evenly;
}
.flex.flex-justify-end, .col-wrap.flex-justify-end {
  justify-content: flex-end;
}
.flex.flex-justify-center, .col-wrap.flex-justify-center {
  justify-content: center;
}
.flex .flex-no-grow, .col-wrap .flex-no-grow {
  flex-grow: 0;
}
.flex .flex-no-shrink, .col-wrap .flex-no-shrink {
  flex-shrink: 0;
}
.flex .flex-grow, .col-wrap .flex-grow {
  flex-grow: 1;
}
.flex .flex-shrink, .col-wrap .flex-shrink {
  flex-shrink: 1;
}
/* ------------------------------- */
/********** Global Styles **********/
/* ------------------------------- */
body {
  background-color: #1E1F1C;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
img[data-lazy-src] {
  opacity: 0;
}
img.lazyloaded {
  -webkit-transition: opacity 0.5s linear 0.2s;
  -moz-transition: opacity 0.5s linear 0.2s;
  transition: opacity 0.5s linear 0.2s;
  opacity: 1;
}
body a.cta {
  font-size: 14px;
  line-height: 100%;
  padding: 14px 24px 13px;
  color: #E5E5E5;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}
body a.cta:hover {
  text-decoration: none;
}
body a.cta:not(.reverse):not(:hover) {
  background-color: #1E1F1C;
}
body a.cta:not(.reverse):hover {
  color: #1E1F1C;
  border: 1px solid;
}
body a.cta.reverse {
  border: 1px solid;
}
body a.cta.reverse:hover {
  color: #1E1F1C;
  background-color: #E5E5E5;
}
/* ---------------------------- */
/********** Typography **********/
/* ---------------------------- */
body {
  color: #1E1F1C;
  font-family: "Chivo", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  line-height: 26px;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 16px;
    line-height: 18px;
  }
}
body h1, body h2, body h3, body h4, body .h1, body .h2, body .h3, body .h4 {
  margin: 0;
  padding: 0;
  display: block;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 1200px) {
  body h1, body .h1 {
    font-size: 55px;
    line-height: 60px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  body h1, body .h1 {
    font-size: 42px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1024px) {
  body h1, body .h1 {
    font-size: 36px;
    line-height: 42px;
  }
}
body h2, body .h2 {
  line-height: 40px;
}
@media screen and (min-width: 1024px) {
  body h2, body .h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  body h2, body .h2 {
    font-size: 36px;
  }
}
body h3, body .h3 {
  line-height: 40px;
}
@media screen and (min-width: 1024px) {
  body h3, body .h3 {
    font-size: 32px;
  }
}
@media screen and (max-width: 1024px) {
  body h3, body .h3 {
    font-size: 30px;
  }
}
body h4, body .h4 {
  line-height: 100%;
}
@media screen and (min-width: 1024px) {
  body h4, body .h4 {
    font-size: 22px;
  }
}
@media screen and (max-width: 1024px) {
  body h4, body .h4 {
    font-size: 18px;
  }
}
body p {
  margin: 0;
}
body small {
  font-size: 14px;
  line-height: 22px;
}
body ul, body ol {
  margin: 0;
  padding: 0;
}
body ul li, body ol li {
  padding: 0;
  margin: 0;
}
body ul li:not(:last-child), body ol li:not(:last-child) {
  margin-bottom: 6px;
}
body ul {
  list-style: none;
}
body ul li:before {
  content: "·";
  margin-right: 4px;
}
body strong {
  font-weight: 500;
}
body blockquote {
  margin: 0;
  padding: 0;
  position: relative;
}
body a:not(.cta), body a:not(.cta):hover, body a:not(.cta):visited {
  color: #1E1F1C;
  text-decoration: underline;
}
/* ------------------------ */
/********** Header **********/
/* ------------------------ */
header.site-header {
  width: 100%;
  z-index: 9999;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s ease-in;
  position: relative;
}
@media screen and (min-width: 1024px) {
  header.site-header {
    padding: 40px 30px 32px;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header {
    padding: 26px 20px 20px;
  }
}
@media screen and (min-width: 1024px) {
  header.site-header .site-branding img {
    height: 44px;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header .site-branding img {
    height: 28px;
  }
}
header.site-header .main-navigation {
  width: auto;
}
@media screen and (min-width: 1024px) {
  header.site-header .main-navigation {
    flex: 1;
  }
}
@media screen and (min-width: 1024px) {
  header.site-header .main-navigation > .flex {
    flex: 1;
  }
}
header.site-header .main-navigation ul {
  display: flex;
}
@media screen and (min-width: 1024px) {
  header.site-header .main-navigation ul {
    border: 1px solid #E5E5E5;
    border-radius: 22px;
    overflow: hidden;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header .main-navigation ul {
    gap: 20px;
    flex-direction: column;
    align-items: inherit;
    background-color: #1E1F1C;
    padding: 70px 40px 35px;
    border-radius: 40px;
    overflow: hidden;
    position: absolute;
    top: 0;
    align-items: flex-start;
  }
}
header.site-header .main-navigation ul li {
  margin-bottom: 0;
}
header.site-header .main-navigation ul li:before {
  display: none;
}
header.site-header .main-navigation ul li.hidden {
  display: none;
}
@media screen and (max-width: 1024px) {
  header.site-header .main-navigation ul li.hide-on-mobile {
    display: none;
  }
}
header.site-header .main-navigation ul li:not(.cta) a {
  color: #E5E5E5;
  text-decoration: none;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  header.site-header .main-navigation ul li:not(.cta) a {
    font-size: 14px;
    line-height: 100%;
    padding: 14px 10px;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header .main-navigation ul li:not(.cta) a {
    font-size: 18px;
    line-height: 120%;
  }
}
@media screen and (min-width: 1024px) {
  header.site-header .main-navigation ul li:not(.cta):first-of-type {
    padding-left: 14px;
  }
}
@media screen and (min-width: 1024px) {
  header.site-header .main-navigation ul li:not(.cta):has(+ li.cta) {
    padding-right: 14px;
  }
}
@media screen and (min-width: 1024px) {
  header.site-header .main-navigation ul li:not(.cta).current-menu-item a {
    font-weight: 700;
    letter-spacing: -0.02em;
  }
}
header.site-header .main-navigation ul li.cta a {
  color: #1E1F1C !important;
  background-color: #E5E5E5 !important;
  border-color: #E5E5E5 !important;
  font-size: 14px;
  line-height: 100%;
  padding: 14px 24px 13px;
  color: #E5E5E5;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}
header.site-header .main-navigation ul li.cta a:hover {
  text-decoration: none;
}
header.site-header .main-navigation ul li.cta a:not(.reverse):not(:hover) {
  background-color: #1E1F1C;
}
header.site-header .main-navigation ul li.cta a:not(.reverse):hover {
  color: #1E1F1C;
  border: 1px solid;
}
header.site-header .main-navigation ul li.cta a.reverse {
  border: 1px solid;
}
header.site-header .main-navigation ul li.cta a.reverse:hover {
  color: #1E1F1C;
  background-color: #E5E5E5;
}
@media screen and (min-width: 1024px) {
  header.site-header .main-navigation ul li.cta a {
    border-radius: 22px;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header .main-navigation ul li.cta a {
    width: auto;
  }
}
header.site-header .main-navigation .menu-toggle {
  display: none;
  width: 47px;
  height: 44px;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0;
  background-color: transparent;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/menu-beige.svg);
  text-indent: -9999px;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  header.site-header .main-navigation .menu-toggle {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header .main-navigation:not(.toggled) ul {
    display: none;
  }
}
header.site-header .main-navigation.toggled .menu-toggle {
  background-image: url(../images/menu-close-beige.svg);
}
header.site-header.is-fixed {
  position: fixed;
  background-color: #1E1F1C;
  border-radius: 100px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1024px) {
  header.site-header.is-fixed {
    width: 870px;
    padding: 12px 18px 12px 24px;
    top: 32px;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header.is-fixed {
    padding: 10px 12px 10px 20px;
    top: 26px;
    width: 85%;
  }
}
@media screen and (min-width: 1024px) {
  header.site-header.is-fixed .site-branding img {
    height: 24px;
  }
}
@media screen and (max-width: 1024px) {
  header.site-header.is-fixed .site-branding img {
    height: 20px;
  }
}
header.site-header.is-fixed .main-navigation ul {
  left: 0;
}
header.site-header:not(.is-fixed) .main-navigation ul {
  left: 10px;
}
@media screen and (max-width: 1024px) {
  body.nav-toggled header.site-header .site-branding {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  body.nav-toggled header.site-header .main-navigation {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
/* --------------------------------- */
/*********** Site Sections ***********/
/* --------------------------------- */
section#page-hero {
  position: relative;
}
section#page-hero:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #1E1F1C, transparent);
  opacity: 0.4;
}
section#page-hero.align-center {
  justify-content: center;
}
section#page-hero.align-center .hero-text {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  section#page-hero.align-left {
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  section#page-hero.align-left .hero-text {
    align-items: flex-start;
  }
}
@media screen and (max-width: 1024px) {
  section#page-hero.align-left .hero-text {
    text-align: center;
    align-items: center;
  }
}
section#page-hero .hero-text {
  width: 100%;
  position: absolute;
}
@media screen and (min-width: 1024px) {
  section#page-hero .hero-text {
    gap: 12px;
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 45px;
  }
}
@media screen and (max-width: 1024px) {
  section#page-hero .hero-text {
    gap: 12px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 25px;
  }
}
section#page-hero .hero-text h1, section#page-hero .hero-text h2, section#page-hero .hero-text h3, section#page-hero .hero-text p, section#page-hero .hero-text li {
  color: #E5E5E5;
}
@media screen and (min-width: 1024px) {
  section#page-hero .hero-text h1 {
    font-size: 54px;
    line-height: 65px;
  }
}
section#page-hero .hero-text .hero-cta {
  margin-top: 14px;
}
section#page-hero .hero-text .hero-cta:not(:hover) {
  color: #1E1F1C;
  background-color: #E5E5E5;
  border-color: transparent;
}
@media screen and (min-width: 1024px) {
  section#page-hero .hero-text .hero-cta:hover {
    color: #E5E5E5;
    border-color: #E5E5E5;
    background-color: transpoarent;
  }
}
section#page-hero .hero-image {
  overflow: hidden;
  border-radius: 40px;
}
@media screen and (max-width: 1024px) {
  section#page-hero .hero-image {
    max-height: calc(100vh - 100px - 10px);
  }
}
@media screen and (min-width: 1024px) {
  section#page-hero .hero-image {
    display: flex;
    align-items: flex-end;
  }
}
@media screen and (min-width: 1024px) {
  section#page-hero .hero-image:not(.small) {
    max-height: 650px;
  }
}
@media screen and (min-width: 1024px) {
  section#page-hero .hero-image:not(.small) img {
    aspect-ratio: 1.7;
  }
}
@media screen and (max-width: 1024px) {
  section#page-hero .hero-image:not(.small) img {
    aspect-ratio: 0.5;
  }
}
@media screen and (min-width: 1024px) {
  section#page-hero .hero-image.small {
    max-height: 430px;
  }
}
@media screen and (max-width: 1024px) {
  section#page-hero .hero-image.small img {
    aspect-ratio: 1;
  }
}
section#page-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section#page-hero:not(:has(> .hero-image)) {
  padding-top: 90px;
}
section#page-hero:not(:has(> .hero-image)) .hero-text {
  position: relative;
}
.flip-color h1, .flip-color h2, .flip-color h3, .flip-color h4, .flip-color h5, .flip-color p, .flip-color li, .flip-color table, .flip-color table * {
  color: #E5E5E5;
}
.component {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .component {
    max-width: 1348px;
  }
}
.component ul:not(:first-child) {
  margin-top: 18px;
}
.component.block-text {
  padding: 50px 0;
  text-align: center;
}
.component.block-text .subtitle {
  margin-bottom: 13px;
  font-weight: 300;
  font-size: 20px;
  line-height: 26px;
}
.component.block-text .title h2 {
  margin-bottom: 18px;
}
@media screen and (max-width: 1024px) {
  .component.block-text .title h2 br {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  .component.block-text .content {
    max-width: 820px;
  }
}
.component.block-text .content p {
  font-size: 20px;
  line-height: 24px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
}
.component.block-text .content p:not(:last-of-type) {
  margin-bottom: 18px;
}
@media screen and (max-width: 1024px) {
  .component.block-text .content p br {
    display: none;
  }
}
.component.block-text .content a.cta {
  display: inline-block;
  color: #1E1F1C;
  background-color: #E5E5E5;
  border-color: transparent;
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .component.block-text .content a.cta:hover {
    color: #E5E5E5;
    border-color: #E5E5E5;
    background-color: transparent;
  }
}
.component.block-text-image {
  display: grid;
  padding: 40px 0;
}
@media screen and (min-width: 1024px) {
  .component.block-text-image {
    gap: 80px;
    align-items: center;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-text-image {
    gap: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-text-image .text {
    text-align: center;
    align-items: center;
    order: 1;
  }
}
.component.block-text-image .text .subtitle {
  margin-bottom: 16px;
  font-weight: 300;
}
.component.block-text-image .text .title {
  margin-bottom: 32px;
}
.component.block-text-image .text .content {
  font-size: 16px;
  line-height: 18px;
  font-weight: 300;
}
.component.block-text-image .text .content p:not(:last-of-type) {
  margin-bottom: 18px;
}
.component.block-text-image .text .content a.cta {
  display: inline-block;
  color: #1E1F1C;
  background-color: #E5E5E5;
  border-color: transparent;
  margin-top: 24px;
}
@media screen and (min-width: 1024px) {
  .component.block-text-image .text .content a.cta:hover {
    color: #E5E5E5;
    border-color: #E5E5E5;
    background-color: transparent;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-text-image .image {
    order: 2;
  }
}
.component.block-text-image .image img {
  width: 100%;
  border-radius: 40px;
}
@media screen and (min-width: 1024px) {
  .component.block-text-image .image img {
    max-height: 600px;
    object-fit: cover;
    object-position: center;
  }
}
@media screen and (min-width: 1024px) {
  .component.block-text-image:not(.image-last) {
    grid-template-columns: minmax(0, 600px) 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .component.block-text-image:not(.image-last) .text {
    padding-right: 30px;
  }
}
@media screen and (min-width: 1024px) {
  .component.block-text-image.image-last {
    grid-template-columns: 1fr minmax(0, 600px);
  }
}
@media screen and (min-width: 1024px) {
  .component.block-text-image.image-last .text {
    order: 1;
  }
}
@media screen and (min-width: 1024px) {
  .component.block-text-image.image-last .text .title {
    padding-right: 58px;
  }
}
@media screen and (min-width: 1024px) {
  .component.block-text-image.image-last .image {
    order: 2;
  }
}
.component .tab-nav, .component .pricing-option__nav {
  border-radius: 30px;
  border: 1px solid #E5E5E5;
}
@media screen and (min-width: 768px) {
  .component .tab-nav, .component .pricing-option__nav {
    max-width: 1000px;
    width: 100%;
    justify-self: center;
  }
}
@media screen and (max-width: 768px) {
  .component .tab-nav, .component .pricing-option__nav {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .component .tab-nav::-webkit-scrollbar, .component .pricing-option__nav::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .component .tab-nav .tab-nav__btn, .component .pricing-option__nav .tab-nav__btn {
    flex: 0 0 auto;
    min-width: 252px;
  }
}
.component .tab-nav .tab-nav__btn, .component .tab-nav .pricing-option-nav__btn, .component .pricing-option__nav .tab-nav__btn, .component .pricing-option__nav .pricing-option-nav__btn {
  background: none;
  border: 0;
  padding: 16px 5px;
  cursor: pointer;
  background-color: transparent;
  color: #E5E5E5;
  line-height: 100%;
  font-family: "Chivo", sans-serif;
  font-weight: 400;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .component .tab-nav .tab-nav__btn, .component .tab-nav .pricing-option-nav__btn, .component .pricing-option__nav .tab-nav__btn, .component .pricing-option__nav .pricing-option-nav__btn {
    flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .component .tab-nav .tab-nav__btn, .component .tab-nav .pricing-option-nav__btn, .component .pricing-option__nav .tab-nav__btn, .component .pricing-option__nav .pricing-option-nav__btn {
    font-size: 16px;
    flex: 1;
  }
}
.component .tab-nav .tab-nav__btn.is-active, .component .tab-nav .pricing-option-nav__btn.is-active, .component .pricing-option__nav .tab-nav__btn.is-active, .component .pricing-option__nav .pricing-option-nav__btn.is-active {
  font-weight: 700;
  background-color: #E5E5E5;
  color: #1E1F1C;
}
.component .tab:not(.is-active) {
  display: none;
}
.component.block-tab .tab-panels .tab {
  padding-top: 60px;
  padding-bottom: 0;
}
.component.block-tab .tab-panels .tab .image {
  position: relative;
}
.component.block-tab .tab-panels .tab .image img {
  transition: filter 0.3s ease;
}
.component.block-tab .tab-panels .tab .image-subsections {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.component.block-tab .tab-panels .tab .image-subsections .subsection {
  z-index: 10;
  padding: 37px 60px 37px 40px;
}
.component.block-tab .tab-panels .tab .image-subsections .subsection:not(.is-active) {
  display: none;
}
.component.block-tab .tab-panels .tab .image-subsections .subsection * {
  color: #E5E5E5;
}
.component.block-tab .tab-panels .tab .image-subsections .subsection strong, .component.block-tab .tab-panels .tab .image-subsections .subsection p {
  line-height: 18px;
}
.component.block-tab .tab-panels .tab .image-subsections .subsection strong {
  font-size: 20px;
  margin-bottom: 18px;
  display: block;
}
.component.block-tab .tab-panels .tab .image-subsections .subsection p {
  font-size: 16px;
  font-weight: 300;
}
.component.block-tab .tab-panels .tab .image-subsections .subsection p:not(:last-child) {
  margin-bottom: 16px;
}
.component.block-tab .tab-panels .tab .image-subsections:has(> .subsection.is-active) + img {
  filter: blur(8px);
}
@media screen and (min-width: 768px) {
  .component.block-tab .tab-panels .tab .content-subsections {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .component.block-tab .tab-panels .tab .content-subsections {
    gap: 15px;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .component.block-tab .tab-panels .tab .content-subsections a {
    text-align: center;
    min-width: 250px;
  }
}
@media screen and (min-width: 768px) {
  .component.block-tab .tab-panels .tab .content-subsections a:hover {
    background-color: #E5E5E5;
    color: #1E1F1C;
    font-weight: 700;
  }
}
.component.block-carousel {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .component.block-carousel {
    overflow: hidden;
    max-width: inherit;
  }
}
@media screen and (min-width: 1024px) {
  .component.block-carousel .swiper-wrapper {
    transform: none !important;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
  }
}
.component.block-carousel .slide-image {
  overflow: hidden;
  border-radius: 40px;
}
@media screen and (max-width: 1024px) {
  .component.block-carousel .slide-image {
    max-height: calc(100svh - 10px - 10px);
  }
}
.component.block-carousel .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1024px) {
  .component.block-carousel .slide-image img {
    aspect-ratio: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-carousel .slide-image img {
    aspect-ratio: 0.5;
  }
}
.component.block-carousel .swiper-pagination {
  bottom: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .component.block-carousel .swiper-pagination {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 42px;
    height: 100%;
    text-align: left;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-carousel .swiper-pagination {
    gap: 15px;
    padding: 25px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    pointer-events: none;
  }
  .component.block-carousel .swiper-pagination::-webkit-scrollbar {
    display: none;
  }
}
.component.block-carousel .swiper-pagination .swiper-pager {
  border-radius: 30px;
}
@media screen and (min-width: 1024px) {
  .component.block-carousel .swiper-pagination .swiper-pager {
    gap: 25px;
    padding: 46px 64px 46px 40px;
    position: relative;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-carousel .swiper-pagination .swiper-pager {
    gap: 22px;
    padding: 27px 15px 34px;
    min-width: 100%;
    pointer-events: none;
    justify-content: center;
    border: 1px solid transparent;
  }
}
@media screen and (min-width: 1024px) {
  .component.block-carousel .swiper-pagination .swiper-pager:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #1E1F1C, transparent);
    opacity: 0.4;
  }
}
@media screen and (min-width: 1024px) {
  .component.block-carousel .swiper-pagination .swiper-pager h2 {
    color: #E5E5E5;
    font-size: 32px;
    line-height: 40px;
    z-index: 10;
  }
}
@media screen and (min-width: 1024px) {
  .component.block-carousel .swiper-pagination .swiper-pager p {
    z-index: 10;
    color: #E5E5E5;
    display: none;
    font-size: 16px;
    line-height: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .component.block-carousel .swiper-pagination .swiper-pager:hover p {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-carousel .swiper-pagination .swiper-pager.is-active {
    background-color: #E5E5E5;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-carousel .swiper-pagination .swiper-pager:not(.is-active) {
    color: #E5E5E5;
    border-color: #E5E5E5;
  }
}
@media screen and (min-width: 768px) {
  .component.block-membership .tab-nav {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  .component.block-membership .tab-nav {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .component.block-membership .membership-panels {
    gap: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-membership .membership-panels {
    gap: 40px;
  }
}
.component.block-membership .membership-panels .membership-panel {
  display: block !important;
}
.component.block-membership .membership-panels .membership-panel:first-child {
  padding-top: 0;
}
.component.block-membership .membership-panels .membership-panel .pricing-tabs {
  display: grid;
}
@media screen and (min-width: 1200px) {
  .component.block-membership .membership-panels .membership-panel .pricing-tabs {
    gap: 40px;
    grid-template-columns: minmax(0, 420px) 1fr;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1200px) {
  .component.block-membership .membership-panels .membership-panel .pricing-tabs {
    gap: 40px;
    grid-template-columns: minmax(0, 320px) 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-membership .membership-panels .membership-panel .pricing-tabs {
    gap: 40px;
    display: flex;
    flex-direction: column;
  }
}
.component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__headers .pricing-option__header:not(.is-active) {
  display: none;
}
.component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__headers .pricing-option__header .pricing-option__label {
  font-size: 36px;
  margin-bottom: 40px;
  color: #E5E5E5;
}
.component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__headers .pricing-option__header .pricing-option__label a {
  color: #E5E5E5;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__headers .pricing-option__header .pricing-option__nav {
    max-width: inherit;
    justify-self: flex-start;
  }
}
.component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__headers .pricing-option__header .pricing-option__nav button {
  line-height: 100%;
}
@media screen and (min-width: 1024px) {
  .component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__headers .pricing-option__header .pricing-option__nav button {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__headers .pricing-option__header .pricing-option__nav button {
    font-size: 13px;
    padding-left: 16px;
    padding-right: 16px;
    flex: 0 0 auto;
    min-width: 200px;
  }
}
.component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__headers .pricing-option__header .pricing-option__nav:has(> button:only-child) {
  display: none;
}
.component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__headers .pricing-option__header .pricing-option__content {
  margin-top: 44px;
  font-size: 16px;
  line-height: 18px;
  color: #E5E5E5;
}
.component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__headers .pricing-option__header .pricing-option__content p:has(+ ul) {
  margin-bottom: 18px;
}
.component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__headers .pricing-option__header .pricing-option__content p:not(:last-of-type) {
  margin-bottom: 18px;
}
.component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__headers .pricing-option__header .pricing-option__content ul {
  margin: 0;
}
.component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__panels .pricing-option:not(.is-active) {
  display: none;
}
.component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__panels .pricing-option.is-active {
  display: grid;
}
.component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__panels .memberships {
  display: grid;
}
@media screen and (min-width: 768px) {
  .component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__panels .memberships {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .component.block-membership .membership-panels .membership-panel .pricing-tabs .pricing-option__panels .memberships {
    gap: 30px;
  }
}
.component .membership {
  overflow: hidden;
  border-radius: 30px;
  background-color: #E5E5E5;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .component .membership {
    padding: 47px 20px 33px;
  }
}
@media screen and (max-width: 1024px) {
  .component .membership {
    padding: 47px 50px 15px;
  }
}
.component .membership p {
  color: #1E1F1C;
}
.component .membership p.title {
  font-size: 14px;
  line-height: 16px;
}
.component .membership p.subtitle {
  font-size: 24px;
  line-height: 32px;
  margin-top: 10px;
}
.component .membership p.price {
  font-size: 48px;
  line-height: 100%;
  margin-top: 10px;
}
.component .membership .description {
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  margin-top: 8px;
  min-height: 54px;
}
@media screen and (min-width: 1024px) {
  .component .membership .description {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.component .membership .disclaimer {
  margin-top: 14px;
  text-align: center;
}
.component .membership .disclaimer p {
  font-size: 12px;
  line-height: 16px;
}
.component .membership .cta {
  margin-top: 60px;
  min-width: 135px;
  display: inline-block;
}
.component.block-form .tab:has(> .text) {
  display: grid;
  padding: 40px 0;
}
@media screen and (min-width: 1024px) {
  .component.block-form .tab:has(> .text) {
    gap: 20px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-form .tab:has(> .text) {
    gap: 25px;
  }
}
@media screen and (min-width: 1024px) {
  .component.block-form .tab .text {
    padding-top: 72px;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-form .tab .text {
    text-align: center;
  }
}
.component.block-form .tab .text .content {
  font-size: 16px;
  line-height: 18px;
}
@media screen and (min-width: 1024px) {
  .component.block-form .tab .text .content {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-form .tab .text .content {
    margin-top: 38px;
  }
}
.component.block-form .tab .code {
  overflow: hidden;
  border-radius: 40px;
  background-color: #FFFFFF;
}
@media screen and (min-width: 1024px) {
  .component.block-form .tab .code {
    padding: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-form .tab .code {
    padding: 32px;
  }
}
.component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container {
  padding: 0;
  font-family: "Chivo", sans-serif;
  font-weight: 300;
  font-size: 20px;
  background: transparent;
}
.component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container li, .component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container input, .component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container select, .component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container label {
  font-family: "Chivo", sans-serif;
  font-weight: 300;
  color: #1E1F1C;
  font-size: 16px;
  line-height: 18px;
}
.component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container .flag-dropdown.open, .component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container .flag-dropdown:hover, .component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container .flag-dropdown:active, .component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container .selected-flag.open, .component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container .selected-flag:hover, .component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container .selected-flag:active {
  background: rgba(30, 31, 28, 0.1);
}
.component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container .flag-dropdown.open .selected-flag, .component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container .flag-dropdown:hover .selected-flag, .component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container .flag-dropdown:active .selected-flag, .component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container .selected-flag.open .selected-flag, .component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container .selected-flag:hover .selected-flag, .component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container .selected-flag:active .selected-flag {
  background: rgba(30, 31, 28, 0.1);
}
.component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container button.momence-lead_form-submit_btn {
  font-size: 14px;
  line-height: 100%;
  padding: 14px 24px 13px;
  color: #E5E5E5;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
  font-weight: 400;
}
.component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container button.momence-lead_form-submit_btn:hover {
  text-decoration: none;
}
.component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container button.momence-lead_form-submit_btn:not(.reverse):not(:hover) {
  background-color: #1E1F1C;
}
.component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container button.momence-lead_form-submit_btn:not(.reverse):hover {
  color: #1E1F1C;
  border: 1px solid;
}
.component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container button.momence-lead_form-submit_btn.reverse {
  border: 1px solid;
}
.component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container button.momence-lead_form-submit_btn.reverse:hover {
  color: #1E1F1C;
  background-color: #E5E5E5;
}
.component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container button.momence-lead_form-submit_btn:not(:hover) {
  background: #1E1F1C;
}
.component.block-form .tab .code #momence-plugin-lead-form .momence-lead_form-base_container button.momence-lead_form-submit_btn:hover {
  color: #1E1F1C;
  background: transparent;
}
.component.block-form .tab .code h2 {
  color: #1E1F1C;
  margin-bottom: 40px;
  text-align: center;
}
.component.block-form .tab .code iframe {
  display: block;
}
@media screen and (min-width: 1024px) {
  .component.block-form .tab .code iframe {
    min-height: 644px;
  }
}
.component.block-cta {
  display: grid;
  background-color: #E5E5E5;
  border-radius: 40px;
}
@media screen and (min-width: 1024px) {
  .component.block-cta {
    gap: 18px;
    padding: 44px 65px 40px;
    grid-template-columns: minmax(0, 650px) minmax(0, 514px);
    margin-top: 20px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-cta {
    gap: 30px;
    text-align: center;
    padding: 40px 10px 32px;
    margin-top: 15px;
  }
}
.component.block-cta .title .content {
  display: none;
}
@media screen and (min-width: 1024px) {
  .component.block-cta .title .ctas {
    margin-top: 58px;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-cta .title .ctas {
    display: none;
  }
}
.component.block-cta .content {
  font-weight: 300;
}
@media screen and (min-width: 1024px) {
  .component.block-cta .content {
    font-size: 14px;
    line-height: 16px;
  }
}
.component.block-cta .content p:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .component.block-cta .content .ctas {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .component.block-cta .content .ctas {
    margin-top: 30px;
  }
}
.component.block-cta.has-image {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.component.block-cta.has-image .title .content {
  display: block;
  margin-top: 20px;
}
@media screen and (min-width: 1024px) {
  .component.block-cta.has-image .title .ctas {
    margin-top: 130px;
  }
}
.component.block-cta.has-image .title .ctas a.cta {
  color: #1E1F1C;
  background-color: #E5E5E5;
  border-color: transparent;
}
@media screen and (min-width: 1024px) {
  .component.block-cta.has-image .title .ctas a.cta:hover {
    color: #E5E5E5;
    border-color: #E5E5E5;
    background-color: transparent;
  }
}
.component.block-cta.has-image > .content {
  display: none;
}
#contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: none;
}
#contact-modal.is-open {
  display: block;
}
#contact-modal.is-open .contact-modal-wrap {
  opacity: 1;
}
#contact-modal .contact-modal-wrap {
  padding: 80px;
  background: rgba(30, 31, 28, 0.6);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
#contact-modal .js-close-contact-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}
#contact-modal .code {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-height: 80%;
  max-width: 600px;
  overflow: hidden;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-radius: 40px;
  background-color: #FFFFFF;
}
/* ------------------------------ */
/*********** Page: Home ***********/
/* ------------------------------ */
@media screen and (max-width: 1024px) {
  body.home #page section#page-hero .hero-image {
    height: 66vh;
    width: 100%;
  }
}
@media screen and (min-width: 1770px) {
  body.home #page section#page-hero .hero-image:not(.small) {
    height: 66vh;
    max-height: none;
  }
}
@media screen and (min-width: 1024px) and (max-height: 1770px) {
  body.home #page section#page-hero .hero-image:not(.small) img {
    aspect-ratio: auto;
  }
}
@media screen and (max-width: 1024px) {
  body.home #page section#page-hero .hero-image:not(.small) img {
    aspect-ratio: auto;
  }
}
/* ------------------------------ */
/*********** Page: Flex ***********/
/* ------------------------------ */
/*body.page-template-page-flexible,*/
@media screen and (min-width: 1024px) {
  body.page-template-page-flex #page main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-page-flex #page main {
    padding-left: 30px;
    padding-right: 30px;
  }
}
body.page-template-page-flex #page main section#page-content {
  margin-top: 30px;
}
body.page-template-page-flex #page main section#page-content + section#components {
  margin-top: 46px;
}
body.page-template-page-flex #page main section#components {
  gap: 25px;
}
@media screen and (min-width: 1200px) {
  body.page-template-page-flex #page main section#components {
    padding-left: 48px;
    padding-right: 48px;
  }
}
/* --------------------------------- */
/*********** Page: Default ***********/
/* --------------------------------- */
@media screen and (min-width: 1024px) {
  body.page-template-default:not(.home) #page main {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-default:not(.home) #page main {
    padding-left: 10px;
    padding-right: 10px;
  }
}
body.page-template-default:not(.home) #page main .page-content:not(:has(> section#components)) {
  background-color: #E5E5E5;
  overflow: hidden;
  border-radius: 40px;
}
@media screen and (min-width: 1024px) {
  body.page-template-default:not(.home) #page main .page-content .wrap {
    max-width: 1240px;
    padding: 75px 75px 50px;
  }
}
@media screen and (max-width: 1024px) {
  body.page-template-default:not(.home) #page main .page-content .wrap {
    padding: 32px 32px 24px;
  }
}
body.page-template-default:not(.home) #page main .page-content .wrap h1 + h2, body.page-template-default:not(.home) #page main .page-content .wrap h1 + h3, body.page-template-default:not(.home) #page main .page-content .wrap h1 + h4 {
  margin-top: 16px;
}
body.page-template-default:not(.home) #page main .page-content .wrap h2:has(+ *) {
  margin-bottom: 40px;
}
body.page-template-default:not(.home) #page main .page-content .wrap h3, body.page-template-default:not(.home) #page main .page-content .wrap h4 {
  margin-top: 40px;
}
body.page-template-default:not(.home) #page main .page-content .wrap h3:has(+ *), body.page-template-default:not(.home) #page main .page-content .wrap h4:has(+ *) {
  margin-bottom: 16px;
}
body.page-template-default:not(.home) #page main .page-content .wrap p:has(+ ul), body.page-template-default:not(.home) #page main .page-content .wrap p:has(+ ol) {
  margin-bottom: 16px;
}
body.page-template-default:not(.home) #page main .page-content .wrap p:not(:last-child) {
  margin-bottom: 40px;
}
body.page-template-default:not(.home) #page main .page-content .wrap img {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
}
body.page-template-default:not(.home) #page main .page-content .wrap ul:has(+ *), body.page-template-default:not(.home) #page main .page-content .wrap ol:has(+ *) {
  margin-bottom: 40px;
}
/* ------------------------ */
/*********** 404 ***********/
/* ------------------------ */
body.error404 #page .page-content {
  padding-top: 220px;
  padding-bottom: 220px;
  color: #E5E5E5;
}
body.error404 #page .page-content h1 {
  margin-bottom: 24px;
}
body.error404 #page .page-content h2 {
  margin-bottom: 10px;
}
/* ------------------------ */
/********** Footer **********/
/* ------------------------ */
@media screen and (min-width: 1024px) {
  footer.site-footer {
    gap: 60px;
    padding: 80px 40px 50px;
  }
}
@media screen and (max-width: 1024px) {
  footer.site-footer {
    gap: 30px;
    padding: 50px 18px 26px;
    flex-direction: column;
  }
}
footer.site-footer .site-branding {
  height: auto;
  width: 100px;
}
@media screen and (max-width: 1024px) {
  footer.site-footer .site-branding {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  footer.site-footer .contact, footer.site-footer .legal-menu {
    text-align: center;
  }
}
footer.site-footer .contact p, footer.site-footer .legal-menu p {
  color: #E5E5E5;
}
footer.site-footer .contact p.h4, footer.site-footer .legal-menu p.h4 {
  margin-bottom: 16px;
}
footer.site-footer .contact p:not(.h4), footer.site-footer .legal-menu p:not(.h4) {
  font-size: 16px;
  line-height: 24px;
}
footer.site-footer .contact a, footer.site-footer .legal-menu a {
  color: #E5E5E5;
  text-decoration: none;
}
footer.site-footer .legal-menu ul {
  list-style: none;
  padding-left: 0;
}
@media screen and (max-width: 1024px) {
  footer.site-footer .legal-menu ul {
    gap: 4px;
  }
}
@media screen and (min-width: 1024px) {
  footer.site-footer .legal-menu ul {
    column-count: 2;
    column-gap: 50px;
    display: block;
  }
}
footer.site-footer .legal-menu ul li {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}
footer.site-footer .legal-menu ul li:before {
  display: none;
}
footer.site-footer .legal-menu ul li a {
  font-size: 16px;
  line-height: 24px;
}
@media screen and (min-width: 1024px) {
  footer.site-footer .copyright {
    margin-top: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 1024px) {
  footer.site-footer .copyright {
    text-align: center;
  }
}
footer.site-footer .copyright .js-open-contact-modal {
  display: block;
  color: #E5E5E5;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: -0.03em;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
@media screen and (min-width: 1024px) {
  footer.site-footer .copyright .js-open-contact-modal {
    text-align: right;
  }
}
@media screen and (max-width: 1024px) {
  footer.site-footer .copyright .js-open-contact-modal {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  footer.site-footer .copyright .social-menu {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1024px) {
  footer.site-footer .copyright .social-menu {
    margin-top: 15px;
    margin-bottom: 30px;
  }
}
footer.site-footer .copyright .social-menu ul {
  padding-left: 0;
  list-style: none;
  gap: 12px;
}
@media screen and (max-width: 1024px) {
  footer.site-footer .copyright .social-menu ul {
    justify-content: center;
  }
}
footer.site-footer .copyright .social-menu ul li {
  margin-bottom: 0;
}
footer.site-footer .copyright .social-menu ul li a {
  color: #E5E5E5;
  text-decoration: none;
  width: 25px;
  height: 25px;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: -9999px;
  display: block;
}
footer.site-footer .copyright .social-menu ul li.linkedin a {
  background-image: url(../images/linkedin.svg);
}
footer.site-footer .copyright .social-menu ul li.instagram a {
  background-image: url(../images/instagram.svg);
}
footer.site-footer .copyright .social-menu ul li.facebook a {
  background-image: url(../images/facebook.svg);
}
footer.site-footer .copyright p {
  font-size: 14px;
  line-height: 100%;
  color: #E5E5E5;
}
footer.site-footer .copyright p span {
  text-transform: uppercase;
}
.grecaptcha-badge {
  visibility: hidden;
}
