/*!*******************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/postcss-loader/dist/cjs.js!./src/styles/common.scss ***!
  \*******************************************************************************************************************************************************************************************************************/
:root {
  --color-primary: #235ad1;
  --color-text: #000;
  --color-hover: #061e2f;
  --text-color: #000;
  --text-color-secondary: #404040;
  --primary-color-1: #71b219;
  --primary-color-2: #539100;
  --primary-color-3: #2c64eb;
  --primary-color-4: #ebaf09;
  --secondary-color-1: #e1e1e1;
  --secondary-color-3: #404040;
  --secondary-color-4: #f9f9f9;
  --secondary-color-5: #e5f0e3;
  --secondary-color-6: #455a64;
  --linear: #000;
  --color-dark-green: #006034;
  --font-family: "Roboto", sans-serif;
  --second-family: "IBM Plex Sans", sans-serif; }

/*images*/
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  box-sizing: border-box; }

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all .3s; }

input, textarea {
  outline: none; }
  input:focus, textarea:focus {
    outline: none; }
  input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #000;
    -webkit-box-shadow: 0 0 0 1000px transparent inset;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%);
    color: #000; }

img, svg, video {
  max-width: 100%;
  height: auto; }

input[type=button], input[type=submit], input[type=reset], button {
  cursor: pointer; }

picture {
  display: block; }

iframe {
  max-width: 100%; }

input, select, textarea, button {
  font-family: var(--font-family); }

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0; }

textarea:focus-visible {
  outline: 0; }

html {
  -webkit-tap-highlight-color: transparent !important;
  font-size: 16px;
  scroll-behavior: smooth; }
  @media only screen and (min-width: 768px) {
    html {
      font-size: 1.3vw; } }
  @media only screen and (min-width: 1200px) {
    html {
      font-size: 0.833vw; } }

body {
  font-family: var(--font-family);
  font-size: 18px;
  line-height: 167%; }

[class*="__container"],
.container {
  width: 100%;
  max-width: 1210px;
  margin: 0 auto;
  padding: 0 20px; }

a {
  color: var(--color-text); }

