:root {
  --black: black;
  --dark-yellow: #655a00;
  --gold: #fff49f;
  --black-2: #353c42;
  --accent: #81b6be;
  --gray: #ccc;
  --white: white;
  --light-blue: #f4f8ff;
  --light-gray: #dedede;
}

.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-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

body {
  color: #1a1b1f;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 44px;
  font-weight: 400;
  line-height: 62px;
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
}

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

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

p {
  margin-bottom: 10px;
}

a {
  color: #1a1b1f;
  text-decoration: underline;
  transition: opacity .2s;
  display: block;
}

a:hover {
  color: #32343a;
}

a:active {
  color: #43464d;
}

ul {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: disc;
}

li {
  margin-bottom: 10px;
}

img {
  display: block;
}

label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 15px 30px;
  font-size: 20px;
  line-height: 34px;
}

figcaption {
  opacity: 1;
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  line-height: 26px;
}

.section {
  margin: 20px 0;
  padding: 40px 30px;
  display: block;
}

.section.cc-store-home-wrap {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 40px;
  padding-left: 30px;
  padding-right: 30px;
}

.section.faq {
  display: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  transition: all .3s;
}

.subheading-section {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.subheading-section.cc-bigger-white-light {
  border: 0px solid var(--black);
  opacity: 1;
  border-radius: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
}

.button {
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #81b6be;
  border: 2px solid #0000;
  border-radius: 8px;
  align-items: center;
  padding: 8px 15px;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .4s, opacity .4s, color .4s;
  display: inline-flex;
}

.button:hover {
  color: #fff;
  background-color: #709da7;
}

.button:active {
  background-color: #709da7;
}

.button.white-button {
  color: #202020;
  background-color: #fff;
  font-size: 12px;
  line-height: 20px;
}

.button.white-button:hover {
  background-color: #fffc;
}

.button.white-button:active {
  background-color: #ffffffe6;
}

.button.yellow-button {
  float: none;
  border-color: var(--dark-yellow);
  background-color: var(--gold);
  color: var(--black-2);
  text-align: center;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.button.yellow-button:hover {
  background-color: #d4c763;
}

.button.black-button {
  background-color: var(--black-2);
  padding-left: 20px;
  padding-right: 20px;
}

.button.black-button:hover {
  background-color: #1a1e21;
}

.button.outlined-black-button {
  border: 2px solid var(--black-2);
  color: var(--black-2);
  background-color: #0000;
}

.button.outlined-black-button:hover {
  background-color: #dedede;
}

.button.dark-button {
  background-color: var(--black-2);
  display: flex;
}

.button.dark-button:hover {
  background-color: var(--black);
}

.button.light-accent-button {
  color: var(--accent);
  background-color: #e6f0f2;
  display: flex;
}

.button.light-accent-button:hover {
  background-color: #cde2e5;
}

.label {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.label.cc-light {
  opacity: .8;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.label.cc-light.bold-text {
  font-weight: 700;
}

.label.cc-blog-date {
  opacity: .6;
  text-align: center;
  margin-top: 20px;
}

.rich-text {
  width: 70%;
  margin: 20px auto 40px;
}

.rich-text p {
  color: var(--black-2);
  margin-top: 5px;
  margin-bottom: 5px;
}

.rich-text figcaption {
  opacity: .6;
}

.rich-text figure {
  margin-top: 25px;
  padding-bottom: 20px;
}

.heading-jumbo {
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
}

.heading-section {
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
}

.paragraph-small {
  font-size: 14px;
  line-height: 26px;
}

.navigation-brand {
  z-index: 1;
}

.navigation-brand:hover {
  opacity: .8;
}

.navigation-brand:active {
  opacity: .7;
}

.menu {
  z-index: 0;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-left: 20px;
  margin-right: auto;
  display: flex;
  position: relative;
  inset: 0%;
}

.navigation-wrap {
  background-color: #0000;
  border: 0 #000;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  display: flex;
  position: relative;
}

.navigation {
  background-color: #0000;
  background-image: linear-gradient(#fff 30%, #fff0 90%);
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 10px 10px 20px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.navigation-item {
  color: var(--black-2);
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
  transition-property: all;
}

.navigation-item:hover {
  color: var(--accent);
}

.navigation-item:active {
  opacity: .8;
}

.navigation-item.w--current {
  opacity: 1;
  color: var(--accent);
  border-bottom-color: #0000;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 600;
}

.navigation-item.w--current:hover {
  border-bottom-color: var(--accent);
  opacity: .8;
  color: var(--accent);
}

.navigation-item.w--current:active {
  opacity: .7;
  color: var(--accent);
}

.navigation-logo {
  float: none;
  object-fit: contain;
  display: block;
}

.navigation-items {
  grid-column-gap: 10px;
  flex: none;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  display: flex;
}

.cta-text {
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
}

.cta-wrap {
  text-align: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 20px;
  display: flex;
}

.intro-header {
  text-align: left;
  background-color: #0000;
  background-image: none;
  background-size: auto;
  justify-content: center;
  align-items: center;
  max-width: 1140px;
  margin: 20px auto;
  display: flex;
}

.intro-content {
  text-align: center;
  width: 70%;
  max-width: 1140px;
}

.intro-content.cc-homepage {
  flex-flow: column;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.motto-wrap {
  text-align: center;
  width: 80%;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
}

.status-message {
  color: #fff;
  text-align: center;
  background-color: #202020;
  padding: 9px 30px;
  font-size: 14px;
  line-height: 26px;
}

.status-message.cc-error-message {
  background-color: #db4b68;
}

.text-field {
  border: 1px solid #e4e4e4;
  border-radius: 0;
  margin-bottom: 18px;
  padding: 21px 20px;
  font-size: 14px;
  line-height: 26px;
  transition: border-color .4s;
}

.text-field:hover {
  border-color: #e3e6eb;
}

.text-field:active, .text-field:focus {
  border-color: #43464d;
}

.text-field::placeholder {
  color: #32343a66;
}

.detail-header-image {
  border: 1px solid var(--black-2);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: contain;
  border-radius: 10px;
  width: 100%;
  height: 620px;
  margin-bottom: 60px;
  display: block;
}

.detail-header-image.w--current {
  margin-bottom: 60px;
}

.protected-form {
  flex-direction: column;
  display: flex;
}

.protected-wrap {
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 100px;
  display: flex;
}

.protected-heading {
  margin-bottom: 30px;
}

.utility-page-wrap {
  background-color: var(--light-blue);
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding: 30px;
  display: flex;
}

._404-wrap {
  color: var(--black-2);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
}

._404-content-wrap {
  margin-bottom: 20px;
}

.home-content-wrap {
  flex-flow: column;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
}

.home-section-wrap {
  margin-bottom: 30px;
}

.heading-feature {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 38px;
}

.feature-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto 100px;
  display: grid;
}

.feature-grid.cc-about-2 {
  grid-template-columns: 1fr 1fr;
  grid-template-areas: ". .";
}

.intro-text {
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
}

.body {
  color: var(--black-2);
  padding-top: 75px;
  font-family: Lato, sans-serif;
  font-size: 17px;
  line-height: 26px;
}

.head {
  text-align: left;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
}

.feature-paragraph {
  text-align: left;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 24px;
}

.section-dark {
  color: #fff;
  background-color: #363c42;
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 40px 30px;
}

.section-light {
  background-color: var(--light-blue);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 40px 30px;
  display: block;
}

.section-accent {
  color: #fff;
  background-color: #81b6be;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.div-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.div-halo {
  text-align: center;
  border-radius: 15px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 20px 10px;
  padding: 20px;
  transition: all .3s;
  display: block;
  box-shadow: 0 0 10px #0000001a;
}

.div-halo:hover {
  box-shadow: 0 0 10px 1px var(--accent);
}

.number {
  border: 3px solid var(--accent);
  background-color: var(--white);
  color: var(--accent);
  border-radius: 100px;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 20px;
  font-size: 26px;
  font-weight: 600;
  line-height: 46px;
}

.image {
  width: 80px;
  height: 80px;
}

.logo-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.clients-logo {
  object-fit: contain;
  max-width: 100px;
  max-height: 80px;
}

.clients-logo.bw {
  opacity: .65;
  filter: grayscale();
  object-fit: contain;
  padding-top: 10px;
  padding-bottom: 10px;
}

.clients-logo.bw:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.div-block-2 {
  margin-top: 40px;
  margin-left: 40px;
}

.enterprise-column {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.hero-image {
  margin: 40px auto;
  padding: 0%;
}

.text-block-3 {
  letter-spacing: 2px;
  font-weight: 700;
}

.feature-small-heading {
  color: var(--black-2);
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
}

.cards {
  margin-bottom: 40px;
  display: flex;
}

.html-embed {
  flex-direction: row;
  height: 600px;
  margin-top: 0;
  display: block;
}

.html-embed-2 {
  display: none;
}

.footer {
  color: #fff;
  background-color: #81b6be;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 10vw;
  padding-right: 10vw;
  font-size: 14px;
}

.card-grid-container {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 60px;
  margin-bottom: 40px;
  display: grid;
}

.card-container {
  border: 1px solid #0000;
  border-radius: 10px;
  height: 100%;
  padding: 15px 15px 20px;
  transition: all .3s;
}

.card-container:hover {
  border-color: var(--accent);
  background-color: var(--white);
}

.centered-container {
  text-align: center;
  flex: 1;
  display: block;
  overflow: visible;
}

.link-block {
  text-decoration: none;
}

.link-block:hover {
  background-color: #0000;
}

.card-preview {
  object-fit: contain;
  border: 1px #ccc;
  border-radius: 6px;
  width: 100%;
}

.bold-text {
  font-weight: 600;
}

.footer-text-link {
  color: #fff;
  object-fit: contain;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: auto;
  font-weight: 400;
  text-decoration: none;
}

.footer-text-link:hover {
  color: #fff;
}

.footer-text-link.w--current {
  margin-bottom: 10px;
  margin-right: auto;
  font-size: 14px;
  text-decoration: underline;
}

.footer-logo {
  object-fit: contain;
  height: 18px;
}

.footer-copyright {
  flex: 0 auto;
  margin-bottom: 10px;
}

.accordion-wrapper {
  max-width: 800px;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.accordion-item {
  border: 1px none var(--gray);
  box-shadow: 0 0 10px 0 var(--light-gray);
  background-color: #fff;
  border-radius: 10px;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 20px 20px 10px;
}

.accordion-item-trigger {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.accordion-heading {
  cursor: pointer;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 30px;
}

.icon.accordion-icon {
  color: var(--accent);
  cursor: pointer;
  margin-right: 10px;
  font-family: Material Icons, sans-serif;
  font-size: 32px;
  line-height: 30px;
}

.accordion-item-content {
  margin-top: 10px;
  margin-right: 30px;
  overflow: hidden;
}

.cookie-wrapper {
  z-index: 9500;
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.report-icons {
  margin-top: 20px;
  display: flex;
}

.report-icon {
  height: 35px;
  margin-left: 0;
  padding-right: 30px;
}

.popup-close-icon {
  width: 1em;
  height: 1em;
}

.popup-content-wrapper {
  z-index: 1;
  background-color: #fff;
  border-radius: 1.2em;
  width: 90vw;
  max-width: 55em;
  max-height: 90%;
  position: relative;
  overflow: auto;
}

.popup-content-wrapper.video {
  background-color: #0000;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  height: 90vh;
  max-height: 675px;
  display: flex;
  overflow: visible;
}

.popup-close {
  z-index: 2;
  color: #000;
  cursor: pointer;
  background-color: #e9e9e9;
  border-radius: 999em;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  height: 3.5em;
  display: flex;
  position: absolute;
  inset: 1em 1em auto auto;
}

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

.video-teaser-wrapper {
  justify-content: center;
  align-items: center;
  max-width: 25em;
  display: flex;
}

.popup-toggle {
  cursor: pointer;
  text-decoration: none;
}

.popup-background {
  z-index: 0;
  background-color: #000000a6;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.popup-video {
  width: 100%;
  height: 0%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.popup-content {
  margin: 2.5em 3em;
}

.popup-content.has-video {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  overflow: hidden;
}

.popup-wrapper {
  z-index: 1000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.container-3 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.gallery-slide {
  background-color: #0000;
  height: auto;
}

.features-metrics {
  background-color: #363c42;
  border-bottom: 1px solid #e4ebf3;
  padding: 60px 30px;
  position: relative;
}

.features-metrics.section-dark {
  margin-bottom: 0;
  display: none;
}

.features-wrapper {
  justify-content: space-around;
  align-items: center;
  display: flex;
}

.features-block {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.features-title {
  color: var(--black-2);
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
}

.cookie-modal_content-wrap {
  padding: 1.75rem 2rem;
}

.cookie-modal_content-wrap.is-small {
  padding: 1.5rem;
}

.cookie-modal_description {
  margin-top: 20px;
  font-weight: 500;
}

.cookie-modal_closebutton {
  z-index: 5;
  cursor: pointer;
  background-color: #0000;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 1.25rem 1.25rem -2.5rem auto;
  transition: background-color .2s cubic-bezier(.25, .46, .45, .94);
  display: flex;
  position: relative;
}

.cookie-modal_component {
  background-color: #fff;
  border-radius: .5rem;
  flex-direction: column;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: .9375rem;
  line-height: 1.4;
  display: flex;
  position: relative;
  box-shadow: 0 3px 1rem #00000040;
}

.screenreader-only {
  width: 1px;
  height: 1px;
  margin: -1px;
  position: absolute;
  overflow: hidden;
}

.cookie-modal_styles {
  display: none;
}

.cookie-modal_closebutton_line {
  background-color: #515750;
  width: 1rem;
  height: 2px;
  position: absolute;
}

.cookie-modal_closebutton_line.is-right {
  transform: rotate(-45deg);
}

.cookie-modal_closebutton_line.is-left {
  transform: rotate(45deg);
}

.cookie-modal_button_text {
  font-weight: 600;
}

.cookie-modal_button-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #f3f7f2;
  border-radius: 0 0 .25rem .25rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
}

.cookie-modal_button-wrap.is-small {
  background-color: #0000;
  justify-content: flex-start;
  padding: 0 1.5rem 1.5rem;
}

.cookie-modal_button-wrap.is-small:hover {
  color: var(--white);
}

.cookie-modal_button {
  background-color: var(--accent);
  color: #fff;
  text-align: center;
  border-radius: .25rem;
  padding: .875em 1.5em 1rem;
  font-size: .9375rem;
  text-decoration: none;
  transition: color .2s cubic-bezier(.25, .46, .45, .94), background-color .2s cubic-bezier(.25, .46, .45, .94);
}

.cookie-modal_button:hover {
  color: var(--white);
  background-color: #668e97;
}

.ck-cookie-w {
  max-width: 25rem;
  position: fixed;
  inset: auto auto 1.25rem 1.25rem;
}

.dropdown {
  line-height: 20px;
}

.dropdown:hover {
  color: var(--accent);
}

.dropdown-toggle {
  align-items: center;
  padding: 0;
  font-size: 16px;
  font-weight: 700;
  transition: all .2s;
  display: flex;
}

.dropdown-toggle:hover {
  color: var(--accent);
}

.dropdown-list {
  border: 1px solid var(--light-gray);
  background-color: #fff;
  border-radius: 8px;
  margin-top: 0;
  padding: 5px 5px 10px;
  box-shadow: 0 4px 20px #0000001a;
}

.feature-image {
  border-radius: 20px;
}

.paragraph {
  text-align: center;
}

.paragraph.justify {
  text-align: justify;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cookie-header {
  height: 60px;
  position: absolute;
  inset: -25px auto auto;
}

.image-copy {
  width: auto;
  height: 80px;
  margin-top: 10px;
  margin-bottom: 20px;
}

.nav-sub-item {
  color: var(--black-2);
  border-radius: 6px;
  padding-left: 15px;
  padding-right: 30px;
  font-size: 15px;
  transition-property: all;
}

.nav-sub-item:hover {
  background-color: var(--light-blue);
  color: var(--accent);
}

.nav-sub-item.w--current {
  color: var(--accent);
  font-weight: 400;
}

.contact-button {
  background-color: var(--accent);
  background-image: url('../images/send.png');
  background-position: 42%;
  background-repeat: no-repeat;
  background-size: 45% 45%;
  border-radius: 100%;
  width: 60px;
  height: 60px;
  position: fixed;
  inset: auto 20px 20px auto;
  box-shadow: 1px 1px 6px #0003;
}

.grid {
  grid-template-areas: "Area";
}

.badge {
  max-width: 150px;
  margin: 0 20px;
  display: inline-block;
}

.link-block-2 {
  margin: 10px;
}

.link-block-2:hover {
  box-shadow: 0 2px 5px #0003;
}

.div-block-5 {
  justify-content: center;
  display: flex;
}

.section-gray {
  background-color: var(--light-gray);
  margin: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  display: block;
}

.list {
  text-align: left;
  align-self: flex-start;
  margin-top: 0;
  padding-left: 0;
  list-style-type: disc;
}

.check-item {
  background-image: url('../images/check.svg');
  background-position: 0 10px;
  background-repeat: no-repeat;
  margin-bottom: 0;
  padding-left: 20px;
  font-weight: 400;
}

.html-embed-3 {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.dropdown-toggle-arrow {
  color: #999;
  flex: 0 auto;
  order: 1;
  margin-right: 0;
  font-size: 14px;
  position: absolute;
}

.link {
  color: var(--white);
  display: inline-block;
}

.card-price {
  border: 2px solid var(--accent);
  box-shadow: 4px 4px 0 0 var(--accent);
  text-align: center;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 33.33%;
  min-width: 200px;
  margin: 10px 20px 10px 10px;
  padding: 30px 20px;
  transition: all .3s;
  display: flex;
}

.card-price:hover {
  box-shadow: 0 0 10px 1px var(--accent);
}

.image-radius {
  border-radius: 20px;
}

.columns-3 {
  align-items: center;
  display: flex;
}

.heading {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 700;
  line-height: 52px;
}

.language {
  color: var(--white);
  vertical-align: middle;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  inset: 0% 0% auto auto;
}

.language.show-mobile {
  border-top: 1px solid var(--light-gray);
  display: none;
}

.dropdown-header {
  color: var(--black-2);
  padding: 15px 15px 10px;
  font-size: 15px;
  font-weight: 700;
}

.gradient-text {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, #00a99e 35%, #e7a837 65%);
  -webkit-background-clip: text;
  background-clip: text;
}

.flex-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: wrap;
  margin-top: 20px;
  margin-bottom: 20px;
}

.language-item {
  color: var(--black-2);
  text-transform: capitalize;
  margin-left: 0;
  margin-right: 0;
  padding: 15px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  transition-property: all;
}

.language-item:hover {
  border-bottom-color: var(--accent);
  opacity: .9;
  color: var(--accent);
}

.language-item:active {
  opacity: .8;
}

.language-item.w--current {
  opacity: 1;
  color: var(--accent);
  border-bottom-color: #0000;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-weight: 600;
}

.language-item.w--current:hover {
  border-bottom-color: var(--accent);
  opacity: .8;
  color: var(--accent);
}

.language-item.w--current:active {
  opacity: .7;
  color: var(--accent);
}

.link-block-3 {
  color: var(--black-2);
  text-decoration: none;
}

.text-block-13 {
  flex-flow: wrap;
  display: inline-flex;
}

.div-align-right {
  grid-column-gap: 10px;
  align-items: center;
  display: flex;
}

.show-mobile {
  display: none;
}

.collection-list-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  vertical-align: baseline;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.collection-list {
  display: block;
}

.collection-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: inline-block;
}

.category-tag {
  background-color: var(--light-gray);
  border-style: none;
  border-width: 0;
  border-radius: 5px;
  margin-right: 10px;
  padding: 2px 10px;
  font-weight: 400;
}

.link-2 {
  width: 70%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.overlay-ui {
  z-index: 1;
  aspect-ratio: auto;
  border: 2px solid var(--light-gray);
  object-fit: cover;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  margin-top: 0%;
  padding-top: 0%;
  position: absolute;
  inset: 0% auto auto 0%;
  box-shadow: 0 2px 5px #0003;
}

.image-container {
  position: relative;
}

.div-bordered {
  border: 1px solid var(--gray);
  border-radius: 15px;
  margin: 20px 10px;
  padding: 10px 20px 20px;
}

.link-inline {
  display: inline-block;
}

.container-5 {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
}

.testimonial-subheading {
  opacity: .8;
  align-self: stretch;
  align-items: center;
  margin-top: 0;
  font-size: 14px;
  display: flex;
}

.shadow-two {
  box-shadow: 0 4px 24px #96a3b514;
}

.hero-stack {
  background-color: #0000;
  background-image: url('../images/noisy-bg.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 30px;
  margin-left: 20px;
  margin-right: 20px;
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.hero-wrapper-two {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-image-2 {
  width: 100%;
  margin-top: 50px;
}

.hero-image-2.shadow-two {
  margin-bottom: -120px;
}

.div-block-8 {
  z-index: 1;
  margin-left: 20px;
  position: absolute;
  inset: auto 0% 0%;
}

.div-block-9 {
  position: relative;
}

.testimotional-stack {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: left;
  background-color: #fafafa;
  border-radius: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.testimonial-heading {
  border: 1px none var(--black);
  margin-top: auto;
  margin-bottom: auto;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.testimonial-quote {
  color: #58879d;
  background-image: url('../images/quotation.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px #000;
  margin-top: 0;
  margin-bottom: auto;
  padding: 10px 10px 0 25px;
  font-size: 15px;
  font-style: normal;
  line-height: 23px;
}

.avatar {
  text-align: center;
  background-color: #f9da68;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  padding: 10px;
  display: flex;
}

.avatar.avatar-blue {
  background-color: #d1e7f8;
}

.avatar.avatar-yellow {
  background-color: #f7f78f;
}

.avatar.avatar-green {
  background-color: #d5f3d1;
}

.avatar.avatar-red {
  background-color: #f5c9c9;
}

.button-icon {
  color: #fff;
  height: 16px;
  margin-right: 12px;
}

.section-heading-white {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 44px;
}

.gallery-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.gallery-slider-2 {
  border-bottom: 1px #e4ebf3;
  padding: 20px 30px 60px;
  position: relative;
}

.container-7 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-wrapper-3 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.gallery-block-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.gallery-slide-2 {
  background-color: #0000;
  height: auto;
}

.gallery-slide-wrapper {
  max-width: 47%;
  margin-right: 6%;
}

.gallery-slide-image-2 {
  position: relative;
}

.gallery-image {
  border: 1px solid var(--gray);
  width: 100%;
}

.gallery-slider-left-2 {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  left: -50px;
}

.gallery-slider-left-2:focus-visible, .gallery-slider-left-2[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.slider-arrow-embed-3 {
  color: #1a1b1f;
}

.gallery-slider-right-2 {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  right: -50px;
}

.gallery-slider-right-2:focus-visible, .gallery-slider-right-2[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.gallery-slide-nav-2 {
  display: none;
}

.card-image {
  width: 40px;
  margin-bottom: 10px;
}

.container-gradient {
  border: 10px solid var(--gold);
  background-image: linear-gradient(60deg, #ebfdfe, #fefad9);
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 20px;
  transition: all .3s;
}

.testimonial-grid-two {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  margin-bottom: 50px;
  display: grid;
}

.testimonial-card-two {
  border: 1px none var(--gray);
  background-color: var(--light-blue);
  border-radius: 15px;
  flex-direction: column;
  padding: 20px 15px 10px;
  font-size: 15px;
  line-height: 22px;
  display: flex;
}

.testimonial-text-two {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}

.testimonial-info-three {
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  display: flex;
}

.comparison-negative {
  background-image: url('../images/cross.svg');
  background-position: 0 7px;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
}

.comparison-positive {
  background-image: url('../images/check.svg');
  background-position: 0 7px;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  min-height: 28px;
  margin: 10px auto;
  padding-left: 30px;
}

.gallery-slide-image-3 {
  text-decoration: none;
  position: relative;
}

.gallery-image-4 {
  width: 100%;
}

.gallery-text {
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  background-image: linear-gradient(#0000, #0009);
  border-bottom-right-radius: 11px;
  border-bottom-left-radius: 11px;
  margin-bottom: 0;
  padding-top: 100px;
  padding-bottom: 5px;
  padding-left: 15px;
  font-size: 13px;
  font-weight: 700;
  line-height: 32px;
  transition: opacity .3s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.gallery-text:hover {
  opacity: 1;
}

.gallery-slider-left-3 {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  left: -50px;
}

.gallery-slider-left-3:focus-visible, .gallery-slider-left-3[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.slider-arrow-embed-4 {
  color: #1a1b1f;
}

.gallery-slider-right-3 {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  right: -50px;
}

.gallery-slider-right-3:focus-visible, .gallery-slider-right-3[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.gallery-slide-nav-3 {
  display: none;
}

.div-centered {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.bold-text-4 {
  letter-spacing: 1.5px;
  vertical-align: middle;
  font-size: 12px;
  display: inline;
}

.article-title {
  margin-top: 60px;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 700;
  line-height: 36px;
}

.div-conclusion {
  background-color: var(--gold);
  color: var(--dark-yellow);
  margin-top: 60px;
  padding: 30px 20px 20px 30px;
  font-weight: 400;
  line-height: 28px;
}

.pricing-comparison {
  position: relative;
}

.container-9 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.pricing-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.pricing-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding: 46px 24px 36px;
  display: flex;
  position: relative;
  box-shadow: 0 4px 130px #96a3b51f;
}

.pricing-card.featured-pricing {
  z-index: 2;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 130px #96a3b54d;
}

.pricing-title {
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 36px;
  font-weight: 700;
  line-height: 48px;
}

.pricing-subtitle {
  text-align: center;
  min-height: 60px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 20px;
}

.paragraph-regular {
  font-size: 14px;
  line-height: 20px;
}

.paragraph-regular.margin-bottom-20 {
  margin-bottom: 20px;
}

.pricing-divider {
  background-color: #76879d1a;
  align-self: stretch;
  height: 1px;
  margin: 10px -24px 16px;
}

.pricing-feature-list {
  align-self: stretch;
  margin-top: 10px;
}

.pricing-feature {
  background-image: url('../images/check-circle.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
  align-self: stretch;
  margin-top: 16px;
  padding-left: 32px;
  font-size: 14px;
  line-height: 24px;
}

.pricing-tag {
  border: 2px solid var(--dark-yellow);
  background-color: var(--gold);
  color: var(--dark-yellow);
  border-radius: 24px;
  padding: 5px 14px;
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  top: -19px;
  box-shadow: 0 3px 10px #96a3b533;
}

.features-table {
  border-bottom: 1px solid #e4ebf3;
  position: relative;
  overflow: auto;
}

.comparison-table {
  flex-direction: column;
  min-width: 600px;
  display: flex;
}

.comparison-row-main {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
}

.comparison-title {
  text-align: center;
  margin-bottom: 0;
  margin-left: 24px;
  font-size: 20px;
  font-weight: 700;
}

.comparison-row {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid #e4ebf3;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 24px;
  padding-bottom: 24px;
  display: grid;
}

.centered-text {
  text-align: center;
}

.pricing-cta {
  text-align: center;
  min-height: 80px;
}

.subheading-jumbo {
  opacity: .85;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 400;
  line-height: 32px;
}

.pricing-target {
  min-height: 140px;
}

.card-title {
  color: var(--black-2);
  text-align: left;
  margin-top: 15px;
  margin-bottom: 0;
  padding: 0 5px;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
}

.card-description {
  text-align: left;
  margin-top: 5px;
  margin-bottom: 10px;
  padding-left: 5px;
  font-size: 15px;
  line-height: 22px;
}

.card-description.paragraph-small {
  font-size: 14px;
}

.footer-light {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 10px 40px;
  position: relative;
}

.container-11 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper-two {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-brand.w--current {
  margin-bottom: 10px;
}

.footer-block-two {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 160px;
  display: flex;
}

.footer-title {
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 20px;
}

.footer-link-two {
  opacity: .7;
  color: var(--white);
  margin-top: 5px;
  font-size: 15px;
  text-decoration: none;
}

.footer-link-two:hover {
  opacity: 1;
  color: var(--white);
}

.footer-bottom {
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.footer-social-block-two {
  justify-content: flex-start;
  align-items: center;
  margin-top: 0;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.gallery-scroll {
  border-bottom: 1px solid #e4ebf3;
  padding: 0;
  position: relative;
  overflow: auto;
}

.gallery-link {
  color: #1a1b1f;
  font-size: 24px;
  line-height: 32px;
  text-decoration: none;
  position: absolute;
  inset: 0%;
}

.gallery-link:hover {
  color: #1a1b1fcc;
}

.gallery-link.w--current {
  font-weight: 600;
}

.quick-stack {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template: "Area . Area-3"
                 "Area Area-2 Area-3"
                 ". Area-2 ."
                 / 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  min-width: 800px;
  display: grid;
  overflow: auto;
}

.gallery-card {
  border: 3px solid var(--light-gray);
  background-image: url('../images/visual-management-2.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 15px;
  align-items: stretch;
  min-height: 200px;
  transition: border-color .2s;
  position: relative;
}

.gallery-card:hover {
  border-color: var(--accent);
}

.gallery-card.strategy-card {
  background-image: url('../images/strategy.png');
  background-position: 50%;
  background-size: cover;
}

.gallery-card.seminars-card {
  background-image: url('../images/seminar.png');
}

.gallery-card.training-card {
  background-image: url('../images/training.png');
  background-position: 50%;
  background-size: cover;
}

.gallery-card.agile-card {
  background-image: url('../images/agile.png');
}

.gallery-card.workshop-card {
  background-image: url('../images/workshop.png');
  background-position: 100%;
  background-size: cover;
}

.gallery-card.visual-management-card {
  background-image: url('../images/visual-management-3.png');
  background-position: 50%;
  background-size: cover;
}

.gallery-card.industry-card {
  background-image: url('../images/visual-management-4.png');
  background-position: 50%;
  background-size: cover;
  min-height: 400px;
}

.gallery-card.brainstorming-card {
  background-image: url('../images/brainstorming.png');
  background-position: 50%;
  background-size: cover;
}

.text-span-4 {
  text-decoration: line-through;
}

.logo-carousel {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: row;
  justify-content: center;
  margin-bottom: 10px;
  display: flex;
}

.logo-wrapper {
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.fade-left {
  z-index: 2;
  background-image: linear-gradient(90deg, #fff, #0000);
  width: 100px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.fade-right {
  z-index: 2;
  background-image: linear-gradient(90deg, #0000, #fff);
  width: 100px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.section-fluid {
  padding: 10px;
}

.announcement-div {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--gray);
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: var(--gray);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--gray);
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: var(--gray);
  background-color: #fff9;
  border-radius: 200px;
  padding: 5px 15px;
  font-size: 14px;
}

.testimonial-image {
  width: 50px;
  height: 50px;
}

.announcement-link {
  text-decoration: none;
}

.announcement-link:hover {
  background-color: #0000;
}

.bubble-text {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #f3f8ffcc;
  border-radius: 0 20px 20px;
  padding: 15px 20px;
  font-size: 15px;
  line-height: 22px;
  position: absolute;
  inset: auto 20% 10px -20px;
}

.div-block-10 {
  position: relative;
}

.gallery-large-card {
  border: 3px solid var(--light-gray);
  background-image: url('../images/visual-management-2.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 15px;
  align-items: stretch;
  min-height: 400px;
  transition: border-color .2s;
  position: relative;
}

.gallery-large-card:hover {
  border-color: var(--accent);
}

.gallery-large-card.management-card {
  background-image: url('../images/visual-management-1.png');
  background-position: 100%;
  background-size: cover;
  min-height: 400px;
}

.gallery-large-card.brainstorming-card {
  background-image: url('../images/brainstorming.png');
  background-position: 50%;
  background-size: cover;
}

.gallery-large-card.team-card {
  background-image: url('../images/team-meeting.png');
  background-position: 50%;
  background-size: cover;
}

.footer-subtitle {
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
}

.announcement-wrapper {
  margin-top: -80px;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .button {
    justify-content: center;
  }

  .heading-jumbo {
    font-size: 52px;
    line-height: 70px;
  }

  .heading-section {
    line-height: 48px;
  }

  .navigation-brand.w--current {
    flex: 1;
  }

  .navigation-brand.hide-mobile {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .menu {
    order: 1;
    margin-left: 0;
    margin-right: 0;
    position: static;
  }

  .navigation {
    padding: 10px 20px;
  }

  .navigation-item {
    text-align: left;
    padding: 15px 10px 15px 30px;
    transition: background-color .4s, opacity .4s, color .4s;
  }

  .navigation-item:hover {
    background-color: #f7f8f9;
  }

  .navigation-item:active {
    background-color: #eef0f3;
  }

  .menu-button {
    padding: 10px;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .navigation-items {
    border-style: solid none;
    border-width: 1px;
    border-color: var(--gray) black;
    background-color: var(--white);
    margin-top: 0;
  }

  .cta-text {
    width: auto;
  }

  .cta-wrap {
    width: auto;
    padding: 0 50px;
  }

  .intro-content.cc-homepage, .motto-wrap {
    width: 100%;
  }

  .detail-header-image {
    height: 460px;
  }

  .feature-grid {
    grid-row-gap: 20px;
    text-align: center;
    grid-template: "."
                   "."
                   / 1fr;
  }

  .feature-grid.cc-about-2 {
    grid-template-columns: 1fr;
    grid-template-areas: "."
                         ".";
  }

  .intro-text {
    width: auto;
  }

  .body {
    padding-top: 60px;
  }

  .hero-image {
    margin-left: auto;
    margin-right: auto;
  }

  .cards {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .card-grid-container {
    grid-column-gap: 20px;
  }

  .cookie-wrapper {
    height: auto;
  }

  .report-icons {
    justify-content: center;
  }

  .popup-content-wrapper {
    max-height: 92%;
  }

  .container-3 {
    max-width: 728px;
  }

  .gallery-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .features-wrapper {
    justify-content: space-between;
  }

  .dropdown-toggle {
    text-align: center;
    padding-right: 0;
  }

  .dropdown-list {
    border-bottom: 1px solid var(--gray);
    box-shadow: none;
    border-radius: 0;
  }

  .feature-image {
    margin-left: auto;
    margin-right: auto;
  }

  .nav-sub-item {
    padding-left: 25px;
    padding-right: 25px;
  }

  .section-gray {
    padding-left: 10px;
    padding-right: 10px;
  }

  .dropdown-toggle-arrow {
    margin-left: 0;
    margin-right: auto;
    position: relative;
  }

  .card-price {
    width: 44%;
  }

  .language, .language.show-mobile {
    display: block;
  }

  .language-item {
    text-align: center;
    padding-left: 30px;
    padding-right: 10px;
    transition: background-color .4s, opacity .4s, color .4s;
  }

  .language-item:hover {
    background-color: #f7f8f9;
  }

  .language-item:active {
    background-color: #eef0f3;
  }

  .text-block-13 {
    flex-flow: wrap;
    display: block;
  }

  .div-align-right {
    margin-left: auto;
    display: none;
  }

  .show-mobile {
    display: block;
  }

  .container-5, .container-7 {
    max-width: 728px;
  }

  .gallery-wrapper-3 {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-slider-left-2 {
    left: -20px;
  }

  .gallery-slider-right-2 {
    right: -20px;
  }

  .testimonial-grid-two {
    grid-column-gap: 30px;
  }

  .testimonial-info-three {
    flex-direction: column;
  }

  .comparison-negative, .comparison-positive {
    margin-left: 0;
  }

  .gallery-slider-left-3 {
    left: -20px;
  }

  .gallery-slider-right-3 {
    right: -20px;
  }

  .container-9 {
    max-width: 728px;
  }

  .pricing-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .pricing-card {
    width: 350px;
  }

  .pricing-subtitle {
    min-height: 0;
  }

  .link-3 {
    flex-flow: row;
    display: inline-flex;
  }

  .pricing-cta, .pricing-target {
    min-height: 0;
  }

  .footer-light {
    padding-top: 40px;
  }

  .container-11 {
    max-width: 728px;
  }

  .footer-wrapper-two {
    flex-wrap: wrap;
  }

  .footer-link-two {
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .section, .section.cc-store-home-wrap {
    margin-left: 15px;
    margin-right: 15px;
  }

  .container {
    text-align: center;
  }

  .subheading-section {
    font-size: 16px;
    line-height: 28px;
  }

  .rich-text {
    text-align: left;
    width: 90%;
    max-width: 470px;
  }

  .heading-jumbo {
    font-size: 50px;
    line-height: 64px;
  }

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

  .navigation-brand {
    padding-left: 0;
  }

  .cta-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  .intro-header {
    margin-top: 0;
    margin-bottom: 0;
  }

  .intro-content {
    width: 80%;
  }

  .intro-content.cc-homepage {
    width: 90%;
  }

  .utility-page-wrap {
    padding: 15px;
  }

  ._404-wrap {
    padding: 30px;
  }

  .heading-feature {
    font-size: 24px;
  }

  .clients-logo.bw {
    max-width: 90px;
    max-height: 60px;
  }

  .card-grid-container {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    align-self: stretch;
    max-width: none;
  }

  .footer-text-link {
    margin-bottom: 10px;
    display: inline-block;
  }

  .accordion-item {
    text-align: left;
  }

  .accordion-item-content {
    margin-right: 0;
  }

  .report-icons {
    justify-content: center;
  }

  .popup-video {
    margin-top: -12em;
  }

  .popup-content {
    margin: 3em 2em;
  }

  .gallery-slide {
    margin-left: 10px;
    margin-right: 10px;
  }

  .features-metrics {
    padding: 60px 15px;
  }

  .features-wrapper {
    flex-wrap: wrap;
    margin-bottom: -40px;
  }

  .features-block {
    width: 50%;
    margin-bottom: 40px;
  }

  .cookie-modal_content-wrap {
    padding-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .cookie-modal_closebutton {
    margin-right: 1.25rem;
  }

  .cookie-modal_button-wrap {
    padding: 1.5rem;
  }

  .image-copy {
    height: 70px;
  }

  .section-gray {
    margin-left: 15px;
    margin-right: 15px;
  }

  .hero-stack {
    padding: 60px 15px;
  }

  .hero-image-2.shadow-two {
    margin-bottom: -60px;
  }

  .gallery-slider-2 {
    padding: 60px 15px;
  }

  .gallery-slide-2 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .gallery-slider-left-2 {
    left: -20px;
  }

  .gallery-slider-right-2 {
    right: -20px;
  }

  .container-gradient {
    text-align: center;
  }

  .testimonial-grid-two {
    grid-template-columns: 1fr;
  }

  .testimonial-info-three {
    flex-direction: row;
  }

  .comparison-negative, .comparison-positive {
    text-align: left;
  }

  .gallery-text {
    line-height: 30px;
  }

  .gallery-slider-left-3 {
    left: -20px;
  }

  .gallery-slider-right-3 {
    right: -20px;
  }

  .pricing-wrapper {
    justify-items: stretch;
  }

  .pricing-card {
    width: auto;
  }

  .pricing-title {
    font-size: 34px;
    line-height: 42px;
  }

  .paragraph-regular.margin-bottom-20 {
    text-align: center;
  }

  .pricing-feature-list {
    text-align: left;
  }

  .features-table {
    padding-left: 15px;
    padding-right: 15px;
  }

  .subheading-jumbo {
    line-height: 28px;
  }

  .footer-light {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .footer-social-block-two {
    margin-top: 20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .gallery-scroll {
    padding: 0;
  }

  .logo-carousel {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .announcement-wrapper {
    margin-top: -30px;
    margin-bottom: 20px;
  }
}

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

  p {
    text-align: left;
  }

  .section {
    margin: auto 0;
    padding: 20px;
  }

  .section.cc-store-home-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  .subheading-section {
    font-size: 17px;
  }

  .subheading-section.cc-bigger-white-light {
    text-align: center;
    font-size: 17px;
    line-height: 30px;
  }

  .button.yellow-button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rich-text {
    width: 100%;
    max-width: none;
  }

  .heading-jumbo {
    text-align: center;
    margin-bottom: 10px;
    font-size: 32px;
    line-height: 42px;
    display: block;
  }

  .heading-section {
    font-size: 28px;
    line-height: 38px;
  }

  .navigation {
    padding: 10px 20px;
  }

  .menu-button, .menu-button.w--open {
    flex: none;
  }

  .navigation-logo {
    display: block;
  }

  .navigation-items {
    margin-top: 0;
  }

  .cta-wrap {
    padding: 0 15px;
  }

  .intro-header {
    margin-top: 0;
    margin-bottom: 0;
  }

  .intro-content.cc-homepage {
    width: 100%;
    margin-bottom: 0;
  }

  .motto-wrap {
    margin-bottom: 20px;
  }

  .heading-feature {
    font-size: 24px;
    line-height: 34px;
  }

  .feature-grid {
    grid-column-gap: 80px;
    grid-row-gap: 20px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    margin-top: 20px;
    margin-bottom: 20px;
    display: grid;
  }

  .feature-grid.cc-about-2 {
    margin-bottom: 80px;
  }

  .intro-text {
    margin-bottom: 0;
  }

  .body {
    font-size: 16px;
  }

  .head {
    font-size: 18px;
  }

  .div-halo {
    width: 100%;
    margin: 0;
    padding: 10px;
  }

  .image {
    width: 60px;
    height: 60px;
  }

  .clients-logo.bw {
    max-width: 100px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-2 {
    margin-bottom: 20px;
    margin-right: 20px;
  }

  .feature-small-heading {
    text-align: center;
  }

  .card-grid-container {
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
    margin: 40px 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .centered-container {
    text-align: center;
  }

  .bold-text {
    margin-right: 10px;
  }

  .footer-text-link.w--current {
    clear: none;
    flex: 0 auto;
    margin-left: 0;
    margin-right: 0;
    font-size: 13px;
    display: block;
    position: static;
  }

  .footer-logo {
    min-width: 20px;
  }

  .footer-copyright {
    flex: 0 auto;
    font-size: 13px;
    display: inline-block;
  }

  .accordion-heading {
    text-align: left;
  }

  .cookie-wrapper {
    flex-direction: column-reverse;
    padding-top: 25px;
    display: none;
  }

  .report-icon {
    height: 25px;
  }

  .popup-video {
    margin-top: -5.8em;
  }

  .container-3 {
    max-width: none;
  }

  .gallery-wrapper {
    grid-template-columns: 1fr;
  }

  .cookie-modal_content-wrap.is-small {
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .cookie-modal_closebutton {
    margin-top: 1rem;
    margin-right: 1rem;
  }

  .cookie-modal_component {
    max-width: 100%;
  }

  .cookie-modal_button-wrap.is-small {
    justify-content: space-between;
    padding: 1.25rem;
  }

  .cookie-modal_button {
    flex: auto;
    padding-left: 1.25em;
    padding-right: 1.25em;
  }

  .ck-cookie-w {
    max-width: 100%;
    inset: auto 0% 0%;
  }

  .feature-image {
    border-radius: 10px;
  }

  .image-copy {
    height: 60px;
    margin-bottom: 10px;
  }

  .card-price {
    width: 100%;
  }

  .columns-3 {
    flex-direction: column;
  }

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

  .flex-block {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
  }

  .link-block-3 {
    margin-bottom: 40px;
  }

  .text-block-13, .div-bordered {
    text-align: left;
  }

  .container-5 {
    max-width: none;
  }

  .centered-heading {
    margin-bottom: 24px;
  }

  .hero-stack {
    margin-left: 0;
    margin-right: 0;
    padding-top: 40px;
    padding-bottom: 0;
  }

  .hero-image-2.shadow-two {
    margin-top: 20px;
    margin-bottom: 0;
  }

  .section-heading-white {
    font-size: 26px;
    line-height: 36px;
  }

  .gallery-slider-2 {
    padding-top: 0;
    padding-bottom: 30px;
  }

  .container-7 {
    max-width: none;
  }

  .gallery-wrapper-3 {
    grid-template-columns: 1fr;
  }

  .gallery-slide-wrapper {
    max-width: 100%;
    margin-right: 0%;
  }

  .gallery-slider-left-2 {
    left: -20px;
  }

  .gallery-slider-right-2 {
    right: -20px;
  }

  .container-gradient {
    border-width: 5px;
    padding: 20px;
  }

  .testimonial-grid-two {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .comparison-negative {
    background-position: 0 7px;
    background-size: 14px;
    margin-left: 0;
    padding-left: 24px;
  }

  .comparison-positive {
    background-position: 0 7px;
    background-size: 16px;
    margin-left: 0;
    padding-left: 24px;
  }

  .gallery-slider-left-3 {
    left: -20px;
  }

  .gallery-slider-right-3 {
    right: -20px;
  }

  .div-centered {
    flex-flow: column;
  }

  .container-9 {
    max-width: none;
  }

  .pricing-feature {
    text-align: left;
  }

  .link-3 {
    display: inline-block;
  }

  .comparison-row-main {
    grid-column-gap: 20px;
  }

  .comparison-title {
    margin-left: 10px;
  }

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

  .subheading-jumbo {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 27px;
  }

  .card-title {
    text-align: left;
  }

  .container-11 {
    max-width: none;
  }

  .footer-wrapper-two {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-block-two {
    margin-top: 40px;
  }

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

  .footer-social-block-two {
    margin-top: 20px;
  }

  .gallery-scroll {
    margin-right: -20px;
    padding-left: 0;
    padding-right: 0;
  }

  .logo-carousel {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .announcement-div {
    padding-left: 10px;
    padding-right: 10px;
  }
}

#w-node-_86e64837-0616-515b-4568-76c147234d34-c074d214 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_86e64837-0616-515b-4568-76c147234d3f-c074d214, #w-node-f0a59ce8-d271-ed94-4d23-92402335dce9-c074d214 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f0a59ce8-d271-ed94-4d23-92402335dcf0-c074d214 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ade049d2-d61c-3c0e-94f0-fbb15c263521-c074d214 {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-ade049d2-d61c-3c0e-94f0-fbb15c263518-c074d214, #w-node-_181b1fe5-f8e3-b268-468a-929d00bff7c9-c074d214 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_181b1fe5-f8e3-b268-468a-929d00bff7bb-c074d214 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_47c14239-c539-4589-5e2c-87018698b4c5-c074d214 {
  grid-area: 1 / 1 / 3 / 2;
  place-self: auto;
}

#w-node-c0e80abf-6e7c-0453-a5c8-2fa34fa03854-c074d214 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: auto;
}

#w-node-_3254db1e-2fd2-497f-9d56-60172d9acc80-c074d214 {
  grid-area: 1 / 3 / 3 / 4;
  place-self: auto;
}

#w-node-_4056ab31-c5be-4544-3dc3-5bd91ee7c6a3-c074d214 {
  grid-area: 3 / 1 / 4 / 2;
  place-self: auto;
}

#w-node-ed6f0d88-fd6a-7ba5-22c5-0d643783c58a-c074d214 {
  grid-area: 2 / 2 / 4 / 3;
  place-self: auto;
}

#w-node-_0b146b02-8daf-6edb-0bdc-42357bb4c1b9-c074d214 {
  grid-area: 3 / 3 / 4 / 4;
  place-self: auto;
}

#w-node-c773e91f-fb22-7c0c-81c9-54fe6e03afd3-c074d214, #w-node-c773e91f-fb22-7c0c-81c9-54fe6e03afdd-c074d214, #w-node-c773e91f-fb22-7c0c-81c9-54fe6e03afc9-c074d214 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-eaac1590-be44-e3bb-f859-4f85bb9dcd17-9102365c {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_3dac6c82-2c1b-eac0-88c1-eb3398626e67-9102365c, #w-node-_115d2688-8961-df2c-e7cd-b2927fe579c1-9102365c {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_3a1cd1c7-bb2b-d004-06f6-93328cddad03-9102365c, #w-node-_671a61ac-624a-35de-eacd-0775fa64480f-9102365c {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_671a61ac-624a-35de-eacd-0775fa644814-9102365c, #w-node-_56cfa5ad-e608-2eb8-7c90-3b778cacc5d4-9102365c {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-c418c5e6-5d77-7776-7897-7ecc0e8ca338-9102365c, #w-node-_071d96f2-f3a5-ab15-b4f4-0dd7eabb4d2b-9102365c {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_071d96f2-f3a5-ab15-b4f4-0dd7eabb4d30-9102365c, #w-node-_633cac60-db47-2ef6-67da-a3324003227a-9102365c {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_57c41ab4-4c8f-7a40-2c1a-aa608a5861fd-9102365c, #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec07-d7d25f03 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-f1daa0c7-e3da-5440-1b35-96092a90ec0d-d7d25f03, #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec0f-d7d25f03 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f1daa0c7-e3da-5440-1b35-96092a90ec14-d7d25f03, #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec16-d7d25f03 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-dd7506c2-eb91-7291-7d89-583b38a24c10-d7d25f03, #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec1d-d7d25f03 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-f1daa0c7-e3da-5440-1b35-96092a90ec22-d7d25f03 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-d3b638a1-0798-cf3a-210a-aa24e6aa52ef-d7d25f03 {
  grid-area: 1 / 1 / 3 / 2;
  place-self: auto;
}

#w-node-d3b638a1-0798-cf3a-210a-aa24e6aa52f3-d7d25f03 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: auto;
}

#w-node-d3b638a1-0798-cf3a-210a-aa24e6aa52f7-d7d25f03 {
  grid-area: 1 / 3 / 3 / 4;
  place-self: auto;
}

#w-node-d3b638a1-0798-cf3a-210a-aa24e6aa52fb-d7d25f03 {
  grid-area: 3 / 1 / 4 / 2;
  place-self: auto;
}

#w-node-d3b638a1-0798-cf3a-210a-aa24e6aa52ff-d7d25f03 {
  grid-area: 2 / 2 / 4 / 3;
  place-self: auto;
}

#w-node-d3b638a1-0798-cf3a-210a-aa24e6aa5303-d7d25f03 {
  grid-area: 3 / 3 / 4 / 4;
  place-self: auto;
}

#w-node-_53d0f045-ecd4-30c4-6fb9-12390f760a0b-d7d25f03, #w-node-_53d0f045-ecd4-30c4-6fb9-12390f760a12-d7d25f03, #w-node-_53d0f045-ecd4-30c4-6fb9-12390f760a19-d7d25f03 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3dac6c82-2c1b-eac0-88c1-eb3398626e67-73426e67, #w-node-fbac1382-9dea-43e9-7603-cf0551765aa0-73426e67, #w-node-_671a61ac-624a-35de-eacd-0775fa644814-73426e67 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-c418c5e6-5d77-7776-7897-7ecc0e8ca338-73426e67 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_633cac60-db47-2ef6-67da-a3324003227a-73426e67 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_0335203d-6c45-5338-655c-92f4f5508a6d-19795b17 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0335203d-6c45-5338-655c-92f4f5508a6e-19795b17 {
  grid-area: Area;
}

#w-node-_0335203d-6c45-5338-655c-92f4f5508a6f-19795b17, #w-node-_0335203d-6c45-5338-655c-92f4f5508a70-19795b17, #w-node-_0335203d-6c45-5338-655c-92f4f5508a71-19795b17, #w-node-_0335203d-6c45-5338-655c-92f4f5508a72-19795b17, #w-node-_0335203d-6c45-5338-655c-92f4f5508a73-19795b17, #w-node-_0335203d-6c45-5338-655c-92f4f5508a74-19795b17 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_20d1abcd-f5b3-aecd-46e0-32d383d8b736-522483f6 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_20d1abcd-f5b3-aecd-46e0-32d383d8b73f-522483f6, #w-node-_20d1abcd-f5b3-aecd-46e0-32d383d8b741-522483f6 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_20d1abcd-f5b3-aecd-46e0-32d383d8b74d-522483f6, #w-node-_20d1abcd-f5b3-aecd-46e0-32d383d8b74f-522483f6 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_20d1abcd-f5b3-aecd-46e0-32d383d8b757-522483f6, #w-node-_36e727ba-a45a-e3eb-9c8b-b73e17af71e4-522483f6 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_36e727ba-a45a-e3eb-9c8b-b73e17af71ea-522483f6, #w-node-_561012e1-a48e-6423-b1b4-cb63ae9c7980-aa081044 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_561012e1-a48e-6423-b1b4-cb63ae9c798d-aa081044, #w-node-_561012e1-a48e-6423-b1b4-cb63ae9c798f-aa081044 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_561012e1-a48e-6423-b1b4-cb63ae9c799c-aa081044, #w-node-_561012e1-a48e-6423-b1b4-cb63ae9c799e-aa081044 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_561012e1-a48e-6423-b1b4-cb63ae9c79a5-aa081044 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-c990fdd2-0cf6-14b5-ee7d-1b9e816e188f-aa081044 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c990fdd2-0cf6-14b5-ee7d-1b9e816e1897-aa081044, #w-node-_3a5a1d5c-440a-35f9-c735-adba6d3abcc3-4055e721 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-c859f30f-deb3-f575-6b42-5cd442a7d09a-79e106d2 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-79e106d2, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0a2-79e106d2 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-c859f30f-deb3-f575-6b42-5cd442a7d0a8-79e106d2 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-79e106d2, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0b0-79e106d2, #w-node-_3a5a1d5c-440a-35f9-c735-adba6d3abcc3-b29bdf94, #w-node-_9554cd04-af01-6619-c980-9b3e48b1a146-b29bdf94, #w-node-_3a5a1d5c-440a-35f9-c735-adba6d3abcc3-2b17393e, #w-node-_9554cd04-af01-6619-c980-9b3e48b1a146-2b17393e, #w-node-_3a5a1d5c-440a-35f9-c735-adba6d3abcc3-40a9c585, #w-node-_9554cd04-af01-6619-c980-9b3e48b1a146-40a9c585, #w-node-_3a5a1d5c-440a-35f9-c735-adba6d3abcc3-187ade94, #w-node-_9554cd04-af01-6619-c980-9b3e48b1a146-187ade94, #w-node-_3a5a1d5c-440a-35f9-c735-adba6d3abcc3-a8e34339, #w-node-_9554cd04-af01-6619-c980-9b3e48b1a146-a8e34339, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-680e90fb, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-680e90fb, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-83bd4954, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-83bd4954, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-4856401d, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-4856401d, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-4238dd59, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-4238dd59, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-7fce3db4, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-7fce3db4, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-79022248, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-79022248 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_80ce0769-35c6-2fd1-ae57-cd3c663482b5-f165d979, #w-node-de81563a-7dee-b678-1508-38a38d4b2720-f165d979, #w-node-a95f6cb9-6bf3-0499-0ea0-5175adbb564b-f165d979, #w-node-_80ce0769-35c6-2fd1-ae57-cd3c663482b5-2f224bc9, #w-node-de81563a-7dee-b678-1508-38a38d4b2720-2f224bc9, #w-node-a95f6cb9-6bf3-0499-0ea0-5175adbb564b-2f224bc9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_39955a26-df98-77e4-1a68-a5173bb4f120-6ef39c6e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_39955a26-df98-77e4-1a68-a5173bb4f130-6ef39c6e {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_2de0ef8c-587b-6ca4-e03f-1f6e774da2df-6ef39c6e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_7ee3ffd6-ae2a-f088-e9e6-d4776b9493b4-6ef39c6e {
  grid-template-rows: minmax(auto, 1fr) auto;
  grid-template-columns: minmax(46px, .25fr) 1fr;
}

#w-node-c1c77f4c-4fcc-b456-d046-a8d19e1ec9e4-6ef39c6e {
  grid-column: span 2 / span 2;
}

#w-node-f0246980-63a6-b7f0-b834-207d7d6281fe-6ef39c6e {
  grid-template-rows: auto auto;
  grid-template-columns: .25fr 1fr;
}

#w-node-f0246980-63a6-b7f0-b834-207d7d628205-6ef39c6e {
  grid-column: span 2 / span 2;
}

#w-node-_722f68aa-26d4-afac-e263-81b4c0e82e23-6ef39c6e {
  grid-template-rows: auto auto;
  grid-template-columns: .25fr 1fr;
}

#w-node-_722f68aa-26d4-afac-e263-81b4c0e82e2a-6ef39c6e {
  grid-column: span 2 / span 2;
}

#w-node-ea5ebe97-32d1-d7aa-912b-ce2719d21cca-6ef39c6e {
  grid-template-rows: auto auto;
  grid-template-columns: .25fr 1fr;
}

#w-node-ea5ebe97-32d1-d7aa-912b-ce2719d21cd1-6ef39c6e {
  grid-column: span 2 / span 2;
}

#w-node-f75f3cc7-7b5e-7aed-65d7-b57b02551b88-6ef39c6e {
  grid-template-rows: auto auto;
  grid-template-columns: .25fr 1fr;
}

#w-node-f75f3cc7-7b5e-7aed-65d7-b57b02551b8f-6ef39c6e {
  grid-column: span 2 / span 2;
}

#w-node-_82b61a1e-9e48-8c2c-9610-e2c9c500fb74-6ef39c6e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_82b61a1e-9e48-8c2c-9610-e2c9c500fb79-6ef39c6e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_82b61a1e-9e48-8c2c-9610-e2c9c500fb7d-6ef39c6e, #w-node-_82b61a1e-9e48-8c2c-9610-e2c9c500fb8c-6ef39c6e, #w-node-_82b61a1e-9e48-8c2c-9610-e2c9c500fb87-6ef39c6e, #w-node-_04c83a21-52c9-c7cb-61ad-43e1ca886057-3ad01cac, #w-node-_04c83a21-52c9-c7cb-61ad-43e1ca886077-3ad01cac, #w-node-_04c83a21-52c9-c7cb-61ad-43e1ca88609f-3ad01cac, #w-node-_6b0736ef-55cf-c09e-f7b0-085c2b38b530-3ad01cac, #w-node-_8c14dc9f-4ea1-e8a8-8eb3-959b9db64b47-3ad01cac, #w-node-_4fe63555-fa28-862e-c13d-dd06eae7ab25-3ad01cac, #w-node-_8c14dc9f-4ea1-e8a8-8eb3-959b9db64b50-3ad01cac, #w-node-_8c14dc9f-4ea1-e8a8-8eb3-959b9db64b52-3ad01cac, #w-node-b17646e2-3d6a-c046-517f-cecf7b085d7b-3ad01cac, #w-node-_61da54d6-6648-bf79-25c7-42d32f01f0f4-3ad01cac, #w-node-_30c6c60b-9ed5-4383-d3e8-dc48dd20aadf-3ad01cac, #w-node-ad855945-a188-4e8e-af90-d3ded1262da9-3ad01cac, #w-node-ad855945-a188-4e8e-af90-d3ded1262dab-3ad01cac, #w-node-ad855945-a188-4e8e-af90-d3ded1262dac-3ad01cac, #w-node-ad855945-a188-4e8e-af90-d3ded1262dad-3ad01cac, #w-node-ad855945-a188-4e8e-af90-d3ded1262dae-3ad01cac, #w-node-_0de8d9d4-245a-955d-b5f8-036a8857b912-3ad01cac, #w-node-_0de8d9d4-245a-955d-b5f8-036a8857b916-3ad01cac, #w-node-_0de8d9d4-245a-955d-b5f8-036a8857b917-3ad01cac, #w-node-_85745b8f-eac2-5132-b28d-2b559bd5ccc9-3ad01cac, #w-node-dbf659b8-f1a7-2d39-edbf-303abc820e22-3ad01cac, #w-node-_482b4b7f-28e2-af02-bd92-3e658a129eec-3ad01cac, #w-node-_4db62251-39df-9794-0d6c-1fff5d611346-3ad01cac, #w-node-_356e29bd-9afe-00a1-0073-7deaf868b563-3ad01cac, #w-node-_1b988e0f-41d6-13fa-81c1-e901a6680b24-3ad01cac, #w-node-f9c99f13-e990-99b8-231d-eae21b6ec3fe-3ad01cac, #w-node-_22422041-52d7-57ad-1239-0c1ae162092d-3ad01cac, #w-node-_22422041-52d7-57ad-1239-0c1ae162092f-3ad01cac, #w-node-_22422041-52d7-57ad-1239-0c1ae1620930-3ad01cac, #w-node-_22422041-52d7-57ad-1239-0c1ae1620931-3ad01cac, #w-node-_22422041-52d7-57ad-1239-0c1ae1620932-3ad01cac, #w-node-_4d1dc4c7-ac49-f89b-ffbb-d353f6a3bfc0-3ad01cac, #w-node-_21814f97-64db-e519-02c6-977562755ad1-3ad01cac, #w-node-_4d1dc4c7-ac49-f89b-ffbb-d353f6a3bfc3-3ad01cac, #w-node-_4d1dc4c7-ac49-f89b-ffbb-d353f6a3bfc4-3ad01cac, #w-node-_4d1dc4c7-ac49-f89b-ffbb-d353f6a3bfc5-3ad01cac, #w-node-e617b9b3-58ac-f0ac-1a3b-bbf80f646850-3ad01cac, #w-node-_5af0395a-d782-2cc5-2cb8-360343ff67b6-3ad01cac, #w-node-cb54b974-cd92-8451-7d52-04a916835805-3ad01cac, #w-node-e617b9b3-58ac-f0ac-1a3b-bbf80f646854-3ad01cac, #w-node-e617b9b3-58ac-f0ac-1a3b-bbf80f646855-3ad01cac, #w-node-f9e169af-9e48-7c63-830e-4befd9b84809-3ad01cac, #w-node-f9e169af-9e48-7c63-830e-4befd9b8480b-3ad01cac, #w-node-_18fe49f3-4710-7dfc-2b1e-1ca8d057f8d4-3ad01cac, #w-node-f9e169af-9e48-7c63-830e-4befd9b8480d-3ad01cac, #w-node-f9e169af-9e48-7c63-830e-4befd9b8480e-3ad01cac, #w-node-_54ba0f80-7c23-9c87-dd97-a60141da24c4-3ad01cac, #w-node-_1d92967d-aaa2-4aeb-1598-93886930f593-3ad01cac, #w-node-e82b35df-8c1f-6007-8c0f-68d3b307e38b-3ad01cac, #w-node-_54ba0f80-7c23-9c87-dd97-a60141da24c8-3ad01cac, #w-node-_54ba0f80-7c23-9c87-dd97-a60141da24c9-3ad01cac, #w-node-c1e448f7-ccfc-0fd4-b4ce-819acf698720-3ad01cac, #w-node-_3dbf1aed-e1b0-2f46-9519-bee9f5c2f58b-3ad01cac, #w-node-c295cb70-94b8-7827-4d41-077f0f3d4c95-3ad01cac, #w-node-c1e448f7-ccfc-0fd4-b4ce-819acf698725-3ad01cac, #w-node-_4cbc26d6-226e-bd3b-e7b0-db26b1e80971-3ad01cac, #w-node-_5abb1831-e967-0a81-91f2-faed00d22d81-3ad01cac, #w-node-f70d3a72-2118-2706-3ddd-2d874020b3dc-3ad01cac, #w-node-a3812408-64a3-e927-0b0f-dc407ef38eaa-3ad01cac, #w-node-_5abb1831-e967-0a81-91f2-faed00d22d86-3ad01cac, #w-node-_0ce8410b-db2d-3b22-8f6a-4d5fb76c4d40-3ad01cac, #w-node-e4107643-5979-40e9-d830-0a4fb137a922-3ad01cac, #w-node-a518acd7-1f8f-71cd-79b3-c18a15d17cee-3ad01cac, #w-node-_8da0875c-2a1a-7f7e-ed80-cce2fd82825b-3ad01cac, #w-node-_3dc7248b-a54f-552e-eb40-26c8fa79e0c5-3ad01cac, #w-node-e4107643-5979-40e9-d830-0a4fb137a925-3ad01cac, #w-node-_96a89aa0-a1f5-6a57-c188-abcb6b781431-3ad01cac, #w-node-_81e7e674-84dc-6c4b-4d7a-7125b6796a5b-3ad01cac, #w-node-b33d1ca0-0f3a-3d02-efbf-7f3831b5069a-3ad01cac, #w-node-f487c8ba-0f22-71d4-0e48-b965fba5a5e8-3ad01cac, #w-node-_96a89aa0-a1f5-6a57-c188-abcb6b781436-3ad01cac, #w-node-_6efbef1e-d80a-c638-d794-313dbbaac0a9-3ad01cac, #w-node-c4e029a6-b3ba-da02-7902-757573cb6daf-3ad01cac, #w-node-_9b0ebed0-fea8-7cbf-d5d7-0b99cbb0f019-3ad01cac, #w-node-_6a1bc39b-5056-2f6c-c4cc-90b01a17a0aa-3ad01cac, #w-node-_6efbef1e-d80a-c638-d794-313dbbaac0ae-3ad01cac, #w-node-fe991d98-d299-fe09-c336-b98b0e740132-dc9cd306, #w-node-fe991d98-d299-fe09-c336-b98b0e740152-dc9cd306, #w-node-fe991d98-d299-fe09-c336-b98b0e74016e-dc9cd306, #w-node-fe991d98-d299-fe09-c336-b98b0e74019b-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969210-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969211-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196921a-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196921c-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196921d-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196921e-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196921f-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969221-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969223-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969224-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969225-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969226-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969228-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196922a-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196922b-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196922c-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196922d-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196922f-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969231-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969232-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969233-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969234-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969236-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969238-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196923a-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196923c-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196923e-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969241-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969243-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969244-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969245-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969246-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969248-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196924a-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196924b-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196924c-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196924d-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196924f-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969251-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969252-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969253-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969254-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969256-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969258-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969259-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196925a-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196925b-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196925d-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196925f-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969260-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969261-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969262-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969264-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969266-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969267-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969268-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969269-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196926b-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196926d-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196926e-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196926f-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969270-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969272-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969274-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969275-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969276-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969277-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969279-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196927b-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196927c-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196927d-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b0196927e-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969280-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969282-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969283-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969284-dc9cd306, #w-node-e60c46ff-e2d0-be7a-e180-072b01969285-dc9cd306 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_39955a26-df98-77e4-1a68-a5173bb4f120-8f64b04f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_39955a26-df98-77e4-1a68-a5173bb4f130-8f64b04f {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-abf0d7c1-1b9e-2a69-4c5f-9761a9458282-8f64b04f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-abf0d7c1-1b9e-2a69-4c5f-9761a9458294-8f64b04f {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_5b2b7174-3b38-6ffb-2c01-efdd3bf354cc-8f64b04f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_5b2b7174-3b38-6ffb-2c01-efdd3bf354de-8f64b04f {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_2de0ef8c-587b-6ca4-e03f-1f6e774da2df-8f64b04f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_665bc244-8463-5732-21bf-226ff9e055dd-8f64b04f, #w-node-_665bc244-8463-5732-21bf-226ff9e055e4-8f64b04f, #w-node-_665bc244-8463-5732-21bf-226ff9e055eb-8f64b04f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_15e482d3-3ec3-3541-c059-35968c17f3e3-15a51a26 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_15e482d3-3ec3-3541-c059-35968c17f3f8-15a51a26 {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_0539956c-e5bb-0b11-2f6c-c496b6fc4f0d-15a51a26 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_0539956c-e5bb-0b11-2f6c-c496b6fc4f17-15a51a26 {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_203858a2-bccd-9232-360e-25d0c0793e21-15a51a26 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_38690f70-d1be-4dfc-19e8-a24c12f8453c-15a51a26 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_9ba1975b-f323-4b4c-b21b-31e2c759cfa8-15a51a26 {
  grid-area: 1 / 1 / 3 / 2;
  place-self: auto;
}

#w-node-_9ba1975b-f323-4b4c-b21b-31e2c759cfab-15a51a26 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: auto;
}

#w-node-_9ba1975b-f323-4b4c-b21b-31e2c759cfae-15a51a26 {
  grid-area: 1 / 3 / 3 / 4;
  place-self: auto;
}

#w-node-_9ba1975b-f323-4b4c-b21b-31e2c759cfb1-15a51a26 {
  grid-area: 2 / 2 / 4 / 3;
  place-self: auto;
}

#w-node-_3688e74c-bacc-af66-17ea-6cc618f67a18-15a51a26 {
  grid-area: 3 / 1 / 4 / 2;
  place-self: auto;
}

#w-node-d52f8ef0-1e37-767a-ad36-376eb004c7b0-15a51a26 {
  grid-area: 3 / 3 / 4 / 4;
  place-self: auto;
}

#w-node-_91f465bf-b446-3af9-35e7-b338c0860caf-15a51a26, #w-node-_91f465bf-b446-3af9-35e7-b338c0860cb6-15a51a26, #w-node-_91f465bf-b446-3af9-35e7-b338c0860cbd-15a51a26 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_115ed4fc-5b1d-9449-30c3-e5d983551536-15a51a26 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_115ed4fc-5b1d-9449-30c3-e5d98355153c-15a51a26, #w-node-c17192c7-46ab-01ba-1a8a-332c3af4db35-10d6e5b0 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c17192c7-46ab-01ba-1a8a-332c3af4db48-10d6e5b0 {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_9419282f-3cf3-baa8-91dc-7a132e5571f4-10d6e5b0 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083a5-10d6e5b0 {
  grid-area: 1 / 1 / 3 / 2;
  place-self: auto;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083a9-10d6e5b0 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: auto;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083ad-10d6e5b0 {
  grid-area: 1 / 3 / 3 / 4;
  place-self: auto;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083b1-10d6e5b0 {
  grid-area: 2 / 2 / 4 / 3;
  place-self: auto;
}

#w-node-_57bff142-145c-a075-22de-17a756f4a529-10d6e5b0 {
  grid-area: 3 / 3 / 4 / 4;
  place-self: auto;
}

#w-node-_9d6ab043-6d93-f89d-f49d-91ab32e229a5-10d6e5b0 {
  grid-area: 3 / 1 / 4 / 2;
  place-self: auto;
}

#w-node-_1f27a317-d2fe-6b20-12f1-bf9a8623b56f-0dc9bd2f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1f27a317-d2fe-6b20-12f1-bf9a8623b57a-0dc9bd2f {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_2c7a2c8b-d3eb-be8f-37a4-c12dbfc6f548-0dc9bd2f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2c7a2c8b-d3eb-be8f-37a4-c12dbfc6f553-0dc9bd2f {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-ec8307e5-a250-f1c1-4a8d-5667b677e011-0dc9bd2f {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ec8307e5-a250-f1c1-4a8d-5667b677e01c-0dc9bd2f {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-b6aa06a5-d9eb-154b-0be5-905e7eec696f-0dc9bd2f {
  grid-area: 1 / 1 / 3 / 2;
  place-self: auto;
}

#w-node-b6aa06a5-d9eb-154b-0be5-905e7eec6972-0dc9bd2f {
  grid-area: 1 / 2 / 2 / 3;
  place-self: auto;
}

#w-node-b6aa06a5-d9eb-154b-0be5-905e7eec6975-0dc9bd2f {
  grid-area: 1 / 3 / 3 / 4;
  place-self: auto;
}

#w-node-b6aa06a5-d9eb-154b-0be5-905e7eec6978-0dc9bd2f {
  grid-area: 2 / 2 / 4 / 3;
  place-self: auto;
}

#w-node-b6aa06a5-d9eb-154b-0be5-905e7eec697b-0dc9bd2f {
  grid-area: 3 / 3 / 4 / 4;
  place-self: auto;
}

#w-node-b6aa06a5-d9eb-154b-0be5-905e7eec697e-0dc9bd2f {
  grid-area: 3 / 1 / 4 / 2;
  place-self: auto;
}

#w-node-_2bc7375d-3861-2366-90d7-4e8406381174-c4bc815a {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2bc7375d-3861-2366-90d7-4e8406381183-c4bc815a {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-c17192c7-46ab-01ba-1a8a-332c3af4db35-c4bc815a {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c17192c7-46ab-01ba-1a8a-332c3af4db48-c4bc815a {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_9419282f-3cf3-baa8-91dc-7a132e5571f4-c4bc815a {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083a5-c4bc815a {
  grid-area: 1 / 1 / 3 / 2;
  place-self: auto;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083a9-c4bc815a {
  grid-area: 1 / 2 / 2 / 3;
  place-self: auto;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083ad-c4bc815a {
  grid-area: 1 / 3 / 3 / 4;
  place-self: auto;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083b1-c4bc815a {
  grid-area: 2 / 2 / 4 / 3;
  place-self: auto;
}

#w-node-_57bff142-145c-a075-22de-17a756f4a529-c4bc815a {
  grid-area: 3 / 3 / 4 / 4;
  place-self: auto;
}

#w-node-_9d6ab043-6d93-f89d-f49d-91ab32e229a5-c4bc815a {
  grid-area: 3 / 1 / 4 / 2;
  place-self: auto;
}

#w-node-_1f27a317-d2fe-6b20-12f1-bf9a8623b56f-4cb6bf48 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1f27a317-d2fe-6b20-12f1-bf9a8623b57a-4cb6bf48 {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_2c7a2c8b-d3eb-be8f-37a4-c12dbfc6f548-4cb6bf48 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2c7a2c8b-d3eb-be8f-37a4-c12dbfc6f553-4cb6bf48 {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-ec8307e5-a250-f1c1-4a8d-5667b677e011-4cb6bf48 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ec8307e5-a250-f1c1-4a8d-5667b677e01c-4cb6bf48 {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-b6aa06a5-d9eb-154b-0be5-905e7eec696f-4cb6bf48 {
  grid-area: 1 / 1 / 3 / 2;
  place-self: auto;
}

#w-node-b6aa06a5-d9eb-154b-0be5-905e7eec6972-4cb6bf48 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: auto;
}

#w-node-b6aa06a5-d9eb-154b-0be5-905e7eec6975-4cb6bf48 {
  grid-area: 1 / 3 / 3 / 4;
  place-self: auto;
}

#w-node-b6aa06a5-d9eb-154b-0be5-905e7eec6978-4cb6bf48 {
  grid-area: 2 / 2 / 4 / 3;
  place-self: auto;
}

#w-node-b6aa06a5-d9eb-154b-0be5-905e7eec697b-4cb6bf48 {
  grid-area: 3 / 3 / 4 / 4;
  place-self: auto;
}

#w-node-b6aa06a5-d9eb-154b-0be5-905e7eec697e-4cb6bf48 {
  grid-area: 3 / 1 / 4 / 2;
  place-self: auto;
}

#w-node-c17192c7-46ab-01ba-1a8a-332c3af4db35-fe4ecf22 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c17192c7-46ab-01ba-1a8a-332c3af4db48-fe4ecf22 {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_9419282f-3cf3-baa8-91dc-7a132e5571f4-fe4ecf22 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083a5-fe4ecf22 {
  grid-area: 1 / 1 / 3 / 2;
  place-self: auto;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083a9-fe4ecf22 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: auto;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083ad-fe4ecf22 {
  grid-area: 1 / 3 / 3 / 4;
  place-self: auto;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083b1-fe4ecf22 {
  grid-area: 2 / 2 / 4 / 3;
  place-self: auto;
}

#w-node-_57bff142-145c-a075-22de-17a756f4a529-fe4ecf22 {
  grid-area: 3 / 3 / 4 / 4;
  place-self: auto;
}

#w-node-_9d6ab043-6d93-f89d-f49d-91ab32e229a5-fe4ecf22 {
  grid-area: 3 / 1 / 4 / 2;
  place-self: auto;
}

#w-node-_2bc7375d-3861-2366-90d7-4e8406381174-0e3fcf8e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2bc7375d-3861-2366-90d7-4e8406381183-0e3fcf8e {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-c17192c7-46ab-01ba-1a8a-332c3af4db35-0e3fcf8e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c17192c7-46ab-01ba-1a8a-332c3af4db48-0e3fcf8e {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_9419282f-3cf3-baa8-91dc-7a132e5571f4-0e3fcf8e {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083a5-0e3fcf8e {
  grid-area: 1 / 1 / 3 / 2;
  place-self: auto;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083a9-0e3fcf8e {
  grid-area: 1 / 2 / 2 / 3;
  place-self: auto;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083ad-0e3fcf8e {
  grid-area: 1 / 3 / 3 / 4;
  place-self: auto;
}

#w-node-_70340a0c-3b6a-4ed9-ca9e-b814fec083b1-0e3fcf8e {
  grid-area: 2 / 2 / 4 / 3;
  place-self: auto;
}

#w-node-_57bff142-145c-a075-22de-17a756f4a529-0e3fcf8e {
  grid-area: 3 / 3 / 4 / 4;
  place-self: auto;
}

#w-node-_9d6ab043-6d93-f89d-f49d-91ab32e229a5-0e3fcf8e {
  grid-area: 3 / 1 / 4 / 2;
  place-self: auto;
}

#w-node-_15e482d3-3ec3-3541-c059-35968c17f3e3-6dcb1dd5 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_15e482d3-3ec3-3541-c059-35968c17f3f8-6dcb1dd5 {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_0539956c-e5bb-0b11-2f6c-c496b6fc4f0d-6dcb1dd5 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_0539956c-e5bb-0b11-2f6c-c496b6fc4f17-6dcb1dd5 {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_203858a2-bccd-9232-360e-25d0c0793e21-6dcb1dd5 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_38690f70-d1be-4dfc-19e8-a24c12f8453c-6dcb1dd5 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_9ba1975b-f323-4b4c-b21b-31e2c759cfa8-6dcb1dd5 {
  grid-area: 1 / 1 / 3 / 2;
  place-self: auto;
}

#w-node-_9ba1975b-f323-4b4c-b21b-31e2c759cfab-6dcb1dd5 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: auto;
}

#w-node-_9ba1975b-f323-4b4c-b21b-31e2c759cfae-6dcb1dd5 {
  grid-area: 1 / 3 / 3 / 4;
  place-self: auto;
}

#w-node-_9ba1975b-f323-4b4c-b21b-31e2c759cfb1-6dcb1dd5 {
  grid-area: 2 / 2 / 4 / 3;
  place-self: auto;
}

