/* COLORS */
/* FONTS */
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Light.woff2") format("woff2"), url("../fonts/DMSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Italic.woff2") format("woff2"), url("../fonts/DMSans-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-LightItalic.woff2") format("woff2"), url("../fonts/DMSans-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Medium.woff2") format("woff2"), url("../fonts/DMSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-MediumItalic.woff2") format("woff2"), url("../fonts/DMSans-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("../fonts/DMSans-Regular.woff2") format("woff2"), url("../fonts/DMSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces72pt-Regular.woff2") format("woff2"), url("../fonts/Fraunces72pt-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ROOT */
html {
  font-size: 8px;
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

@media screen and (min-width: 992px) {
  html {
    font-size: 10px;
  }
}
body {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 160%;
  margin: 0;
  color: #666063;
  background-color: white;
}

/* BOOTSTRAP */
.row, .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 3rem;
}

/* SELECTION */
::-moz-selection {
  color: #252224;
  background: #EEB536;
}
::selection {
  color: #252224;
  background: #EEB536;
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 1.5rem;
}

::-webkit-scrollbar-track {
  background: #F8F8F8;
}

::-webkit-scrollbar-thumb {
  background: #666063;
  border: 0.5rem solid #F8F8F8;
  border-radius: 1rem;
}
::-webkit-scrollbar-thumb:hover {
  background: #252224;
}

/* ACCESSIBILITY */
.screen-reader-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* PARAGRAPHS */
a {
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
a:hover {
  color: inherit;
}

p {
  margin: 0 0 1.5rem;
}

.lead {
  color: #252224;
  font-size: 1.8rem;
  font-weight: 400;
  margin: 0 0 3rem;
}

u {
  text-decoration-color: #EEB536;
  text-underline-offset: 0.5rem;
  text-decoration-thickness: 0.3rem;
}

/* IMAGES */
img {
  max-width: 100%;
  display: block;
}

/* HEADERS */
.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5 {
  font-family: "Fraunces";
  line-height: 120%;
  margin: 0 0 4.5rem;
  color: #252224;
}
.h1 span, h1 span, .h2 span, h2 span, .h3 span, h3 span, .h4 span, h4 span, .h5 span, h5 span {
  display: block;
  color: #EEB536;
}

.h3, h3 {
  margin: 0 0 3rem;
}

.h4, h4, .h5, h5 {
  margin: 0 0 1.5rem;
}

.h1, h1, .h2, h2 {
  font-size: 4rem;
}

.h3, h3 {
  font-size: 3rem;
}

.h4, h4 {
  font-size: 2rem;
}

.h5, h5 {
  font-size: 1.8rem;
}

@media screen and (min-width: 992px) {
  .h1, h1 {
    font-size: 5rem;
  }
}
/* BUTTONS */
.button, .wp-block-button__link {
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  color: white;
  font-size: 1.6rem;
  height: 6rem;
  padding: 0 3rem;
  border-radius: 3rem;
  font-weight: 400;
  border: 1px solid;
  border-color: #006A7A;
  background-color: #008599;
}
.button:hover, .button:focus, .button:active, .wp-block-button__link:hover, .wp-block-button__link:focus, .wp-block-button__link:active {
  border-color: #006A7A;
  background-color: #006A7A;
  color: white;
}
.button--secondary, .wp-block-button__link--secondary {
  border-color: rgba(37, 34, 36, 0.1);
  background-color: rgba(37, 34, 36, 0.05);
  color: #666063;
}
.button--secondary:hover, .button--secondary:focus, .button--secondary:active, .wp-block-button__link--secondary:hover, .wp-block-button__link--secondary:focus, .wp-block-button__link--secondary:active {
  border-color: rgba(37, 34, 36, 0.2);
  background-color: rgba(37, 34, 36, 0.1);
  color: #252224;
}
.button--negative, .wp-block-button__link--negative {
  border-color: rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  color: white;
}
.button--negative:hover, .button--negative:focus, .button--negative:active, .wp-block-button__link--negative:hover, .wp-block-button__link--negative:focus, .wp-block-button__link--negative:active {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}
.button--alternative, .wp-block-button__link--alternative {
  border-color: #D59401;
  background-color: #EEB536;
  color: #252224;
}
.button--alternative:hover, .wp-block-button__link--alternative:hover {
  border-color: #D59401;
  background-color: #D59401;
  color: #252224;
}
.button--small, .wp-block-button__link--small {
  height: 5rem;
}
.button--rounded, .wp-block-button__link--rounded {
  justify-content: center;
  width: 4rem;
  height: 4rem;
  padding: 0;
}
.button--yellow, .wp-block-button__link--yellow {
  background-color: #EEB536;
  border-color: #D59401;
}
.button--yellow:hover, .wp-block-button__link--yellow:hover {
  background-color: #D59401;
  border-color: #D59401;
}

/* UI ELEMENTS */
.logo {
  display: flex;
  height: 4rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.number-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 1.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 2rem;
  background-color: #008599;
  color: white;
  font-size: 2rem;
  font-family: "Fraunces";
}

.quote {
  border-left: 4px solid #EEB536;
  border-radius: 0 0.5rem 0.5rem 0;
  background-color: #F8F8F8;
  color: #252224;
  font-style: italic;
  padding: 1.5rem 3rem;
  margin: 0 0 3rem;
}
.quote p:last-of-type {
  margin: 0;
}

.arrow {
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  height: 8px;
  width: 100%;
}
.arrow::before, .arrow::after {
  content: "";
}
.arrow::before {
  width: 100%;
  border-bottom: 1px solid;
}
.arrow::after {
  margin: 0 0 0 -6px;
  width: 5px;
  height: 5px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
}
.arrow--down {
  transform: rotate(90deg);
}
.arrow--up {
  transform: rotate(-90deg);
}
.arrow--left {
  transform: rotate(180deg);
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  padding: 2rem 0;
  z-index: 2;
  width: 100%;
  color: #252224;
  background-color: white;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-branding {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 10;
}
.header-branding__claim {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 120%;
  color: #666063;
  letter-spacing: 10%;
  padding: 0.5rem 0 0;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header-nav__button {
  display: none;
}
.header .menu__bar {
  background-color: #252224;
}
.header .menu__icon--active span:nth-of-type(2) {
  background-color: transparent;
}

.home .header {
  background-color: transparent;
}

.home .header, .screenlock .header {
  color: white;
}
.home .header-branding__claim, .screenlock .header-branding__claim {
  color: #DED8E3;
}
.home .header .menu__bar, .screenlock .header .menu__bar {
  background-color: white;
}

@media screen and (min-width: 576px) {
  .header {
    padding: 4rem 0;
  }
  .header-branding {
    gap: 3rem;
  }
  .header-nav__button {
    display: block;
  }
}
/* HERO */
.hero {
  position: relative;
  background-color: #252224;
  margin: 0 0 12rem;
}
.hero:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 10rem;
  background: linear-gradient(to bottom, rgba(37, 34, 36, 0.75) 25%, rgba(37, 34, 36, 0) 100%);
}
.hero-background {
  aspect-ratio: 1/1;
  clip-path: inset(0);
}
.hero-background__wrapper {
  position: fixed;
  top: 0;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  padding-top: 100%;
  height: 0;
}
.hero-background__image {
  position: absolute;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.hero-contents {
  position: relative;
  padding: 6rem 0 9rem;
  color: white;
  text-align: center;
}
.hero-contents__title {
  color: white;
}
.hero-contents__content {
  display: flex;
  flex-direction: column;
}
.hero-contents__cta {
  justify-content: center;
}
.hero-contents p {
  color: #DED8E3;
  margin: 0 0 3rem;
}
.hero-arrow {
  position: absolute;
  width: 100%;
  margin: -4rem 0 0;
  z-index: 1;
}
.hero-arrow__button {
  display: flex;
  align-items: center;
  width: 8rem;
  height: 8rem;
  padding: 2.5rem;
  border-radius: 50%;
  background-color: #F8F8F8;
  color: #252224;
  margin: auto;
}
.hero-arrow__button:hover .arrow {
  translate: 0 0.5rem;
}

@media screen and (min-width: 1200px) {
  .hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    overflow: hidden;
  }
  .hero-background__wrapper {
    height: 100%;
    padding-top: unset;
  }
  .hero-background__wrapper:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 20rem;
    background: linear-gradient(to right, #252224 0%, rgba(37, 34, 36, 0) 100%);
    z-index: 1;
  }
  .hero-contents {
    z-index: 1;
    text-align: left;
  }
  .hero-contents__content {
    padding: 15rem 6rem 6rem 0;
    gap: 1.5rem;
  }
  .hero-contents__cta {
    justify-content: flex-start;
  }
  .hero:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: rgba(37, 34, 36, 0.9);
    z-index: 1;
  }
}
@media screen and (min-width: 1400px) {
  .hero-contents__content {
    padding: 15rem 9rem 6rem 0;
  }
}
/* INITIATIVES */
.initiatives {
  margin: 0 0 12rem;
}
.initiatives__header {
  position: sticky;
  top: 6rem;
}
.initiatives__title {
  padding: 0 0 6rem;
  margin: 0;
}
.initiatives__wrapper {
  position: relative;
}
.initiatives-nav {
  position: sticky;
  list-style: none;
  margin: 0 0 6rem;
  padding: 0;
  top: 6rem;
}
.initiatives-nav__item {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(37, 34, 36, 0.1);
}
.initiatives-nav__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666063;
}
.initiatives-nav__item a:after {
  content: "";
  transition: ease-in-out opacity 0.3s;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(135deg);
  border-color: inherit;
  opacity: 0;
}
.initiatives-nav__item a:hover {
  color: #EEB536;
}
.initiatives-nav__item--active a {
  color: #252224;
}
.initiatives-nav__item--active a:after {
  opacity: 1;
}
.initiatives-card {
  transition: ease-in-out opacity 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 1px;
  opacity: 0;
  pointer-events: none;
}
.initiatives-card__title {
  margin: 0 0 4.5rem;
}
.initiatives-card__logo {
  display: flex;
  margin: 0 0 4.5rem;
  height: 4rem;
}
.initiatives-card__text p:last-of-type {
  margin: 0 0 4.5rem;
}
.initiatives-card--active {
  position: relative;
  max-height: unset;
  opacity: 1;
  pointer-events: all;
}

@media screen and (min-width: 768px) {
  .initiatives-nav__item a:after {
    transform: rotate(45deg);
  }
  .initiatives-card {
    padding: 0 0 0 3rem;
  }
  .initiatives-card__text {
    margin: 0 0 4.5rem;
  }
}
@media screen and (min-width: 1400px) {
  .initiatives-nav {
    padding: 0 0 0 3rem;
  }
}
/* WORK */
.work {
  overflow: hidden;
  background-color: #006A7A;
  color: #DED8E3;
}
.work__container {
  position: relative;
}
.work-photo__wrapper {
  width: 100vw;
  aspect-ratio: 1/1;
  margin-left: calc(50% - 50vw);
  position: relative;
}
.work-photo__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  -o-object-position: center 33%;
     object-position: center 33%;
}
.work-content {
  padding: 9rem 0 6rem;
}
.work-content__title {
  color: white;
  margin: 0 0 6rem;
}
.work-content__card {
  margin: 0 0 4.5rem;
}
.work-content__card-title {
  color: white;
}

