/* Import Founders_Grotesk Fonts */
@font-face {
  font-family: "Founders Grotesk";
  src: url("../fonts/Founders_Grotesk/FoundersGrotesk-Light.otf")
    format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../fonts/Founders_Grotesk/FoundersGrotesk-Regular.otf")
    format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../fonts/Founders_Grotesk/FoundersGrotesk-Medium.otf")
    format("opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../fonts/Founders_Grotesk/FoundersGrotesk-Semibold.otf")
    format("opentype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("../fonts/Founders_Grotesk/FoundersGrotesk-Bold.otf")
    format("opentype");
  font-weight: 700;
  font-style: normal;
}

/* Keyframes */

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Scaling System */

:root {
  --color-main: #910050;
  --color-main-light: #efefef;
  --color-white: #ffffff;
  --color-warm-white: #fffcf9;
  --color-black: #281822;
  --color-black-light: #281822;
  --color-bg: #f7f7f0;

  --rounded-xs: 2px;
  --rounded-s: 4px;
  --rounded-m: 8px;
  --rounded-l: 12px;
  --rounded-full: 999px;

  --gap: 2em;
  --section-padding: calc(3.5em + (var(--gap) * 2));
  --container-padding: 2em;
  --header-height: calc(1.5em + (var(--gap) * 2));
  --footer-height: calc(2.785em + (var(--gap) * 2));
  --mask-corner-cut-circle-6: radial-gradient(
      1rem at 1rem 1rem,
      transparent 99%,
      #000
    ) -1rem -1rem;
}
@media screen and (max-width: 991px) {
  :root {
    --container-padding: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --container-padding: 1em;
    --section-padding: calc(var(--gap) * 2);

    --rounded-xs: 1px;
    --rounded-s: 2px;
    --rounded-m: 4px;
    --rounded-l: 8px;
  }
}
@media screen and (max-width: 479px) {
  :root {
  }
}
:root {
  --size-unit: 16;
  --size-container-ideal: 1440;
  --size-container-min: 992px;
  --size-container-max: 1920px;
  --size-container: clamp(
    var(--size-container-min),
    100vw,
    var(--size-container-max)
  );
  --size-font: calc(
    var(--size-container) / (var(--size-container-ideal) / var(--size-unit))
  );
}
@media screen and (max-width: 991px) {
  :root {
    --size-container-ideal: 991;
    --size-container-min: 578px;
    --size-container-max: 991px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --size-container-ideal: 767;
    --size-container-min: 480px;
    --size-container-max: 767px;
  }
}
@media screen and (max-width: 479px) {
  :root {
    --size-container-ideal: 590;
    --size-container-min: 0px;
    --size-container-max: 479px;
  }
}

@media screen and (max-width: 414px) {
  :root {
    --size-container-ideal: 460;
    --size-container-min: 0px;
    --size-container-max: 414px;
  }
}

/*DEFAULT - style*/

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-warm-white);
}

svg {
  max-width: none;
  height: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: middle;
}

a {
  color: inherit;
}

body {
  font-size: var(--size-font);
  font-family: "Inter", sans-serif;

  font-weight: 400;
  line-height: 1.4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  color: var(--color-black);
  font-family: "Founders Grotesk", sans-serif;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.1em;
  line-height: 1;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.9em;
  line-height: 1.05;
}

.m-xl-2 {
  font-size: 3.4em;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.2em;
  line-height: 1.1;
}

h4 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 1.9em;
  line-height: 1.15;
}

h5 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 1.6em;
  line-height: 1.2;
}

h6 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 1.3em;
  line-height: 1;
}

li,
p {
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 400;
  color: var(--color-black);
  letter-spacing: -0.035rem;
  font-size: 1em;
  line-height: 1.215;
}

p:not(:last-of-type) {
  margin-bottom: 1em;
}

a {
  color: inherit;
  text-decoration: underline;
}

strong {
  font-weight: 600;
}