#w-node-_3688e74c-bacc-af66-17ea-6cc618f67a18-6dcb1dd5 {
  grid-area: 3 / 1 / 4 / 2;
  place-self: auto;
}

#w-node-d52f8ef0-1e37-767a-ad36-376eb004c7b0-6dcb1dd5 {
  grid-area: 3 / 3 / 4 / 4;
  place-self: auto;
}

#w-node-_91f465bf-b446-3af9-35e7-b338c0860caf-6dcb1dd5, #w-node-_91f465bf-b446-3af9-35e7-b338c0860cb6-6dcb1dd5, #w-node-_91f465bf-b446-3af9-35e7-b338c0860cbd-6dcb1dd5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_115ed4fc-5b1d-9449-30c3-e5d983551536-6dcb1dd5 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_115ed4fc-5b1d-9449-30c3-e5d98355153c-6dcb1dd5, #w-node-_39955a26-df98-77e4-1a68-a5173bb4f120-1b69e753 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_39955a26-df98-77e4-1a68-a5173bb4f130-1b69e753 {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-abf0d7c1-1b9e-2a69-4c5f-9761a9458282-1b69e753 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-abf0d7c1-1b9e-2a69-4c5f-9761a9458294-1b69e753 {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_5b2b7174-3b38-6ffb-2c01-efdd3bf354cc-1b69e753 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_5b2b7174-3b38-6ffb-2c01-efdd3bf354de-1b69e753 {
  grid-area: 1 / 2 / 2 / 2;
}