@media screen and (min-width: 576px) {
  .work-photo__wrapper {
    margin-left: 0;
    aspect-ratio: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 50vw);
    width: calc(50vw - 50% + 25% + 30px);
  }
  .work-content {
    padding: 9rem 0 6rem 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .work-content {
    padding: 9rem 0 6rem;
  }
}
/* CERTIFICATES */
.certificates {
  padding: 9rem 0;
  margin: 0 0 12rem;
  background-color: #F8F8F8;
  text-align: center;
  position: relative;
}
.certificates__header {
  display: inline-block;
  position: relative;
}
.certificates__header::before {
  content: "";
  position: absolute;
  top: -2rem;
  right: 2.5rem;
  width: 1rem;
  height: 1rem;
  background-color: #EEB536;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 0c0 141.4-114.6 256-256 256 141.4 0 256 114.6 256 256 0-141.4 114.6-256 256-256C370.6 256 256 141.4 256 0z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 0c0 141.4-114.6 256-256 256 141.4 0 256 114.6 256 256 0-141.4 114.6-256 256-256C370.6 256 256 141.4 256 0z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
}
.certificates__title {
  position: relative;
}
.certificates__title::before, .certificates__title::after {
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  background-color: #EEB536;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 0c0 141.4-114.6 256-256 256 141.4 0 256 114.6 256 256 0-141.4 114.6-256 256-256C370.6 256 256 141.4 256 0z'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M256 0c0 141.4-114.6 256-256 256 141.4 0 256 114.6 256 256 0-141.4 114.6-256 256-256C370.6 256 256 141.4 256 0z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  transform: scale(1);
}
.certificates__title::before {
  top: 50%;
  left: -6rem;
  width: 2rem;
  height: 2rem;
}
.certificates__title::after {
  bottom: -2rem;
  right: -6rem;
  width: 3rem;
  height: 3rem;
}
.certificates__title:hover:before, .certificates__title:hover:after {
  transform: scale(1.5);
}
.certificates__lead {
  margin: 0 0 6rem;
}
.certificates__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4.5rem;
  margin: 0 auto;
}
.certificates__item {
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.certificates__item-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EEB536;
  transition: all 0.3s ease;
  transform: scale(1);
}
.certificates__item-icon svg {
  width: 100%;
  height: auto;
}
.certificates__item-title {
  flex: 1;
  margin: 0;
}
.certificates__item-text {
  flex: 1;
  font-size: 1.4rem;
  line-height: 160%;
  margin: 0 0 1.5rem;
}
.certificates__item-link {
  font-size: 1.4rem;
  color: #D59401;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.certificates__item-link .arrow {
  width: 2rem;
}
.certificates__item-link:hover {
  color: #006A7A;
}
.certificates__item-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.certificates__item:hover .arrow {
  width: 3rem;
}
.certificates__item:hover .certificates__item-icon {
  color: #008599;
  transform: scale(1.2);
}

