/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
/* ---- RESETS ---- */
html {
  font-size: 62.5% !important;
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
  -webkit-text-size-adjust: 100%;
}

:root {
  font-size: 1.6rem;
}

* {
  box-sizing: border-box;
}

body {
  font-size: clamp(1.6rem, 1.2vw, 1.6rem);
  font-family: "Inter", sans-serif;
  color: #333;
}
body.no-scroll {
  overflow: hidden;
}

.wysiwyg p, .wysiwyg li {
  margin-bottom: calc(clamp(1.6rem, 1.2vw, 1.6rem) + 0.2rem);
}
.wysiwyg p:last-child, .wysiwyg li:last-child {
  margin-bottom: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
}

.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5 {
  font-weight: 600;
}

.h1, h1 {
  font-size: clamp(3.2rem, 5vw, 6.1rem);
  line-height: clamp(4rem, 6vw, 7.3rem);
  letter-spacing: -1.22px;
}

.h2, h2 {
  font-size: clamp(2.9rem, 4vw, 4.9rem);
  line-height: clamp(3.6rem, 5vw, 5.9rem);
  letter-spacing: -0.735px;
}

.h3, h3 {
  font-size: clamp(2.6rem, 3vw, 3.9rem);
  line-height: clamp(3.2rem, 4vw, 4.7rem);
  letter-spacing: -0.39px;
}

.h4, h4 {
  font-size: clamp(2.3rem, 2.5vw, 3.1rem);
  line-height: clamp(2.9rem, 3.5vw, 3.7rem);
  letter-spacing: -0.155px;
}

.h5, h5 {
  font-size: clamp(2rem, 2vw, 2.5rem);
  line-height: clamp(2.5rem, 2.5vw, 3rem);
  letter-spacing: -0.125px;
}

.h6, h6 {
  font-size: clamp(1.8rem, 1.5vw, 2rem);
  line-height: clamp(2.2rem, 2vw, 2.4rem);
  font-weight: 500;
}

.body-s {
  font-size: clamp(1.3rem, 1vw, 1.3rem);
  line-height: clamp(1.9rem, 1.2vw, 1.9rem);
}

.caption {
  font-size: clamp(1rem, 0.8vw, 1rem);
  line-height: clamp(1.2rem, 1vw, 1.2rem);
}

a {
  color: #E11425;
  text-decoration: none;
}

.in-view.fade-up-element {
  animation: fade-up 0.3s forwards;
}

.fade-up-element {
  transform: translateY(50px);
  opacity: 0;
}

