:root {
  --dark: #060406;
  --purple: #b568b4;
  --orange: #ea8627;
  --white: white;
  --yellow: #f5d41a;
  --gray: #afafaf;
}

.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(--dark);
  font-family: PT Sans, sans-serif;
  font-size: 18px;
  line-height: 24px;
}

h1 {
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Mouse Memoirs, sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 64px;
}

h2 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Mouse Memoirs, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Mouse Memoirs, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
}

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

.header {
  background-color: #fdf3ea;
  padding-top: 40px;
  padding-bottom: 60px;
}

.header.is-white {
  background-color: #ea862700;
}

.header.is-book-single {
  height: auto;
  min-height: 100vh;
}

.footer {
  background-color: var(--purple);
  color: var(--purple);
  padding: 40px 20px 20px;
}

.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.section.is-top-padding-40px {
  padding-top: 40px;
}

.section.is-top-padding-0px {
  padding-top: 0;
}

.navbar {
  background-color: #fff0;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-link {
  color: var(--purple);
  text-align: center;
  text-transform: uppercase;
  width: 140px;
  margin-left: 10px;
  margin-right: 10px;
  font-family: PT Sans, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.nav-link.w--current {
  color: var(--orange);
  text-align: center;
}

.brand {
  width: 200px;
  margin-left: 20px;
  margin-right: 20px;
}

.brand.is-mobile, .brand.is-mobile.w--current {
  display: none;
}

.hero {
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
  overflow: hidden;
}

.hero.is-padding-0px {
  padding-top: 0;
}

.hero.is-padding-80px {
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero.is-padding-40px {
  flex-flow: column;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero.is-overlay {
  color: var(--white);
  background-color: #0604064d;
  flex-flow: column;
  height: 500px;
  margin-top: 60px;
  position: relative;
}

.hero.is-homepage {
  flex-flow: column;
  margin-top: 60px;
  position: relative;
}

.section-hero {
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.books-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.book_item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--dark);
  flex-flow: column;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.book_item:hover {
  color: var(--purple);
}

.book_image {
  border-radius: 16px;
}

.book_title {
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
}

.book_title-wrap {
  padding-left: 20px;
  padding-right: 20px;
}

.books_tab {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.books_tab-menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
  display: flex;
}

.books_tab-link {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--dark);
  text-align: center;
  background-color: #ddd0;
  border-radius: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 120px;
  padding: 2px 2px 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  display: flex;
  overflow: hidden;
}

.books_tab-link:hover {
  background-color: #ea86270d;
}

.books_tab-link.w--current {
  border: 3px solid var(--purple);
  opacity: 1;
  background-color: #ea86270d;
  overflow: hidden;
}

.books_tab-img {
  border-radius: 40px;
  width: 65px;
  height: 65px;
  margin-bottom: 5px;
  position: relative;
  overflow: hidden;
}

.book-single_wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.book-single_image-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.book-single_image {
  object-fit: cover;
  border-radius: 20px;
}

.book-single_title-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.button {
  background-color: var(--orange);
  text-align: center;
  border-radius: 60px;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.button.is-secondary {
  background-color: var(--purple);
}

.book-single_title {
  color: var(--orange);
  max-width: 480px;
  font-weight: 400;
}

.book-single_label {
  text-transform: uppercase;
}

.button-group {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-top: 10px;
  display: flex;
}

.books_tab-link-text {
  text-transform: uppercase;
}

.quote_wrap {
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  height: 500px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.quote_bg-image {
  border-radius: 24px;
  width: 100%;
  position: absolute;
}

.quote_content {
  z-index: 20;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 600px;
  height: 250px;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  position: relative;
}

.quote_title {
  font-size: 24px;
  font-weight: 600;
}

.content-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 80px;
  display: grid;
}

.content-grid.is-last {
  margin-bottom: 0;
}

.content-grid.is-3column {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
}

.content-grid_title-wrap {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.content-slider {
  border-radius: 20px;
  height: 500px;
  overflow: hidden;
}

.content-slider.is-hidden {
  display: none;
}

.content-slider_slide-inner {
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.footer-content {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  color: var(--white);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.vertical-image_card {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.vertical-image_card-image {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 240px;
  margin-bottom: 10px;
}

.vertical-image_card-title {
  color: var(--purple);
  font-size: 18px;
  font-weight: 600;
}

.vertical-image_card-list {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.vertical-image_card-list-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 4px;
  padding-top: 2px;
  padding-bottom: 2px;
  display: flex;
}

.fac-accordion-icon {
  position: static;
}

.content_wrap {
  flex-flow: column;
  display: flex;
}

.section-title {
  color: var(--purple);
  margin-bottom: 16px;
}

.faq_wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.faq-accordion-toggle {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  white-space: pre-wrap;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 20px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.faq-accordion-content {
  background-color: #fff;
  display: flex;
  position: static;
}

.faq-accordion {
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
}

.faq-accordion-text_wrap {
  padding-bottom: 20px;
  padding-left: 16px;
  padding-right: 16px;
}

.faq-accordion-question {
  font-size: 18px;
  font-weight: 600;
}

.section-hero-text {
  font-size: 18px;
  line-height: 26px;
}

.section-hero-text.is-max-600px {
  max-width: 600px;
}

.section-hero_title {
  color: var(--purple);
}

.hero_image {
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 24px;
  width: 100%;
  max-height: 500px;
}

.hero_image.is-bg-absolute {
  z-index: 10;
  position: absolute;
}

.content_rich-text {
  font-size: 18px;
  line-height: 28px;
}

.content_rich-text.is-width-900px {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.content-grid_title {
  color: var(--purple);
  margin-bottom: 20px;
}

.content-grid_text {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 28px;
}

.vertical-image_card-list-mark {
  width: 20px;
  height: 20px;
}

.vertical-image_card-content {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-left: 20px;
  display: flex;
}

.content-grid_image-wrap {
  justify-content: center;
  align-items: center;
  height: 500px;
  display: flex;
}

.content-grid_image {
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  height: 500px;
}

.gender_tab {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.gender_tab-menu {
  z-index: 99;
  border-radius: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 10px;
  left: 10px;
}

.gender_tab-link {
  border-width: 2px;
  border-color: var(--white);
  color: var(--purple);
  text-align: center;
  text-transform: uppercase;
  background-color: #ddd0;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 60px;
  font-weight: 600;
  display: flex;
}

.gender_tab-link.w--current {
  border: 2px solid var(--purple);
  background-color: var(--purple);
  color: var(--white);
}

.books_tab-gender {
  background-color: var(--purple);
  color: var(--white);
  padding: 3px 10px;
  position: absolute;
}

.books_tab-top-bar {
  z-index: 999;
  color: var(--purple);
  text-transform: uppercase;
  background-color: #b568b433;
  border-radius: 12px;
  margin-top: -10px;
  padding: 4px 10px;
  font-weight: 700;
}

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

.names_grid-title-wrap {
  text-align: center;
  padding: 10px;
}

.names_grid-title {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
}

.names_grid-letter-wrap {
  text-align: center;
  background-color: #b568b41a;
  padding: 10px;
}

.names_grid-letter {
  color: var(--purple);
  font-family: Mouse Memoirs, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
}

.names_grid-name-wrap {
  color: var(--orange);
  text-align: center;
  background-color: #ea86270d;
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.names_grid-name-wrap:hover {
  background-color: #ea86271a;
}

.names_grid-name-wrap.not-added {
  opacity: .5;
}

.names_grid-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.hero_description {
  text-align: center;
  max-width: 500px;
}

.hero_description.is-orange {
  color: var(--orange);
}

.large-text {
  font-size: 24px;
  line-height: 32px;
}

.navigation {
  justify-content: center;
  align-items: center;
  display: flex;
}

.menu_social-icon {
  display: none;
}

.hero_title-wrap {
  z-index: 20;
  background-color: #fffc;
  border-radius: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  font-weight: 700;
  display: flex;
  position: absolute;
  bottom: 40px;
}

.hero_overlay {
  z-index: 10;
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.footer-row {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.footer-column {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-column.is-grow {
  flex: 1;
}

.footer-column_title {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
}

.footer-link {
  color: var(--white);
  font-size: 16px;
  text-decoration: none;
}

.footer-link.is-uppercase {
  text-transform: uppercase;
}

.footer-link_label {
  background-color: var(--white);
  color: var(--orange);
  border-radius: 4px;
  margin-left: 2px;
  padding: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  display: inline-block;
}

.footer-logo {
  width: 200px;
}

.footer-menu {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-line {
  background-color: #0000000d;
  width: 800px;
  height: 2px;
}

.hero-slider {
  background-color: #ddd0;
  height: 500px;
}

.hero-slider_arrow {
  display: none;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

._404-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  display: flex;
}

._404-image {
  border-radius: 200px;
  width: 300px;
  height: 300px;
}

.hero_title {
  color: var(--purple);
}

.hero-slide_nav {
  display: none;
}

@media screen and (max-width: 991px) {
  .header {
    padding-bottom: 40px;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .nav-link {
    font-size: 20px;
  }

  .brand {
    width: 160px;
  }

  .brand.w--current {
    width: 150px;
  }

  .hero.is-padding-40px {
    margin-bottom: 0;
  }

  .books-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .books_tab-menu {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .books_tab-link {
    width: 80px;
    height: 100px;
  }

  .books_tab-img {
    width: 50px;
    height: 50px;
  }

  .book-single_wrap {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    place-items: center;
  }

  .book-single_title {
    font-size: 36px;
    line-height: 42px;
  }

  .book-single_description {
    font-size: 16px;
  }

  .content-grid {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 48px;
    line-height: 56px;
  }

  .content-grid_image {
    height: 400px;
  }

  .footer-line {
    width: 600px;
  }

  .hero-slider {
    height: 400px;
  }

  .mask {
    border-radius: 24px;
  }
}

@media screen and (max-width: 767px) {
  .nav-link {
    min-width: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 10px;
    font-size: 16px;
  }

  .brand {
    width: 140px;
  }

  .brand.w--current {
    width: 100px;
    min-width: 100px;
    padding-left: 0;
  }

  .hero.is-padding-80px {
    margin-bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .section-hero {
    margin-bottom: 20px;
    font-size: 44px;
  }

  .books_tab {
    max-width: 100%;
  }

  .books_tab-menu {
    justify-content: flex-start;
    align-items: center;
    overflow: auto;
  }

  .books_tab-link {
    min-width: 80px;
  }

  .book-single_wrap {
    grid-template-columns: 1fr;
  }

  .quote_content {
    padding: 20px;
  }

  .content-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .content-grid.is-3column {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 32px;
    line-height: 40px;
  }

  .hero_image {
    min-height: 400px;
  }

  .content-grid_image-wrap {
    height: 400px;
  }

  .names_grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-row {
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .footer-column {
    justify-content: flex-start;
    align-items: center;
  }

  .footer-line {
    width: 400px;
  }
}

@media screen and (max-width: 479px) {
  .header, .header.is-white {
    padding-top: 20px;
  }

  .container.is-nav {
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-menu {
    background-color: #fff8f1;
  }

  .nav-link {
    text-align: center;
    width: 100%;
  }

  .brand {
    display: none;
  }

  .brand.w--current {
    width: 60px;
    min-width: 60px;
    display: none;
  }

  .brand.is-mobile {
    width: 120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    display: block;
  }

  .brand.is-mobile.w--current {
    margin-left: 0;
    margin-right: 0;
    display: block;
  }

  .hero.is-padding-40px {
    padding-bottom: 0;
  }

  .section-hero {
    margin-bottom: 20px;
  }

  .books-grid {
    grid-template-columns: 1fr;
  }

  .books_tab-menu {
    padding-left: 0;
    padding-right: 0;
  }

  .button {
    width: 100%;
  }

  .button-group {
    flex-flow: column;
    width: 100%;
  }

  .quote_wrap, .quote_bg-image {
    height: 400px;
  }

  .footer-content {
    margin-left: -20px;
    margin-right: -20px;
  }

  .section-title {
    font-size: 32px;
    line-height: 40px;
  }

  .section-hero_title {
    font-size: 28px;
  }

  .hero_image {
    height: 300px;
  }

  .hero_image.is-bg-absolute {
    height: 400px;
  }

  .content-grid_title {
    font-size: 30px;
  }

  .content-grid_text {
    font-size: 16px;
    line-height: 24px;
  }

  .content-grid_image-wrap, .content-grid_image {
    height: 300px;
  }

  .names_grid {
    grid-template-columns: 1fr;
  }

  .names_grid-title {
    font-size: 18px;
  }

  .names_grid-letter {
    font-size: 30px;
    line-height: 30px;
  }

  .hero_description {
    font-size: 16px;
  }

  .large-text {
    font-size: 18px;
    line-height: 24px;
  }

  .hamburger-menu {
    color: var(--purple);
    background-color: #fdf3ea00;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 10px;
    font-size: 30px;
    display: flex;
  }

  .hamburger-menu.w--open {
    color: var(--purple);
    background-color: #fdf3ea;
  }

  .navigation {
    justify-content: space-between;
    display: flex;
  }

  .menu_social-icon {
    order: -9999;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    display: flex;
  }

  .body {
    font-size: 16px;
  }

  .hero_title-wrap {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading {
    font-size: 32px;
  }

  .footer-column {
    width: 100%;
  }

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

  .footer-menu {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .footer-line {
    width: 300px;
  }

  ._404-image {
    width: 200px;
    height: 200px;
  }
}

#w-node-_159ab9dc-32fb-7262-67a3-4456922f9ca1-c8da8586, #w-node-_899e0bfc-4a9f-c96f-f727-6844ff45605d-c8da8586, #w-node-_0921659d-a196-e2c5-e7d7-24ad81c8eea2-c8da8586, #w-node-ec1ee33b-804f-bce4-1387-571260adc63f-c8da8586, #w-node-_5c692e80-1075-33a9-18d7-852115080d2e-c8da8586, #w-node-d10d6a4e-7e60-f83d-d959-3e8e230fcbb8-c8da8586, #w-node-_917a68a8-0693-d482-5297-8e478a7ef5ab-c8da8586, #w-node-_6d2bfd16-bc0a-b1ae-35af-a3d04c72d228-c8da8586, #w-node-f3f567f3-76c8-2dfb-7776-7bd6747e56a3-c8da8586, #w-node-_9d3a0dd6-53a4-df13-b676-2a3acdcecead-c8da8586, #w-node-_05212f56-7243-fc03-dd2b-000173ba8551-c8da8586, #w-node-_0a420aa7-a75e-bf99-30d1-c374f8b13611-c8da8586, #w-node-_587b08e8-f225-c69a-5d7d-024a4484f951-c8da8586, #w-node-_3c57f363-11cc-fee3-2d20-8cb54d27337e-c8da8586, #w-node-_35ac59cc-3ab3-9672-bdb6-dece55731c09-c8da8586, #w-node-_7a82e96a-2f1f-5288-764a-7d7d34c92924-c8da8586, #w-node-baa65b13-200b-0ef1-5d98-dfe28645e6e9-c8da8586, #w-node-_2005d063-2e0a-f673-c834-b71f241a7376-c8da8586, #w-node-_862294f1-fd87-23cf-425d-2a2cb40cb053-c8da8586, #w-node-_4bc670ba-c343-d1ba-da26-d4a796db64fe-c8da8586, #w-node-_3127f4b2-cc67-df15-441d-d4973a14759d-c8da8586, #w-node-_4c1bb31a-6aa7-fb76-0758-0f09893a803b-c8da8586, #w-node-eadbe431-5a4b-4671-1197-ad011b1bbe1f-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3431-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3434-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d344c-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d345b-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3470-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d347c-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3488-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d348e-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3497-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34a3-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34af-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34c4-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34ca-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34d6-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34e2-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34ee-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34f7-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3500-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d350c-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3518-c8da8586, #w-node-_21913ad9-b456-dead-52b8-50675f9b8960-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3524-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d352d-c8da8586 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

@media screen and (max-width: 767px) {
  #w-node-d7c5ff06-f34d-5ac3-624d-4e6d96ad7caf-480bdd4d {
    order: -9999;
  }

  #w-node-_159ab9dc-32fb-7262-67a3-4456922f9ca1-c8da8586, #w-node-_899e0bfc-4a9f-c96f-f727-6844ff45605d-c8da8586, #w-node-_0921659d-a196-e2c5-e7d7-24ad81c8eea2-c8da8586, #w-node-ec1ee33b-804f-bce4-1387-571260adc63f-c8da8586, #w-node-_5c692e80-1075-33a9-18d7-852115080d2e-c8da8586, #w-node-d10d6a4e-7e60-f83d-d959-3e8e230fcbb8-c8da8586, #w-node-_917a68a8-0693-d482-5297-8e478a7ef5ab-c8da8586, #w-node-_6d2bfd16-bc0a-b1ae-35af-a3d04c72d228-c8da8586, #w-node-f3f567f3-76c8-2dfb-7776-7bd6747e56a3-c8da8586, #w-node-_9d3a0dd6-53a4-df13-b676-2a3acdcecead-c8da8586, #w-node-_05212f56-7243-fc03-dd2b-000173ba8551-c8da8586, #w-node-_0a420aa7-a75e-bf99-30d1-c374f8b13611-c8da8586, #w-node-_587b08e8-f225-c69a-5d7d-024a4484f951-c8da8586, #w-node-_3c57f363-11cc-fee3-2d20-8cb54d27337e-c8da8586, #w-node-_35ac59cc-3ab3-9672-bdb6-dece55731c09-c8da8586, #w-node-_7a82e96a-2f1f-5288-764a-7d7d34c92924-c8da8586, #w-node-baa65b13-200b-0ef1-5d98-dfe28645e6e9-c8da8586, #w-node-_2005d063-2e0a-f673-c834-b71f241a7376-c8da8586, #w-node-_862294f1-fd87-23cf-425d-2a2cb40cb053-c8da8586, #w-node-_4bc670ba-c343-d1ba-da26-d4a796db64fe-c8da8586, #w-node-_3127f4b2-cc67-df15-441d-d4973a14759d-c8da8586, #w-node-_4c1bb31a-6aa7-fb76-0758-0f09893a803b-c8da8586, #w-node-eadbe431-5a4b-4671-1197-ad011b1bbe1f-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3431-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3434-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d344c-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d345b-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3470-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d347c-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3488-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d348e-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3497-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34a3-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34af-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34c4-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34ca-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34d6-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34e2-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34ee-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34f7-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3500-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d350c-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3518-c8da8586, #w-node-_21913ad9-b456-dead-52b8-50675f9b8960-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3524-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d352d-c8da8586 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_159ab9dc-32fb-7262-67a3-4456922f9ca1-c8da8586, #w-node-_899e0bfc-4a9f-c96f-f727-6844ff45605d-c8da8586, #w-node-_0921659d-a196-e2c5-e7d7-24ad81c8eea2-c8da8586, #w-node-ec1ee33b-804f-bce4-1387-571260adc63f-c8da8586, #w-node-_5c692e80-1075-33a9-18d7-852115080d2e-c8da8586, #w-node-d10d6a4e-7e60-f83d-d959-3e8e230fcbb8-c8da8586, #w-node-_917a68a8-0693-d482-5297-8e478a7ef5ab-c8da8586, #w-node-_6d2bfd16-bc0a-b1ae-35af-a3d04c72d228-c8da8586, #w-node-f3f567f3-76c8-2dfb-7776-7bd6747e56a3-c8da8586, #w-node-_9d3a0dd6-53a4-df13-b676-2a3acdcecead-c8da8586, #w-node-_05212f56-7243-fc03-dd2b-000173ba8551-c8da8586, #w-node-_0a420aa7-a75e-bf99-30d1-c374f8b13611-c8da8586, #w-node-_587b08e8-f225-c69a-5d7d-024a4484f951-c8da8586, #w-node-_3c57f363-11cc-fee3-2d20-8cb54d27337e-c8da8586, #w-node-_35ac59cc-3ab3-9672-bdb6-dece55731c09-c8da8586, #w-node-_7a82e96a-2f1f-5288-764a-7d7d34c92924-c8da8586, #w-node-baa65b13-200b-0ef1-5d98-dfe28645e6e9-c8da8586, #w-node-_2005d063-2e0a-f673-c834-b71f241a7376-c8da8586, #w-node-_862294f1-fd87-23cf-425d-2a2cb40cb053-c8da8586, #w-node-_4bc670ba-c343-d1ba-da26-d4a796db64fe-c8da8586, #w-node-_3127f4b2-cc67-df15-441d-d4973a14759d-c8da8586, #w-node-_4c1bb31a-6aa7-fb76-0758-0f09893a803b-c8da8586, #w-node-eadbe431-5a4b-4671-1197-ad011b1bbe1f-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3431-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3434-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d344c-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d345b-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3470-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d347c-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3488-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d348e-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3497-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34a3-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34af-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34c4-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34ca-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34d6-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34e2-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34ee-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d34f7-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3500-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d350c-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3518-c8da8586, #w-node-_21913ad9-b456-dead-52b8-50675f9b8960-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d3524-c8da8586, #w-node-_04f8c6bf-4944-c047-5054-f1621a5d352d-c8da8586 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