.container {
  z-index: 1;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  max-width: 62em;
  margin: 0 auto;
}

.container.is--full {
  max-width: 100%;
}

.container.is--medium {
  max-width: calc(var(--size-container) * 0.85);
}

.container.is--small {
  max-width: calc(var(--size-container) * 0.7);
}

@media only screen and (max-width: 1440px) {
  .container {
    max-width: 70em;
  }
}

@media only screen and (max-width: 1280px) {
  .container {
    max-width: 80em;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 3.5em;
  }

  h2 {
    font-size: 3em;
  }

  h3 {
    font-size: 2.9em;
  }

  h4 {
    font-size: 2.8em;
  }

  .m-xl-2 {
    font-size: 3em;
  }

/*   li,
  p {
    font-size: 1.3em;
    line-height: 1.4;
  } */
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 3.2em;
  }

  h2 {
    font-size: 2.7em;
  }

  h3 {
    font-size: 2.5em;
  }

  h4 {
    font-size: 2.4em;
  }

  .m-xl-2 {
    font-size: 2.5em;
  }
}

@media screen and (max-width: 414px) {
  .m-xl-2 {
    font-size: 2.2em;
  }
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.container-fluid {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

.container-mid {
  margin: 0 auto;
  max-width: 1450px;
  width: 100%;
}

html :where(.wp-block) {
  max-width: 100%;
}

/*HEADER - style*/

* {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  padding: 2em 1em;
  z-index: 9;

  /* box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15),
    0px 0px 4px 0px rgba(0, 0, 0, 0.05) inset,
    1px 1px 4px 0px rgba(255, 255, 255, 0.25) inset; */
  -webkit-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.site-header.is--glass {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: saturate(180%) blur(32px);
  backdrop-filter: saturate(180%) blur(32px);
}

.site-branding a {
  position: absolute;
}

.site-header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.site-main-box,
.site-header__menu nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  padding: 4px;
  background: hsla(0, 0%, 50%, 0.1);
  -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15),
    0px 0px 4px 0px rgba(0, 0, 0, 0.05) inset,
    1px 1px 4px 0px rgba(255, 255, 255, 0.25) inset;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15),
    0px 0px 4px 0px rgba(0, 0, 0, 0.05) inset,
    1px 1px 4px 0px rgba(255, 255, 255, 0.25) inset;
  border-radius: var(--rounded-s);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-main-box {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.site-header__menu-wrap,
#site-navigation {
  height: 100%;
}

#site-navigation ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  list-style: none;
}

.site-main-box span,
.site-main-menu-list ul li a,
#site-navigation ul li a {
  color: var(--color-white);
  list-style: none;
  padding: 8px;
  font-weight: 600;
  display: inline-block;
  text-decoration: none;
  border-radius: var(--rounded-s);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}

.site-main-menu-list ul li a {
  width: 100%;
}

.site-main-menu-list ul li a:hover,
.site-main-box span:hover,
#site-navigation ul li a:hover {
  background-color: rgba(255, 252, 249, 0.1);
}

.site-branding svg,
.custom-logo-link {
  max-width: 8em;
  display: inline-block;
}

.site-branding svg {
  max-width: 5em;
  max-height: 5em;
}

span.site-main-menu-anchor {
  position: relative;
  width: 100%;
  height: 100%;
}

.site-main-menu-anchor::before {
  content: "";
  width: 1em;
  height: 1px;
  border-radius: 1px;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.site-main-menu-anchor::after {
  content: "";
  width: 1em;
  height: 1px;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;

  -webkit-transform: translate(-50%, -50%) rotate(90deg);

  -ms-transform: translate(-50%, -50%) rotate(90deg);

  transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.site-main-menu-anchor.is--dark::after,
.site-main-menu-anchor.is--dark::before {
  background-color: var(--color-black);
}

.is--active .site-main-menu-anchor::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}

.site-main-menu {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 8px;
}

.site-branding {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.site-main-menu-list {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  right: 0;
  top: calc(100% + 8px);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  background: hsla(0, 0%, 50%, 0.1);
  -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15),
    0px 0px 4px 0px rgba(0, 0, 0, 0.05) inset,
    1px 1px 4px 0px rgba(255, 255, 255, 0.25) inset;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15),
    0px 0px 4px 0px rgba(0, 0, 0, 0.05) inset,
    1px 1px 4px 0px rgba(255, 255, 255, 0.25) inset;
  border-radius: var(--rounded-s);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  white-space: nowrap;
}