@media screen and (min-width: 576px) {
  .certificates__item {
    flex: 1 1 21rem;
    max-width: 24rem;
  }
}
/* ABOUT */
.about {
  margin: 0 0 12rem;
}
.about__title {
  margin: 0 0 6rem;
}
.about__video {
  border-radius: 1rem;
  overflow: hidden;
}
.about__video-wrapper {
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  margin: 0 0 6rem;
}
.about__video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.about__image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.about__image-wrapper {
  aspect-ratio: 16/9;
  margin: 0 0 6rem;
}
.about-contents {
  margin: 0 0 6rem;
}

/* NEWSLETTER */
.newsletter {
  color: white;
  background-color: #006A7A;
  display: flex;
  justify-content: center;
  padding: 6rem 1rem;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper {
  background-color: transparent;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper.embedForm {
  max-width: unset;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody {
  padding: 0;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-formContent {
  max-width: 40rem;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit {
  width: -moz-fit-content;
  width: fit-content;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary {
  transition: all 0.3s ease;
  display: flex;
  background-color: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 3rem !important;
  padding: 0 3rem !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 1.6rem !important;
  height: 6rem !important;
  line-height: 6rem !important;
  color: white !important;
  font-weight: 400 !important;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary:hover, .newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary:focus, .newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button.primary:active {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent {
  margin: 0 0 4.5rem;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4 {
  font-family: "Fraunces", sans-serif;
  font-size: 4rem;
  margin: 0 0 3rem;
  color: white;
  text-align: center;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p {
  font-family: "DM Sans", sans-serif;
  color: white;
  font-size: 1.8rem;
  text-align: center;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody form {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 0 !important;
  font-family: "DM Sans", sans-serif !important;
  font-size: 1.6rem !important;
  height: 6rem !important;
  line-height: 6rem !important;
  color: white !important;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:hover, .newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:focus, .newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input:active {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
  background-color: transparent !important;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.75) !important;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input::placeholder {
  color: rgba(255, 255, 255, 0.75) !important;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 0;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent {
  margin: 0;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4 {
  font-family: "Fraunces", sans-serif;
  font-size: 4rem;
  margin: 0 0 3rem;
  color: white;
  text-align: center;
}
.newsletter #mlb2-44557900.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent p {
  font-family: "DM Sans", sans-serif;
  color: white;
  font-size: 1.8rem;
  text-align: center;
}

/* TESTIMONIALS */
.testimonials {
  position: relative;
  padding: 9rem 0 12rem;
  text-align: center;
  color: #DED8E3;
  overflow: hidden;
  background-position: center 20%;
  background-size: cover;
}
.testimonials::before {
  content: "";
  position: absolute;
  background: linear-gradient(to right, rgba(37, 34, 36, 0.8) 0%, #252224 100%);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.testimonials-header {
  position: relative;
  margin: 0 0 6rem;
}
.testimonials-header__title {
  color: white;
}
.testimonials-showcase {
  transition: height 0.3s ease-in-out;
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 250px;
}
.testimonials-showcase__element {
  position: absolute;
  transition: all 0.5s ease;
  grid-area: 1/1;
  transform: scale(0.5) translateX(0);
  opacity: 0;
  max-width: 96rem;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  padding: 0 1rem;
}
.testimonials-showcase__element--current {
  position: relative;
  transform: scale(1) translateX(0);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}
.testimonials-showcase__element--prev {
  transform: scale(0.7) translateX(-125%);
  opacity: 0.5;
  z-index: 2;
}
.testimonials-showcase__element--next {
  transform: scale(0.7) translateX(125%);
  opacity: 0.5;
  z-index: 2;
}
.testimonials-item__icon {
  color: #EEB536;
  margin: 0 0 3rem;
}
.testimonials-item__text {
  font-style: italic;
  margin: 0 0 3rem;
  color: white;
}
.testimonials-item__text div {
  margin: 0 0 1.5rem;
}
.testimonials-item__name {
  font-weight: 500;
  color: #EEB536;
  margin: 0 0 1rem;
}
.testimonials-item__role {
  font-size: 1.4rem;
  margin: 0;
}
.testimonials-nav {
  display: flex;
  margin: 3rem 0 0;
  pointer-events: none;
  width: 100%;
  justify-content: center;
  gap: 1.5rem;
}
.testimonials-nav__arrow {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  width: 4rem;
  height: 4rem;
  position: relative;
  border: 1px solid;
  border-color: #D59401;
  background-color: #EEB536;
  border-radius: 50%;
  pointer-events: auto; /* Enable clicks only on the arrows */
  cursor: pointer;
}
.testimonials-nav__arrow:hover {
  background-color: #D59401;
}
.testimonials-nav__arrow:active {
  background-color: #EEB536;
}

@media screen and (min-width: 768px) {
  .testimonials-nav {
    position: absolute;
    max-width: 108rem;
    padding: 1rem;
    justify-content: space-between;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
  }
}
/* CONTACT */
.contact__row {
  flex-direction: column-reverse;
}
.contact__content {
  padding: 6rem 0 12rem;
}
.contact__text {
  margin: 0 0 3rem;
}
.contact__cta {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact__button {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  font-weight: 400;
  color: #252224;
}
.contact__button:hover {
  color: #008599;
}
.contact__button:hover .button {
  background-color: #006A7A;
}
.contact__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.contact__photo {
  height: 100%;
  aspect-ratio: 1/1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.contact__image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .contact__content {
    padding: 12rem 0;
  }
  .contact__row {
    flex-direction: inherit;
  }
  .contact__photo {
    aspect-ratio: unset;
    height: 100%;
    width: calc(100% + 1.5rem);
    margin: 0 0 0 -1.5rem;
  }
  .contact__image {
    height: 100%;
    -o-object-position: center;
       object-position: center;
  }
}
/* FOOTER */
.footer {
  position: relative;
  padding: 12rem 0;
  background-color: #F8F8F8;
}
.footer-arrow {
  position: absolute;
  width: 100%;
  margin: -4rem 0 0;
  top: 0;
  z-index: 1;
}
.footer-arrow__button {
  display: flex;
  align-items: center;
  width: 8rem;
  height: 8rem;
  padding: 2.5rem;
  border-radius: 50%;
  background-color: white;
  color: #252224;
  margin: auto;
}
.footer-arrow__button:hover .arrow {
  translate: 0 -0.5rem;
}
.footer-top {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6rem;
  border-bottom: 1px solid #DED8E3;
  margin: 0 0 6rem;
}
.footer-top__wrapper {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  padding: 0 0 6rem;
}
.footer-contact a {
  font-weight: 400;
  margin: 0 0 0 0.5rem;
  color: #252224;
}
.footer-contact a:hover {
  color: #008599;
}
.footer-social {
  justify-content: center;
}
.footer-branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 10;
  color: #252224;
}
.footer-branding__claim {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 120%;
  letter-spacing: 10%;
  padding: 0.5rem 0 0;
}
.footer-brands {
  margin: 0 0 6rem;
}
.footer-bottom {
  display: flex;
  font-size: 1.2rem;
  line-height: 160%;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  color: rgba(102, 96, 99, 0.75);
}
.footer-bottom a {
  display: inline-block;
}
.footer-bottom a:hover {
  color: #252224;
}
.footer-menu {
  font-size: 1.4rem;
  margin: 0 0 6rem;
}
.footer-menu__wrapper {
  display: flex;
  gap: 4.5rem 6rem;
  list-style-type: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}
.footer-menu__wrapper .menu-item-has-children > a {
  color: #252224;
  margin: 0 0 3rem;
  pointer-events: none;
  display: block;
}
.footer-menu .sub-menu {
  display: flex;
  flex-direction: column;
  list-style-type: none;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.footer-menu .sub-menu a:hover {
  color: #252224;
}

@media screen and (min-width: 768px) {
  .footer-bottom {
    justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .footer-top {
    justify-content: space-between;
  }
  .footer-branding {
    justify-content: flex-start;
  }
  .footer-social {
    justify-content: flex-start;
  }
  .footer-menu__wrapper {
    text-align: left;
    justify-content: flex-start;
  }
}
/* LOGO SHOWCASE */
.logo-showcase {
  display: flex;
  align-items: center;
  gap: 6rem;
  flex-wrap: wrap;
  justify-content: center;
}
.logo-showcase__item {
  transition: all 0.3s ease;
  opacity: 0.5;
  mix-blend-mode: luminosity;
  filter: grayscale(1);
}
.logo-showcase__item:hover {
  opacity: 1;
  mix-blend-mode: normal;
  filter: grayscale(0);
}
.logo-showcase__image {
  width: auto;
  max-height: 3rem;
}

/* ABOUT HERO */
.about-hero {
  position: relative;
  background-color: #F8F8F8;
  margin: 9rem 0 12rem;
}
.about-hero-background__wrapper {
  aspect-ratio: 1/1;
  height: 100%;
}
.about-hero-background__image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  height: 100%;
  width: 100%;
}
.about-hero-contents {
  position: relative;
  padding: 6rem 0 9rem;
  text-align: center;
}
.about-hero-contents__content {
  display: flex;
  flex-direction: column;
}
.about-hero-contents__cta {
  justify-content: center;
}
.about-hero-contents p {
  color: #666063;
  margin: 0 0 3rem;
}

@media screen and (min-width: 576px) {
  .about-hero {
    margin: 13rem 0 12rem;
  }
  .about-hero-background__wrapper {
    aspect-ratio: unset;
  }
}
@media screen and (min-width: 1200px) {
  .about-hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
  }
  .about-hero-background__wrapper {
    position: relative;
  }
  .about-hero-contents {
    z-index: 1;
    text-align: left;
  }
  .about-hero-contents__content {
    padding: 12rem 6rem 12rem 0;
    gap: 1.5rem;
  }
  .about-hero-contents__cta {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1400px) {
  .about-hero-contents__content {
    padding: 6rem 9rem 3rem 0;
  }
}
/* ABOUT JOURNEY */
.journey {
  margin: 0 0 12rem;
}
.journey-content {
  position: sticky;
  top: 6rem;
  margin: 0 0 6rem;
}
.journey-timeline {
  text-align: center;
  margin: 0 0 1.5rem;
}
.journey-timeline__item {
  position: relative;
  padding: 0 0 6rem;
}
.journey-timeline__item::before, .journey-timeline__item::after {
  content: "";
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
}
.journey-timeline__item::before {
  width: 1px;
  height: 4.5rem;
  background-color: #DED8E3;
  bottom: 1.5rem;
}
.journey-timeline__item::after {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background-color: #EEB536;
  border: 8px solid white;
  bottom: 0;
}
.journey-last {
  position: relative;
  text-align: center;
  max-width: 60rem;
  margin: auto;
}
.journey-last__text {
  margin: 0 0 3rem;
}

@media screen and (min-width: 768px) {
  .journey-timeline {
    text-align: left;
  }
  .journey-timeline__item {
    padding: 0 0 6rem 3rem;
  }
  .journey-timeline__item::before, .journey-timeline__item::after {
    right: unset;
  }
  .journey-timeline__item::before {
    height: calc(100% - 20px);
    left: -12px;
  }
  .journey-timeline__item::after {
    top: 0;
    bottom: unset;
    left: -22px;
  }
  .journey-last::before {
    content: "";
    position: absolute;
    margin: auto;
    right: 0;
    left: 0;
    top: -40px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #EEB536;
    border: 20px solid white;
  }
}
@media screen and (min-width: 992px) {
  .journey-timeline__item::before {
    left: -15px;
  }
  .journey-timeline__item::after {
    left: -25px;
  }
}
/* ABOUT VALUES */
.values {
  padding: 9rem 0 12rem;
  background-color: #006A7A;
  color: #DED8E3;
}
.values-header {
  text-align: center;
  margin: 0 0 6rem;
}
.values-header__title {
  color: white;
}
.values-item {
  padding: 0 1rem;
  margin: 0 0 4.5rem;
}
.values-item__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 0 3rem;
}
.values-item__ico {
  color: #008599;
  height: 4rem;
  width: auto;
}
.values-item__ico svg {
  transition: all 0.3s ease;
  height: 4rem;
  width: auto;
}
.values-item__title {
  color: white;
  margin: 0;
}
.values-item:hover svg {
  color: white;
}

/* ABOUT CONTACT */
.about-contact__content {
  padding: 6rem 0 12rem;
}
.about-contact__text {
  margin: 0 0 3rem;
}
.about-contact__photo {
  height: 100%;
  aspect-ratio: 1/1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.about-contact__image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .about-contact__content {
    padding: 12rem 0;
  }
  .about-contact__photo {
    aspect-ratio: unset;
    height: 100%;
    width: calc(100% + 1.5rem);
    margin: 0 0 0 -1.5rem;
  }
  .about-contact__image {
    height: 100%;
    -o-object-position: center;
       object-position: center;
  }
}
/* CLUB HERO */
.club-hero {
  position: relative;
  background-color: #F8F8F8;
  margin: 9rem 0 12rem;
}
.club-hero-background__wrapper {
  aspect-ratio: 1/1;
  height: 100%;
}
.club-hero-background__image {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.club-hero-contents {
  position: relative;
  padding: 6rem 0 9rem;
  text-align: center;
}
.club-hero-contents__photo {
  margin: 0 0 3rem;
}
.club-hero-contents__image {
  height: 4rem;
  width: auto;
  margin: auto;
}
.club-hero-contents__content {
  display: flex;
  flex-direction: column;
}
.club-hero-contents__cta {
  justify-content: center;
}
.club-hero-contents p {
  color: #666063;
  margin: 0 0 3rem;
}

@media screen and (min-width: 576px) {
  .club-hero {
    margin: 13rem 0 12rem;
  }
  .club-hero-background__wrapper {
    aspect-ratio: unset;
  }
}
@media screen and (min-width: 1200px) {
  .club-hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
  }
  .club-hero-background__wrapper {
    position: relative;
  }
  .club-hero-contents {
    z-index: 1;
    text-align: left;
  }
  .club-hero-contents__image {
    margin: unset;
  }
  .club-hero-contents__content {
    padding: 12rem 6rem 12rem 0;
    gap: 1.5rem;
  }
  .club-hero-contents__cta {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1400px) {
  .club-hero-contents__content {
    padding: 6rem 9rem 3rem 0;
  }
}
/* CLUB INTRO */
.club-intro {
  margin: 0 0 12rem;
}

/* CLUB CHECKLIST */
.club-checklist {
  position: relative;
  padding: 9rem 3rem 12rem;
  color: white;
  overflow: hidden;
  background-position: center 33%;
  background-size: cover;
  margin: 0 0 12rem;
}
.club-checklist::before {
  content: "";
  position: absolute;
  background: linear-gradient(to left, rgba(37, 34, 36, 0.8) 0%, #252224 100%);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
.club-checklist__title {
  position: relative;
  color: white;
  margin: 0 0 6rem;
}
.club-checklist__list {
  position: relative;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4.5rem;
}
.club-checklist-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: "Fraunces";
  font-size: 1.8rem;
}
.club-checklist-item__check {
  position: relative;
  background-color: #EEB536;
  border-color: #D59401;
  flex-shrink: 0;
}
.club-checklist-item__check::after {
  content: "";
  position: absolute;
  width: 0.6rem;
  height: 1.4rem;
  border-bottom: 1px solid;
  border-right: 1px solid;
  border-color: #252224;
  transform: rotate(45deg);
  bottom: 0.3rem;
  top: 0px;
  margin: auto;
}
.club-checklist-item__check:hover {
  background-color: #D59401;
  border-color: #D59401;
}
.club-checklist-item__text {
  margin: 0;
}

@media screen and (min-width: 576px) {
  .club-checklist__title {
    text-align: center;
  }
  .club-checklist__list {
    justify-content: center;
    text-align: center;
  }
  .club-checklist-item {
    flex-direction: column;
    align-items: center;
    max-width: 22rem;
  }
}
/* CLUB ABOUT */
.club-about {
  margin: 0 0 7.5rem;
}
.club-about-content {
  position: sticky;
  top: 6rem;
  margin: 0 0 6rem;
}
.club-about-content__wrapper {
  margin: 0 0 6rem;
}
.club-about-timeline__title {
  margin: 0 0 6rem;
}
.club-about-timeline-item {
  margin: 0 0 4.5rem;
}
.club-about-timeline-item__top {
  display: flex;
  gap: 3rem;
}
.club-about-timeline-item__title {
  min-height: 4rem;
  padding: 0.25rem 0 0;
}
.club-about-timeline-item__subtitle {
  margin: -2rem 0 2rem;
}

/* CLUB ME */
.club-me {
  position: relative;
  background-color: #F8F8F8;
  margin: 0 0 12rem;
}
.club-me-background__wrapper {
  aspect-ratio: 1/1;
  height: 100%;
}
.club-me-background__image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  height: 100%;
  width: 100%;
}
.club-me-contents {
  position: relative;
  padding: 6rem 0 9rem;
  text-align: center;
}
.club-me-contents__content {
  display: flex;
  flex-direction: column;
}
.club-me-contents__cta {
  justify-content: center;
}
.club-me-contents__description {
  margin: 0 0 3rem;
}

@media screen and (min-width: 576px) {
  .club-me-background__wrapper {
    aspect-ratio: unset;
  }
}
@media screen and (min-width: 1200px) {
  .club-me-background {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
  }
  .club-me-background__wrapper {
    position: relative;
  }
  .club-me-contents {
    z-index: 1;
    text-align: left;
  }
  .club-me-contents__content {
    padding: 12rem 6rem 12rem 0;
    gap: 1.5rem;
  }
  .club-me-contents__cta {
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1400px) {
  .club-me-contents__content {
    padding: 6rem 9rem 3rem 0;
  }
}
/* CLUB FAQ */
.redhex-faq {
  margin: 0 0 12rem;
}
.redhex-faq__title, .redhex-faq__content {
  margin: 0 0 6rem;
}
.redhex-faq__item {
  margin: 0 0 3rem;
}
.redhex-faq__item--active .redhex-faq__question::after {
  transform: rotate(-135deg);
}
.redhex-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-family: "DM Sans";
  font-size: 1.8rem;
  font-weight: 400;
}
.redhex-faq__question::after {
  content: "";
  transition: transform 0.3s;
  display: block;
  margin: 0 0 0 -6px;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-color: #252224;
  transform: rotate(45deg);
  margin: 0 0.25rem;
}
.redhex-faq__answer {
  padding: 0 0 1.5rem;
  margin: 0 0 3rem;
  border-bottom: 1px solid #DED8E3;
}

/* CLUB CTA */
.club-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #006A7A;
  border-radius: 1rem;
  padding: 6rem;
  margin: 0 0 12rem;
  color: white;
  text-align: center;
}
.club-cta__title {
  color: white;
}
.club-cta__lead {
  color: white;
}

/* DEFAULT PAGE */
.default-page {
  margin: 12rem 0;
}
.default-page__header {
  margin: 0 0 6rem;
}
.default-page__content dl, .default-page__content ol, .default-page__content ul {
  margin: 0 0 1.5rem;
}
.default-page__content dl li, .default-page__content ol li, .default-page__content ul li {
  margin: 0 0 1rem;
}
.default-page__content dl li dl, .default-page__content dl li ol, .default-page__content dl li ul, .default-page__content ol li dl, .default-page__content ol li ol, .default-page__content ol li ul, .default-page__content ul li dl, .default-page__content ul li ol, .default-page__content ul li ul {
  margin: 1.5rem 0;
}
.default-page__content ul li::marker {
  color: #EEB536;
}
.default-page__content .wp-block-heading {
  margin: 3rem 0;
}
.default-page__content a {
  color: #008599;
}
.default-page__content a:hover {
  color: #006A7A;
}

/* ERROR 404 */
.error-404 {
  padding: 14rem 0 12rem;
  text-align: center;
}
.error-404__code {
  display: block;
  font-size: 8rem;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 3rem;
  opacity: 0.2;
}
.error-404__text {
  margin: 0 0 6rem;
}

/* MENU */
.menu {
  transition: all 0.3s ease;
  font-family: "DM Sans", sans-serif;
  font-size: 3rem;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20rem 1rem 0;
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  justify-content: center;
}
.menu__icon {
  position: relative;
  display: flex;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  cursor: pointer;
  z-index: 10;
  color: white;
  background: none;
  border: none;
  padding: 0;
}
.menu__icon--active span:first-of-type {
  transform: rotate(45deg);
  top: calc(50% - 0.25rem);
}
.menu__icon--active span:nth-of-type(2) {
  background-color: transparent;
}
.menu__icon--active span:last-of-type {
  transform: rotate(-45deg);
  bottom: 50%;
}
.menu__bar {
  transition: all 0.3s ease;
  position: absolute;
  width: 3rem;
  height: 2px;
  border-radius: 1px;
  background-color: white;
}
.menu__bar:first-of-type {
  transform: none;
  top: 1.5rem;
}
.menu__bar:nth-of-type(2) {
  top: calc(50% - 1px);
  width: 1.5rem;
  margin-left: 1.5rem;
}
.menu__bar:last-of-type {
  transform: none;
  bottom: 1.5rem;
}
.menu__wrapper {
  display: flex;
  align-items: center;
  padding: 0 0 12rem;
  margin: 0;
  flex-direction: column;
  gap: 6rem;
  list-style-type: none;
  justify-content: center;
}
.menu--active {
  opacity: 1;
  pointer-events: all;
  background-color: #252224;
  top: 0;
}
.menu li {
  padding: 0 1.5rem;
}
.menu li a {
  color: white;
}
.menu li a:hover {
  color: #DED8E3;
}
.menu__btn {
  font-size: 1.6rem;
  transform: scale(1.2);
  margin: 1rem 0 0;
}
.menu__btn .button {
  background-color: #EEB536;
  border-color: #D59401;
  color: #252224;
}
.menu__btn .button:hover {
  background-color: #D59401;
  color: #252224;
}

/* SCREENLOCK */
body.screenlock {
  overflow: hidden;
  background-color: #252224;
}/*# sourceMappingURL=main.css.map */