.icon {
  fill: currentColor; }

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../../assets/fonts/IBMPlexSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../../assets/fonts/IBMPlexSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "IBM Plex Sans";
  src: url("../../assets/fonts/IBMPlexSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Roboto";
  src: url("../../assets/fonts/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Roboto";
  src: url("../../assets/fonts/Roboto-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }

@font-face {
  font-family: "Roboto";
  src: url("../../assets/fonts/RobotoBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }

@keyframes spinner {
  100% {
    transform: rotate(360deg); } }

.layer-loader {
  position: relative;
  isolation: isolate; }
  .layer-loader:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #ffffff80;
    backdrop-filter: blur(0.0625rem); }
  .layer-loader:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 3.125rem;
    height: 3.125rem;
    margin: auto;
    border-radius: 100%;
    border-right: .1875rem solid #000;
    animation: spinner infinite 1s linear; }

/* TYPOGRAPHY ============================ */
h2, .heading-h2 {
  font-size: 48px;
  font-family: var(--second-family);
  line-height: 110%;
  font-weight: 700; }
  @media only screen and (max-width: 767px) {
    h2, .heading-h2 {
      font-size: 32px;
      line-height: 120%; } }

.content-default > * {
  margin-bottom: 15px; }
  .content-default > *:last-child {
    margin-bottom: 0; }

.content-default ol, .content-default ul {
  padding-left: 30px; }

/* BUTTON ============================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 32px;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #fff;
  border-radius: 50px;
  background: #01522d; }
  .button:hover {
    background: #01391f; }
  .button--white {
    color: #032817;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    background: #edfff7; }
    .button--white:hover {
      background: #d4ffec; }
  .button--yellow {
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.1);
    background: #ff7346; }
    .button--yellow:hover {
      background: #cd461b; }
  .button--small {
    padding: 12px 20px;
    min-height: 48px; }
  .button--wide {
    width: 100%;
    max-width: 411px; }

.button-menu {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 18px;
  border: none;
  background-color: transparent; }
  @media only screen and (max-width: 1199px) {
    .button-menu {
      display: inline-flex; } }
  .button-menu:before, .button-menu:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: 0.3s;
    border-radius: 0.5px; }
  .button-menu:before {
    box-shadow: 0 6px 0 0 #000;
    transform: translateY(-6px); }
  .button-menu:after {
    transform: translateY(6px); }
  .button-menu:hover {
    cursor: pointer; }

body.menu-open {
  overflow: hidden; }
  body.menu-open:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 90;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5); }
  body.menu-open .button-menu:before {
    box-shadow: none;
    transform: translateY(0) rotate(45deg); }
  body.menu-open .button-menu:after {
    transform: translateY(0) rotate(-45deg); }

.button-close {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: none;
  background-color: transparent; }
  @media only screen and (max-width: 1199px) {
    .button-close {
      display: inline-flex; } }
  .button-close:before, .button-close:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: 0.3s;
    border-radius: 0.5px; }
  .button-close:before {
    transform: translateY(0) rotate(45deg); }
  .button-close:after {
    transform: translateY(0) rotate(-45deg); }
  .button-close:hover {
    cursor: pointer; }

/* UI ============================ */
.bg-option {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain; }

.bg-gradient-primary {
  background: linear-gradient(90deg, #ecf7ee 0%, #d6f1db 100%); }

.box-shadow {
  box-shadow: 0 0 23px 0 rgba(0, 0, 0, 0.08); }

.grid-col-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px; }
  @media only screen and (max-width: 767px) {
    .grid-col-2 {
      grid-template-columns: 1fr;
      gap: 16px; } }

.grid-col-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px; }
  @media only screen and (max-width: 767px) {
    .grid-col-3 {
      grid-template-columns: 1fr;
      gap: 16px; } }

.grid-col-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 30px; }
  @media only screen and (max-width: 1199px) {
    .grid-col-4 {
      grid-template-columns: repeat(2, 1fr); } }
  @media only screen and (max-width: 575px) {
    .grid-col-4 {
      grid-template-columns: 1fr; } }

/* LABEL ==================================== */
.icon-label {
  display: flex;
  align-items: center;
  gap: 12px; }
  .icon-label__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    background: #498067;
    border-radius: 50px;
    width: 40px;
    height: 40px;
    color: #fff; }
    .icon-label__icon img, .icon-label__icon svg {
      width: 20px;
      height: 20px;
      object-fit: contain; }
    .icon-label__icon:before {
      content: '';
      display: none;
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      background-image: var(--icon);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain; }
  .icon-label__title {
    font-weight: 600;
    font-size: 22px;
    line-height: 125%; }
  .icon-label--icon-before .icon-label__icon:before {
    display: flex; }
  .icon-label--clear-icon .icon-label__icon {
    background-color: transparent;
    box-shadow: none;
    width: 36px;
    height: 36px; }
    .icon-label--clear-icon .icon-label__icon:before {
      width: 100%;
      height: 100%; }

.label-country {
  display: inline-flex;
  gap: 10px;
  padding: 5px 15px;
  height: 33px;
  font-size: 14px;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #e0e0e0; }
  .label-country img {
    width: 20px;
    height: 13px;
    object-fit: contain; }

.label-quote {
  padding: 7px 20px;
  font-family: var(--second-family);
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  line-height: 152%;
  text-align: center;
  color: #edfff7;
  backdrop-filter: blur(9px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px; }

/* swiper navigation */
.swiper-prev, .swiper-next {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  background-color: #ecf7ee;
  border: none;
  border-radius: 50%;
  transition: .3s; }
  .swiper-prev:before, .swiper-next:before {
    content: '';
    position: absolute;
    display: block;
    width: 7px;
    height: 9px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNyIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgNyA5IiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8cGF0aCBkPSJNNiAxTDIgNC41TDYgOCIgc3Ryb2tlPSIjMDE1MjJEIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8L3N2Zz4K);
    background-position: center;
    background-size: contain;
    transition: .3s; }
  .swiper-prev:hover, .swiper-next:hover {
    background-color: #aed6ae; }

.swiper-next:before {
  transform: rotate(-180deg); }

.swiper-bullet {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center; }
  .swiper-bullet .swiper-pagination-bullet {
    width: 8px;
    height: 5px;
    background: #01522d;
    border-radius: 100px;
    transition: .3s;
    margin: 0 !important;
    opacity: 1 !important; }
    .swiper-bullet .swiper-pagination-bullet.swiper-pagination-bullet-active {
      width: 32px;
      pointer-events: none; }

.language-switch {
  position: relative; }
  .language-switch__current {
    display: flex;
    align-items: center;
    grid-gap: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: .3s;
    text-transform: uppercase; }
    .language-switch__current svg, .language-switch__current img {
      width: 28px;
      height: 28px;
      object-fit: cover;
      border-radius: 50%; }
    .language-switch__current span + svg {
      width: 10px;
      height: 7px; }
    @media (hover: hover) {
      .language-switch__current:hover {
        cursor: pointer; } }
    @media (hover: none) {
      .language-switch__current:active {
        cursor: pointer; } }
    .menu-language .language-switch__current, .language-switch__current:hover {
      background-color: #f3f7f2; }
  .language-switch__list {
    position: absolute;
    top: calc(100% + 21px);
    right: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    list-style: none;
    background: #f5f6f6;
    border-radius: 20px;
    transition: .3s;
    transform: translateY(15px);
    opacity: 0;
    pointer-events: none; }
    .menu-language .language-switch__list {
      transform: translateY(0);
      opacity: 1;
      pointer-events: visible; }
    .language-switch__list:before {
      content: '';
      position: absolute;
      top: -15px;
      right: 24px;
      display: none;
      width: 24px;
      height: 15px;
      background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMTUiIHZpZXdCb3g9IjAgMCAyNCAxNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuNjY1NDcgMi41MzgzMUM5LjU4OCAtMC44MDUyMTMgMTQuNDEyIC0wLjgwNTIxIDE2LjMzNDUgMi41MzgzMkwyMy41IDE1SDAuNUw3LjY2NTQ3IDIuNTM4MzFaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K"); }
    .language-switch__list li {
      display: flex; }
      .language-switch__list li a {
        display: flex;
        align-items: center;
        grid-gap: 5px;
        font-size: 18px;
        text-transform: uppercase;
        font-weight: 600;
        text-decoration: none;
        background-color: transparent;
        transition: .3s; }
        .language-switch__list li a svg, .language-switch__list li a img {
          width: 28px;
          height: 28px;
          flex-shrink: 0;
          object-fit: cover;
          border-radius: 50%; }
        .language-switch__list li a.active, .language-switch__list li a:hover {
          background-color: #f3f7f2;
          opacity: .8; }

.header {
  position: fixed;
  top: 12px;
  left: 0;
  z-index: 99;
  width: 100%;
  transition: .3s; }
  .header.fixed {
    top: 0; }
  .header__container {
    position: relative;
    z-index: 2; }
    @media only screen and (max-width: 1199px) {
      .header__container {
        padding: 0; } }
  .header__display {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 8px 8px 34px;
    border-radius: 50px;
    backdrop-filter: blur(39.6px);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 9px 0 rgba(0, 0, 0, 0.05); }
    @media only screen and (max-width: 1199px) {
      .header__display {
        border-radius: 0;
        padding: 12px 20px; } }
  .header__logo {
    flex-shrink: 0;
    display: flex;
    width: 84px;
    height: 48px; }
    @media only screen and (max-width: 1199px) {
      .header__logo {
        width: 70px;
        height: 40px; } }
    .header__logo img {
      object-fit: contain; }
  .header__nav {
    align-self: normal; }
  .header__right {
    display: flex;
    align-items: center;
    gap: 15px; }

.header-nav {
  display: flex; }
  .header-nav ul {
    display: flex;
    list-style: none;
    gap: 16px 40px; }
    .header-nav ul li {
      display: flex;
      align-items: center; }
      .header-nav ul li a, .header-nav ul li button, .header-nav ul li span {
        font-weight: 600;
        font-size: 18px;
        line-height: 133%;
        background-color: transparent;
        border: none; }
        .header-nav ul li a:hover, .header-nav ul li button:hover, .header-nav ul li span:hover {
          color: #01502b; }
      @media only screen and (max-width: 1199px) {
        .header-nav ul li.nav-submenu {
          display: flex;
          flex-direction: column;
          align-items: flex-start; } }

.mob-nav {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  padding: 84px 20px 20px 20px;
  background-color: #fff;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: .3s; }
  .menu-open .mob-nav {
    transform: translateX(0); }
  .mob-nav .header-nav {
    flex: 1;
    overflow-y: auto; }
    .mob-nav .header-nav ul {
      width: 100%;
      flex-direction: column; }

@media only screen and (max-width: 1199px) {
  .nav-submenu {
    display: flex;
    flex-direction: column;
    align-items: flex-start; } }

.nav-submenu:before {
  content: '';
  display: none;
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  right: 0;
  height: 14px; }

.nav-submenu__header {
  position: relative;
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  background-color: transparent;
  border: none;
  padding-right: 18px; }
  .nav-submenu__header:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 12px;
    height: 8px;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEwIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNSA1TDkgMSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+Cg==);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: .3s; }
    .is-active .nav-submenu__header:after {
      transform: translateY(-50%) rotate(-180deg); }

.nav-submenu__toggle {
  display: grid;
  grid-template-rows: 1fr;
  transition: all 0.3s ease-out;
  background-color: #f5f6f6; }
  @media only screen and (min-width: 1200px) {
    .nav-submenu__toggle {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      right: 0;
      transform: translateY(15px);
      opacity: 0;
      transition: .2s;
      background-color: #fff;
      border-radius: 25px;
      padding: 28px 68px;
      pointer-events: none; } }
  @media only screen and (max-width: 1199px) {
    .nav-submenu__toggle {
      grid-template-rows: 0fr;
      background-color: #fff; } }
  .is-active .nav-submenu__toggle {
    grid-template-rows: 1fr; }

@media only screen and (max-width: 1199px) {
  .nav-submenu__hidden {
    overflow: hidden; } }

.nav-submenu ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px 68px; }
  @media only screen and (max-width: 1199px) {
    .nav-submenu ul {
      margin-top: 15px;
      grid-template-columns: repeat(2, 1fr); } }
  @media only screen and (max-width: 767px) {
    .nav-submenu ul {
      grid-template-columns: 1fr;
      padding-left: 15px;
      min-width: auto; } }
  .nav-submenu ul li span {
    font-weight: normal; }
  .nav-submenu ul li a {
    display: flex;
    align-items: center;
    gap: 13px;
    border-radius: 10px;
    padding: 10px;
    font-weight: normal; }
    @media only screen and (min-width: 1200px) {
      .nav-submenu ul li a {
        white-space: nowrap; } }
    .nav-submenu ul li a:before {
      content: '';
      display: inline-flex;
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      background-image: var(--icon);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center; }
    .nav-submenu ul li a:hover {
      background: #e4eae8; }

.nav-submenu:hover:before {
  display: block; }

.nav-submenu:hover .nav-submenu__toggle {
  transform: translateY(0);
  opacity: 1;
  pointer-events: visible; }

.footer {
  padding-bottom: 24px; }
  .footer__wrapper {
    display: flex;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr); }
    @media only screen and (max-width: 1199px) {
      .footer__wrapper {
        display: flex;
        flex-direction: column;
        padding-top: 30px; } }
  .footer__col:nth-child(1) {
    grid-area: 1 / 1 / 2 / 2; }
  .footer__col:nth-child(2) {
    grid-area: 1 / 2 / 3 / 4; }
    @media only screen and (max-width: 1199px) {
      .footer__col:nth-child(2) {
        margin-top: 40px; } }
  .footer__col:nth-child(3) {
    display: flex;
    align-items: flex-end;
    grid-area: 2 / 1 / 3 / 2; }
    @media only screen and (max-width: 1199px) {
      .footer__col:nth-child(3) {
        margin-top: 40px; } }
  .footer__logo {
    display: flex;
    width: 100%;
    max-width: 163px;
    height: 93px; }
    .footer__logo img {
      object-fit: contain; }
    @media only screen and (max-width: 767px) {
      .footer__logo {
        max-width: 107px;
        height: 61px;
        margin: 0 auto; } }

.footer-nav {
  display: flex;
  gap: 16px 70px; }
  @media only screen and (max-width: 767px) {
    .footer-nav {
      flex-direction: column;
      gap: 0;
      border-top: 1px solid #e0e0e0; } }

@media only screen and (max-width: 767px) {
  .menu-accordion {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0; } }

.menu-accordion__header {
  position: relative;
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
  padding-right: 18px; }
  .menu-accordion__header:after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 12px;
    height: 8px;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEwIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNSA1TDkgMSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+Cg==);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: .3s;
    visibility: hidden; }
    @media only screen and (max-width: 767px) {
      .menu-accordion__header:after {
        visibility: visible; } }
    .is-active .menu-accordion__header:after {
      transform: translateY(-50%) rotate(-180deg); }

.menu-accordion__toggle {
  display: grid;
  grid-template-rows: 1fr;
  transition: all 0.3s ease-out; }
  @media only screen and (max-width: 767px) {
    .menu-accordion__toggle {
      grid-template-rows: 0fr; } }
  .is-active .menu-accordion__toggle {
    grid-template-rows: 1fr; }

@media only screen and (max-width: 767px) {
  .menu-accordion__hidden {
    overflow: hidden; } }

.footer-menu {
  margin-top: 20px; }
  .footer-menu ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none; }
    @media only screen and (max-width: 767px) {
      .footer-menu ul {
        padding-left: 16px; } }
    .footer-menu ul li a {
      white-space: nowrap;
      color: #000; }
      .footer-menu ul li a:hover {
        color: #01502b; }
    .footer-menu ul.grid-col-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px 70px; }
      @media only screen and (max-width: 767px) {
        .footer-menu ul.grid-col-2 {
          display: flex;
          flex-direction: column;
          gap: 10px; } }


/*# sourceMappingURL=common.css.map*/