/* 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: 1.5rem;
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
body.no-scroll {
  overflow: hidden;
}

@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: "Montserrat", sans-serif;
  display: block;
}
h1 span, .h1 span, h2 span, .h2 span, h3 span, .h3 span, h4 span, .h4 span {
  color: #2E4F52;
}

.h1, h1 {
  font-size: 6rem;
  line-height: 7.3rem;
  font-weight: 800;
}

.h1-big {
  font-size: 8.4rem;
  line-height: normal;
}

.h1-small {
  font-size: 4.4rem;
  line-height: 5.4rem;
  font-weight: 800;
}

.h2, h2 {
  font-size: 5.5rem;
  line-height: 6.7rem;
}

.h2-small {
  font-size: 5rem;
  line-height: normal;
}

.h3, h3 {
  font-size: 4rem;
  line-height: 4.9rem;
}

.h4, h4 {
  font-size: 3rem;
  line-height: 3.7rem;
}

h2, .h2, h3, .h3, h4, .h4 {
  font-weight: 700;
}

@media (max-width: 768px) {
  .h1, h1, .h1-big {
    font-size: 2.8rem;
    line-height: 3.4rem;
  }
  .h1-small {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .h2, h2, .h2-small {
    font-size: 2.2rem;
    line-height: 2.7rem;
  }
  .h3, h3 {
    font-size: 2rem;
    line-height: 2.4rem;
  }
  .h4, h4 {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}
.wysiwyg p {
  margin: 0 0 2rem;
}
.wysiwyg p:last-child {
  margin-bottom: 0;
}

a {
  color: #2E4F52;
  text-decoration: none;
}

.sr-only {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal;
}

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

.fade-in-element {
  opacity: 0;
}

@media (prefers-reduced-motion) {
  .fade-in-element {
    opacity: 1;
  }
  .in-view.fade-in-element {
    animation: none;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.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: 2.5rem;
  --content-max-width: 1140px;
  --breakout-max-width: 1760px;
  --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] 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];
}
.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;
}

@media (max-width: 768px) {
  .content-grid {
    --padding-inline: 1.5rem;
  }
}
/* 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;
  }
}
/* montserrat-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: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/montserrat-v30-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-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: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-v30-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-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: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/montserrat-v30-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-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: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/montserrat-v30-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-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: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/montserrat-v30-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-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: "Montserrat";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/montserrat-v30-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-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: "Montserrat";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/montserrat-v30-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background-color: #183334;
  color: #fff;
  font-weight: 600;
  padding: 2.8rem 0 3.2rem 0;
  transition: padding 0.2s ease-in-out;
}
#navbar.is-scrolled {
  padding: 1.3rem 0 1.3rem 0;
}
#navbar.is-scrolled .submenu-normal {
  top: calc(100% + 2.4rem);
}
#navbar.is-scrolled .submenu-mega-heading,
#navbar.is-scrolled .submenu-mega-icon {
  padding: 3rem 0 0;
}
#navbar.is-scrolled .navbar-menu .menu-item.has-mega-menu::before {
  top: calc(100% + 2.6rem);
}
#navbar .container {
  display: grid;
  grid-template-columns: 26.3rem auto;
  gap: 3rem;
}
#navbar .logo-container {
  display: flex;
  align-items: center;
}
#navbar .logo-container img {
  width: 100%;
}
#navbar .navbar-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.3rem;
}
#navbar .contact-person {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
#navbar .contact-person .image {
  position: relative;
}
#navbar .contact-person .image .speech-bubble {
  position: absolute;
  background: #fff;
  border-radius: 0.4em;
  top: calc(100% + 2rem);
  left: 1rem;
  min-width: 16rem;
  padding: 0.5rem 1.5rem;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
#navbar .contact-person .image .speech-bubble.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#navbar .contact-person .image .speech-bubble::after {
  content: "";
  position: absolute;
  top: 0;
  left: 4rem;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-bottom-color: #fff;
  border-top: 0;
  border-left: 0;
  margin-left: -5px;
  margin-top: -10px;
}
#navbar .contact-person .image .speech-bubble p {
  color: #000;
  font-size: 1.2rem;
  font-weight: 500;
}
#navbar .contact-person .image .speech-bubble .speech-close {
  color: #000;
  font-size: 1.1rem;
  position: absolute;
  top: 0;
  right: 0.5rem;
}
#navbar .contact-person .image .speech-bubble .speech-close:hover {
  cursor: pointer;
}
#navbar .contact-person .phone {
  position: relative;
}
#navbar .contact-person .phone::after {
  content: "";
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  right: 0;
  height: 0.2rem;
  width: 0;
  background-color: #EAF46E;
  transition: width 0.2s ease-in-out;
}
#navbar .contact-person .phone:hover::after {
  width: 100%;
}
#navbar .contact-person .icon {
  display: none;
}
#navbar .contact-person a {
  color: #fff;
}
#navbar .contact-person img {
  max-width: 5.8rem;
  border-radius: 150px;
  width: 100%;
  height: auto;
}
#navbar .mobile-menu-toggle {
  display: none;
}
#navbar .navbar-menu {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
#navbar .navbar-menu .menu-item.has-mega-menu::before {
  content: "";
  position: absolute;
  top: calc(100% + 3.2rem);
  left: 0;
  right: 0;
  height: 0.6rem;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.2s ease-in-out;
  z-index: 101;
}
#navbar .navbar-menu .menu-item.has-mega-menu:hover::before {
  background-color: #EAF46E;
}
#navbar .navbar-menu .menu-item.has-submenu {
  position: relative;
}
#navbar .navbar-menu .menu-item.has-submenu:hover .mega-menu {
  opacity: 1;
  pointer-events: auto;
}
#navbar .navbar-menu .menu-item:not(.has-mega-menu) {
  position: relative;
}
#navbar .navbar-menu .menu-item:not(.has-mega-menu)::after {
  content: "";
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  right: 0;
  height: 0.2rem;
  width: 0;
  background-color: #EAF46E;
  transition: width 0.2s ease-in-out;
}
#navbar .navbar-menu .menu-item:not(.has-mega-menu):hover::after {
  width: 100%;
}
#navbar .navbar-menu .menu-item a {
  color: #fff;
}

@media (max-width: 1300px) {
  #navbar .contact-person {
    gap: 0;
  }
  #navbar .contact-person .icon {
    display: flex;
  }
  #navbar .contact-person .number,
  #navbar .contact-person img,
  #navbar .contact-person .speech-bubble {
    display: none;
  }
  #navbar .contact-person .phone {
    transition: opacity 0.2s ease-in-out;
  }
  #navbar .contact-person .phone::after {
    display: none;
  }
  #navbar .contact-person .phone:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1100px) {
  #navbar.is-scrolled .submenu-mega-heading,
  #navbar.is-scrolled .submenu-mega-icon {
    padding: 2.2rem 0 0;
  }
  #navbar.is-scrolled .submenu-normal {
    top: calc(100% + 1.2rem);
  }
  #navbar.is-scrolled .navbar-menu .menu-item.has-mega-menu::before {
    top: calc(100% + 1.8rem);
  }
  #navbar .container {
    grid-template-columns: 20.3rem auto;
  }
  #navbar .contact-person svg, #navbar .contact-person img {
    width: 2.4rem;
    height: 2.4rem;
  }
  #navbar .navbar-buttons .button {
    padding: 0.6rem 0.8rem;
  }
}
@media (max-width: 980px) {
  #navbar.is-open .mobile-menu-toggle .close {
    display: flex;
  }
  #navbar.is-open .mobile-menu-toggle .open {
    display: none;
  }
  #navbar .navbar-container {
    gap: 1.7rem;
  }
  #navbar .navbar-nav {
    display: none;
  }
  #navbar .mobile-menu-toggle {
    display: flex;
    align-items: center;
  }
  #navbar .mobile-menu-toggle button {
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
  }
  #navbar .mobile-menu-toggle button:hover {
    cursor: pointer;
  }
  #navbar .mobile-menu-toggle .close {
    display: none;
  }
  #navbar .mobile-menu-toggle .open {
    display: flex;
  }
}
@media (max-width: 768px) {
  #navbar {
    padding: 1.6rem 1rem;
  }
  #navbar.is-scrolled {
    padding: 1.6rem 1rem;
  }
  #navbar .container {
    gap: 2.4rem;
  }
  #navbar .navbar-buttons .button:first-child {
    display: none;
  }
  #navbar .contact-person .icon svg, #navbar .contact-person .icon img {
    width: 1.7rem;
    height: 1.7rem;
  }
}
@media (max-width: 450px) {
  #navbar .container {
    grid-template-columns: auto 1fr;
  }
  #navbar .button {
    font-size: 1.1rem;
  }
}
.logged-in #navbar {
  top: 32px;
}

.button {
  font-size: 1.5rem;
  padding: 0.875em 1.5em;
  border-radius: 1rem;
  border: 2px solid transparent;
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  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.3rem);
}
.button-green {
  background-color: #2E4F52;
  color: #fff;
  border-color: #2E4F52;
}
.button-green:hover {
  background-color: transparent;
  color: #2E4F52;
}
.button-green:hover svg {
  fill: #2E4F52;
}
.button-green:hover svg path {
  fill: #2E4F52;
}
.button-green-inverted {
  background-color: transparent;
  color: #2E4F52;
  border-color: #2E4F52;
}
.button-green-inverted:hover {
  background-color: #2E4F52;
  color: #fff;
}
.button-green-inverted:hover svg {
  fill: #fff;
}
.button-green-inverted:hover svg path {
  fill: #fff;
}
.button-yellow {
  background-color: #EAF46E;
  color: #000;
  border-color: #EAF46E;
}
.button-yellow:hover {
  background-color: transparent;
  color: #fff;
}
.button-yellow-inverted {
  background-color: transparent;
  color: #fff;
  border-color: #EAF46E;
}
.button-yellow-inverted:hover {
  background-color: #EAF46E;
  color: #000;
}
.button-white {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}
.button-white svg {
  fill: #000;
}
.button-white svg path {
  fill: #000;
}
.button-white:hover {
  background-color: transparent;
  color: #fff;
}
.button-white:hover svg {
  fill: #fff;
}
.button-white:hover svg path {
  fill: #fff;
}

@media (max-width: 768px) {
  .button {
    font-size: 1.4rem;
  }
}
.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;
}

.service-item {
  border-radius: 5px;
  border: 1px solid #EAEDEE;
  background: rgba(251, 248, 243, 0.6);
  padding: 0.5rem 0.5rem 1.7rem;
  transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.service-item.hidden {
  display: none;
}
.service-item:hover {
  border-color: #798c93;
  background-color: #fbf8f2;
}
.service-item.service-item-own.no-image {
  padding: 1.7rem 0.5rem 1.7rem;
}
.service-item.service-item-own:hover {
  border-color: #EAEDEE;
  background-color: rgba(251, 248, 243, 0.6);
}
.service-item a {
  color: #000;
}
.service-item .service-image {
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 0.9rem 1.6rem;
  margin: 0 0 1.9rem;
}
.service-item .service-image img {
  max-width: 31.2rem;
  margin: 0 auto;
  width: 100%;
}
.service-item .service-content {
  padding: 0 1.5rem;
}
.service-item .service-title {
  font-size: 2rem;
  line-height: normal;
  font-weight: 700;
  margin: 0 0 1rem;
}
.service-item .service-terms {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 1rem;
}
.service-item .service-term {
  color: #fff;
  font-size: 1.3rem;
  line-height: 2.3rem;
  background-color: #183334;
  border-radius: 1.2rem;
  padding: 0 1rem;
}

@media (max-width: 768px) {
  .service-item {
    padding: 0.3rem 0.3rem 2.4rem;
  }
  .service-item .service-image {
    padding: 1rem 0.8rem;
    margin: 0 0 2.5rem;
  }
  .service-item .service-content {
    padding: 0 1rem;
  }
  .service-item .service-title {
    font-size: 1.6rem;
  }
  .service-item .service-terms {
    margin: 0 0 0.9rem;
  }
  .service-item .service-term {
    font-size: 1.2rem;
    line-height: 2.1rem;
    border-radius: 1rem;
    padding: 0 0.8rem;
  }
}
.case-item {
  background-color: #183334;
  border-radius: 1rem;
  display: grid;
  grid-template-columns: 2fr 1.4fr;
  padding: 2rem 2.5rem 2rem 6rem;
  gap: 3.6rem;
  color: #fff;
}
.case-item .case-item-content {
  align-content: center;
}
.case-item .case-item-mobile-image {
  display: none;
}
.case-item .case-item-mobile-image img {
  border-radius: 1rem;
  width: 100%;
}
.case-item .case-item-image a {
  overflow: hidden;
  display: block;
  border-radius: 1rem;
}
.case-item .case-item-image a:hover img {
  transform: scale(1.02);
}
.case-item .case-item-image img {
  width: 100%;
  border-radius: 1rem;
  transition: transform 0.2s ease-in-out;
}
.case-item .case-item-title {
  font-size: 4.5rem;
  line-height: normal;
  font-weight: 700;
  max-width: 58.5rem;
  margin: 0 0 2rem;
}
.case-item .case-item-title span {
  color: #EAF46E;
}
.case-item .case-item-description {
  font-weight: 500;
  max-width: 49rem;
}
.case-item .case-item-stats {
  max-width: 49rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  line-height: 2.3rem;
  margin: 2.2rem 0 0;
}
.case-item .case-item-stat-text {
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 1.3rem;
}
.case-item .case-item-link {
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: 1.3rem;
  color: #fff;
  margin: 4.5rem 0 0;
}
.case-item .case-item-link svg {
  transition: transform 0.2s ease-in-out;
}
.case-item .case-item-link:hover svg {
  transform: translateX(0.3rem);
}

@media (max-width: 768px) {
  .case-item {
    grid-template-columns: 1fr;
    padding: 3rem 1.7rem 4rem;
  }
  .case-item .case-item-content {
    display: grid;
  }
  .case-item .case-item-mobile-image {
    display: block;
    margin: 2.6rem 0;
    order: 3;
  }
  .case-item .case-item-mobile-image a {
    border-radius: 1rem;
    overflow: hidden;
    display: block;
  }
  .case-item .case-item-image {
    display: none;
  }
  .case-item .case-item-title {
    font-size: 2.5rem;
    margin: 0 0 2.5rem;
    order: 1;
  }
  .case-item .case-item-description {
    order: 4;
  }
  .case-item .case-item-stats {
    gap: 0.6rem 1rem;
    margin: 0;
    order: 2;
  }
  .case-item .case-item-stat-text {
    gap: 0.8rem;
    font-size: 1.3rem;
  }
  .case-item .case-item-stat-text svg, .case-item .case-item-stat-text img {
    width: 1.7rem;
    height: 1.7rem;
  }
  .case-item .case-item-link {
    order: 5;
    gap: 0.8rem;
    color: #fff;
    margin: 2.5rem 0 0;
  }
}
.case-item-alt {
  color: #fff;
  background-color: #183334;
  border-radius: 1rem;
  overflow: hidden;
}
.case-item-alt .case-alt-image {
  overflow: hidden;
  border-radius: 1rem;
}
.case-item-alt .case-alt-image img {
  transition: transform 0.2s ease;
}
.case-item-alt .case-alt-image:hover img {
  transform: scale(1.02);
}
.case-item-alt .case-alt-content {
  padding: 3rem 2rem 5rem;
}
.case-item-alt .case-alt-name {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
  margin: 0 0 1.5rem;
}
.case-item-alt .case-alt-name span {
  color: #EAF46E;
}
.case-item-alt .case-alt-description {
  line-height: 2.3rem;
}
.case-item-alt .case-alt-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0 0;
}
.case-item-alt .case-alt-stats .case-alt-stat-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .case-item-alt .case-alt-image img {
    aspect-ratio: 80/61;
    object-fit: cover;
  }
  .case-item-alt .case-alt-content {
    padding: 2rem 2rem 3rem;
  }
  .case-item-alt .case-alt-name {
    font-size: 1.6rem;
    line-height: normal;
    margin: 0 0 1rem;
  }
  .case-item-alt .case-alt-description {
    line-height: 2.1rem;
  }
  .case-item-alt .case-alt-stats {
    gap: 1rem;
    margin: 1rem 0 0;
  }
  .case-item-alt .case-alt-stats .case-alt-stat-text {
    font-size: 1.2rem;
    gap: 0.8rem;
  }
  .case-item-alt .case-alt-stats .case-alt-stat-text svg, .case-item-alt .case-alt-stats .case-alt-stat-text img {
    width: 1.7rem;
    height: 1.7rem;
  }
}
.area-item {
  border-radius: 0.5rem;
  border: 0.1rem solid #EAEDEE;
  background-color: #FDFBF8;
  padding: 0.5rem 0.5rem 4.3rem;
  transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.area-item:hover {
  border-color: #798c93;
  background-color: #fbf8f2;
}
.area-item a {
  color: #000;
}
.area-item .area-content {
  padding: 3rem 1.5rem 0;
}
.area-item .area-item-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.overview-item {
  padding: 3rem;
  border-radius: 1rem;
  border: 1px solid #FAFAFA;
  background: #F6F7F8;
  display: flex;
  gap: 3.5rem;
}
.overview-item .overview-item-image {
  min-width: 26rem;
  max-width: 26rem;
  border-radius: 0.45rem;
  background: #F6F7F8;
  padding: 0.7rem 1.2rem;
}
.overview-item .overview-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overview-item .overview-item-heading {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.5rem;
  margin: 0 0 0.95rem;
}
.overview-item .overview-item-tags {
  margin: 2.1rem 0 0;
  display: flex;
  gap: 1rem;
}
.overview-item .overview-item-tag {
  border-radius: 1.2rem;
  background: #E8EAED;
  font-size: 1.3rem;
  line-height: 2.3rem;
  padding: 0 1.5rem;
}

@media (max-width: 768px) {
  .overview-item {
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    border: none;
    flex-wrap: wrap;
    gap: 1.7em;
  }
  .overview-item .overview-item-image {
    min-width: 26rem;
    max-width: 100%;
    padding: 0.7rem 1.2rem;
    width: 100%;
  }
  .overview-item .overview-item-image img {
    max-width: 26rem;
    margin: 0 auto;
  }
  .overview-item .overview-content {
    max-width: 100%;
  }
  .overview-item .overview-item-heading {
    line-height: normal;
    margin: 0 0 1rem;
  }
  .overview-item .overview-item-tags {
    margin: 2rem 0 0;
    gap: 0.8rem;
  }
  .overview-item .overview-item-tag {
    border-radius: 1rem;
    font-size: 1rem;
    line-height: 1.8rem;
    padding: 0 1.2rem;
  }
}
.site-footer {
  background-color: #183334;
  color: #fff;
  padding: 11.5rem 0 6.5rem;
}
.site-footer .heading {
  margin: 0 0 9.2rem;
}
.site-footer .heading span {
  color: #EAF46E;
}
.site-footer .footer-logo {
  max-width: 26.3rem;
}
.site-footer .footer-logo img {
  width: 100%;
}
.site-footer .footer-logo-mobile {
  display: none;
}
.site-footer .footer-logo-mobile img {
  width: 100%;
}
.site-footer .footer-buttons-logo {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.site-footer .buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.site-footer .footer-cols {
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(5, 1fr);
  margin: 6.2rem 0 0;
}
.site-footer .footer-col {
  grid-column: span 1;
}
.site-footer .footer-col.wide {
  grid-column: span 2;
}
.site-footer .footer-col.wide .footer-col-menu {
  grid-template-columns: 1fr 1fr;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-1 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-1 a:nth-child(-n+1) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-1 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-1 a:nth-child(2) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-2 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-2 a:nth-child(-n+2) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-2 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-2 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-2 a:nth-child(3) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-2 a:nth-child(4) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-3 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-3 a:nth-child(-n+3) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-3 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-3 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-3 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-3 a:nth-child(4) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-3 a:nth-child(5) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-3 a:nth-child(6) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-4 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-4 a:nth-child(-n+4) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-4 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-4 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-4 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-4 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-4 a:nth-child(5) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-4 a:nth-child(6) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-4 a:nth-child(7) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-4 a:nth-child(8) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-5 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-5 a:nth-child(-n+5) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-5 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-5 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-5 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-5 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-5 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-5 a:nth-child(6) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-5 a:nth-child(7) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-5 a:nth-child(8) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-5 a:nth-child(9) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-5 a:nth-child(10) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-6 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-6 a:nth-child(-n+6) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-6 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-6 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-6 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-6 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-6 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-6 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-6 a:nth-child(7) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-6 a:nth-child(8) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-6 a:nth-child(9) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-6 a:nth-child(10) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-6 a:nth-child(11) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-6 a:nth-child(12) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(-n+7) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(7) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(8) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(9) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(10) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(11) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(12) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(13) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-7 a:nth-child(14) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(-n+8) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(7) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(8) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(9) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(10) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(11) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(12) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(13) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(14) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(15) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-8 a:nth-child(16) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(-n+9) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(7) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(8) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(9) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(10) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(11) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(12) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(13) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(14) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(15) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(16) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(17) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-9 a:nth-child(18) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(-n+10) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(7) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(8) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(9) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(10) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(11) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(12) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(13) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(14) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(15) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(16) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(17) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(18) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(19) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-10 a:nth-child(20) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(-n+11) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(7) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(8) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(9) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(10) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(11) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(12) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(13) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(14) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(15) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(16) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(17) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(18) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(19) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(20) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(21) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-11 a:nth-child(22) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(-n+12) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(7) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(8) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(9) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(10) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(11) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(12) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(13) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(14) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(15) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(16) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(17) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(18) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(19) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(20) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(21) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(22) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(23) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-12 a:nth-child(24) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(-n+13) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(7) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(8) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(9) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(10) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(11) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(12) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(13) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(14) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(15) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(16) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(17) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(18) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(19) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(20) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(21) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(22) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(23) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(24) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(25) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-13 a:nth-child(26) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(-n+14) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(7) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(8) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(9) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(10) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(11) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(12) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(13) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(14) {
  grid-row: 14;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(15) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(16) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(17) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(18) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(19) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(20) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(21) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(22) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(23) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(24) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(25) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(26) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(27) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-14 a:nth-child(28) {
  grid-row: 14;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(-n+15) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(7) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(8) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(9) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(10) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(11) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(12) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(13) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(14) {
  grid-row: 14;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(15) {
  grid-row: 15;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(16) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(17) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(18) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(19) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(20) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(21) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(22) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(23) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(24) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(25) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(26) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(27) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(28) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(29) {
  grid-row: 14;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-15 a:nth-child(30) {
  grid-row: 15;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(-n+16) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(7) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(8) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(9) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(10) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(11) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(12) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(13) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(14) {
  grid-row: 14;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(15) {
  grid-row: 15;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(16) {
  grid-row: 16;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(17) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(18) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(19) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(20) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(21) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(22) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(23) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(24) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(25) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(26) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(27) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(28) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(29) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(30) {
  grid-row: 14;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(31) {
  grid-row: 15;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-16 a:nth-child(32) {
  grid-row: 16;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(-n+17) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(7) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(8) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(9) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(10) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(11) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(12) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(13) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(14) {
  grid-row: 14;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(15) {
  grid-row: 15;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(16) {
  grid-row: 16;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(17) {
  grid-row: 17;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(18) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(19) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(20) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(21) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(22) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(23) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(24) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(25) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(26) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(27) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(28) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(29) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(30) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(31) {
  grid-row: 14;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(32) {
  grid-row: 15;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(33) {
  grid-row: 16;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-17 a:nth-child(34) {
  grid-row: 17;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(-n+18) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(7) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(8) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(9) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(10) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(11) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(12) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(13) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(14) {
  grid-row: 14;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(15) {
  grid-row: 15;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(16) {
  grid-row: 16;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(17) {
  grid-row: 17;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(18) {
  grid-row: 18;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(19) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(20) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(21) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(22) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(23) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(24) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(25) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(26) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(27) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(28) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(29) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(30) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(31) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(32) {
  grid-row: 14;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(33) {
  grid-row: 15;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(34) {
  grid-row: 16;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(35) {
  grid-row: 17;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-18 a:nth-child(36) {
  grid-row: 18;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(-n+19) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(7) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(8) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(9) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(10) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(11) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(12) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(13) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(14) {
  grid-row: 14;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(15) {
  grid-row: 15;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(16) {
  grid-row: 16;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(17) {
  grid-row: 17;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(18) {
  grid-row: 18;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(19) {
  grid-row: 19;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(20) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(21) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(22) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(23) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(24) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(25) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(26) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(27) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(28) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(29) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(30) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(31) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(32) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(33) {
  grid-row: 14;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(34) {
  grid-row: 15;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(35) {
  grid-row: 16;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(36) {
  grid-row: 17;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(37) {
  grid-row: 18;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-19 a:nth-child(38) {
  grid-row: 19;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a {
  grid-column: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(-n+20) {
  grid-column: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(1) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(2) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(3) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(4) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(5) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(6) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(7) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(8) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(9) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(10) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(11) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(12) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(13) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(14) {
  grid-row: 14;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(15) {
  grid-row: 15;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(16) {
  grid-row: 16;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(17) {
  grid-row: 17;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(18) {
  grid-row: 18;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(19) {
  grid-row: 19;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(20) {
  grid-row: 20;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(21) {
  grid-row: 1;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(22) {
  grid-row: 2;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(23) {
  grid-row: 3;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(24) {
  grid-row: 4;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(25) {
  grid-row: 5;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(26) {
  grid-row: 6;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(27) {
  grid-row: 7;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(28) {
  grid-row: 8;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(29) {
  grid-row: 9;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(30) {
  grid-row: 10;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(31) {
  grid-row: 11;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(32) {
  grid-row: 12;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(33) {
  grid-row: 13;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(34) {
  grid-row: 14;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(35) {
  grid-row: 15;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(36) {
  grid-row: 16;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(37) {
  grid-row: 17;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(38) {
  grid-row: 18;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(39) {
  grid-row: 19;
}
.site-footer .footer-col.wide .footer-col-menu.footer-count-20 a:nth-child(40) {
  grid-row: 20;
}
.site-footer .footer-col-heading {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 3.6rem;
  text-transform: uppercase;
  margin: 0 0 1rem;
}
.site-footer .footer-col-heading svg,
.site-footer .footer-col-heading img {
  display: none;
}
.site-footer .footer-col-menu {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 2.5rem;
}
.site-footer .footer-col-menu a {
  color: #fff;
  font-size: 1.4rem;
}
.site-footer .footer-col-menu a:hover {
  text-decoration: underline;
}
.site-footer .copyright {
  font-size: 1.2rem;
  margin: 4rem 0 0;
  opacity: 0.6;
}

@media (max-width: 1200px) {
  .site-footer .footer-cols {
    grid-template-columns: repeat(3, 1fr);
  }
  .site-footer .footer-cols .footer-col {
    grid-column: span 1;
  }
  .site-footer .footer-cols .footer-col.wide {
    grid-column: span 1;
  }
  .site-footer .footer-cols .footer-col.wide .footer-col-menu {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-cols .footer-col.wide .footer-col-menu a {
    grid-column: unset !important;
    grid-row: unset !important;
  }
}
@media (max-width: 768px) {
  .site-footer {
    padding: 5rem 1rem;
  }
  .site-footer .heading {
    margin: 0 0 2rem;
  }
  .site-footer .footer-logo-mobile {
    display: block;
    max-width: 26.3rem;
    margin: 0 auto 2.8rem;
  }
  .site-footer .footer-buttons-logo {
    display: block;
  }
  .site-footer .buttons {
    gap: 1.2rem;
  }
  .site-footer .footer-logo {
    display: none;
  }
  .site-footer .footer-cols {
    gap: 0;
    grid-template-columns: repeat(1, 1fr);
    margin: 3rem 0 0;
  }
  .site-footer .footer-col {
    border-bottom: 1px solid #fff;
  }
  .site-footer .footer-col-heading {
    font-size: 1.4rem;
    line-height: normal;
    margin: 0 0 2rem;
    padding: 2rem 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .site-footer .footer-col-heading.active svg, .site-footer .footer-col-heading.active img {
    transform: rotate(180deg);
  }
  .site-footer .footer-col-heading:hover {
    cursor: pointer;
  }
  .site-footer .footer-col-heading svg, .site-footer .footer-col-heading img {
    display: block;
  }
  .site-footer .footer-col-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    max-height: 0;
    overflow: hidden;
    transition: 0.2s ease-in-out;
  }
  .site-footer .footer-col-menu a {
    font-size: 1.4rem;
    display: block;
  }
  .site-footer .footer-col-menu a:last-child {
    margin: 0 0 2rem;
  }
  .site-footer .copyright {
    text-align: center;
    font-size: 1.1rem;
    margin: 2rem 0 0;
  }
}
.modal {
  display: none;
  align-items: center;
  padding: 0 1.2rem;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
}
.modal .modal-content {
  background-color: #183334;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.25);
  border-radius: 2rem;
  margin: auto;
  padding: 10.8rem 6rem 9.2rem;
  width: 100%;
  max-width: 94.2rem;
  position: relative;
  color: #fff;
}
.modal .heading {
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin: 0 0 3.6rem;
}
.modal .heading span {
  color: #EAF46E;
}
.modal .usps {
  margin: 3.1rem 0 0;
  display: flex;
  justify-content: center;
  gap: 2.6rem;
}
.modal .usp {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.modal .usp p {
  font-size: 1.8rem;
  font-weight: 500;
}
.modal .form {
  margin: 6.2rem 0 0;
}
.modal .form .col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.3rem;
}
.modal .form .error {
  color: #ff3333;
  font-size: 1.2rem;
}
.modal .form .input-container {
  margin: 0 0 1rem;
}
.modal .form .input-container.error input {
  border-color: #ff3333;
}
.modal .form .input-container input, .modal .form .input-container label, .modal .form .input-container textarea {
  display: block;
  color: #000;
}
.modal .form .input-container label {
  font-size: 1.8rem;
  line-height: 2.3rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #fff;
}
.modal .form .input-container input, .modal .form .input-container textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 0.1rem solid #D5DCDC;
  background: #FBF8F3;
  padding: 1.6rem 1.5rem;
  font-size: 1.8rem;
}
.modal .form .input-container input:focus, .modal .form .input-container textarea:focus {
  outline: none;
  border: 0.1rem solid #687d7d;
}
.modal .form .input-container textarea {
  min-height: 14rem;
  resize: vertical;
}
.modal .form button {
  margin: 1rem 0 0;
  width: 100%;
  font-size: 1.8rem;
}
.modal .form button:hover {
  color: #fff;
}
.modal .form button:hover svg {
  fill: #fff;
}
.modal .form button:hover svg path {
  fill: #fff;
}
.modal .rating {
  margin: 3.7rem 0 0;
  display: flex;
  gap: 1.3rem;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.modal .rating .stars {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.modal .rating .stars svg {
  width: 2.2rem;
  height: 1.9rem;
}
.modal .rating .rating-value {
  font-weight: 700;
  margin: 0.2rem 0 0;
}
.modal .rating .icon {
  display: flex;
}
.modal .rating .icon svg {
  width: 2.3rem;
  height: 2.3rem;
}
.modal .rating .ratings {
  font-weight: 400;
}
.modal .close {
  color: #fff;
  font-size: 1.5rem;
  line-height: 3.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4rem;
  position: absolute;
  top: 3.5rem;
  right: 3.5rem;
  transition: opacity 0.2s ease-in-out;
}
.modal .close:hover, .modal .close:focus {
  opacity: 0.8;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .modal .modal-content {
    padding: 6.6rem 3.3rem 5rem;
  }
  .modal .heading {
    font-weight: 800;
    margin: 0 0 1.8rem;
  }
  .modal .usps {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1.2rem;
  }
  .modal .usp {
    gap: 1.1rem;
    width: 100%;
  }
  .modal .usp p {
    font-size: 1.3rem;
  }
  .modal .usp svg, .modal .usp img {
    width: 2.1rem;
    height: 2.1rem;
  }
  .modal .form {
    margin: 2.3rem 0 0;
  }
  .modal .form .col-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .modal .form .error {
    font-size: 1.1rem;
  }
  .modal .form .input-container {
    margin: 0;
  }
  .modal .form .input-container label {
    font-size: 1.3rem;
    line-height: 1.7rem;
  }
  .modal .form .input-container input, .modal .form .input-container textarea {
    padding: 1rem 1.5rem;
    font-size: 1.3rem;
  }
  .modal .form .input-container textarea {
    min-height: 9.2rem;
  }
  .modal .form button {
    margin: 2rem 0 0;
    font-size: 1.4rem;
  }
  .modal .rating {
    margin: 2.3rem 0 0;
    gap: 1rem;
    font-size: 1.1rem;
  }
  .modal .rating .stars {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .modal .rating .stars svg {
    width: 1.6rem;
    height: 1.4rem;
  }
  .modal .rating .icon svg {
    width: 1.7rem;
    height: 1.7rem;
  }
  .modal .close {
    font-size: 1rem;
    line-height: 2.3rem;
    gap: 0.9rem;
    top: 2rem;
    right: 2.3rem;
  }
  .modal .close svg {
    width: 1.3rem;
    height: 1.3rem;
  }
}
.submenu-normal {
  position: absolute;
  top: calc(100% + 3.2rem);
  left: 50%;
  transform: translateX(-50%);
  padding: 2.7rem 3.6rem 4.4rem;
  min-width: 39.1rem;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  box-shadow: 0 9px 24px 0 rgba(0, 0, 0, 0.15);
}
.submenu-normal.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.submenu-normal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1.4rem;
  width: 1.4rem;
  background-color: #fff;
  rotate: 45deg;
}
.submenu-normal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.submenu-normal ul a {
  color: #000 !important;
  padding: 0.5rem 0;
  display: block;
  transition: color 0.2s ease-in-out;
}
.submenu-normal ul a:hover {
  color: #2E4F52 !important;
}

.submenu-mega-heading {
  position: absolute;
  top: calc(100% - 0.1rem);
  left: 0;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  padding: 3.5rem 0 0;
  min-height: 36.6rem;
  transition: opacity 0.3s ease-in-out;
}
.submenu-mega-heading .columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18.2rem;
  background-color: #183334;
  padding: 6.6rem 0 7.8rem;
  border-top: 1px solid #fff;
  position: relative;
}
.submenu-mega-heading .columns::before {
  content: "";
  position: absolute;
  top: -0.1rem;
  bottom: 0;
  left: -5000px;
  height: calc(100% + 0.1rem);
  width: 5000px;
  background-color: #183334;
  border-top: 1px solid #fff;
}
.submenu-mega-heading .columns::after {
  content: "";
  position: absolute;
  top: -0.1rem;
  bottom: 0;
  right: -5000px;
  height: calc(100% + 0.1rem);
  width: 5000px;
  background-color: #183334;
  border-top: 1px solid #fff;
}
.submenu-mega-heading .submenu-heading {
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  margin: 0 0 1.6rem;
}
.submenu-mega-heading .menu-links a {
  padding: 0.5rem 0;
  display: block;
  white-space: nowrap;
}
.submenu-mega-heading .menu-links a:hover {
  color: #EAF46E !important;
}

.submenu-mega-icon {
  position: absolute;
  top: calc(100% - 0.1rem);
  left: 0;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  padding: 3.5rem 0 0;
  min-height: 36.6rem;
  transition: opacity 0.3s ease-in-out;
}
.submenu-mega-icon .columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18.2rem;
  background-color: #183334;
  padding: 6.6rem 0 7.8rem;
  border-top: 1px solid #fff;
  position: relative;
}
.submenu-mega-icon .columns::before {
  content: "";
  position: absolute;
  top: -0.1rem;
  bottom: 0;
  left: -5000px;
  height: calc(100% + 0.1rem);
  width: 5000px;
  background-color: #183334;
  border-top: 1px solid #fff;
}
.submenu-mega-icon .columns::after {
  content: "";
  position: absolute;
  top: -0.1rem;
  bottom: 0;
  right: -5000px;
  height: calc(100% + 0.1rem);
  width: 5000px;
  background-color: #183334;
  border-top: 1px solid #fff;
}
.submenu-mega-icon .menu-links a {
  padding: 0.5rem 0;
  display: block;
  white-space: nowrap;
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  align-items: center;
  gap: 1.5rem;
}
.submenu-mega-icon .menu-links a svg {
  margin: 0 auto;
}
.submenu-mega-icon .menu-links a:hover {
  color: #EAF46E !important;
}
.submenu-mega-icon .menu-links a:hover svg {
  fill: #EAF46E !important;
}
.submenu-mega-icon .menu-links a:hover svg path {
  fill: #EAF46E !important;
}

.mega-menu-dropdown {
  position: absolute;
  top: calc(100% - 1.5rem);
  left: 0;
  right: 0;
  background-color: #183334;
  overflow: hidden;
  border-top: none;
  height: 0;
}
.mega-menu-dropdown.is-open {
  height: 37rem;
  border-top: 1px solid #fff;
  box-shadow: 0 9px 24px 0 rgba(0, 0, 0, 0.15);
}

#mobileMenu {
  position: fixed;
  top: 6.9rem;
  bottom: 0;
  right: 0;
  z-index: 9999;
  background-color: #183334;
  padding: 1rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  transform: translateX(100%);
  transition: transform 0.2s ease-in-out;
  width: 100%;
}
#mobileMenu.is-open {
  transform: translateX(0);
}
#mobileMenu #menuBack {
  padding: 0;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  display: none;
}
#mobileMenu #menuBack:hover {
  cursor: pointer;
}
#mobileMenu #menuBack.active {
  display: flex;
}
#mobileMenu .mobile-menu {
  padding: 5.4rem 0 0;
}
#mobileMenu .mobile-menu.submenu-open {
  padding: 3.7rem 0 0;
}
#mobileMenu .mobile-menu .menu-item-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.7rem;
  font-weight: 600;
  color: #fff;
  padding: 0 0 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0 0 1.4rem;
}
#mobileMenu .mobile-menu .menu-item-link.hidden {
  display: none;
}
#mobileMenu .mobile-menu button {
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
}
#mobileMenu .mobile-menu .mega-menu {
  position: static;
  opacity: 1;
  pointer-events: all;
  display: none;
  padding: 0;
}
#mobileMenu .mobile-menu .mega-menu.active {
  display: block;
}
#mobileMenu .mobile-menu .mega-menu .columns {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
  border-top: none;
  position: static;
}
#mobileMenu .mobile-menu .mega-menu .columns::after, #mobileMenu .mobile-menu .mega-menu .columns::before {
  content: none;
}
#mobileMenu .mobile-menu .mega-menu a {
  color: #fff;
  font-weight: 600;
}
#mobileMenu .mobile-menu .mega-menu .submenu-heading {
  font-size: 1.5rem;
  color: #EAF46E;
}
#mobileMenu .mobile-menu .submenu-mega-heading .columns {
  gap: 3.6rem;
}
#mobileMenu .mobile-menu .submenu-normal {
  position: static;
  opacity: 1;
  pointer-events: all;
  transform: none;
  background-color: transparent;
  min-width: unset;
  padding: 0;
  box-shadow: none;
  display: none;
}
#mobileMenu .mobile-menu .submenu-normal.active {
  display: block;
}
#mobileMenu .mobile-menu .submenu-normal a {
  color: #fff !important;
  font-weight: 600;
}
#mobileMenu .mobile-menu .submenu-normal::before {
  content: none;
}
#mobileMenu .mobile-menu-contact {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
#mobileMenu .mobile-menu-contact .image {
  max-width: 5.9rem;
}
#mobileMenu .mobile-menu-contact .image img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
#mobileMenu .mobile-menu-contact a {
  font-size: 1.4rem;
  line-height: 2.5rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
#mobileMenu .mobile-menu-contact .info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#mobileMenu .mobile-menu-contact .icon {
  display: flex;
  align-items: center;
}
#mobileMenu .mobile-menu-contact .phone svg, #mobileMenu .mobile-menu-contact .phone img {
  width: 2.1rem;
  height: 2.1rem;
}
#mobileMenu .mobile-menu-contact .email svg, #mobileMenu .mobile-menu-contact .email img {
  width: 2.4rem;
  height: 1.9rem;
}

@media (max-width: 450px) {
  #mobileMenu {
    top: 6.4rem;
  }
  #mobileMenu.is-scrolled {
    top: 5.8rem;
  }
}
.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 {
  background-color: #f5f4f0;
  padding: 14rem 0;
}
.blog-page .blog-hero .heading {
  text-align: center;
  margin: 0 0 4.6rem;
  font-weight: 400;
  font-size: 4rem;
}
.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.blog-page .blog-post-load-more {
  text-align: center;
  margin: 4rem 0 0;
}

@media (max-width: 1200px) {
  .blog-page .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-page {
    padding: 8rem 0;
  }
  .blog-page .blog-hero .heading {
    margin: 0 0 3rem;
    font-size: 3rem;
  }
  .blog-page .blog-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
  .blog-page .blog-post-load-more {
    text-align: center;
    margin: 3rem 0 0;
  }
}
.error-404 .hero-block {
  margin: 0 0 10rem;
}
.error-404 .button-container {
  margin: 7rem 0 0;
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .error-404 .hero-block {
    margin: 0 0 5rem;
  }
  .error-404 .button-container {
    margin: 3rem 0 0;
  }
}