#w-node-_2de0ef8c-587b-6ca4-e03f-1f6e774da2df-1b69e753 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_665bc244-8463-5732-21bf-226ff9e055dd-1b69e753, #w-node-_665bc244-8463-5732-21bf-226ff9e055e4-1b69e753, #w-node-_665bc244-8463-5732-21bf-226ff9e055eb-1b69e753 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_86e64837-0616-515b-4568-76c147234d34-c074d214 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d3f-c074d214 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-f0a59ce8-d271-ed94-4d23-92402335dce9-c074d214 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-f0a59ce8-d271-ed94-4d23-92402335dcf0-c074d214, #w-node-ade049d2-d61c-3c0e-94f0-fbb15c263521-c074d214 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-ade049d2-d61c-3c0e-94f0-fbb15c263518-c074d214 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_181b1fe5-f8e3-b268-468a-929d00bff7c9-c074d214 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_181b1fe5-f8e3-b268-468a-929d00bff7bb-c074d214, #w-node-eaac1590-be44-e3bb-f859-4f85bb9dcd17-9102365c {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_3dac6c82-2c1b-eac0-88c1-eb3398626e67-9102365c {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_115d2688-8961-df2c-e7cd-b2927fe579c1-9102365c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3a1cd1c7-bb2b-d004-06f6-93328cddad03-9102365c {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_671a61ac-624a-35de-eacd-0775fa64480f-9102365c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_671a61ac-624a-35de-eacd-0775fa644814-9102365c {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_56cfa5ad-e608-2eb8-7c90-3b778cacc5d4-9102365c {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-c418c5e6-5d77-7776-7897-7ecc0e8ca338-9102365c {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_071d96f2-f3a5-ab15-b4f4-0dd7eabb4d2b-9102365c {
    grid-row: 2 / 3;
  }

  #w-node-_071d96f2-f3a5-ab15-b4f4-0dd7eabb4d30-9102365c {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_633cac60-db47-2ef6-67da-a3324003227a-9102365c {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_57c41ab4-4c8f-7a40-2c1a-aa608a5861fd-9102365c {
    grid-column: 1 / 2;
  }

  #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec07-d7d25f03 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec0d-d7d25f03 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec0f-d7d25f03 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec14-d7d25f03 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec16-d7d25f03 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-dd7506c2-eb91-7291-7d89-583b38a24c10-d7d25f03 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec1d-d7d25f03 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec22-d7d25f03, #w-node-_3dac6c82-2c1b-eac0-88c1-eb3398626e67-73426e67 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-fbac1382-9dea-43e9-7603-cf0551765aa0-73426e67 {
    grid-column: 1 / 2;
  }

  #w-node-_671a61ac-624a-35de-eacd-0775fa644814-73426e67 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_633cac60-db47-2ef6-67da-a3324003227a-73426e67 {
    grid-column: 1 / 2;
  }

  #w-node-_20d1abcd-f5b3-aecd-46e0-32d383d8b736-522483f6 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_20d1abcd-f5b3-aecd-46e0-32d383d8b73f-522483f6 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_20d1abcd-f5b3-aecd-46e0-32d383d8b741-522483f6 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_20d1abcd-f5b3-aecd-46e0-32d383d8b74d-522483f6 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_20d1abcd-f5b3-aecd-46e0-32d383d8b74f-522483f6 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_20d1abcd-f5b3-aecd-46e0-32d383d8b757-522483f6 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_36e727ba-a45a-e3eb-9c8b-b73e17af71e4-522483f6 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_36e727ba-a45a-e3eb-9c8b-b73e17af71ea-522483f6 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_561012e1-a48e-6423-b1b4-cb63ae9c7980-aa081044 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_561012e1-a48e-6423-b1b4-cb63ae9c798d-aa081044 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_561012e1-a48e-6423-b1b4-cb63ae9c798f-aa081044 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_561012e1-a48e-6423-b1b4-cb63ae9c799c-aa081044 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_561012e1-a48e-6423-b1b4-cb63ae9c799e-aa081044 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_561012e1-a48e-6423-b1b4-cb63ae9c79a5-aa081044 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-c990fdd2-0cf6-14b5-ee7d-1b9e816e188f-aa081044 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-c990fdd2-0cf6-14b5-ee7d-1b9e816e1897-aa081044, #w-node-_3a5a1d5c-440a-35f9-c735-adba6d3abcc3-4055e721 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09a-79e106d2 {
    grid-row: 2 / 3;
  }

  #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-79e106d2, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0a1-79e106d2 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0a2-79e106d2 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0a8-79e106d2 {
    grid-row: 2 / 3;
  }

  #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-79e106d2, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0af-79e106d2 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0b0-79e106d2 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_3a5a1d5c-440a-35f9-c735-adba6d3abcc3-b29bdf94, #w-node-_9554cd04-af01-6619-c980-9b3e48b1a146-b29bdf94, #w-node-_3a5a1d5c-440a-35f9-c735-adba6d3abcc3-2b17393e, #w-node-_9554cd04-af01-6619-c980-9b3e48b1a146-2b17393e, #w-node-_3a5a1d5c-440a-35f9-c735-adba6d3abcc3-40a9c585, #w-node-_9554cd04-af01-6619-c980-9b3e48b1a146-40a9c585, #w-node-_3a5a1d5c-440a-35f9-c735-adba6d3abcc3-187ade94, #w-node-_9554cd04-af01-6619-c980-9b3e48b1a146-187ade94, #w-node-_3a5a1d5c-440a-35f9-c735-adba6d3abcc3-a8e34339, #w-node-_9554cd04-af01-6619-c980-9b3e48b1a146-a8e34339, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-680e90fb, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-680e90fb, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-83bd4954, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-83bd4954, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-4856401d, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-4856401d, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-4238dd59, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-4238dd59, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-7fce3db4, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-7fce3db4, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-79022248, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-79022248 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_92734d77-93ae-476b-2df2-5828a90ec4b0-f165d979, #w-node-_83311f60-90f4-41c6-30b0-fced02c3e712-f165d979, #w-node-_31a8550a-2b26-a663-5c4f-447ffd433d47-2f224bc9, #w-node-_83311f60-90f4-41c6-30b0-fced02c3e712-2f224bc9 {
    order: -9999;
  }

  #w-node-_39955a26-df98-77e4-1a68-a5173bb4f120-6ef39c6e {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_39955a26-df98-77e4-1a68-a5173bb4f130-6ef39c6e {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_2de0ef8c-587b-6ca4-e03f-1f6e774da2df-6ef39c6e {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_82b61a1e-9e48-8c2c-9610-e2c9c500fb74-6ef39c6e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_39955a26-df98-77e4-1a68-a5173bb4f120-8f64b04f {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_39955a26-df98-77e4-1a68-a5173bb4f130-8f64b04f {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-abf0d7c1-1b9e-2a69-4c5f-9761a9458282-8f64b04f {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-abf0d7c1-1b9e-2a69-4c5f-9761a9458294-8f64b04f {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_5b2b7174-3b38-6ffb-2c01-efdd3bf354cc-8f64b04f {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_5b2b7174-3b38-6ffb-2c01-efdd3bf354de-8f64b04f {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_2de0ef8c-587b-6ca4-e03f-1f6e774da2df-8f64b04f, #w-node-_15e482d3-3ec3-3541-c059-35968c17f3e3-15a51a26 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_15e482d3-3ec3-3541-c059-35968c17f3f8-15a51a26 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_0539956c-e5bb-0b11-2f6c-c496b6fc4f0d-15a51a26 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0539956c-e5bb-0b11-2f6c-c496b6fc4f17-15a51a26 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_203858a2-bccd-9232-360e-25d0c0793e21-15a51a26 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_38690f70-d1be-4dfc-19e8-a24c12f8453c-15a51a26 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_115ed4fc-5b1d-9449-30c3-e5d983551536-15a51a26 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_115ed4fc-5b1d-9449-30c3-e5d98355153c-15a51a26 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-c17192c7-46ab-01ba-1a8a-332c3af4db35-10d6e5b0 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-c17192c7-46ab-01ba-1a8a-332c3af4db48-10d6e5b0, #w-node-_9419282f-3cf3-baa8-91dc-7a132e5571f4-10d6e5b0 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_1f27a317-d2fe-6b20-12f1-bf9a8623b56f-0dc9bd2f {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_1f27a317-d2fe-6b20-12f1-bf9a8623b57a-0dc9bd2f {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_2c7a2c8b-d3eb-be8f-37a4-c12dbfc6f548-0dc9bd2f {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_2c7a2c8b-d3eb-be8f-37a4-c12dbfc6f553-0dc9bd2f {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-ec8307e5-a250-f1c1-4a8d-5667b677e011-0dc9bd2f {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-ec8307e5-a250-f1c1-4a8d-5667b677e01c-0dc9bd2f {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_2bc7375d-3861-2366-90d7-4e8406381174-c4bc815a {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_2bc7375d-3861-2366-90d7-4e8406381183-c4bc815a {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-c17192c7-46ab-01ba-1a8a-332c3af4db35-c4bc815a {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-c17192c7-46ab-01ba-1a8a-332c3af4db48-c4bc815a, #w-node-_9419282f-3cf3-baa8-91dc-7a132e5571f4-c4bc815a {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_1f27a317-d2fe-6b20-12f1-bf9a8623b56f-4cb6bf48 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_1f27a317-d2fe-6b20-12f1-bf9a8623b57a-4cb6bf48 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_2c7a2c8b-d3eb-be8f-37a4-c12dbfc6f548-4cb6bf48 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_2c7a2c8b-d3eb-be8f-37a4-c12dbfc6f553-4cb6bf48 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-ec8307e5-a250-f1c1-4a8d-5667b677e011-4cb6bf48 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-ec8307e5-a250-f1c1-4a8d-5667b677e01c-4cb6bf48 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-c17192c7-46ab-01ba-1a8a-332c3af4db35-fe4ecf22 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-c17192c7-46ab-01ba-1a8a-332c3af4db48-fe4ecf22, #w-node-_9419282f-3cf3-baa8-91dc-7a132e5571f4-fe4ecf22 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_2bc7375d-3861-2366-90d7-4e8406381174-0e3fcf8e {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_2bc7375d-3861-2366-90d7-4e8406381183-0e3fcf8e {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-c17192c7-46ab-01ba-1a8a-332c3af4db35-0e3fcf8e {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-c17192c7-46ab-01ba-1a8a-332c3af4db48-0e3fcf8e, #w-node-_9419282f-3cf3-baa8-91dc-7a132e5571f4-0e3fcf8e {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_15e482d3-3ec3-3541-c059-35968c17f3e3-6dcb1dd5 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_15e482d3-3ec3-3541-c059-35968c17f3f8-6dcb1dd5 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_0539956c-e5bb-0b11-2f6c-c496b6fc4f0d-6dcb1dd5 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0539956c-e5bb-0b11-2f6c-c496b6fc4f17-6dcb1dd5 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_203858a2-bccd-9232-360e-25d0c0793e21-6dcb1dd5 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_38690f70-d1be-4dfc-19e8-a24c12f8453c-6dcb1dd5 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_115ed4fc-5b1d-9449-30c3-e5d983551536-6dcb1dd5 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_115ed4fc-5b1d-9449-30c3-e5d98355153c-6dcb1dd5 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_39955a26-df98-77e4-1a68-a5173bb4f120-1b69e753 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_39955a26-df98-77e4-1a68-a5173bb4f130-1b69e753 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-abf0d7c1-1b9e-2a69-4c5f-9761a9458282-1b69e753 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-abf0d7c1-1b9e-2a69-4c5f-9761a9458294-1b69e753 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_5b2b7174-3b38-6ffb-2c01-efdd3bf354cc-1b69e753 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_5b2b7174-3b38-6ffb-2c01-efdd3bf354de-1b69e753 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_2de0ef8c-587b-6ca4-e03f-1f6e774da2df-1b69e753 {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-fbac1382-9dea-43e9-7603-cf0551765aa0-73426e67 {
    grid-row: 2 / 3;
  }

  #w-node-_071d96f2-f3a5-ab15-b4f4-0dd7eabb4d2b-73426e67 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_633cac60-db47-2ef6-67da-a3324003227a-73426e67 {
    grid-row: 2 / 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_86e64837-0616-515b-4568-76c147234d34-c074d214 {
    grid-row: 2 / 3;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d3f-c074d214 {
    grid-row: 1 / 2;
  }

  #w-node-f0a59ce8-d271-ed94-4d23-92402335dce9-c074d214 {
    grid-row: 2 / 3;
  }

  #w-node-f0a59ce8-d271-ed94-4d23-92402335dcf0-c074d214 {
    grid-row: 1 / 2;
  }

  #w-node-eaac1590-be44-e3bb-f859-4f85bb9dcd17-9102365c {
    grid-row: 2 / 3;
  }

  #w-node-_115d2688-8961-df2c-e7cd-b2927fe579c1-9102365c {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-d913056d-0e65-25e8-0717-07cd3db05f70-ea419c1d, #w-node-d913056d-0e65-25e8-0717-07cd3db05f75-ea419c1d, #w-node-d913056d-0e65-25e8-0717-07cd3db05f7f-ea419c1d, #w-node-d913056d-0e65-25e8-0717-07cd3db05f84-ea419c1d, #w-node-d913056d-0e65-25e8-0717-07cd3db05f89-ea419c1d, #w-node-d913056d-0e65-25e8-0717-07cd3db05f8e-ea419c1d, #w-node-d913056d-0e65-25e8-0717-07cd3db05f93-ea419c1d, #w-node-d913056d-0e65-25e8-0717-07cd3db05f98-ea419c1d, #w-node-de9140c3-4e7d-c7d8-1b4c-8ff28ad9df9f-ea419c1d, #w-node-_0fce62ee-3b53-c7a5-9fda-fb59df459aea-ea419c1d, #w-node-_954d9de9-7dd6-7e9e-31c5-4752e222125e-ea419c1d, #w-node-aa5071ec-85b3-daa3-e761-72ae2f872984-ea419c1d {
    grid-column: span 1 / span 1;
  }

  #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec07-d7d25f03 {
    grid-row: 2 / 3;
  }

  #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec0d-d7d25f03 {
    grid-row: 1 / 2;
  }

  #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec0f-d7d25f03 {
    grid-row: 2 / 3;
  }

  #w-node-f1daa0c7-e3da-5440-1b35-96092a90ec14-d7d25f03 {
    grid-row: 1 / 2;
  }

  #w-node-fbac1382-9dea-43e9-7603-cf0551765aa0-73426e67 {
    grid-row: 2 / 3;
  }

  #w-node-_071d96f2-f3a5-ab15-b4f4-0dd7eabb4d2b-73426e67 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_633cac60-db47-2ef6-67da-a3324003227a-73426e67 {
    grid-row: 2 / 3;
  }

  #w-node-d913056d-0e65-25e8-0717-07cd3db05f70-a8d72cc5, #w-node-d913056d-0e65-25e8-0717-07cd3db05f75-a8d72cc5, #w-node-d913056d-0e65-25e8-0717-07cd3db05f7f-a8d72cc5, #w-node-d913056d-0e65-25e8-0717-07cd3db05f84-a8d72cc5, #w-node-d913056d-0e65-25e8-0717-07cd3db05f89-a8d72cc5, #w-node-d913056d-0e65-25e8-0717-07cd3db05f8e-a8d72cc5, #w-node-d913056d-0e65-25e8-0717-07cd3db05f93-a8d72cc5, #w-node-d913056d-0e65-25e8-0717-07cd3db05f98-a8d72cc5, #w-node-de9140c3-4e7d-c7d8-1b4c-8ff28ad9df9f-a8d72cc5, #w-node-_57c79490-5fce-606b-cb9c-b67a71784d37-a8d72cc5, #w-node-caf60a05-93dc-2327-0d5e-0cd67d998178-a8d72cc5, #w-node-_2d50a708-0b23-1002-3ab5-6449074f3420-a8d72cc5 {
    grid-column: span 1 / span 1;
  }

  #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09a-79e106d2 {
    grid-row: 2 / 3;
  }

  #w-node-c859f30f-deb3-f575-6b42-5cd442a7d09f-79e106d2, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0a1-79e106d2 {
    grid-row: 1 / 2;
  }

  #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0a2-79e106d2, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0a8-79e106d2 {
    grid-row: 2 / 3;
  }

  #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0ad-79e106d2, #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0af-79e106d2 {
    grid-row: 1 / 2;
  }

  #w-node-c859f30f-deb3-f575-6b42-5cd442a7d0b0-79e106d2 {
    grid-row: 2 / 3;
  }

  #w-node-_92734d77-93ae-476b-2df2-5828a90ec4b0-f165d979, #w-node-_83311f60-90f4-41c6-30b0-fced02c3e712-f165d979 {
    order: -9999;
  }

  #w-node-_82b61a1e-9e48-8c2c-9610-e2c9c500fb74-6ef39c6e, #w-node-_82b61a1e-9e48-8c2c-9610-e2c9c500fb79-6ef39c6e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4651a020-c846-2569-d429-94be295cd371-293b80c8, #w-node-_4651a020-c846-2569-d429-94be295cd378-293b80c8, #w-node-_4651a020-c846-2569-d429-94be295cd37f-293b80c8, #w-node-_4651a020-c846-2569-d429-94be295cd386-293b80c8, #w-node-_4651a020-c846-2569-d429-94be295cd38d-293b80c8, #w-node-_9a0be8ba-3281-4c2d-39f7-3cfa86be2513-293b80c8, #w-node-fdfe0e7b-cae7-dbd6-ff05-967527811128-293b80c8, #w-node-_7a0edcb6-d8dd-714d-212d-f7c358ed584f-293b80c8, #w-node-e9ff1840-4749-9978-84cc-7c7aff96d5d7-293b80c8, #w-node-_65fb6311-d493-9956-8958-8ae3f919e212-293b80c8, #w-node-eefecf11-97ab-7c4f-318e-577b1dce2b60-293b80c8, #w-node-_3684eb87-ca33-fa19-6102-a6719bb0ed49-293b80c8, #w-node-_336cffb6-5e3f-f8a7-87ca-3e0ed6594da1-293b80c8, #w-node-d4d3f199-0d07-013e-c93b-c75e72512585-293b80c8, #w-node-_5c544a04-99f0-f085-6adf-1f5f7cad2f88-293b80c8, #w-node-e2171331-d1a2-d934-6f4c-5d2848f75ffe-293b80c8, #w-node-_552b99c5-1241-f3fb-b2e7-515aca05454a-293b80c8, #w-node-_0966e7da-e311-9a7f-47a4-2c6a9fb952b6-293b80c8 {
    grid-column: span 1 / span 1;
  }
}