.site-main-menu-list.is--active {
  opacity: 1;
  visibility: visible;
}

.site-main-menu-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.btn-theme {
  text-decoration: none;
  background-color: var(--color-main);
  border-radius: var(--rounded-s);
  padding: 4px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-warm-white);
  display: inline-block;
  -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15),
    0px 0px 4px 0px rgba(0, 0, 0, 0.05) inset,
    1px 1px 4px 0px rgba(255, 255, 255, 0.25) inset;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15),
    0px 0px 4px 0px rgba(0, 0, 0, 0.05) inset,
    1px 1px 4px 0px rgba(255, 255, 255, 0.25) inset;
}

.suptitle-glass {
  text-decoration: none;
  /* background-color: #910050; */

  /* border-radius: var(--rounded-l);
  padding: 0.4em 0.6em; */

/*   text-transform: uppercase; */
  font-weight: 400;
  color: var(--color-black);
  display: inline-block;
  /* -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15),
    0px 0px 4px 0px rgba(0, 0, 0, 0.05) inset,
    1px 1px 4px 0px rgba(255, 255, 255, 0.25) inset;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15),
    0px 0px 4px 0px rgba(0, 0, 0, 0.05) inset,
    1px 1px 4px 0px rgba(255, 255, 255, 0.25) inset; */
  position: relative;
  display: inline-block;
  margin-top: 0.2em;
  font-size: 1.2em;
  line-height: 1;
}

.suptitle-glass::before {
  content: "";
  position: absolute;
  z-index: -1;
  /* border-radius: var(--rounded-s); */
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.btn-theme span {
  padding: 0.7em 1.8em;
  display: inline-block;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: var(--rounded-s);
}

.btn-theme:hover span {
  background-color: rgba(255, 252, 249, 0.1);
}

.site-main-box,
#site-navigation {
  position: relative;
}

.site-main-menu-list::before,
.site-main-box::before,
#site-navigation::before {
  content: "";
  position: absolute;
  z-index: -1;
  /* border-radius: var(--rounded-s); */
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.site-branding h3 {
  color: var(--color-warm-white);
  font-weight: 700;
  font-size: 2em;
  line-height: 0;
}

.site-header.dark-colors .logo-color {
  fill: var(--color-black) !important;
}

.site-header.dark-colors .site-main-box span,
.site-header.dark-colors .site-main-menu-list ul li a,
.site-header.dark-colors #site-navigation ul li a {
  color: var(--color-black);
}

.site-header.dark-colors .site-main-menu-anchor::after,
.site-header.dark-colors .site-main-menu-anchor::before {
  background-color: var(--color-black);
}

.switch-language-flag {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  padding: 4px;
  background: hsla(0, 0%, 50%, 0.1);
  -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15),
    0px 0px 4px 0px rgba(0, 0, 0, 0.05) inset,
    1px 1px 4px 0px rgba(255, 255, 255, 0.25) inset;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15),
    0px 0px 4px 0px rgba(0, 0, 0, 0.05) inset,
    1px 1px 4px 0px rgba(255, 255, 255, 0.25) inset;
  border-radius: var(--rounded-s);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  aspect-ratio: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.switch-language-flag img {
  display: block;
  border-radius: 0.1em;
}