@media (prefers-reduced-motion) {
  .fade-up-element {
    transform: none;
    opacity: 1;
  }
  .in-view.fade-up-element {
    animation: none;
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 48px !important;
}

.pt-2 {
  padding-top: 96px !important;
}

.pt-3 {
  padding-top: 144px !important;
}

.pt-4 {
  padding-top: 192px !important;
}

.pt-5 {
  padding-top: 240px !important;
}

.pt-6 {
  padding-top: 288px !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 48px !important;
}

.pb-2 {
  padding-bottom: 96px !important;
}

.pb-3 {
  padding-bottom: 144px !important;
}

.pb-4 {
  padding-bottom: 192px !important;
}

.pb-5 {
  padding-bottom: 240px !important;
}

.pb-6 {
  padding-bottom: 288px !important;
}

@media (max-width: 768px) {
  .pt-0 {
    padding-top: 0 !important;
  }
  .pt-1 {
    padding-top: 20px !important;
  }
  .pt-2 {
    padding-top: 40px !important;
  }
  .pt-3 {
    padding-top: 60px !important;
  }
  .pt-4 {
    padding-top: 80px !important;
  }
  .pt-5 {
    padding-top: 100px !important;
  }
  .pt-6 {
    padding-top: 120px !important;
  }
  .pb-0 {
    padding-bottom: 0 !important;
  }
  .pb-1 {
    padding-bottom: 20px !important;
  }
  .pb-2 {
    padding-bottom: 40px !important;
  }
  .pb-3 {
    padding-bottom: 60px !important;
  }
  .pb-4 {
    padding-bottom: 80px !important;
  }
  .pb-5 {
    padding-bottom: 100px !important;
  }
  .pb-6 {
    padding-bottom: 120px !important;
  }
}
.content-grid {
  --padding-inline: 2rem;
  --content-max-width: 1472px;
  --breakout-max-width: 1670px;
  --breakout-size: calc(
      (var(--breakout-max-width) - var(--content-max-width)) / 2
  );
  display: grid;
  grid-template-columns: [full-width-start] minmax(var(--padding-inline), 1fr) [breakout-start] minmax(0, var(--breakout-size)) [content-start breakout-right-start] min(100% - var(--padding-inline) * 2, var(--content-max-width)) [content-end] minmax(0, var(--breakout-size)) [breakout-end] minmax(var(--padding-inline), 1fr) [full-width-end breakout-right-end];
}
.content-grid > :not(.breakout, .full-width) {
  grid-column: content;
}
.content-grid > .breakout {
  grid-column: breakout;
}
.content-grid > .full-width {
  grid-column: full-width;
  display: grid;
  grid-template-columns: inherit;
}

.full-width > :not(.breakout, .full-width) {
  grid-column: content;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove border from iframes */
iframe {
  border: none;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/inter-v20-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/inter-v20-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter-v20-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/inter-v20-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/inter-v20-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/inter-v20-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.button {
  font-size: 1.6rem;
  padding: 0.875em 1.5em;
  border-radius: 50vw;
  border: 2px solid transparent;
  display: inline-flex;
  gap: 1.3rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.button svg {
  transition: transform 0.3s ease-in-out;
}
.button:hover svg {
  transform: translateX(0.5rem);
}
.button-red {
  background-color: #E11425;
  color: #fff;
  border-color: #E11425;
}
.button-red:hover {
  background-color: #CC1222;
}
.button-gray {
  background-color: #C4CDC9;
  border-color: #C4CDC9;
}
.button-gray:hover {
  background-color: #9EADA6;
  color: #E11425;
}
.button-white {
  background-color: #fff;
  color: #333;
  border-color: #333;
}
.button-white:hover {
  background-color: #333;
  color: #fff;
}

@media (max-width: 768px) {
  .button {
    font-size: 1.6rem;
    padding: 0.575em 1.5em;
  }
}
.has-block-badge {
  position: relative;
  border-top: 1px dashed #010101;
  border-bottom: 1px dashed #010101;
}

.block-name-badge {
  position: absolute;
  bottom: 0;
  left: 0;
}
.block-name-badge div {
  background-color: #010101;
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
}

.logged-in .navbar {
  top: 32px;
}

.navbar {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar .topbar {
  background-color: #E11425;
  height: 3.2rem;
}
.navbar .topbar .topbar-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.navbar .topbar .social-medias {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.navbar .wrapper {
  padding: 2.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.navbar .navbar-logo {
  max-width: 25.2rem;
}
.navbar .navbar-list {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: clamp(2rem, 4vw, 8rem);
}
.navbar .navbar-list .menu-item-has-children {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}
.navbar .navbar-list .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.navbar .navbar-list .menu-item-has-children .menu-icon {
  display: flex;
  align-items: center;
}
.navbar .navbar-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  margin: 0;
  padding: 6rem 0 2.4rem;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 999;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
.navbar .navbar-list .sub-menu a {
  white-space: nowrap;
  padding: 0.8rem 2.4rem;
  display: block;
  transition: background-color 0.2s ease-in-out;
  font-weight: 400;
}
.navbar .navbar-list .sub-menu a:hover {
  background-color: #EDEDED;
}
.navbar .navbar-list a {
  color: #333;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}
.navbar .navbar-list a:hover {
  color: #E11425;
}
.navbar .button-container {
  display: flex;
  align-items: center;
  gap: clamp(2.4em, 3vw, 8rem);
}
.navbar .button-container .navbar-phone {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.navbar .button-container .navbar-phone a {
  color: #333;
  font-style: normal;
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: color 0.2s ease-in-out;
}
.navbar .button-container .navbar-phone a:hover {
  color: #E11425;
}
.navbar .mobile-menu-toggle {
  display: none;
}

@media (max-width: 1200px) {
  .navbar .navbar-list {
    display: none;
  }
  .navbar .mobile-menu-toggle {
    display: block;
  }
  .navbar .mobile-menu-toggle:hover {
    cursor: pointer;
  }
  .navbar .mobile-menu-toggle.is-open .open {
    display: none;
  }
  .navbar .mobile-menu-toggle.is-open .close {
    display: block;
  }
  .navbar .mobile-menu-toggle .open {
    display: block;
  }
  .navbar .mobile-menu-toggle .close {
    display: none;
  }
}
@media (max-width: 768px) {
  .logged-in .navbar {
    top: 46px;
  }
  .navbar .navbar-logo {
    max-width: 10.1rem;
  }
  .navbar .button {
    display: none;
  }
}
.form .gfield_required {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form .gform_wrapper.gravity-theme .gform_validation_errors {
  padding: 0;
  margin: 0 0 2rem;
  background-color: transparent;
  border: none;
  text-align: center;
  box-shadow: none;
}
.form .gform_wrapper.gravity-theme .gform_validation_errors > h2 {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
}
.form .gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
  border-color: #fff !important;
}
.form .gform_wrapper.gravity-theme .gfield_description.validation_message {
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  color: #fff !important;
}
.form .gform_validation_errors {
  display: none !important;
}

.form .gform-footer {
  margin: 0 !important;
  padding: 1rem 0 0 !important;
}
.form input,
.form textarea {
  border-radius: 0.8rem;
  border: 1px solid #898989;
  padding: 1.6rem !important;
  color: #333;
  font-size: 1.5rem;
}
.form input::placeholder,
.form textarea::placeholder {
  color: #898989;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(225, 20, 37, 0.2);
}

@media (max-width: 768px) {
  .form input {
    padding: 0.8rem 1.6rem !important;
  }
  .form textarea {
    padding: 1.6rem !important;
  }
}
.service-card .service-image {
  display: block;
  overflow: hidden;
  border-radius: 1.6rem;
  margin: 0 0 2.4rem;
}
.service-card .service-image:hover img {
  transform: scale(1.05);
}
.service-card .service-image img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
.service-card .service-title {
  margin: 0 0 2.4rem;
}

@media (max-width: 768px) {
  .service-card .service-image {
    margin: 0 0 1.6rem;
  }
  .service-card .service-title {
    margin: 0 0 1.6rem;
  }
}
.arrow-link {
  color: #333;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: color 0.2s ease-in-out;
}
.arrow-link svg {
  transition: transform 0.2s ease-in-out;
}
.arrow-link svg path {
  fill: #333;
  transition: fill 0.2s ease-in-out;
}
.arrow-link:hover {
  color: #E11425;
}
.arrow-link:hover svg {
  transform: translate(4px, 0);
}
.arrow-link:hover svg path {
  fill: #E11425;
}

.site-footer {
  background-color: #333;
  color: #fff;
  padding: 8rem 0 3rem;
}
.site-footer .heading,
.site-footer a {
  color: #fff;
}
.site-footer a {
  transition: color 0.3s ease-in-out;
}
.site-footer a:hover {
  color: #E11425;
}
.site-footer nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
}
.site-footer .menu-col {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
}
.site-footer .main-footer-menu,
.site-footer .product-footer-menu {
  min-width: 20rem;
}
.site-footer .main-footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.site-footer .main-footer-menu a {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3rem;
  letter-spacing: -0.125px;
}
.site-footer .footer-menu-heading {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.3rem;
  margin: 0 0 1.6rem;
}
.site-footer .product-footer-menu a {
  line-height: 2.7rem;
}
.site-footer .info-col {
  max-width: 45rem;
}
.site-footer .info-col .heading {
  margin: 0 0 1.6rem;
}
.site-footer .info-col .footer-contact {
  margin: 3.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer .info-col .footer-contact a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.site-footer .info-col .footer-button {
  margin: 3.2rem 0 0;
}
.site-footer .info-col .footer-button .button:hover {
  color: #fff;
}
.site-footer .footer-bottom {
  margin: 4.3rem 0 0;
}
.site-footer .footer-bottom span,
.site-footer .footer-bottom a {
  opacity: 0.5;
}
.site-footer .footer-bottom a {
  transition: opacity 0.3s ease-in-out;
}
.site-footer .footer-bottom a:hover {
  opacity: 1;
  color: #fff;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 4rem 0 5.6rem;
  }
  .site-footer .container {
    flex-direction: column;
    gap: 3.2rem;
  }
  .site-footer .menu-col {
    flex-direction: column;
    gap: 3.2rem;
    order: 2;
  }
  .site-footer .main-footer-menu a {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .site-footer .footer-menu-heading {
    font-size: 1.8rem;
    line-height: 2.3rem;
    margin: 0 0 0.8rem;
  }
  .site-footer .product-footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .site-footer .product-footer-menu a {
    line-height: normal;
  }
  .site-footer .info-col {
    order: 1;
  }
  .site-footer .info-col .footer-contact {
    margin: 2.4rem 0 0;
    gap: 2.4rem;
  }
  .site-footer .info-col .footer-button {
    margin: 2.4rem 0 0;
  }
  .site-footer .footer-bottom {
    margin: 4.8rem 0 0;
  }
  .site-footer .footer-bottom .container {
    flex-direction: column;
    gap: 0.8rem;
  }
}
.work-item {
  position: relative;
  overflow: hidden;
}
.work-item img {
  aspect-ratio: 236/165;
  width: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
}
.work-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 87.47%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
  border-radius: 1.6rem;
}
.work-item .work-info {
  position: absolute;
  bottom: 2.4rem;
  left: 2.4rem;
  color: #fff;
  display: flex;
  gap: 0.8rem;
  z-index: 2;
  font-size: 1.3rem;
  line-height: 1.95rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .work-item img {
    aspect-ratio: 67/47;
  }
}
.filter {
  display: flex;
  gap: 2.4rem;
  grid-column: breakout-right !important;
  overflow-x: auto;
}
.filter .button {
  border: 2px solid #C4CDC9;
  font-weight: 400;
  flex-shrink: 0;
}
.filter .button:hover {
  background-color: #C4CDC9;
}
.filter .button.active {
  background-color: #C4CDC9;
}

@media (max-width: 768px) {
  .filter {
    gap: 1.6rem;
  }
  .filter .button {
    padding: 1.2rem 3.2rem;
  }
}
.post-item.featured-post-item {
  grid-column: 1/-1;
}
.post-item.featured-post-item .post-image {
  margin: 0 0 3.2rem;
}
.post-item.featured-post-item .post-image:hover img {
  transform: scale(1.02);
}
.post-item.featured-post-item .post-image img {
  aspect-ratio: 492/277;
}
.post-item.featured-post-item .post-description {
  max-width: 83.6rem;
}
.post-item.featured-post-item .arrow-link {
  margin: 4rem 0 0;
}
.post-item .post-image {
  overflow: hidden;
  border-radius: 1.6rem;
  margin: 0 0 2.6rem;
  display: block;
}
.post-item .post-image:hover img {
  transform: scale(1.05);
}
.post-item .post-image img {
  aspect-ratio: 226/127;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
.post-item .post-title {
  margin: 0 0 1.6rem;
}
.post-item .arrow-link {
  margin: 2.4rem 0 0;
}
.post-item .arrow-link span {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

@media (max-width: 768px) {
  .post-item.featured-post-item .post-image {
    margin: 0 0 2.4rem;
  }
  .post-item.featured-post-item .post-image img {
    aspect-ratio: 335/188.44;
  }
  .post-item.featured-post-item .arrow-link {
    margin: 2.4rem 0 0;
  }
  .post-item .post-image img {
    aspect-ratio: 335/188.44;
  }
}
.logged-in #mobileMenu {
  top: calc(10.8rem + 32px);
}

#mobileMenu {
  position: fixed;
  top: 10.8rem;
  bottom: 0;
  right: 0;
  background-color: #EDEDED;
  min-width: 35rem;
  padding: 4rem 2.8rem;
  transform: translateX(100%);
  transition: transform 0.2s ease-in-out;
  z-index: 999;
}
#mobileMenu.is-active {
  transform: translateX(0);
}
#mobileMenu #mobileMainMenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
#mobileMenu #mobileMainMenu a {
  color: #333;
  font-size: 2.9rem;
  line-height: 3.6rem;
  font-weight: 600;
}
#mobileMenu #mobileMainMenu .menu-item-has-children {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
#mobileMenu #mobileMainMenu .menu-item-has-children svg {
  width: 2rem;
  height: 1.2rem;
}
#mobileMenu #mobileMainMenu .menu-item-has-children.is-active svg {
  transform: rotate(180deg);
}
#mobileMenu #mobileMainMenu .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
  width: 100%;
}
#mobileMenu #mobileMainMenu .sub-menu li:first-child {
  margin-top: 4rem;
}
#mobileMenu #mobileMainMenu .sub-menu a {
  color: #333;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
#mobileMenu .mobile-menu-button {
  margin: 4rem 0 0 0;
}

@media (max-width: 768px) {
  .logged-in #mobileMenu {
    top: calc(7.2rem + 46px);
  }
  #mobileMenu {
    top: 7.2rem;
  }
}
.info-page .info-page-hero {
  padding: 10rem 0 9.5rem;
}
.info-page .info-page-hero .container {
  max-width: 75rem;
  margin: 0 auto;
}
.info-page .info-page-hero .heading {
  text-align: center;
  margin: 0 0 5.4rem;
}
.info-page .info-page-hero .text {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}
.info-page .info-grid {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 10rem;
}
.info-page .sidebar {
  position: sticky;
  top: 10rem;
  height: 0;
}
.info-page .sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-page .sidebar a {
  color: #000;
  text-decoration: none;
  font-size: 2rem;
  line-height: 4rem;
  transition: padding-left 0.3s, font-weight 0.3s;
}
.info-page .sidebar a:hover {
  cursor: pointer;
  padding-left: 2rem;
  font-weight: 700;
}
.info-page .sidebar .current-menu-item a {
  font-weight: 700;
  padding-left: 2rem;
}

