:root {
  --primary: #064e3b;
  --transparent: #fff0;
  --white: white;
  --bg-color: #e9f7f2;
  --light-green: #064e3b40;
  --black: #000;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--primary);
  font-family: Inter, sans-serif;
  font-size: 17px;
  line-height: 26px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 700;
  line-height: 55px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

p {
  margin-top: 10px;
  margin-bottom: 20px;
}

a {
  color: var(--primary);
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 30px;
  padding-left: 20px;
}

.container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.container.flex {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.container.w992 {
  max-width: 992px;
}

.logo {
  z-index: 1000;
  order: -1;
  width: 17vw;
  max-width: 300px;
  position: relative;
}

.header {
  z-index: 1000;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  position: absolute;
  inset: 0% 0% auto;
}

.nav {
  z-index: 10;
  order: 1;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  position: relative;
}

.nav-link {
  background-color: var(--transparent);
  color: #064e3b;
  border-radius: 10px;
  order: 1;
  justify-content: flex-start;
  align-items: center;
  padding-left: 12px;
  padding-right: 12px;
  line-height: 50px;
  text-decoration: none;
  display: flex;
}

.nav-link:hover {
  background-color: var(--white);
}

.nav-icon {
  border-radius: 50px;
  margin-right: 2px;
  line-height: 0;
}

.section {
  color: #064e3b;
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  overflow: clip;
}

.section.hero {
  background-color: var(--bg-color);
  padding-top: 14rem;
  padding-bottom: 8rem;
}

.section.green {
  background-color: var(--bg-color);
}

.section.page-hero {
  background-color: var(--bg-color);
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 3rem;
}

.subheading {
  letter-spacing: 0;
  color: color-mix(in srgb, currentColor 70%, transparent);
  text-wrap: balance;
  max-width: 1000px;
  margin-bottom: 1.25rem;
  font-size: 1.13rem;
  line-height: 1.6em;
}

.heading_h1 {
  color: #064e3b;
  letter-spacing: -.01em;
  text-wrap: balance;
  margin-bottom: .3em;
  font-size: 5.2rem;
  line-height: 1.04em;
}

.button {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  box-shadow: none;
  color: var(--white);
  cursor: pointer;
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 1em 1.4em;
  line-height: 22px;
  text-decoration: none;
  transition: border-color .2s, color .2s, background-color .2s cubic-bezier(.165, .84, .44, 1), box-shadow .2s;
  display: inline-flex;
}

.button:hover {
  background-color: var(--transparent);
  color: var(--primary);
  border-color: #064e3b40;
}

.button:active {
  box-shadow: none;
  background-color: #34d399;
}

.button:focus {
  outline-color: var(--primary);
  outline-offset: 2px;
  outline-width: 2px;
  outline-style: solid;
}

.button.light {
  background-color: var(--transparent);
  color: var(--primary);
  border-color: #064e3b40;
}

.button.light:hover {
  background-color: var(--primary);
  color: var(--white);
}

.button-group {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.button-group.desktop {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
}

.button-group.mobile {
  display: none;
}

.flex_horizontal {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  display: flex;
}

.flex_horizontal.is-y-center.height_100percent {
  text-align: right;
  flex-flow: column;
  justify-content: center;
}

.grid_2-col {
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

.header-2 {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.accordion_icon {
  order: 1;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  position: relative;
}

.area-header-text {
  letter-spacing: 0;
  color: color-mix(in srgb, currentColor 70%, transparent);
  text-wrap: balance;
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 1.13rem;
  line-height: 1.6em;
}

.padding_xsmall {
  padding: 1rem;
}

.padding_xsmall.padding-horizontal_none {
  padding-left: 25px;
}

.accordion {
  background-color: color-mix(in srgb, currentColor 5%, transparent);
  border-radius: .25rem;
  width: 100%;
  margin-bottom: .5rem;
}

.accordion:hover {
  background-color: color-mix(in srgb, currentColor 8%, transparent);
}

.accordion.is-transparent {
  z-index: 0;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: color-mix(in srgb, currentColor 40%, transparent);
  background-color: #0000;
  border-radius: 0;
  margin-bottom: 0;
}

.accordion_content {
  background-color: #0000;
  padding: 0;
  position: static;
  overflow: hidden;
}

.accordion_content.w--open {
  position: relative;
}

.faq-title {
  color: #064e3b;
  background-color: #0000;
  align-items: center;
  padding: 1.5rem 25px;
  font-size: 1.13rem;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
}

.faq-title:hover, .faq-title:focus-visible, .faq-title[data-wf-focus-visible] {
  background-color: var(--bg-color);
  text-decoration: underline;
}

.faq-title.w--open {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.flex_vertical {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  display: flex;
}

.paragraph_large {
  letter-spacing: 0;
  margin-bottom: .7em;
  font-size: 1.13rem;
  line-height: 1.6em;
}

.area-header {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 3rem;
  display: flex;
}

.area-header.is-align-center {
  text-align: center;
  align-items: center;
  display: flex;
}

.section-faq {
  padding-top: 70px;
  padding-bottom: 70px;
}

.stroke {
  background-color: var(--white);
  opacity: .4;
  width: 100%;
  height: 400px;
  position: absolute;
  inset: 0% -25% auto auto;
  transform: skew(13deg, -37deg);
}

.stroke.bottom {
  opacity: .2;
  transform: skew(13deg, 37deg);
}

.stroke-right {
  background-color: var(--primary);
  opacity: .05;
  width: 100%;
  height: 400px;
  position: absolute;
  inset: 0% -45% auto auto;
  transform: skew(13deg, -37deg);
}

.stroke-right.bottom {
  opacity: .03;
  transform: skew(13deg, 37deg);
}

.footer {
  background-color: var(--bg-color);
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.footer-logo {
  width: 200px;
  margin-bottom: 30px;
}

.footer-title {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 17px;
}

.footer-link {
  color: var(--primary);
  margin-top: 5px;
  margin-bottom: 0;
  text-decoration: none;
  display: inline-block;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-columns {
  text-align: left;
  border-top: 1px solid #064e3b40;
  border-bottom: 1px solid #064e3b40;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 17px;
}

.footer-p {
  margin-top: 0;
}

.menu-close {
  width: 50px;
  display: none;
}

.menu-button-top {
  background-color: var(--primary);
  width: 24px;
  height: 2px;
}

.sub-wrapper {
  z-index: 10;
  background-color: var(--bg-color);
  width: 100%;
  height: 100%;
  padding: 40px;
  position: absolute;
  top: 0;
  bottom: 0%;
  right: -100%;
}

.mob-nav-wrapper {
  background-color: var(--bg-color);
  flex-flow: column;
  max-width: 568px;
  padding: 100px 30px 30px;
  display: flex;
  position: fixed;
  inset: 0% auto;
  overflow: hidden;
}

.list-item-next {
  float: right;
  color: #fff;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 44px;
  padding: 12px;
  display: flex;
}

.list-item-next:hover {
  color: #ae1822;
  background-color: #0000;
}

.sublist-item-link {
  justify-content: flex-start;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 44px;
  text-decoration: none;
  position: relative;
}

.list {
  margin-bottom: auto;
  padding-left: 0;
}

.list-item {
  color: #292824;
  text-align: left;
  padding-top: 5px;
  padding-bottom: 5px;
  font-weight: 300;
}

.menu-open {
  width: 50px;
}

.list-item-prev {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 44px;
  margin-left: -30px;
  padding: 12px;
  display: flex;
  transform: rotate(180deg);
}

.list-item-prev:hover {
  color: #ae1822;
  background-color: #0000;
}

.menu-button-center {
  background-color: var(--primary);
  width: 24px;
  height: 2px;
}

.sub-nav-h2 {
  font-size: 30px;
  font-weight: 600;
}

.list-item-link {
  justify-content: flex-start;
  align-items: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 44px;
  text-decoration: none;
  position: relative;
}

.menu-button-icon {
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
  width: 36px;
  height: 24px;
  margin-right: 5px;
  display: flex;
}

.mob-nav {
  z-index: 1000;
  justify-content: center;
  display: none;
}

.menu-button {
  z-index: 100;
  background-color: var(--transparent);
  color: var(--primary);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  font-size: 17px;
  line-height: 50px;
  display: flex;
  position: relative;
}

.menu-button:hover {
  background-color: var(--white);
}

.mob-nav-image {
  object-fit: cover;
  border-radius: 20px;
  width: 400px;
  height: 200px;
  margin-bottom: 15px;
}

.menu-button-bottom {
  background-color: var(--primary);
  width: 24px;
  height: 2px;
}

.extra-nav {
  z-index: 10;
  order: 1;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  position: relative;
}

.search-wrapper {
  display: none;
  overflow: hidden;
}

.div-block {
  background-color: var(--primary);
  margin-top: 15px;
}

.search-form {
  background-color: var(--white);
  border: 1px solid #064e3b40;
  border-radius: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  overflow: hidden;
}

.sr-only {
  display: none;
}

.submit-button {
  border-left: 1px solid var(--light-green);
  background-color: var(--white);
  color: var(--primary);
  background-image: url('../images/search_24dp_000000_FILL0_wght200_GRAD0_opsz24.svg');
  background-position: 15px;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  padding-left: 50px;
  padding-right: 25px;
}

.submit-button:hover {
  background-color: var(--bg-color);
}

.search-field {
  color: var(--primary);
  border: 0 solid #000;
  height: 50px;
  margin-bottom: 0;
  padding: 0 25px;
  font-size: 17px;
  line-height: 50px;
}

.search-field::placeholder {
  color: var(--primary);
}

.search-button {
  background-color: var(--transparent);
  color: #064e3b;
  cursor: pointer;
  border-radius: 10px;
  order: 1;
  justify-content: flex-start;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 50px;
  text-decoration: none;
  display: flex;
}

.search-button:hover {
  background-color: var(--white);
}

.faq-wrapper {
  border-top: 1px solid #064e3b40;
}

.faq {
  z-index: 1;
  border-bottom: 1px solid #064e3b40;
  display: block;
}

.accordion-title-text {
  white-space: normal;
  width: 90%;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 21px;
  font-weight: 400;
  line-height: 26px;
}

.news-list {
  border-top: 1px solid #064e3b40;
}

.news-item {
  border-bottom: 1px solid #064e3b40;
  padding: 25px 25px 10px;
  text-decoration: none;
  display: block;
}

.news-item:hover {
  background-color: var(--bg-color);
  text-decoration: underline;
}

.news-date {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 300;
  line-height: 17px;
}

.news-title {
  margin-top: 10px;
  font-weight: 400;
}

.button-wrapper {
  text-align: center;
  padding-top: 50px;
}

.map {
  border: 1px solid #064e3b40;
  height: 70vh;
}

.map-header {
  border-style: solid;
  border-width: 1px 1px 0;
  border-color: var(--light-green);
  background-color: var(--white);
  flex-flow: row;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.dropdown-toggle {
  border-right: 1px solid var(--light-green);
  color: var(--primary);
  min-width: 300px;
  line-height: 20px;
}

.dropdown-toggle:hover, .dropdown-toggle:focus {
  background-color: var(--bg-color);
}

.dropdown {
  flex: 0 auto;
  order: -1;
}

.map-search-wrapper {
  flex: 1;
  margin-bottom: 0;
  position: relative;
}

.map-search {
  display: flex;
}

.map-search-field {
  color: var(--primary);
  background-image: url('../images/search_24dp_000000_FILL0_wght200_GRAD0_opsz24.svg');
  background-position: 10px;
  background-repeat: no-repeat;
  background-size: 30px;
  border: 0 solid #000;
  height: 60px;
  margin-bottom: 0;
  padding: 0 25px 0 50px;
  font-size: 17px;
  line-height: 50px;
}

.map-search-field:focus {
  background-color: var(--bg-color);
}

.map-search-field::placeholder {
  color: var(--primary);
}

.dropdown-list {
  border-style: solid;
  border-width: 1px 1px 1px 0;
  border-color: var(--light-green);
  background-color: var(--white);
}

.dropdown-list.w--open {
  border-right: 1px solid var(--light-green);
  border-bottom: 1px solid var(--light-green);
  background-color: var(--white);
}

.dropdown-link {
  border-bottom: 1px solid var(--light-green);
  color: var(--primary);
}

.dropdown-link:hover, .dropdown-link:focus {
  background-color: var(--bg-color);
  text-decoration: underline;
}

.ingress {
  font-size: 20px;
  line-height: 30px;
}

.tab-wrapper {
  border-bottom: 1px solid var(--light-green);
  margin-top: 20px;
  margin-bottom: 20px;
}

.tab-link-tab-1 {
  background-color: #c8c8c8;
}

.tab-link-tab-1.w--current {
  border-style: solid;
  border-width: 1px 1px 0;
  border-color: var(--light-green);
  background-color: var(--white);
}

.tab-link {
  border-bottom: 2px solid var(--transparent);
  background-color: var(--transparent);
  color: var(--primary);
  margin-bottom: -1px;
}

.tab-link.w--current {
  border-bottom-color: var(--primary);
  background-color: var(--transparent);
  font-weight: 600;
}

.grid-table {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  border: 1px solid var(--light-green);
  background-color: var(--light-green);
  border-radius: 10px;
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr .75fr 1.25fr .75fr 1.5fr 1.5fr;
  margin-bottom: 50px;
  font-size: 15px;
  line-height: 21px;
  overflow: hidden;
}

.grid-column {
  background-color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
  display: flex;
}

.grid-column.th {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 700;
  line-height: 21px;
}

.grid-column.th.light {
  background-color: var(--bg-color);
  color: var(--primary);
}

.news-nav {
  text-align: center;
  margin-top: 40px;
  font-size: 17px;
}

.news-nav-wrapper {
  margin-top: 15px;
  display: inline-block;
}

.news-nav-list {
  justify-content: center;
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
  display: flex;
}

.news-nav-link {
  border: 1px solid #535353;
  min-width: 50px;
  margin-right: -1px;
  padding: 10px;
  line-height: 30px;
  text-decoration: none;
  display: block;
}

.news-nav-link:hover {
  background-color: var(--bg-color);
}

.news-nav-link.prev {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding-left: 30px;
  padding-right: 20px;
}

.news-nav-link.next {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding-left: 20px;
  padding-right: 30px;
}

.hero-grid {
  grid-template-rows: auto;
  place-items: center;
}

.map-search-results {
  z-index: 10;
  background-color: var(--white);
  position: absolute;
  inset: 60px -1px auto;
}

.map-search-list {
  border-style: solid;
  border-width: 1px 1px 0;
  border-color: var(--light-green);
  margin-bottom: 0;
  padding-left: 0;
  list-style-type: none;
}

.map-search-list-link {
  border-bottom: 1px solid var(--light-green);
  color: var(--primary);
  padding: 10px 20px;
  text-decoration: none;
  display: block;
}

.map-search-list-link:hover, .map-search-list-link:focus {
  background-color: var(--bg-color);
  text-decoration: underline;
}

.page-wrapper {
  margin-top: 1px;
}

.uu-link {
  z-index: 1000;
  background-color: var(--primary);
  color: var(--white);
  border-radius: .5em;
  padding: 1em 1.4em;
  line-height: 22px;
  text-decoration: none;
  display: block;
  position: absolute;
  top: -200px;
  left: 20px;
}

.uu-link:focus-visible, .uu-link[data-wf-focus-visible] {
  top: 20px;
}

@media screen and (max-width: 991px) {
  .logo {
    width: 25vw;
  }

  .nav, .nav-link {
    display: none;
  }

  .nav-icon {
    margin-left: 5px;
    margin-right: 0;
  }

  .section.hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .heading_h1 {
    font-size: 3rem;
  }

  .button-group {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .flex_horizontal.is-y-center.height_100percent {
    text-align: center;
  }

  .grid_2-col.tablet-1-col {
    grid-template-columns: 1fr;
  }

  .header-2 {
    text-align: center;
  }

  .sub-wrapper {
    bottom: auto;
  }

  .mob-nav-wrapper {
    z-index: 10;
    max-width: 100%;
    height: 100%;
    display: none;
    left: 0;
    right: 0;
    overflow: hidden;
  }

  .list-item-next {
    padding: 8px;
  }

  .list {
    border-bottom: 1px solid #064e3b40;
  }

  .list-item {
    border-top: 1px solid #064e3b40;
  }

  .list-item.no-border {
    border-top-width: 0;
  }

  .list-item-prev {
    padding: 5px;
    transform: rotate(180deg);
  }

  .sub-nav-h2 {
    color: var(--primary);
  }

  .list-item-link {
    display: inline-flex;
  }

  .mob-nav {
    order: 1;
    display: flex;
  }

  .mob-nav-image {
    width: 100%;
    height: 300px;
  }

  .text-block {
    color: var(--primary);
  }

  .search-button-wrapper {
    display: none;
  }

  .search-form {
    margin-top: 30px;
    margin-bottom: 0;
  }

  .hero-grid {
    text-align: center;
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 36px;
    line-height: 40px;
  }

  .logo {
    width: 30vw;
  }

  .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-icon {
    margin-right: 0;
  }

  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .section.hero, .section.page-hero {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }

  .heading_h1 {
    font-size: 2.6rem;
  }

  .button {
    font-size: 15px;
  }

  .button.light {
    margin-bottom: 5px;
    margin-right: 5px;
  }

  .button-group.desktop {
    display: none;
  }

  .button-group.mobile {
    display: flex;
  }

  .grid_2-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid_2-col.tablet-1-col.gap-xxlarge {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .header-2 {
    margin-bottom: 1rem;
  }

  .area-header {
    margin-bottom: 2rem;
  }

  .footer-columns {
    text-align: center;
  }

  .mob-nav-wrapper {
    display: none;
  }

  .mob-nav {
    display: flex;
  }

  .nav-text {
    display: none;
  }

  .heading {
    font-size: 26px;
    line-height: 30px;
  }

  .map-header {
    flex-flow: column;
  }

  .dropdown-toggle {
    border-right-width: 0;
    min-width: 100%;
  }

  .dropdown {
    width: 100%;
  }

  .map-search-wrapper {
    border-top: 1px solid var(--light-green);
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    width: 45vw;
  }

  .button {
    white-space: nowrap;
  }

  .button-group {
    flex-flow: wrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
  }

  .accordion.is-transparent {
    overflow: hidden;
  }

  .faq-title {
    flex-flow: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: center;
  }

  .mob-nav-wrapper {
    padding: 50px 10px 10px;
  }

  .search-field {
    padding-left: 15px;
    padding-right: 15px;
  }

  .map-search-field {
    padding-left: 45px;
    padding-right: 15px;
  }

  .heading-2 {
    font-size: 36px;
    line-height: 44px;
  }
}

#w-node-feb8ad22-3bcf-dc87-940f-25a70c946f39-0c946f36.w-node-_4deb3812-5e43-c736-65b9-6c238a748fa7-25c8144b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8bbe332a-0371-8212-2119-f5be0c37fa50-0c946f36.w-node-_4deb3812-5e43-c736-65b9-6c238a748fb1-25c8144b {
  align-self: center;
}