.switch-language-flag::before {
  content: "";
  position: absolute;
  z-index: -1;
  /* border-radius: var(--rounded-s); */
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.switch-language-flag span {
  color: var(--color-white);
  list-style: none;
  padding: 4px;
  display: inline-block;
  text-decoration: none;
  border-radius: var(--rounded-s);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
  width: 100%;
  padding: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.switch-language-flag a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.switch-language-flag span:hover {
  background-color: rgba(255, 252, 249, 0.1);
}

.houfi-mobile-menu,
.houfi-burger {
  display: none;
}
@media only screen and (max-width: 1280px) {
	.suptitle-glass {
		font-size: 1.1em;
	}
}
@media only screen and (max-width: 991px) {
  .site-main-box,
  #site-navigation {
    display: none;
  }

  .houfi-burger {
    display: block;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    padding: 4px;
    background: hsla(0, 0%, 50%, 0.1);
    -webkit-box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15),
      0px 0px 4px 0px rgba(0, 0, 0, 0.05) inset,
      1px 1px 4px 0px rgba(255, 255, 255, 0.25) inset;
    box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15),
      0px 0px 4px 0px rgba(0, 0, 0, 0.05) inset,
      1px 1px 4px 0px rgba(255, 255, 255, 0.25) inset;
    border-radius: var(--rounded-s);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    aspect-ratio: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
  }

  .houfi-burger::before {
    content: "";
    position: absolute;
    z-index: -1;
    /* border-radius: var(--rounded-s); */
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  .houfi-burger div {
    position: absolute;
    left: 17%;
    width: 68%;
    height: 1px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background: var(--color-warm-white);
    border-radius: 2px;
    -webkit-transform: translateY(-50%) rotate(0);
    -ms-transform: translateY(-50%) rotate(0);
    transform: translateY(-50%) rotate(0);
    opacity: 1;
  }

  .site-header.dark-colors .houfi-burger div {
    background: var(--color-black) !important;
  }

  .houfi-burger div:nth-child(1) {
    top: calc(35% + 1px);
  }

  .houfi-burger div:nth-child(2) {
    top: 50%;
  }

  .houfi-burger div:nth-child(3) {
    top: calc(65% - 1px);
  }
  .houfi-burger.is--active div:nth-child(1) {
    top: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }

  .houfi-burger.is--active div:nth-child(2) {
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }

  .houfi-burger.is--active div:nth-child(3) {
    top: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    transform: translateY(-50%) rotate(-45deg);
  }

  .houfi-mobile-menu {
    display: block;
    position: fixed;
    left: 1em;
    top: 1em;
    width: calc(100% - 2em);
    height: calc(100% - 2em);
    border-radius: 0.5em;
    background-color: #e0ff42;
    z-index: 10;
    padding: 1.6em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transform: translateX(calc(100% + 1em));
    -ms-transform: translateX(calc(100% + 1em));
    transform: translateX(calc(100% + 1em));
    -webkit-transition: all 0.4s ease-out;
    -o-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
  }

  .houfi-mobile-menu.is--active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .is--blur {
    -webkit-filter: blur(20px);
    filter: blur(20px);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }

  .close-menu svg {
    width: 2.8em;
  }

  .close-menu:hover {
    background-color: rgba(255, 252, 249, 0.1);
    border-radius: var(--rounded-s);
  }

  .houfi-mobile-menu-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .houfi-mobile-menu-social .social-links img {
    max-width: 3em;
    -webkit-filter: invert(1) brightness(0);
    filter: invert(1) brightness(0);
  }

  .houfi-mobile-menu-social .social-links {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .houfi-mobile-menu-nav-p {
    margin-top: 8px;
  }

  .houfi-mobile-menu-nav ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
	  font-size: 1.4em;
  }

  .houfi-mobile-menu-nav ul li a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.6em;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .houfi-mobile-menu-nav.houfi-mobile-menu-nav-p ul li a {
    font-weight: 400;
    font-size: 1.1em;
  }

  .houfi-mobile-menu-nav ul li a:hover {
    padding-left: 0.5em;
  }

  .site-main-menu {
    width: 30%;
  }
}