@media (max-width: 768px) {
  .info-page .info-page-hero {
    padding: 5rem 0;
  }
  .info-page .info-page-hero .heading {
    margin: 0 0 2.5rem;
  }
  .info-page .info-page-hero .text {
    font-size: 1.8rem;
  }
  .info-page .info-grid {
    grid-template-columns: 100%;
    gap: 0rem;
    padding-top: 2rem;
  }
  .info-page .main-content {
    order: 1;
  }
  .info-page .sidebar {
    padding: 0 0 8rem;
    order: 2;
  }
}
.blog-page .blog-archive-hero {
  padding: 14.4rem 0 0;
}
.blog-page .blog-archive-hero .heading {
  margin: 0 0 1.6rem;
}
.blog-page .blog-archive-hero .text {
  max-width: 70.6rem;
}
.blog-page .blog-section {
  padding: 6.4rem 0 20rem;
}
.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}
.blog-page .blog-post-load-more {
  text-align: center;
  margin: 6rem 0 0;
}

@media (max-width: 1200px) {
  .blog-page .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-page .blog-archive-hero {
    padding: 5.6rem 0 0;
  }
  .blog-page .blog-section {
    padding: 4rem 0 8rem;
  }
  .blog-page .blog-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
  .blog-page .blog-post-load-more {
    text-align: center;
    margin: 4rem 0 0;
  }
}
.hero-404 {
  background-color: #EDEDED;
  padding: 14.4rem 0;
  min-height: 70vh;
}
.hero-404 .text {
  font-size: clamp(1.6rem, 2vw, 2.5rem);
  letter-spacing: -0.125px;
  margin: 1.6rem 0 4rem;
}

@media (max-width: 768px) {
  .hero-404 {
    padding: 6.4rem 0 4rem;
    min-height: 55vh;
  }
  .hero-404 .text {
    letter-spacing: unset;
    margin: 3.2rem 0;
  }
}