:root {
  --aquamarine: #a0f0d3;
  --medium-sea-green: #09a63d;
  --black-2: #202020;
  --black: #282828;
  --floral-white: #fdfbf4;
  --gainsboro: #dbdbdb;
}

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

body {
  color: #333;
  font-family: Sora, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: var(--aquamarine);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  color: var(--medium-sea-green);
  letter-spacing: 1px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Sora, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: var(--medium-sea-green);
  margin-top: 0;
  margin-bottom: 0;
}

h4 {
  color: var(--medium-sea-green);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1em;
}

p {
  color: var(--black-2);
  margin-bottom: 0;
  font-family: Sora, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.9em;
}

a {
  color: var(--medium-sea-green);
  font-weight: 600;
  text-decoration: none;
}

li {
  color: var(--black);
  font-size: 1em;
  line-height: 1.8em;
}

img {
  max-width: 100%;
  display: inline-block;
}

strong {
  color: var(--medium-sea-green);
  font-weight: 700;
}

figure {
  margin-bottom: 10px;
}

.body-dark {
  background-color: #fdfbf4;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  font-family: Sora, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1em;
}

.body-dark.light {
  background-color: #f9f9f9;
}

.body-dark.light.blog {
  font-size: 1em;
  line-height: 1.6em;
}

.hero {
  background-image: url('../images/rocket.webp'), url('../images/planet-green2.png'), url('../images/planet-purple3.png'), url('../images/planet-blue.png'), url('../images/planet-green.png');
  background-position: 54% 25%, 95% 30%, 95% 5%, 5% 80%, 10% 5%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto, auto, auto;
  height: auto;
  padding-bottom: 5rem;
}

.hero.add-pages {
  background-image: url('../images/planet-green2.png'), url('../images/planet-purple3.png'), url('../images/planet-blue.png'), url('../images/planet-green.png');
  background-position: 95% 30%, 95% 5%, 5% 80%, 10% 5%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto, auto;
}

.container {
  border: 1px #000;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  font-size: 14px;
}

.container.edged-mob {
  padding-bottom: 0;
}

.nav {
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  margin-top: 0;
  padding-top: 3vh;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
}

.image {
  display: none;
}

.div-block {
  flex: 0 auto;
  align-items: center;
  display: flex;
}

.link {
  color: #202020;
  letter-spacing: .6px;
  padding: 14px 24px;
  font-size: 1em;
  font-weight: 600;
  line-height: 1em;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.link:hover {
  color: var(--medium-sea-green);
}

.link.btn-outline {
  color: var(--medium-sea-green);
  border: 2px solid #09a63d66;
  border-radius: 500px;
  font-weight: 700;
  transition: all .2s ease-in-out;
}

.link.btn-outline:hover {
  color: var(--black);
  background-color: #d3f0dd;
  border: 2px solid #d3f0dd;
}

.link.btn-outline.black {
  padding-top: 15px;
  padding-bottom: 13px;
}

.link.dd {
  color: var(--black);
  display: block;
}

.link.dd:hover {
  background-color: #fff;
}

.link.black {
  color: var(--black);
}

.div-block-2 {
  margin-top: 10vh;
  padding-bottom: 5em;
  padding-left: 20px;
  padding-right: 20px;
}

.grid {
  grid-column-gap: 19vh;
  grid-row-gap: 5vh;
  background-image: url('../images/planet-purple2.png');
  background-position: 60% 100%;
  background-repeat: no-repeat;
  background-size: auto;
  grid-template-rows: auto;
  align-items: center;
}

.grid.middle {
  grid-column-gap: 16vh;
  place-content: center;
  place-items: center;
}

.grid.middle.ct {
  grid-column-gap: 3vh;
  grid-row-gap: 3vh;
  grid-template-columns: 1fr;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.grid.middle.blog {
  grid-column-gap: 0vh;
  background-image: none;
  grid-template-columns: 1fr;
  justify-items: start;
}

.image-3 {
  z-index: 1;
  border-radius: 20px;
  position: relative;
}

.pre-heading {
  color: var(--black-2);
  text-align: center;
  letter-spacing: 2px;
  text-indent: 0;
  text-transform: uppercase;
  background-color: #d3f0dd;
  border: 1px #747474;
  border-radius: 20px;
  margin-bottom: 2vh;
  padding: 7px 17px 6px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.pre-heading.solid {
  color: var(--black);
  background-color: #eff1fe;
  border-style: none;
}

.pre-heading.solid.stick2top {
  justify-content: space-between;
  align-items: stretch;
  margin-top: -12px;
  display: inline-block;
}

.pre-heading.short {
  align-self: center;
  margin-bottom: 3vh;
  position: static;
  inset: 7% auto auto 2%;
}

.pre-heading.short.blog {
  border-color: var(--medium-sea-green);
  color: var(--black);
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 600;
  display: inline-block;
  position: static;
}

.pre-heading.black {
  color: var(--black);
}

.pre-heading._3bottom {
  margin-bottom: 3vh;
}

.pre-heading._3bottom.solid {
  background-color: #d3f0dd;
}

.pre-heading._1 {
  display: block;
}

.pre-heading._2 {
  display: none;
}

.heading {
  color: #202020;
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 3vh;
  font-family: Sora, sans-serif;
  font-size: 4em;
  font-weight: 600;
  line-height: 1.1em;
}

.heading.black {
  color: var(--black);
}

.heading.black.blog-title {
  text-align: left;
}

.heading.black.blog-title._1 {
  font-size: 2.4em;
  font-weight: 600;
  line-height: 1em;
}

.heading.black.blog-title._1.white {
  color: var(--medium-sea-green);
  font-size: 3.6em;
}

.heading.ct {
  color: var(--medium-sea-green);
  margin-bottom: 0;
  font-size: 3.8em;
  font-weight: 700;
}

.heading._2 {
  display: none;
}

.btn-green {
  background-color: var(--medium-sea-green);
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  flex: 0 auto;
  min-width: 240px;
  padding: 20px 37px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.btn-green:hover {
  color: var(--black);
  background-color: #d3f0dd;
  transform: translate(0, -5px);
}

.btn-green.blog-readmore {
  text-align: center;
  align-self: flex-start;
  min-width: 230px;
}

.btn-green.short {
  flex: 0 auto;
}

.btn-green.buton-bottom {
  margin-bottom: -20px;
}

.btn-green.button-up {
  text-align: center;
  margin-top: -20px;
  margin-left: 30px;
  display: inline-block;
}

.div-block-3 {
  align-items: center;
  margin-top: 1.9rem;
  padding-bottom: 0;
  display: inline-block;
  position: relative;
}

.div-block-3.center {
  justify-content: center;
}

.desc {
  float: none;
  color: var(--black-2);
  letter-spacing: 0;
  align-self: center;
  max-width: none;
  margin-left: 0;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.9em;
  display: block;
}

.desc._20indent {
  margin-left: 20px;
}

.desc._20indent.black, .desc.black {
  color: var(--black);
}

.desc.dark {
  color: var(--floral-white);
  font-size: 1em;
}

.div-block-4 {
  grid-column-gap: 2em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0;
  display: flex;
}

.div-block-4.middle {
  padding: 0;
}

.div-block-5 {
  background-color: #fff;
  border-radius: 20px;
  min-height: 25vh;
  margin-top: -5vh;
}

.section-2 {
  background-color: #0000;
  width: 100%;
  padding-top: 0;
  padding-bottom: 5rem;
}

.grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #0000;
  border: 2px #202020;
  border-radius: 0;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 25vh;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.h2 {
  letter-spacing: -1px;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 0%;
  font-family: Sora, sans-serif;
  font-size: 2.3em;
  font-weight: 600;
  line-height: 1.2em;
}

.h2.white {
  color: var(--medium-sea-green);
  letter-spacing: -1px;
  margin-top: 0;
  font-size: 2.3em;
  font-weight: 600;
  line-height: 1.3em;
}

.h2.white.light {
  color: #fff;
  letter-spacing: 0;
  font-size: 2.3em;
  line-height: 1.1em;
}

.h2.white.blog {
  color: #fff;
  align-self: stretch;
}

.h2.green {
  color: #fff;
  font-weight: 400;
}

.h2.cut {
  padding-right: 0%;
  font-size: 1.9em;
  font-weight: 400;
}

.h2.smaller {
  text-align: center;
  font-size: 1.8em;
}

.text-span {
  font-size: .9em;
  font-weight: 400;
  line-height: .5px;
}

.div-block-6 {
  text-align: center;
  padding-left: 48px;
}

.step {
  background-image: url('../images/1.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-top: 28px;
  padding-bottom: 28px;
  padding-right: 10%;
}

.step._2 {
  background-image: url('../images/2.svg');
}

.step._3 {
  background-image: url('../images/3.svg');
}

.h3 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Sora, sans-serif;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1em;
}

.h3.white {
  color: var(--medium-sea-green);
  font-weight: 700;
  line-height: 1.5em;
  display: block;
}

.h3.white.qoute {
  color: #202020;
  letter-spacing: 0;
  text-transform: none;
  max-width: 500px;
  margin: 0 auto;
  padding: 23px 0;
  font-family: Sora, sans-serif;
  font-size: 1.7em;
  font-weight: 400;
  line-height: 1.6em;
}

.image-4 {
  margin-bottom: 20px;
}

.paragraph {
  color: #202020;
  letter-spacing: 0;
  font-family: Sora, sans-serif;
  font-size: 1.1em;
  font-weight: 400;
  line-height: 1.9em;
}

.paragraph.footer {
  color: #666;
  margin-top: 2vh;
  margin-bottom: 0;
  font-size: .8em;
  line-height: 1.9em;
}

.paragraph.dark {
  color: var(--floral-white);
  font-weight: 400;
}

.div-block-8 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 4.5vh;
  display: block;
}

.titleblock {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 5vh;
  display: flex;
}

.heading-4 {
  margin-top: 0;
  margin-bottom: 0;
}

.div-block-10 {
  text-align: center;
  max-width: 600px;
  margin-top: 3vh;
  margin-left: auto;
  margin-right: auto;
}

.grid-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 1px #484848;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.image-5 {
  float: left;
  margin-bottom: 0;
  display: block;
}

.div-block-11 {
  border-right: 1px #484848;
  border-radius: 20px;
  flex-direction: row;
  min-height: 27vh;
  padding: 6vh 20px 2vh;
  transition: all .2s ease-in-out;
  display: flex;
}

.div-block-11:hover {
  background-color: #0000;
  background-image: linear-gradient(#09a63d00 67%, #09a63d29);
  transform: translate(0, -10px);
}

.div-block-11.border {
  border-style: none solid;
  border-top-width: 1px;
  border-top-color: #000;
  border-bottom-width: 1px;
  border-bottom-color: #000;
  border-left-width: 1px;
  border-left-color: #484848;
}

.div-block-11.border:hover {
  background-color: #0000;
  background-image: linear-gradient(#09a63d00, #09a63d29);
}

.div-block-12 {
  background-color: #fdfbf4;
  background-image: url('../images/planet-purple.png');
  background-position: 96% 8%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 2px solid #202020;
  border-radius: 20px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  min-height: 25vh;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
  display: flex;
}

.image-6 {
  float: left;
  width: 138px;
  height: 200px;
  margin-top: -78px;
  margin-left: 33px;
}

.text-block-2 {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1vh;
  font-size: 12px;
  font-weight: 600;
}

.div-block-13 {
  width: 100%;
  margin-left: 69px;
}

.div-block-14 {
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  display: flex;
}

.div-block-15 {
  margin-top: 2vh;
}

.section-3 {
  height: auto;
  min-height: 50vh;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.grid-4 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 2px solid #202020;
  border-radius: 20px;
  grid-template-rows: auto;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-16 {
  text-align: left;
  border-right: 1px solid #484848;
  padding: 5vh;
  font-size: 14px;
}

.div-block-17, .div-block-18 {
  margin-top: 3vh;
}

.div-block-19 {
  text-align: center;
  border: 0 #000;
  padding: 5vh 0;
}

.div-block-19._2 {
  align-items: center;
  font-size: 14px;
  display: flex;
}

.div-block-19._2:hover {
  background-image: linear-gradient(#09a63d00, #09a63d29 99%, #fff);
}

.slider {
  background-color: #0000;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  max-width: 540px;
  height: auto;
  display: flex;
  position: relative;
}

.icon {
  color: var(--medium-sea-green);
  background-color: #0000;
  border: 1px solid #a0f0d333;
  border-radius: 500px;
  padding: 6px 22px 23px 7px;
  font-size: 16px;
}

.icon-2 {
  color: var(--medium-sea-green);
  background-color: #0000;
  border: 1px solid #a0f0d333;
  border-radius: 500px;
  padding: 6px 22px 23px 7px;
  font-size: 16px;
  position: relative;
}

.div-block-20 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.heading-5 {
  align-self: center;
}

.image-7 {
  align-self: center;
  margin-bottom: 28px;
}

.slide-nav {
  font-size: 8px;
  position: static;
}

.mask {
  flex: 1;
  align-self: stretch;
  height: auto;
  position: relative;
}

.right-arrow {
  transition: all .2s ease-in-out;
}

.right-arrow:hover {
  transform: translate(10px);
}

.left-arrow {
  transition: all .2s ease-in-out;
}

.left-arrow:hover {
  transform: translate(-10px);
}

.section-4 {
  background-image: url('../images/631e387c53eb6869f8d76d19_img3.webp'), url('../images/dots.svg');
  background-position: 50% 120%, 50% 70%;
  background-repeat: no-repeat, repeat-x;
  background-size: auto, contain;
  min-height: 50vh;
  padding-top: 10vh;
  padding-bottom: 40vh;
}

.grid-5 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
}

.div-block-21 {
  min-width: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.image-8 {
  text-align: left;
  width: 180px;
  height: 174px;
  margin-top: -8vh;
  display: inline-block;
}

.div-block-22 {
  background-color: var(--floral-white);
  text-align: center;
  background-image: url('../images/planet-green.png'), url('../images/planet-purple2.png');
  background-position: 90% 95%, 10% 3%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, 100px;
  border: 2px solid #202020;
  border-radius: 20px;
  padding-bottom: 5vh;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 14px;
}

.div-block-23 {
  padding-top: 3vh;
  padding-bottom: 3vh;
}

.bold-text {
  margin-top: 3vh;
  font-family: Chivo;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.4em;
  display: inline-block;
}

.banner.inmargin13 {
  margin-top: -13vh;
}

.section-5 {
  padding-top: 10vh;
  padding-bottom: 25vh;
}

.div-block-24 {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.div-block-24.left {
  text-align: left;
  margin-bottom: 50px;
  margin-left: 0;
  margin-right: auto;
}

.div-block-25 {
  background-image: url('../images/apps.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  min-height: 620px;
  margin-top: 5vh;
}

.section-6 {
  margin-top: -10vh;
}

.grid-6 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.faq-p {
  background-color: #0000;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-2 {
  color: #fff;
  white-space: break-spaces;
  background-color: #0000;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 600;
  transition: background-color .2s ease-in-out;
  display: flex;
}

.faq-2:hover {
  background-color: #0000;
  border-radius: 20px;
}

.faq-2.w--open {
  border-bottom: 1px solid #0000001a;
}

.faq-img {
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  display: flex;
  position: relative;
  inset: 0% auto 0% 0%;
}

.toggle-text {
  z-index: 0;
  color: var(--medium-sea-green);
  letter-spacing: 0;
  font-family: Sora, sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.3em;
  position: relative;
}

.faq-body {
  background-color: #0000;
  width: 100%;
  display: block;
  position: relative;
}

.faq-body.w--open {
  background-color: #0000;
}

.faq-body-cont {
  background-color: #0000;
  border-top: 1px #000;
  padding: 0 30px 0 60px;
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
}

.faq-answer {
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
}

.faq-answer.paragraph {
  color: var(--black);
  letter-spacing: 0;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.9em;
}

.image-9 {
  margin-right: 10px;
}

.fs-slide-content {
  background-color: #fff;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 40vh;
  margin-bottom: 0;
  display: block;
  overflow: hidden;
}

.section-7 {
  padding-top: 10vh;
  padding-bottom: 5rem;
}

.section-7.about {
  padding-top: 0;
}

.fs-mask {
  min-height: 40vh;
}

.fs-slider {
  background-color: #0000;
  height: auto;
  display: block;
}

.grid-7 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  place-content: space-around;
  place-items: center stretch;
}

.div-block-27 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 40vh;
}

.div-block-28 {
  text-align: left;
  background-image: linear-gradient(#0000 32%, #000000bf);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 40vh;
  padding: 7%;
  display: flex;
}

.div-block-29 {
  flex-direction: column;
  justify-content: space-between;
  padding: 9%;
  display: flex;
}

.slide-nav-2 {
  letter-spacing: 0;
  font-size: 7px;
  bottom: -52px;
}

.section-8 {
  background-color: #000;
  height: auto;
  padding-bottom: 2vh;
}

.grid-8 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  border-bottom: 1px solid var(--black);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-bottom: 3vh;
}

.image-10 {
  width: 120px;
  height: 118px;
  margin-top: -47px;
  display: block;
}

.image-11 {
  margin-top: 13px;
  margin-bottom: 3vh;
  display: block;
}

.image-12 {
  margin-top: 3vh;
}

.div-block-30 {
  padding-top: 8vh;
}

.text-block-3 {
  color: var(--gainsboro);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 3vh;
  font-family: Sora, sans-serif;
  font-size: .8em;
  font-weight: 500;
}

.text-block-4 {
  font-weight: 400;
  text-decoration: none;
}

.link-block {
  color: var(--medium-sea-green);
  justify-content: space-between;
  max-width: 230px;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: .8em;
  text-decoration: none;
  display: flex;
}

.link-block.w--current {
  margin-bottom: 0;
}

.div-block-31 {
  padding-right: 10%;
}

.div-block-32 {
  background-color: #fdfdfd;
  border-radius: 20px;
  margin-top: 0;
  padding: 38px;
  font-weight: 400;
}

.text-block-5 {
  margin-bottom: 3vh;
  font-size: 1.3em;
  line-height: 1.3em;
}

.image-13 {
  float: right;
  margin-left: 20px;
}

.text-block-6 {
  font-size: 1em;
  line-height: 1.6em;
}

.text-block-7 {
  font-size: .9em;
  line-height: 1.6em;
}

.grid-9 {
  grid-template-rows: auto;
}

.section-9 {
  padding-top: 0;
  padding-bottom: 15vh;
}

.section-9.about {
  background-image: none;
  padding-bottom: 5rem;
}

.image-14 {
  margin-bottom: 0;
}

.text-block-8 {
  color: var(--black-2);
  letter-spacing: .5px;
  margin-top: 5vh;
  font-family: Sora, sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.3em;
}

.icon-5 {
  color: var(--medium-sea-green);
  font-size: .6em;
}

.icon-5.black {
  color: var(--black);
}

.dropdown-toggle {
  padding: 0 16px 0 0;
  display: flex;
}

.dropdown-list {
  background-color: #d8e6e1;
  display: none;
}

.dropdown-list.w--open {
  background-color: #ebebeb;
  border-radius: 10px;
  overflow: hidden;
}

.dropdown {
  border-radius: 10px;
  display: block;
  overflow: visible;
}

.form-ghost {
  z-index: 1;
  text-align: center;
  border-radius: 20px;
  min-height: 50vh;
  margin-left: auto;
  margin-right: auto;
  position: static;
  overflow: hidden;
}

.hero-white {
  height: auto;
  padding-bottom: 10vh;
}

.div-block-34 {
  margin-top: 10vh;
  margin-left: auto;
  margin-right: auto;
}

.div-block-34.blog {
  border-left: 1px solid #00000045;
  max-width: 900px;
  padding-left: 50px;
  padding-right: 50px;
}

.div-block-34.ct {
  margin-top: 5vh;
}

.section-10 {
  background-image: url('../images/631e0070674bfc37cc20b2b7_integromat-img.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.grid-10 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  justify-content: space-between;
  align-items: start;
  max-width: 1300px;
}

._3vh-bottom {
  margin-bottom: 3vh;
}

._3vh-bottom.title-block {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

._3vh-top {
  margin-top: 3vh;
}

.div-block-35 {
  padding-right: 20px;
}

.div-block-36 {
  max-width: 550px;
}

.div-block-36.centerbox {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-11 {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.grid-11 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  align-items: center;
}

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

.div-block-37 {
  background-image: url('../images/631e0070674bfc35f720b298_puzzle.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0 solid #000;
  border-radius: 0;
}

.section-12 {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.div-block-38 {
  padding-right: 20px;
}

.section-13 {
  background-image: url('../images/partner-img.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10vh;
  padding-bottom: 20vh;
}

.div-block-39 {
  text-align: center;
}

.section-14 {
  margin-top: -13vh;
}

.image-16, .mobile-nav {
  display: none;
}

.link-2 {
  color: var(--black);
}

.link-2.w--current {
  color: var(--medium-sea-green);
}

.div-block-42 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 10px;
  min-height: 30vh;
  margin-left: -14vh;
}

.div-block-42.blog-featured-image {
  border-radius: 5px;
  width: 100%;
  min-height: 400px;
  margin-left: 0;
  margin-right: 0;
}

.rich-text-block {
  color: var(--black-2);
  margin-top: 5vh;
  font-family: Sora, sans-serif;
  font-size: 16px;
}

.section-15 {
  padding-top: 5vh;
  padding-bottom: 10vh;
}

.paragraph-accent {
  color: var(--floral-white);
  margin-bottom: 14px;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.9em;
  display: inline-block;
}

.paragraph-accent.dark {
  color: var(--black-2);
  font-size: 1.2em;
  font-weight: 400;
}

.homepage {
  margin-top: -12vh;
}

.link-block-2 {
  background-color: var(--medium-sea-green);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 200px;
  justify-content: center;
  align-self: auto;
  align-items: center;
  max-width: 200px;
  padding: 18px;
  font-size: .8em;
  font-weight: 700;
  display: flex;
}

.services {
  padding-top: 10vh;
  padding-bottom: 0;
}

.grid-12 {
  grid-column-gap: 80px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin-top: 0;
}

.div-block-43 {
  text-align: center;
  max-width: 700px;
  margin-bottom: 10vh;
  margin-left: auto;
  margin-right: auto;
}

._500 {
  max-width: 500px;
}

.fs-collection-wrapper {
  display: block;
}

.fs-collection-wrapper.hide {
  display: none;
}

.fs-collection-list {
  width: 100%;
  height: 100%;
}

.fs-collection-list.hide, .fs-collection-list.fs-dynamic-feed {
  display: none;
}

.image-18, .image-19, .image-20, .image-21, .image-22, .image-23 {
  border-radius: 5px;
}

.link-3, .link-4, .link-5 {
  color: var(--medium-sea-green);
}

.link-6 {
  color: var(--medium-sea-green);
  font-weight: 500;
}

.div-block-44 {
  border-radius: 20px;
  overflow: hidden;
}

.image-24 {
  margin-top: 19px;
}

.div-block-45 {
  grid-column-gap: 20px;
  text-align: left;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.grid-13 {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  align-items: center;
}

.video {
  justify-content: space-between;
  width: 100%;
  margin-left: 0;
  display: flex;
}

.video.in-article {
  margin-left: -170px;
}

.heading-6 {
  color: #7fffd4;
  font-weight: 400;
}

.text-span-2 {
  color: #7fffd4;
}

.case-studies-list {
  margin-bottom: 7.7rem;
}

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

.ct-block {
  background-image: url('../images/cs-thumb.jpg');
  background-position: 50%;
  background-size: cover;
  align-items: flex-end;
  min-height: 50vh;
  padding: 0;
  display: flex;
}

.ct-block:hover {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.div-block-47 {
  background-image: linear-gradient(#00000080, #00000080);
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-self: stretch;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.div-block-47:hover {
  background-image: linear-gradient(#00000080, #00000080);
}

.case-study-title {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: Sora, sans-serif;
}

.pre-head {
  color: var(--aquamarine);
  letter-spacing: 4px;
  font-family: Sora, sans-serif;
  font-size: .7em;
  font-weight: 600;
}

.rich-text-block-2 {
  color: var(--gainsboro);
}

.rich-text-block-2.indent {
  padding-left: 2vw;
}

.text-block-10 {
  color: var(--gainsboro);
  margin-top: 24px;
}

.section-16 {
  padding: 31px;
}

.text-block-11 {
  color: var(--medium-sea-green);
  font-size: 1.4em;
}

.text-block-12 {
  color: var(--medium-sea-green);
  font-size: 1.4em;
  line-height: 1.2em;
}

.div-block-48 {
  padding: 14px;
}

.collection-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  padding: 11px;
  display: flex;
}

.image-25 {
  width: 100%;
  max-width: 100px;
  max-height: none;
  display: block;
}

.text-block-13 {
  color: var(--aquamarine);
  margin-bottom: 16px;
}

.text-block-14 {
  color: var(--black-2);
  margin-bottom: 11px;
}

.div-block-49 {
  align-self: stretch;
}

.div-block-50 {
  grid-column-gap: 20px;
  display: flex;
}

.text-block-15 {
  color: var(--medium-sea-green);
  margin-bottom: 30px;
  font-size: 1.8em;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3em;
}

.div-block-51 {
  float: left;
  background-image: url('../images/map.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  max-width: 300px;
  height: 100%;
  min-height: 20rem;
  max-height: none;
  margin-top: 0;
  margin-bottom: 20px;
  margin-right: 20px;
  display: inline-block;
}

.banner-copy.inmargin13 {
  margin-top: -13vh;
}

.div-block-52 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: var(--black-2);
  flex-wrap: wrap;
  align-self: stretch;
  align-items: center;
  padding: 15px;
  display: flex;
}

.image-26 {
  margin-left: -74px;
}

.text-span-3 {
  font-size: 1.3em;
  font-weight: 700;
}

.prehead {
  color: #202020;
  letter-spacing: 4px;
  font-weight: 600;
}

.bold-text-3 {
  color: #202020;
}

.div-block-53 {
  text-align: center;
  border: 2px solid #202020;
  border-radius: 20px;
  margin-top: 0;
  margin-left: 20px;
  margin-right: 20px;
  padding: 5% 5% 0%;
  font-size: 14px;
}

.image-27 {
  position: absolute;
  inset: auto -9% 0% auto;
}

.div-block-54 {
  width: auto;
  min-width: 100px;
  max-width: none;
}

.div-block-55 {
  margin-top: 2rem;
}

.bold-text-4, .bold-text-5, .bold-text-6, .bold-text-7 {
  color: var(--black-2);
}

.bold-text-8 {
  color: var(--medium-sea-green);
  background-color: #0000;
  padding: 10px 0;
  display: inline-block;
}

.bold-text-9 {
  color: var(--medium-sea-green);
}

.text-block-16 {
  border-style: solid;
  border-width: 2px 2px 2px 0;
  border-color: var(--black-2);
  background-color: var(--floral-white);
  text-align: right;
  padding: 30px 30px 43px;
  line-height: 1.9em;
}

.text-block-16._2 {
  margin-top: 30px;
  margin-left: -2rem;
  display: block;
}

.div-block-56 {
  display: none;
}

.text-span-4 {
  font-weight: 700;
}

.bold-text-10 {
  color: var(--black-2);
}

.link-7, .link-8 {
  color: var(--medium-sea-green);
  font-weight: 600;
}

.bold-text-11, .bold-text-12, .bold-text-13, .bold-text-14 {
  color: var(--black-2);
}

.link-9 {
  color: var(--medium-sea-green);
  font-weight: 500;
}

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

.div-block-57 {
  min-height: 16rem;
  padding-top: 1rem;
  padding-left: 1rem;
}

.div-block-58 {
  grid-column-gap: 2rem;
  grid-row-gap: 1rem;
  background-color: #fff;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 2.1rem;
  display: flex;
}

.collection-item-2 {
  grid-column-gap: 0px;
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  padding-bottom: 2.1rem;
  padding-left: 2.1px;
  display: flex;
  overflow: hidden;
  box-shadow: 3px 3px 10px -5px #00000045;
}

.heading-7 {
  margin-top: 0;
  margin-bottom: 0;
}

.div-block-59 {
  padding-left: 2.1rem;
  padding-right: 2.1rem;
}

.text-block-17 {
  color: var(--floral-white);
  display: block;
}

.section-17 {
  padding-bottom: 5rem;
}

.div-block-60 {
  text-align: center;
}

.image-28 {
  margin-bottom: 20px;
}

.text-block-18 {
  float: left;
  flex: 0 auto;
  align-self: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.4em;
  line-height: 1.7em;
  display: inline-block;
}

.div-block-61 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.white-box {
  grid-column-gap: 1rem;
  grid-row-gap: .25rem;
  background-color: #fff;
  flex-direction: column;
  flex: 0 auto;
  padding: 2.2rem;
  display: block;
}

.white-box.fn1 {
  margin-bottom: 72px;
}

.div-block-63 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.div-block-64 {
  grid-column-gap: 1rem;
  align-items: flex-start;
  display: flex;
}

.image-30 {
  float: right;
  align-self: flex-start;
  margin-top: 20px;
  margin-bottom: 0;
  margin-left: 0;
  display: inline-block;
  position: static;
}

.image-31 {
  float: right;
  clear: right;
  align-self: flex-end;
}

.paragraph-2 {
  float: left;
  clear: both;
  align-self: auto;
  display: inline-block;
}

.container-2 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  font-size: 16px;
  display: flex;
}

.container-2.padded {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #0000;
  border: 1px solid #3d665740;
  border-radius: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
}

.text-block-19 {
  margin-bottom: 3vh;
  font-size: 1.3em;
  line-height: 1.3em;
}

.text-block-19.white {
  color: #dbdbdb;
}

.h2-2 {
  letter-spacing: .5px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 0%;
  font-size: 2.3em;
  font-weight: 500;
  line-height: 1.2em;
}

.h2-2.white {
  color: #dbdbdb;
  letter-spacing: 1px;
  margin-top: 0;
  font-size: 2.3em;
  font-weight: 500;
  line-height: 1em;
}

.div-block-65 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.div-block-66 {
  margin-top: 3vh;
}

.desc-2 {
  color: var(--black);
  letter-spacing: .75px;
  max-width: none;
  margin-left: 0;
  font-size: .9em;
  font-weight: 300;
  line-height: 1.6em;
}

.grid-14 {
  grid-template-rows: auto;
}

.container-3 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  font-size: 16px;
  display: flex;
}

.container-3.padded {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #0000;
  border: 1px solid #25644d40;
  border-radius: 2rem;
  padding: 2rem;
}

.text-block-20 {
  margin-bottom: 3vh;
  font-size: 1.3em;
  line-height: 1.3em;
}

.text-block-20.white {
  color: #dbdbdb;
}

.h2-3 {
  letter-spacing: .5px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 0%;
  font-size: 2.3em;
  font-weight: 500;
  line-height: 1.2em;
}

.h2-3.white {
  color: #dbdbdb;
  letter-spacing: 1px;
  margin-top: 0;
  font-size: 2.3em;
  font-weight: 500;
  line-height: 1em;
}

.div-block-67 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.div-block-68 {
  margin-top: 3vh;
}

.grid-15 {
  grid-template-rows: auto;
}

.grid-16 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  justify-content: space-between;
  max-width: 1300px;
}

.grid-16._2025 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  place-items: start center;
}

.grid-16._2025.half {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: 1fr;
}

.popup {
  z-index: 999;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 400px;
  max-width: 600px;
  min-height: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: sticky;
}

.text-block-21 {
  text-transform: capitalize;
  flex: 1;
  justify-content: center;
  align-self: auto;
  align-items: center;
  font-size: .8em;
  font-weight: 400;
  display: flex;
}

.text-block-21.left {
  text-align: left;
  align-self: auto;
}

.div-block-69 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 550px;
  display: flex;
}

.container-4 {
  grid-column-gap: 6rem;
  grid-row-gap: 6rem;
  flex-flow: column;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  font-size: 16px;
  display: flex;
}

.container-4.padded {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #0000;
  border: 1px solid #a0f0d340;
  border-radius: 2rem;
  padding: 2rem;
}

.link-block-nav {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #282828;
  text-align: center;
  background-color: #f7f7f7;
  border: 1px solid #dbdbdb;
  border-radius: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 1rem .5rem;
  transition: all .2s ease-in-out;
  display: flex;
}

.link-block-nav:hover {
  background-color: #fff;
  border-color: #a0f0d3;
}

.link-block-nav.left-aligned {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-width: 120px;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1em;
}

.link-10 {
  color: #fff;
  letter-spacing: .6px;
  padding: 14px 24px;
  font-size: .9em;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  transition: all .2s;
}

.link-10:hover {
  color: #a0f0d3;
}

.link-10.dd {
  color: #282828;
}

.link-10.dd:hover {
  background-color: #fff;
}

.link-10.btn-outline {
  border: 1px solid #777;
  border-radius: 500px;
  font-weight: 600;
  transition: all .2s ease-in-out;
}

.link-10.btn-outline:hover {
  color: #282828;
  background-color: #a0f0d3;
  border-style: solid;
  border-color: #a0f0d3;
}

.link-10.btn-outline.black {
  padding-top: 15px;
  padding-bottom: 13px;
}

.link-10.black {
  color: #282828;
}

.link-10.black.hide {
  display: none;
}

.list {
  font-size: 1em;
}

.list.desc-3 {
  font-size: .9em;
}

.list.desc-3.dark {
  color: #282828;
}

.btn-green-2 {
  color: #282828;
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: #a0f0d3;
  border-radius: 100px;
  flex: none;
  min-width: 240px;
  padding: 20px 37px;
  font-size: .8em;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: inline-block;
}

.btn-green-2:hover {
  background-color: #85facf;
  transform: translate(0, -5px);
}

.div-block-70 {
  flex: 0 auto;
  align-items: center;
  display: flex;
}

.icon-7 {
  color: #a0f0d3;
  background-color: #0000;
  border: 1px solid #a0f0d333;
  border-radius: 500px;
  padding: 6px 22px 23px 7px;
  font-size: 16px;
}

.slide-nav-3 {
  letter-spacing: 0;
  font-size: 7px;
  bottom: -52px;
}

.image-36 {
  display: none;
}

.h2-4 {
  letter-spacing: .5px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 0%;
  font-size: 2.3em;
  font-weight: 500;
  line-height: 1.2em;
}

.h2-4.green {
  color: #a0f0d3;
  font-weight: 500;
}

.dropdown-2 {
  border-radius: 10px;
  overflow: visible;
}

.flex-block-10 {
  justify-content: center;
  align-self: stretch;
  align-items: center;
  max-width: 600px;
}

.flex-block-10.centered {
  margin-left: auto;
  margin-right: auto;
}

.heading-8 {
  text-align: center;
}

.icon-8 {
  color: #fff;
  font-size: .6em;
}

.icon-8.black {
  color: #282828;
}

.heading-9 {
  margin-top: -20px;
  margin-bottom: 0;
  font-size: 4rem;
  line-height: 1em;
}

._2col-section {
  flex-flow: row;
  width: 100%;
}

._2col-section.end {
  margin-bottom: 4rem;
}

.heading-10 {
  color: #fff;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 5vh;
  font-size: 3.6em;
  font-weight: 500;
  line-height: 1.1em;
}

.heading-10.black {
  color: #282828;
}

.heading-10.black.long-title.center {
  text-align: center;
  letter-spacing: 0;
  font-size: 2.5em;
  font-weight: 600;
}

.dropdown-list-3 {
  background-color: #8b5656;
}

.dropdown-list-3.w--open {
  background-color: #ebebeb;
  border-radius: 10px;
  overflow: hidden;
}

.div-block-71 {
  padding-right: 20px;
}

.div-block-71._2025 {
  font-weight: 500;
}

.section-18 {
  background-image: url('../images/dots-white.svg');
  background-position: 50% 100%;
  background-repeat: repeat-x;
  background-size: auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.paragraph-accent-2 {
  letter-spacing: .01em;
  margin-bottom: 14px;
  font-size: 1.2em;
  font-weight: 600;
  display: inline-block;
}

.paragraph-accent-2.dark {
  color: #282828;
}

.overlay {
  z-index: 1;
  position: relative;
}

.section-19 {
  background-image: url('../images/integromat-img.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.section-19.light {
  color: #282828;
  background-color: #f2f2f2;
  background-image: url('../images/bg-light.png');
  background-position: 50% 100%;
  background-size: contain;
  flex: 1;
}

.section-19.light.half {
  background-position: 0 100%;
  background-size: auto;
  align-self: stretch;
  padding-left: 5vh;
  padding-right: 5vh;
}

.section-19.light.half.other {
  background-color: #fafafa;
  background-image: url('../images/Background.png');
  background-position: 100% 100%;
  align-self: stretch;
}

.section-19.dark {
  color: #fff;
  background-color: #282828;
  background-image: url('../images/bg-dark.jpg');
  background-position: 50% 100%;
  background-size: contain;
}

.fs-slider-2 {
  background-color: #0000;
  height: auto;
}

.text-block-22 {
  text-align: left;
  margin-left: -5px;
  font-size: 2.7rem;
  line-height: 1em;
}

.div-block-72 {
  align-self: stretch;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.div-block-72._2col {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-37 {
  display: none;
}

.icon-9 {
  color: #a0f0d3;
  background-color: #0000;
  border: 1px solid #a0f0d333;
  border-radius: 500px;
  padding: 6px 22px 23px 7px;
  font-size: 16px;
  position: relative;
}

.pre-heading-2 {
  color: #ddd;
  letter-spacing: .2em;
  text-indent: 0;
  text-transform: uppercase;
  border: 1px solid #747474;
  border-radius: 20px;
  margin-bottom: 5vh;
  padding: 7px 17px 6px;
  font-size: .8rem;
  font-weight: 400;
  display: inline-block;
}

.pre-heading-2.black {
  color: #282828;
}

.pre-heading-2.black._2 {
  text-align: center;
  letter-spacing: .05em;
  text-transform: none;
  align-self: center;
  margin-bottom: 0;
  font-size: 1.1em;
  font-weight: 500;
}

.nav-2 {
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  margin-top: 0;
  padding-top: 3vh;
  text-decoration: none;
  display: flex;
}

._5col {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  align-self: stretch;
  margin-top: 3rem;
}

._5col._4col {
  flex: 1;
  order: 0;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-flow: row;
  align-self: stretch;
  place-items: center;
}

.hero-white-2 {
  height: auto;
  padding-bottom: 10vh;
}

.desc-3 {
  color: #dbdbdb;
  letter-spacing: 0;
  max-width: none;
  margin-left: 0;
  font-size: .9em;
  font-weight: 300;
  line-height: 1.6em;
}

.desc-3.dark {
  color: #282828;
}

.code-embed {
  width: 0;
  height: 0;
}

.grid-17 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  justify-content: space-between;
  max-width: 1300px;
}

.grid-17._2025 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  place-items: start center;
}

.div-block-73 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 550px;
  display: flex;
}

.image-39 {
  position: absolute;
  inset: 1rem 1rem auto auto;
}

.link-11 {
  color: #fff;
  letter-spacing: .6px;
  padding: 14px 24px;
  font-size: .9em;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  transition: all .2s;
}

.link-11:hover {
  color: #a0f0d3;
}

.link-11.dd {
  color: #282828;
}

.link-11.dd:hover {
  background-color: #fff;
}

.link-11.btn-outline {
  border: 1px solid #777;
  border-radius: 500px;
  font-weight: 600;
  transition: all .2s ease-in-out;
}

.link-11.btn-outline:hover {
  color: #282828;
  background-color: #a0f0d3;
  border-style: solid;
  border-color: #a0f0d3;
}

.link-11.btn-outline.black {
  padding-top: 15px;
  padding-bottom: 13px;
}

.link-11.black {
  color: #282828;
}

.link-11.black.hide {
  display: none;
}

.div-block-74 {
  flex: 0 auto;
  align-items: center;
  display: flex;
}

.slide-nav-4 {
  letter-spacing: 0;
  font-size: 7px;
  bottom: -52px;
}

.level-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: #282828;
  text-align: left;
  background-color: #fff;
  border: 2px solid #a0f0d3;
  border-radius: 14px;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  max-width: 246px;
  margin-bottom: 20px;
  padding: .9rem 1.5rem;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
  position: relative;
  box-shadow: 0 2px 16px #0000001f;
}

.level-link:hover {
  border-color: #dbdbdb;
  transform: translate(0, -6px);
  box-shadow: 0 0 8px #0000001f;
}

.image-40 {
  display: none;
}

.lvl {
  letter-spacing: .1em;
  font-size: .7em;
  font-weight: 500;
}

.lvl.light {
  color: #fff;
}

.h2-5 {
  letter-spacing: 0;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 0%;
  font-size: 2.3em;
  font-weight: 500;
  line-height: 1.2em;
}

.h2-5.green {
  color: #a0f0d3;
  font-weight: 500;
}

.dropdown-3 {
  border-radius: 10px;
  overflow: visible;
}

.icon-10 {
  color: #fff;
  font-size: .6em;
}

.icon-10.black {
  color: #282828;
}

.heading-11 {
  color: #fff;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 5vh;
  font-size: 3.6em;
  font-weight: 500;
  line-height: 1.1em;
}

.heading-11.black {
  color: #282828;
}

.heading-11.black.long-title {
  letter-spacing: 0;
}

.heading-11.black.long-title.center {
  text-align: center;
  font-size: 2.5em;
}

.heading-11.black.long-title.center.smaller {
  font-size: 2em;
}

.heading-11.black.long-title.center.nomargin {
  margin-bottom: 0;
  font-weight: 600;
}

.div-block-75 {
  padding-right: 20px;
}

.div-block-75._2025 {
  font-weight: 500;
}

.section-20 {
  background-image: url('../images/dots-white.svg');
  background-position: 50% 100%;
  background-repeat: repeat-x;
  background-size: auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.grid-18 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  display: flex;
}

.grid-18.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.text-block-23 {
  font-size: .8em;
}

.section-21 {
  background-image: url('../images/integromat-img.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.section-21.light {
  color: #282828;
  background-color: #f2f2f2;
  background-image: url('../images/bg-light.png');
  background-position: 50% 100%;
  background-size: contain;
  flex: 1;
}

.section-21.dark {
  background-color: #282828;
  background-image: url('../images/bg-dark.jpg');
  background-position: 50% 100%;
  background-size: contain;
}

.section-21.dark.end {
  margin-bottom: 4rem;
}

.text-block-24 {
  text-align: left;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1em;
}

.fs-slider-3 {
  background-color: #0000;
  height: auto;
}

.hero-container {
  align-self: stretch;
  width: 100%;
  margin-top: 4vh;
  margin-left: auto;
  margin-right: auto;
}

.image-41 {
  display: none;
}

.icon-11 {
  color: #a0f0d3;
  background-color: #0000;
  border: 1px solid #a0f0d333;
  border-radius: 500px;
  padding: 6px 22px 23px 7px;
  font-size: 16px;
  position: relative;
}

.div-block-77 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  place-content: center;
  align-self: stretch;
  align-items: center;
  margin-top: 5vh;
  display: flex;
}

.nav-3 {
  justify-content: space-between;
  align-items: center;
  min-height: 50px;
  margin-top: 0;
  padding-top: 3vh;
  text-decoration: none;
  display: flex;
}

.hero-white-3 {
  background-image: url('../images/logo-mesh-white.svg'), url('../images/dots-white.svg');
  background-position: 118% 100%, 50% 100%;
  background-repeat: no-repeat, repeat-x;
  background-size: auto, auto;
  height: auto;
  padding-bottom: 10vh;
}

.image-42 {
  margin-top: -20px;
  margin-left: -7px;
  margin-right: 5px;
  padding-left: 0;
}

.desc-4 {
  color: #dbdbdb;
  letter-spacing: 0;
  max-width: none;
  margin-left: 0;
  font-size: .9em;
  font-weight: 300;
  line-height: 1.6em;
}

.desc-4.dark {
  color: #282828;
}

.desc-4.black {
  color: #282828;
  flex: 1;
}

.grid-19 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  justify-content: space-between;
  max-width: 1300px;
}

.grid-19._2025 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  place-items: start center;
}

.grid-19._2025.half {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: 1fr;
}

.text-block-25 {
  text-transform: capitalize;
  flex: 1;
  justify-content: center;
  align-self: auto;
  align-items: center;
  font-size: .8em;
  font-weight: 400;
  display: flex;
}

.text-block-25.left {
  text-align: left;
  align-self: auto;
}

.div-block-78 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 550px;
  display: flex;
}

.div-block-79 {
  flex: 0 auto;
  align-items: center;
  display: flex;
}

.flex-block-11 {
  justify-content: center;
  align-items: center;
}

.image-44 {
  display: none;
}

.h2-6 {
  letter-spacing: .5px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 0%;
  font-size: 2.3em;
  font-weight: 500;
  line-height: 1.2em;
}

.dropdown-4 {
  border-radius: 10px;
  overflow: visible;
}

.icon-12 {
  color: #fff;
  font-size: .6em;
}

.icon-12.black {
  color: #282828;
}

.heading-12 {
  margin-top: -20px;
  margin-bottom: 0;
  font-size: 4rem;
  line-height: 1em;
}

.div-block-80 {
  padding-right: 20px;
}

.div-block-80._2025 {
  font-weight: 500;
}

.section-22 {
  background-image: url('../images/integromat-img.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.section-22.light {
  color: #282828;
  background-color: #f2f2f2;
  background-image: url('../images/bg-light.png');
  background-position: 50% 100%;
  background-size: contain;
  flex: 1;
}

.section-22.light.half {
  background-position: 0 100%;
  background-size: auto;
  align-self: stretch;
  padding-left: 5vh;
  padding-right: 5vh;
}

.section-22.light.half.other {
  background-color: #fafafa;
  background-image: url('../images/Background.png');
  background-position: 100% 100%;
  align-self: stretch;
}

.text-block-26 {
  text-align: left;
  margin-left: -5px;
  font-size: 2.7rem;
  line-height: 1em;
}

.div-block-81 {
  align-self: stretch;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.image-45 {
  display: none;
}

.desc-5 {
  color: #dbdbdb;
  letter-spacing: .75px;
  max-width: none;
  margin-left: 0;
  font-size: .9em;
  font-weight: 300;
  line-height: 1.6em;
}

.desc-5.dark {
  color: #282828;
  letter-spacing: 0;
}

.desc-5.dark.centred {
  text-align: center;
}

.desc-5.dark.centred.larger {
  font-size: 1.1em;
}

.grid-20 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  justify-content: space-between;
  max-width: 1300px;
}

.grid-20._2025 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  place-items: start center;
}

.grid-20._2025.half {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: 1fr;
}

.text-block-27 {
  text-transform: capitalize;
  flex: 1;
  justify-content: center;
  align-self: auto;
  align-items: center;
  font-size: .8em;
  font-weight: 400;
  display: flex;
}

.text-block-27.left {
  text-align: left;
  align-self: auto;
}

.div-block-82 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 550px;
  display: flex;
}

.div-block-83 {
  flex: 0 auto;
  align-items: center;
  display: flex;
}

.image-47 {
  display: none;
}

.h2-7 {
  letter-spacing: .5px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 0%;
  font-size: 2.3em;
  font-weight: 500;
  line-height: 1.2em;
}

.dropdown-5 {
  border-radius: 10px;
  overflow: visible;
}

.icon-13 {
  color: #fff;
  font-size: .6em;
}

.icon-13.black {
  color: #282828;
}

.heading-13 {
  margin-top: -20px;
  margin-bottom: 0;
  font-size: 4rem;
  line-height: 1em;
}

.heading-14 {
  color: #fff;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 5vh;
  font-size: 3.6em;
  font-weight: 500;
  line-height: 1.1em;
}

.heading-14.black {
  color: #282828;
}

.heading-14.black.long-title.center {
  text-align: center;
  font-size: 2.5em;
}

.heading-14.black.long-title.center.smaller {
  letter-spacing: 0;
  font-size: 2em;
}

.heading-14.black.long-title.center.nomargin {
  letter-spacing: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.div-block-84 {
  padding-right: 20px;
}

.div-block-84._2025 {
  font-weight: 500;
}

.section-23 {
  background-image: url('../images/integromat-img.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.section-23.light {
  color: #282828;
  background-color: #f2f2f2;
  background-image: url('../images/bg-light.png');
  background-position: 50% 100%;
  background-size: contain;
  flex: 1;
}

.section-23.light.half {
  background-position: 0 100%;
  background-size: auto;
  align-self: stretch;
  padding-left: 5vh;
  padding-right: 5vh;
}

.section-23.light.half.other {
  background-color: #fafafa;
  background-image: url('../images/Background.png');
  background-position: 100% 100%;
  align-self: stretch;
}

.text-block-28 {
  text-align: left;
  margin-left: -5px;
  font-size: 2.7rem;
  line-height: 1em;
}

.div-block-85 {
  align-self: stretch;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.image-48 {
  display: none;
}

.desc-6 {
  color: #dbdbdb;
  letter-spacing: .75px;
  max-width: none;
  margin-left: 0;
  font-size: .9em;
  font-weight: 300;
  line-height: 1.6em;
}

.desc-6.dark {
  color: #282828;
  letter-spacing: 0;
}

.desc-6.dark.centred {
  text-align: center;
}

.desc-6.dark.centred.larger {
  letter-spacing: 0;
  font-size: 1.1em;
}

.grid-21 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  justify-content: space-between;
  max-width: 1300px;
}

.grid-21._2025 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  place-items: start center;
}

.grid-21._2025.half {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: 1fr;
}

.text-block-29 {
  text-transform: capitalize;
  flex: 1;
  justify-content: center;
  align-self: auto;
  align-items: center;
  font-size: .8em;
  font-weight: 400;
  display: flex;
}

.text-block-29.left {
  text-align: left;
  align-self: auto;
}

.div-block-86 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 550px;
  display: flex;
}

.div-block-87 {
  flex: 0 auto;
  align-items: center;
  display: flex;
}

.image-50 {
  display: none;
}

.h2-8 {
  letter-spacing: .5px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 0%;
  font-size: 2.3em;
  font-weight: 500;
  line-height: 1.2em;
}

.dropdown-6 {
  border-radius: 10px;
  overflow: visible;
}

.heading-15 {
  color: #fff;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 5vh;
  font-size: 3.6em;
  font-weight: 500;
  line-height: 1.1em;
}

.heading-15.black {
  color: #282828;
}

.heading-15.black.long-title.center {
  text-align: center;
  letter-spacing: 0;
  font-size: 2.5em;
  font-weight: 600;
}

.div-block-88 {
  padding-right: 20px;
}

.div-block-88._2025 {
  font-weight: 500;
}

.section-24 {
  background-image: url('../images/integromat-img.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.section-24.light {
  color: #282828;
  background-color: #f2f2f2;
  background-image: url('../images/bg-light.png');
  background-position: 50% 100%;
  background-size: contain;
  flex: 1;
}

.section-24.light.half {
  background-position: 0 100%;
  background-size: auto;
  align-self: stretch;
  padding-left: 5vh;
  padding-right: 5vh;
}

.section-24.light.half.other {
  background-color: #fafafa;
  background-image: url('../images/Background.png');
  background-position: 100% 100%;
  align-self: stretch;
}

.text-block-30 {
  text-align: left;
  margin-left: -5px;
  font-size: 2.7rem;
  line-height: 1em;
}

.div-block-89 {
  align-self: stretch;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.image-51 {
  display: none;
}

.desc-7 {
  color: #dbdbdb;
  letter-spacing: .75px;
  max-width: none;
  margin-left: 0;
  font-size: .9em;
  font-weight: 300;
  line-height: 1.6em;
}

.desc-7.dark {
  color: #282828;
  letter-spacing: 0;
}

.desc-7.dark.centred {
  text-align: center;
}

.desc-7.dark.centred.larger {
  letter-spacing: 0;
  font-size: 1.1em;
}

.grid-22 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  justify-content: space-between;
  max-width: 1300px;
}

.grid-22._2025 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  place-items: start center;
}

.grid-22._2025.half {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: 1fr;
}

.text-block-31 {
  text-transform: capitalize;
  flex: 1;
  justify-content: center;
  align-self: auto;
  align-items: center;
  font-size: .8em;
  font-weight: 400;
  display: flex;
}

.text-block-31.left {
  text-align: left;
  align-self: auto;
}

.div-block-90 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  max-width: 550px;
  display: flex;
}

.div-block-91 {
  flex: 0 auto;
  align-items: center;
  display: flex;
}

.image-53 {
  display: none;
}

.h2-9 {
  letter-spacing: .5px;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 0%;
  font-size: 2.3em;
  font-weight: 500;
  line-height: 1.2em;
}

.dropdown-7 {
  border-radius: 10px;
  overflow: visible;
}

.heading-16 {
  color: #fff;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 5vh;
  font-size: 3.6em;
  font-weight: 500;
  line-height: 1.1em;
}

.heading-16.black {
  color: #282828;
}

.heading-16.black.long-title.center {
  text-align: center;
  letter-spacing: 0;
  font-size: 2.5em;
  font-weight: 600;
}

.div-block-92 {
  padding-right: 20px;
}

.div-block-92._2025 {
  font-weight: 500;
}

.section-25 {
  background-image: url('../images/integromat-img.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.section-25.light {
  color: #282828;
  background-color: #f2f2f2;
  background-image: url('../images/bg-light.png');
  background-position: 50% 100%;
  background-size: contain;
  flex: 1;
}

.section-25.light.half {
  background-position: 0 100%;
  background-size: auto;
  align-self: stretch;
  padding-left: 5vh;
  padding-right: 5vh;
}

.section-25.light.half.other {
  background-color: #fafafa;
  background-image: url('../images/Background.png');
  background-position: 100% 100%;
  align-self: stretch;
}

.text-block-32 {
  text-align: left;
  margin-left: -5px;
  font-size: 2.7rem;
  line-height: 1em;
}

.div-block-93 {
  align-self: stretch;
  width: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
}

.image-54 {
  display: none;
}

.desc-8 {
  color: #dbdbdb;
  letter-spacing: .75px;
  max-width: none;
  margin-left: 0;
  font-size: .9em;
  font-weight: 300;
  line-height: 1.6em;
}

.desc-8.dark {
  color: #282828;
  letter-spacing: 0;
}

.desc-8.dark.centred {
  text-align: center;
}

.desc-8.dark.centred.larger {
  letter-spacing: 0;
  font-size: 1.1em;
}

@media screen and (max-width: 991px) {
  .hero {
    background-position: -20%, 85% 3%, 5% 80%, 10% 5%;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav {
    padding-top: 3vh;
  }

  .link {
    display: none;
  }

  .grid {
    object-fit: fill;
    background-position: 100% 100%, 0 100%;
    grid-template-columns: 1fr;
    margin-bottom: 5vh;
    overflow: visible;
  }

  .grid.middle {
    margin-bottom: 0;
  }

  .grid.middle.ct {
    max-width: 80%;
  }

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

  .pre-heading._1 {
    display: none;
  }

  .pre-heading._2 {
    display: flex;
  }

  .heading {
    text-align: center;
  }

  .heading.black.blog-title {
    text-align: left;
  }

  .heading.black.blog-title._1.white {
    display: block;
  }

  .heading.ct {
    text-align: left;
    font-size: 3em;
  }

  .heading._2 {
    display: block;
  }

  .heading._1 {
    display: none;
  }

  .div-block-3 {
    text-align: center;
    flex-direction: row;
    justify-content: center;
    padding-bottom: 0;
  }

  .desc {
    align-self: flex-start;
    margin-top: 20px;
    margin-left: 0;
  }

  .div-block-4 {
    text-align: center;
    align-items: center;
  }

  .grid-2 {
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 600px;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    padding: 3vh 0;
  }

  .h2 {
    font-size: 2.2em;
    line-height: 1em;
  }

  .h2.cut {
    padding-right: 0%;
  }

  .div-block-6 {
    padding-left: 0;
  }

  .step {
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0%;
  }

  .h3.white.qoute {
    text-align: center;
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  .div-block-8 {
    margin-top: 0;
  }

  .titleblock {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .div-block-11 {
    grid-column-gap: 20px;
    min-height: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .div-block-12 {
    text-align: center;
    background-image: url('../images/planet-green.png'), url('../images/planet-purple3.png');
    background-position: 10% 20px, 80% 10%;
    background-repeat: no-repeat, no-repeat;
    background-size: auto, auto;
    flex-direction: column;
    padding-bottom: 5vh;
    padding-left: 29px;
    padding-right: 29px;
  }

  .image-6 {
    margin-top: -119px;
    margin-left: 0;
  }

  .text-block-2 {
    font-weight: 700;
  }

  .div-block-13 {
    margin-left: 0;
  }

  .div-block-14 {
    margin-top: 3vh;
  }

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

  .div-block-16 {
    text-align: center;
  }

  .slider {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-4 {
    background-position: 50% 100%, 0 0;
    background-size: auto 400px, auto;
    padding-bottom: 43vh;
  }

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

  .div-block-21 {
    display: none;
  }

  .section-5 {
    padding-bottom: 20vh;
  }

  .div-block-25 {
    background-size: auto 100%;
    min-height: 463px;
  }

  .grid-6 {
    grid-template-columns: 1.75fr;
  }

  .faq-2 {
    height: auto;
    padding-right: 0;
  }

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

  .section-7 {
    padding-top: 5rem;
  }

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

  .div-block-29 {
    grid-row-gap: 20px;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .grid-8 {
    grid-template-columns: .75fr .75fr;
  }

  .div-block-30, .div-block-31 {
    padding-right: 20px;
  }

  .div-block-32 {
    text-align: left;
  }

  .image-14 {
    margin-bottom: 0;
  }

  .dropdown {
    display: none;
  }

  .div-block-34 {
    width: auto;
  }

  .div-block-35 {
    padding-right: 20px;
  }

  .div-block-36 {
    max-width: none;
  }

  .grid-11 {
    grid-row-gap: 5vh;
    grid-template-columns: 1fr;
  }

  .div-block-37 {
    min-height: 31vh;
  }

  .div-block-38 {
    padding-right: 0;
  }

  .image-16 {
    cursor: pointer;
    flex: 0 auto;
    align-self: center;
    display: block;
  }

  .mobile-nav {
    z-index: 9;
    background-color: #00000080;
    display: none;
    position: fixed;
    inset: 0%;
  }

  .div-block-40 {
    justify-content: flex-end;
    margin-right: -52px;
    display: flex;
  }

  .link-2 {
    color: var(--black);
    justify-content: flex-start;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
  }

  .dropdown-toggle-2 {
    color: var(--black);
    justify-content: space-around;
    width: 100%;
    min-width: 300px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
    position: static;
  }

  .text-block-9 {
    font-weight: 600;
  }

  .icon-6 {
    color: var(--black);
  }

  .dropdown-list-2 {
    position: static;
  }

  .dropdown-list-2.w--open {
    background-color: var(--aquamarine);
    position: relative;
  }

  .dropdown-link {
    padding: 16px 33px;
    font-size: 1em;
    font-weight: 600;
  }

  .div-block-41 {
    background-color: #e7e7e7;
    width: 100%;
    max-width: 300px;
    display: block;
    position: absolute;
    inset: 0% auto 0% 0%;
  }

  .image-17 {
    cursor: pointer;
    display: block;
  }

  .div-block-42 {
    margin-left: 0;
  }

  .div-block-42.blog-featured-image {
    margin-left: 0;
    margin-right: 0;
  }

  .grid-12 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-43 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .link-block-3 {
    flex: 1;
  }

  .grid-13 {
    grid-row-gap: 30px;
    grid-template-columns: 1fr;
  }

  .collection-item {
    grid-template-columns: 1fr;
  }

  .rich-text-block-2 {
    flex: 1;
  }

  .collection-list {
    justify-content: center;
  }

  .image-27 {
    top: -8px;
  }

  .bold-text-8 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-56 {
    display: block;
  }

  .collection-list-2 {
    grid-template-columns: 1fr;
  }

  .div-block-60 {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .div-block-61 {
    flex-direction: column;
  }

  .div-block-63 {
    flex-direction: column;
    justify-content: space-between;
  }

  .image-29 {
    flex: none;
  }

  .image-30 {
    display: none;
  }

  .container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-2.padded {
    margin-left: 10px;
    margin-right: 10px;
  }

  .h2-2 {
    line-height: 1.2em;
  }

  .desc-2 {
    margin-top: 20px;
    margin-left: 0;
  }

  .container-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-3.padded {
    margin-left: 10px;
    margin-right: 10px;
  }

  .h2-3 {
    line-height: 1.2em;
  }

  .div-block-69 {
    max-width: none;
  }

  .container-4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-4.padded {
    margin-left: 10px;
    margin-right: 10px;
  }

  .link-10 {
    display: none;
  }

  .h2-4 {
    line-height: 1.2em;
  }

  .dropdown-2 {
    display: none;
  }

  ._2col-section {
    flex-flow: column;
  }

  .heading-10 {
    text-align: center;
  }

  .heading-10.black.long-title.center {
    margin-bottom: 0;
  }

  .div-block-71 {
    padding-right: 20px;
  }

  .div-block-72 {
    width: auto;
  }

  .div-block-72._2col {
    grid-column-gap: 6rem;
    grid-row-gap: 6rem;
    flex-flow: column;
  }

  .image-37 {
    cursor: pointer;
    flex: 0 auto;
    align-self: center;
    display: block;
  }

  .pre-heading-2 {
    text-align: left;
  }

  .nav-2 {
    padding-top: 3vh;
  }

  .desc-3 {
    margin-top: 20px;
    margin-left: 0;
  }

  .div-block-73 {
    max-width: none;
  }

  .link-11 {
    display: none;
  }

  .h2-5 {
    line-height: 1.2em;
  }

  .dropdown-3 {
    display: none;
  }

  .heading-11 {
    text-align: center;
  }

  .heading-11.black.long-title.center {
    margin-bottom: 0;
  }

  .heading-11.black.long-title.center.nomargin {
    font-weight: 600;
  }

  .div-block-75 {
    padding-right: 20px;
  }

  .hero-container {
    width: auto;
  }

  .image-41 {
    cursor: pointer;
    flex: 0 auto;
    align-self: center;
    display: block;
  }

  .nav-3 {
    padding-top: 3vh;
  }

  .desc-4 {
    margin-top: 20px;
    margin-left: 0;
  }

  .div-block-78 {
    max-width: none;
  }

  .h2-6 {
    line-height: 1.2em;
  }

  .dropdown-4 {
    display: none;
  }

  .div-block-80 {
    padding-right: 20px;
  }

  .div-block-81 {
    width: auto;
  }

  .image-45 {
    cursor: pointer;
    flex: 0 auto;
    align-self: center;
    display: block;
  }

  .desc-5 {
    margin-top: 20px;
    margin-left: 0;
  }

  .div-block-82 {
    max-width: none;
  }

  .h2-7 {
    line-height: 1.2em;
  }

  .dropdown-5 {
    display: none;
  }

  .heading-14 {
    text-align: center;
  }

  .heading-14.black.long-title.center {
    margin-bottom: 0;
  }

  .div-block-84 {
    padding-right: 20px;
  }

  .div-block-85 {
    width: auto;
  }

  .image-48 {
    cursor: pointer;
    flex: 0 auto;
    align-self: center;
    display: block;
  }

  .desc-6 {
    margin-top: 20px;
    margin-left: 0;
  }

  .div-block-86 {
    max-width: none;
  }

  .h2-8 {
    line-height: 1.2em;
  }

  .dropdown-6 {
    display: none;
  }

  .heading-15 {
    text-align: center;
  }

  .heading-15.black.long-title.center {
    margin-bottom: 0;
  }

  .div-block-88 {
    padding-right: 20px;
  }

  .div-block-89 {
    width: auto;
  }

  .image-51 {
    cursor: pointer;
    flex: 0 auto;
    align-self: center;
    display: block;
  }

  .desc-7 {
    margin-top: 20px;
    margin-left: 0;
  }

  .div-block-90 {
    max-width: none;
  }

  .h2-9 {
    line-height: 1.2em;
  }

  .dropdown-7 {
    display: none;
  }

  .heading-16 {
    text-align: center;
  }

  .heading-16.black.long-title.center {
    margin-bottom: 0;
  }

  .div-block-92 {
    padding-right: 20px;
  }

  .div-block-93 {
    width: auto;
  }

  .image-54 {
    cursor: pointer;
    flex: 0 auto;
    align-self: center;
    display: block;
  }

  .desc-8 {
    margin-top: 20px;
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .container.edged-mob {
    padding-left: 0;
    padding-right: 0;
  }

  .grid {
    grid-row-gap: 5vh;
  }

  .grid.middle.ct {
    max-width: 100%;
  }

  .pre-heading.short {
    top: 5%;
    left: 5%;
  }

  .heading {
    font-size: 3em;
  }

  .heading.black.blog-title {
    text-align: left;
  }

  .heading.black.blog-title._1.white {
    font-size: 2.6em;
  }

  .heading.ct {
    font-size: 2.5em;
  }

  .btn-green {
    align-self: stretch;
  }

  .desc {
    align-self: auto;
    font-size: 1em;
  }

  .grid-2 {
    margin-top: 0;
  }

  .h2.cut {
    padding-right: 0%;
  }

  .div-block-8 {
    margin-top: 2vh;
  }

  .titleblock {
    text-align: center;
  }

  .grid-3 {
    border-bottom-style: none;
    grid-template-columns: 1fr;
  }

  .div-block-11 {
    grid-column-gap: 20px;
    border: 1px #484848;
    border-color: #000 #484848 #484848 #000;
    padding-bottom: 3vh;
  }

  .div-block-11.border {
    border-bottom-style: solid;
    border-bottom-color: #484848;
  }

  .div-block-12 {
    border-radius: 0;
    padding-left: 41px;
    padding-right: 41px;
  }

  .div-block-13 {
    align-self: center;
    margin-left: 0;
  }

  .section-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .slider {
    flex: 1;
    max-width: 400px;
  }

  .section-4 {
    background-position: 50% 100%, 50% 0;
    background-size: auto 400px, auto;
    padding-bottom: 39vh;
  }

  .div-block-24.left {
    text-align: center;
    margin-bottom: 5vh;
  }

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

  .faq-img {
    min-width: 50px;
    min-height: 40px;
  }

  .grid-7 {
    border-radius: 20px;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .div-block-29 {
    padding: 7%;
  }

  .grid-8 {
    grid-template-columns: .75fr .75fr;
  }

  .div-block-32 {
    text-align: left;
  }

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

  .image-14 {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .grid-10 {
    grid-row-gap: 5vh;
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .div-block-35 {
    text-align: left;
    padding-right: 0;
  }

  .div-block-36 {
    text-align: left;
  }

  .mobile-nav {
    display: none;
  }

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

  .div-block-45 {
    text-align: center;
    flex-direction: column;
  }

  .video.in-article {
    margin-left: 0;
  }

  .collection-list {
    justify-content: center;
  }

  .div-block-51 {
    max-width: none;
    margin-bottom: 20px;
  }

  .image-26 {
    margin-left: 0;
  }

  .bold-text-8 {
    padding-left: 0;
    padding-right: 0;
  }

  .text-block-18 {
    font-size: 1.2em;
  }

  .image-32 {
    display: none;
  }

  .image-32.profiles {
    display: block;
  }

  .image-33 {
    display: none;
  }

  .image-33.profiles {
    display: block;
  }

  .h2-2 {
    line-height: 1.2em;
  }

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

  .image-34 {
    display: none;
  }

  .image-34.profiles {
    display: block;
  }

  .h2-3 {
    line-height: 1.2em;
  }

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

  .grid-16 {
    grid-row-gap: 5vh;
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .div-block-69 {
    text-align: left;
  }

  .h2-4 {
    line-height: 1.2em;
  }

  .heading-10.black {
    font-size: 3.4em;
  }

  .div-block-71 {
    text-align: left;
    padding-right: 0;
  }

  .section-19.light.half {
    padding-left: 0;
    padding-right: 0;
  }

  ._5col, ._5col._4col {
    grid-template-columns: 1fr 1fr;
  }

  .grid-17 {
    grid-row-gap: 5vh;
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .div-block-73 {
    text-align: left;
  }

  .h2-5 {
    line-height: 1.2em;
  }

  .heading-11.black {
    font-size: 3.4em;
  }

  .div-block-75 {
    text-align: left;
    padding-right: 0;
  }

  .grid-19 {
    grid-row-gap: 5vh;
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .div-block-78 {
    text-align: left;
  }

  .h2-6 {
    line-height: 1.2em;
  }

  .div-block-80 {
    text-align: left;
    padding-right: 0;
  }

  .section-22.light.half {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-20 {
    grid-row-gap: 5vh;
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .div-block-82 {
    text-align: left;
  }

  .h2-7 {
    line-height: 1.2em;
  }

  .heading-14.black {
    font-size: 3.4em;
  }

  .div-block-84 {
    text-align: left;
    padding-right: 0;
  }

  .section-23.light.half {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-21 {
    grid-row-gap: 5vh;
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .div-block-86 {
    text-align: left;
  }

  .h2-8 {
    line-height: 1.2em;
  }

  .heading-15.black {
    font-size: 3.4em;
  }

  .div-block-88 {
    text-align: left;
    padding-right: 0;
  }

  .section-24.light.half {
    padding-left: 0;
    padding-right: 0;
  }

  .grid-22 {
    grid-row-gap: 5vh;
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .div-block-90 {
    text-align: left;
  }

  .h2-9 {
    line-height: 1.2em;
  }

  .heading-16.black {
    font-size: 3.4em;
  }

  .div-block-92 {
    text-align: left;
    padding-right: 0;
  }

  .section-25.light.half {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 1.4em;
    line-height: 1em;
  }

  h4 {
    font-size: 1.2em;
  }

  .hero {
    background-position: 50% 60px, 85% 3%, 5% 80%, 0 10%, 0 0;
    background-size: 100px, auto, auto, 50px, auto;
  }

  .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .container.blogs, .container.hp-rocket {
    padding-left: 0;
    padding-right: 0;
  }

  .nav {
    justify-content: space-between;
    max-width: 1300px;
    padding-top: 3vh;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .image, .image-2 {
    display: block;
  }

  .div-block-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .grid {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    max-width: 100%;
  }

  .grid.middle.ct {
    grid-column-gap: 2vh;
    grid-row-gap: 2vh;
  }

  .pre-heading {
    text-align: center;
  }

  .pre-heading.short {
    top: 3%;
  }

  .heading {
    font-size: 1.9em;
  }

  .heading.black.blog-title {
    text-align: left;
  }

  .heading.black.blog-title._1.white {
    font-size: 2.2em;
  }

  .heading.ct {
    font-size: 2.3em;
  }

  .heading.sverige {
    font-size: 1.7em;
  }

  .btn-green {
    letter-spacing: 1px;
    justify-content: space-around;
    align-self: stretch;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .btn-green.short {
    align-self: stretch;
    min-width: auto;
    max-width: 240px;
    line-height: 1em;
    display: block;
  }

  .btn-green.short.sverige {
    line-height: 1.3em;
  }

  .btn-green.button-up {
    margin-left: 0;
  }

  .div-block-3 {
    align-items: stretch;
    padding-bottom: 0;
  }

  .desc {
    margin-left: 0;
    font-size: .9em;
  }

  .grid-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .h2 {
    letter-spacing: 0;
    margin-top: 1vh;
    font-size: 2.2em;
    font-weight: 600;
    line-height: 1.2em;
  }

  .h2.white {
    letter-spacing: 0;
    font-size: 1.9em;
  }

  .h2.cut {
    text-align: center;
    padding-right: 0%;
    display: block;
  }

  .h2.smaller {
    text-align: center;
    font-size: 1.5em;
    line-height: 1.2em;
  }

  .div-block-6 {
    margin-left: auto;
    margin-right: auto;
  }

  .h3.white {
    font-size: 1.1em;
    font-weight: 700;
  }

  .paragraph {
    color: #202020;
    font-size: .9em;
    line-height: 1.7em;
  }

  .div-block-8 {
    margin-top: 2vh;
  }

  .titleblock {
    text-align: left;
    align-items: flex-start;
  }

  .div-block-10 {
    text-align: left;
  }

  .image-5 {
    float: none;
    margin-bottom: 0;
    margin-left: -22px;
  }

  .div-block-11 {
    grid-column-gap: 0px;
    flex-direction: column;
    padding-top: 3vh;
    padding-bottom: 4vh;
  }

  .div-block-12 {
    background-image: none;
    border-style: none;
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
  }

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

  .div-block-13 {
    margin-left: 0;
  }

  .div-block-14 {
    align-items: stretch;
  }

  .section-3 {
    padding-left: 0;
    padding-right: 0;
  }

  .div-block-16 {
    margin-left: 0;
    padding: 2rem 1rem;
  }

  .div-block-19._2 {
    padding-top: 2vh;
    padding-bottom: 2vh;
  }

  .slider {
    max-width: 300px;
  }

  .icon.blog-btn, .icon-2.blog-btn {
    margin-top: 90px;
  }

  .section-4 {
    background-position: 50% 100%, 50% 0;
    background-size: auto 300px, auto;
    padding-bottom: 32vh;
  }

  .image-8 {
    max-width: 80%;
    margin-top: -7vh;
  }

  .div-block-22 {
    background-position: 90% 101%, -9% 3%;
    border-left-width: 0;
    border-right-width: 0;
    border-radius: 0;
    padding-bottom: 3vh;
    padding-left: 2vh;
    padding-right: 2vh;
  }

  .section-5 {
    padding-bottom: 15vh;
  }

  .div-block-24.left {
    margin-bottom: 0;
  }

  .div-block-25 {
    background-size: auto 100%;
    min-height: 340px;
  }

  .faq-p {
    border-radius: 8px;
  }

  .faq-2 {
    padding-left: 0;
  }

  .faq-2:hover {
    background-color: #0000;
  }

  .faq-img {
    display: none;
  }

  .toggle-text {
    letter-spacing: 0;
    font-family: Sora, sans-serif;
    font-size: 1.1em;
    font-weight: 600;
  }

  .faq-body-cont {
    background-image: none;
    padding-top: 0;
    padding-left: 36px;
    padding-right: 0;
  }

  .faq-answer.paragraph {
    color: var(--black);
    letter-spacing: 0;
  }

  .fs-slide-content, .grid-7 {
    border-radius: 0;
  }

  .div-block-27, .div-block-28 {
    min-height: 30vh;
  }

  .icon-3, .icon-4 {
    margin-top: 90px;
    font-size: 16px;
  }

  .grid-8 {
    grid-column-gap: 1px;
    grid-template-columns: 1fr;
  }

  .div-block-31 {
    padding-right: 0;
  }

  .div-block-32 {
    padding: 20px;
  }

  .text-block-5 {
    font-size: 1.1em;
  }

  .image-13 {
    max-width: 50px;
    display: none;
  }

  .section-9 {
    padding-top: 5vh;
  }

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

  .div-block-34 {
    margin-top: 5vh;
  }

  .div-block-34.blog {
    text-align: left;
    margin-top: 5vh;
    padding-left: 20px;
    padding-right: 0;
  }

  ._3vh-bottom.title-block {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .div-block-37 {
    border-radius: 0;
    min-height: 23vh;
    padding-bottom: 0;
    padding-right: 0;
  }

  .mobile-nav {
    display: none;
  }

  .div-block-40 {
    margin-right: -47px;
    position: static;
    inset: 0% 0% auto auto;
  }

  .link-2 {
    color: var(--black);
    font-weight: 700;
  }

  .link-2.w--current {
    font-weight: 500;
  }

  .link-2.phone-link {
    color: var(--medium-sea-green);
  }

  .dropdown-toggle-2 {
    min-width: 280px;
  }

  .text-block-9 {
    font-weight: 500;
  }

  .dropdown-list-2.w--open {
    background-color: var(--medium-sea-green);
    color: var(--floral-white);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .dropdown-link {
    color: var(--floral-white);
    letter-spacing: 1px;
    font-weight: 400;
  }

  .div-block-41 {
    max-width: 280px;
  }

  .image-17 {
    padding: 13px 14px;
  }

  .div-block-42.blog-featured-image {
    min-height: 25vh;
    margin-left: -46px;
  }

  .section-15 {
    padding-top: 5vh;
    padding-bottom: 10vh;
  }

  .link-block-2 {
    width: 100%;
    max-width: none;
  }

  .grid-12 {
    padding-left: 0;
    padding-right: 0;
  }

  ._500 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-45 {
    padding-left: 0;
    padding-right: 0;
  }

  .link-block-3, .link-block-3.w--current {
    margin-right: 20px;
  }

  .ct-block {
    background-position: 50%;
    transition-property: none;
  }

  .ct-block:hover {
    background-size: cover;
  }

  .text-block-15 {
    font-size: 1.1em;
  }

  .div-block-51 {
    background-size: 200%;
    min-height: 10rem;
  }

  .div-block-52 {
    grid-column-gap: 10px;
    grid-row-gap: 20px;
  }

  .image-26 {
    margin-left: -28px;
  }

  .text-span-3 {
    color: #202020;
  }

  .div-block-53 {
    margin-left: 0;
    margin-right: 0;
    padding-top: 9%;
  }

  .image-27 {
    right: -15%;
  }

  .div-block-55 {
    margin-top: 1rem;
  }

  .bold-text-8 {
    padding-left: 0;
    padding-right: 0;
  }

  .collection-item-2 {
    border-radius: 0;
  }

  .white-box {
    padding: 1.4rem;
  }

  .div-block-63 {
    align-items: center;
  }

  .container-2 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-2.padded {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .text-block-19 {
    font-size: 1.1em;
  }

  .h2-2 {
    font-size: 1.6em;
    line-height: 1.3em;
  }

  .h2-2.white {
    font-size: 1.5em;
  }

  .desc-2 {
    margin-left: 0;
  }

  .container-3 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-3.padded {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .text-block-20 {
    font-size: 1.1em;
  }

  .h2-3 {
    font-size: 1.6em;
    line-height: 1.3em;
  }

  .h2-3.white {
    font-size: 1.5em;
  }

  .popup {
    width: 100%;
    min-width: 300px;
    max-width: 700px;
  }

  .image-35 {
    display: none;
  }

  .container-4 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    padding-left: 10px;
    padding-right: 10px;
  }

  .container-4.padded {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .btn-green-2 {
    letter-spacing: .05em;
    justify-content: center;
    align-items: center;
    font-size: .7em;
    display: flex;
  }

  .icon-7.blog-btn {
    margin-top: 90px;
  }

  .image-36 {
    display: block;
  }

  .h2-4 {
    font-size: 1.6em;
    line-height: 1.3em;
  }

  .flex-block-10 {
    align-self: stretch;
  }

  .heading-10 {
    font-size: 1.7em;
  }

  .heading-10.black {
    margin-bottom: 2vh;
    font-size: 2.6em;
  }

  .heading-10.black.long-title {
    font-size: 1.5em;
  }

  .heading-10.black.long-title.center {
    font-size: 1.8em;
  }

  .section-19.dark {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .icon-9.blog-btn {
    margin-top: 90px;
  }

  .pre-heading-2.black {
    margin-bottom: 2vh;
  }

  .pre-heading-2.black._2 {
    font-size: .7em;
    line-height: 1.2em;
  }

  .nav-2 {
    justify-content: space-between;
    max-width: 1300px;
    padding-top: 3vh;
    display: flex;
  }

  .desc-3 {
    margin-left: 0;
  }

  .image-38 {
    display: none;
  }

  .level-link {
    flex: 0 auto;
    width: 100%;
  }

  .image-40 {
    display: block;
  }

  .h2-5 {
    font-size: 1.6em;
    line-height: 1.3em;
  }

  .heading-11 {
    font-size: 1.7em;
  }

  .heading-11.black {
    margin-bottom: 2vh;
    font-size: 2.6em;
  }

  .heading-11.black.long-title {
    font-size: 1.5em;
  }

  .heading-11.black.long-title.center {
    font-size: 1.8em;
  }

  .section-21.dark {
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .icon-11.blog-btn {
    margin-top: 90px;
  }

  .div-block-77 {
    flex-flow: column;
  }

  .nav-3 {
    justify-content: space-between;
    max-width: 1300px;
    padding-top: 3vh;
    display: flex;
  }

  .image-42 {
    z-index: 1;
    margin-top: 0;
    margin-left: 0;
    position: relative;
    transform: rotate(90deg);
  }

  .desc-4 {
    margin-left: 0;
  }

  .image-43 {
    display: none;
  }

  .image-44 {
    display: block;
  }

  .h2-6 {
    font-size: 1.6em;
    line-height: 1.3em;
  }

  .desc-5 {
    margin-left: 0;
  }

  .image-46 {
    display: none;
  }

  .image-47 {
    display: block;
  }

  .h2-7 {
    font-size: 1.6em;
    line-height: 1.3em;
  }

  .heading-14 {
    font-size: 1.7em;
  }

  .heading-14.black {
    margin-bottom: 2vh;
    font-size: 2.6em;
  }

  .heading-14.black.long-title {
    font-size: 1.5em;
  }

  .heading-14.black.long-title.center {
    font-size: 1.8em;
  }

  .desc-6 {
    margin-left: 0;
  }

  .image-49 {
    display: none;
  }

  .image-50 {
    display: block;
  }

  .h2-8 {
    font-size: 1.6em;
    line-height: 1.3em;
  }

  .heading-15 {
    font-size: 1.7em;
  }

  .heading-15.black {
    margin-bottom: 2vh;
    font-size: 2.6em;
  }

  .heading-15.black.long-title {
    font-size: 1.5em;
  }

  .heading-15.black.long-title.center {
    font-size: 1.8em;
  }

  .desc-7 {
    margin-left: 0;
  }

  .image-52 {
    display: none;
  }

  .image-53 {
    display: block;
  }

  .h2-9 {
    font-size: 1.6em;
    line-height: 1.3em;
  }

  .heading-16 {
    font-size: 1.7em;
  }

  .heading-16.black {
    margin-bottom: 2vh;
    font-size: 2.6em;
  }

  .heading-16.black.long-title {
    font-size: 1.5em;
  }

  .heading-16.black.long-title.center {
    font-size: 1.8em;
  }

  .desc-8 {
    margin-left: 0;
  }
}

#w-node-_51c37465-1c5f-79e6-4e96-c6a471b6c14c-a420b264 {
  align-self: start;
}

#w-node-cad9c8ca-970d-6315-616c-ec66d008addf-a420b264 {
  place-self: center;
}

#w-node-_501444bc-c197-9fae-55cb-a6249ec33911-a420b264, #w-node-e598cd62-9813-f84f-dffa-952cdadeef15-a420b264, #w-node-_8020390b-f232-3a22-a969-707d010da405-a420b264 {
  place-self: auto start;
}

#w-node-bbda2ae0-518d-69ed-dc3c-201bfdade510-a420b264 {
  place-self: stretch center;
}

#w-node-_491e82a2-589c-101c-e6ac-6288e31030c9-a420b264 {
  justify-self: center;
}

#w-node-_8c36e5fe-506c-2843-d3a4-a6a0200c83bc-a420b264 {
  place-self: start center;
}

#w-node-b1d11f56-1e6c-bfad-100f-b7f8ab7a4acc-ab7a4ac9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e0b8e6dc-66b3-53cb-7a36-c78499ff4a9f-6e9a4f8a {
  align-self: stretch;
}

#w-node-_51c37465-1c5f-79e6-4e96-c6a471b6c14c-2120b265 {
  align-self: start;
}

#w-node-ab2ff349-6acf-37a6-6988-1346de31a11c-2120b265 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-b165255b-9dac-661a-0d6b-88eab6c83a57-2120b265 {
  place-self: center;
}

#w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-7820b266 {
  align-self: center;
}

#w-node-_5674642c-dd99-b05c-ca58-002f0d325b18-7820b266 {
  justify-self: center;
}

#w-node-cebb66c6-d3eb-0bc9-c1d3-67938ff6a79d-7820b266 {
  align-self: end;
}

#w-node-_1ae2d210-a8a5-d2c3-c6ea-db7f2b6db3c8-7820b266 {
  align-self: start;
}

#w-node-_7787f4d5-e33e-c5ac-8aee-89bc929375d1-7820b266 {
  place-self: stretch stretch;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b11d-7820b266 {
  justify-self: end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b11e-7820b266 {
  place-self: center start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b123-7820b266 {
  place-self: center end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b128-7820b266 {
  justify-self: start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b12a-7820b266 {
  justify-self: end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b12b-7820b266 {
  place-self: center start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b130-7820b266 {
  place-self: center end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b135-7820b266 {
  justify-self: start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b137-7820b266 {
  justify-self: end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b138-7820b266 {
  place-self: center start;
}

#w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-1020b267 {
  align-self: center;
}

#w-node-_5674642c-dd99-b05c-ca58-002f0d325b18-1020b267 {
  justify-self: center;
}

#w-node-cebb66c6-d3eb-0bc9-c1d3-67938ff6a79d-1020b267 {
  align-self: end;
}

#w-node-_1ae2d210-a8a5-d2c3-c6ea-db7f2b6db3c8-1020b267 {
  align-self: start;
}

#w-node-_7787f4d5-e33e-c5ac-8aee-89bc929375d1-1020b267 {
  place-self: stretch stretch;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b11d-1020b267 {
  justify-self: end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b11e-1020b267 {
  place-self: center start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b123-1020b267 {
  place-self: center end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b128-1020b267 {
  justify-self: start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b12a-1020b267 {
  justify-self: end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b12b-1020b267 {
  place-self: center start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b130-1020b267 {
  place-self: center end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b135-1020b267 {
  justify-self: start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b137-1020b267 {
  justify-self: end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b138-1020b267 {
  place-self: center start;
}

#w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-f520b269 {
  align-self: center;
}

#w-node-_22085f9b-4627-4d6e-b92c-58ce3d79ece2-f520b269 {
  place-self: center stretch;
}

#w-node-_51c37465-1c5f-79e6-4e96-c6a471b6c14c-0720b26a {
  place-self: start;
}

#w-node-_667ee9e6-47b8-d7c9-f670-3d73c0889ea0-0720b26a {
  place-self: start center;
}

#w-node-bf198afa-305a-0311-6cee-795fe609f590-0720b26a {
  place-self: center;
}

#w-node-bf198afa-305a-0311-6cee-795fe609f591-0720b26a, #w-node-ce3dfa54-6678-9925-13b8-ad1cb82119c9-0720b26a {
  justify-self: start;
}

#w-node-ce3dfa54-6678-9925-13b8-ad1cb82119d4-0720b26a {
  place-self: center;
}

#w-node-_7d9d2843-3bc0-937c-f7b3-7f6ddf7dcb5b-9b20b26b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_7d9d2843-3bc0-937c-f7b3-7f6ddf7dcb5e-9b20b26b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7d9d2843-3bc0-937c-f7b3-7f6ddf7dcb6d-9b20b26b, #w-node-_1ba0b74e-0221-5b17-edbb-195d62e6350a-9b20b26b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c3bdaa13-b85c-9a2d-b9cf-db2621bac6ec-d120b26c {
  align-self: stretch;
}

#w-node-_3245a0a8-cba3-17f7-0caf-1470a59fea62-d120b26c {
  justify-self: center;
}

#w-node-_4a11ccfe-bd1e-b962-6ef9-f9e4a15e65a6-5b20b26d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_4a11ccfe-bd1e-b962-6ef9-f9e4a15e65a9-5b20b26d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4a11ccfe-bd1e-b962-6ef9-f9e4a15e65b0-5b20b26d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-1620b26e {
  align-self: center;
}

#w-node-_5674642c-dd99-b05c-ca58-002f0d325b18-1620b26e {
  justify-self: center;
}

#w-node-cebb66c6-d3eb-0bc9-c1d3-67938ff6a79d-1620b26e {
  align-self: end;
}

#w-node-_1ae2d210-a8a5-d2c3-c6ea-db7f2b6db3c8-1620b26e {
  align-self: start;
}

#w-node-_7787f4d5-e33e-c5ac-8aee-89bc929375d1-1620b26e {
  place-self: stretch stretch;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b11d-1620b26e {
  justify-self: end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b11e-1620b26e {
  place-self: center start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b123-1620b26e {
  place-self: center end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b128-1620b26e {
  justify-self: start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b12a-1620b26e {
  justify-self: end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b12b-1620b26e {
  place-self: center start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b130-1620b26e {
  place-self: center end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b135-1620b26e {
  justify-self: start;
}

#w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-c320b26f {
  align-self: center;
}

#w-node-_5674642c-dd99-b05c-ca58-002f0d325b18-c320b26f {
  place-self: center;
}

#w-node-cebb66c6-d3eb-0bc9-c1d3-67938ff6a79d-c320b26f {
  align-self: end;
}

#w-node-_1ae2d210-a8a5-d2c3-c6ea-db7f2b6db3c8-c320b26f {
  align-self: center;
}

#w-node-_7787f4d5-e33e-c5ac-8aee-89bc929375d1-c320b26f {
  place-self: stretch stretch;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b11d-c320b26f {
  justify-self: end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b11e-c320b26f {
  place-self: center start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b123-c320b26f {
  place-self: center end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b128-c320b26f {
  justify-self: start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b12a-c320b26f {
  justify-self: end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b12b-c320b26f {
  place-self: center start;
}

#w-node-_6763194b-a02f-7909-539b-9095dce465a8-c320b26f {
  justify-self: end;
}

#w-node-_6763194b-a02f-7909-539b-9095dce465a9-c320b26f {
  place-self: center start;
}

#w-node-_6763194b-a02f-7909-539b-9095dce465ae-c320b26f {
  place-self: center end;
}

#w-node-_6763194b-a02f-7909-539b-9095dce465b3-c320b26f {
  justify-self: start;
}

#w-node-_6763194b-a02f-7909-539b-9095dce465b5-c320b26f {
  justify-self: end;
}

#w-node-_6763194b-a02f-7909-539b-9095dce465b6-c320b26f {
  place-self: center start;
}

#w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-4720b270 {
  align-self: center;
}

#w-node-_1db253eb-b396-4566-603a-0816f65e8eb8-4720b270 {
  justify-self: center;
}

#w-node-cebb66c6-d3eb-0bc9-c1d3-67938ff6a79d-4720b270, #w-node-_1ae2d210-a8a5-d2c3-c6ea-db7f2b6db3c8-4720b270 {
  align-self: end;
}

#w-node-_7787f4d5-e33e-c5ac-8aee-89bc929375d1-4720b270 {
  place-self: stretch stretch;
}

#w-node-f8884449-557e-ed13-746c-9ff541942c5d-41942c52 {
  justify-self: end;
}

#w-node-f8884449-557e-ed13-746c-9ff541942c5e-41942c52 {
  place-self: center start;
}

#w-node-f8884449-557e-ed13-746c-9ff541942c63-41942c52 {
  place-self: center end;
}

#w-node-f8884449-557e-ed13-746c-9ff541942c68-41942c52 {
  justify-self: start;
}

#w-node-f8884449-557e-ed13-746c-9ff541942c6a-41942c52 {
  justify-self: end;
}

#w-node-f8884449-557e-ed13-746c-9ff541942c6b-41942c52 {
  place-self: center start;
}

#w-node-f8884449-557e-ed13-746c-9ff541942c70-41942c52 {
  place-self: center end;
}

#w-node-f8884449-557e-ed13-746c-9ff541942c75-41942c52 {
  justify-self: start;
}

#w-node-f8884449-557e-ed13-746c-9ff541942c77-41942c52 {
  justify-self: end;
}

#w-node-f8884449-557e-ed13-746c-9ff541942c78-41942c52 {
  place-self: center start;
}

#w-node-f8884449-557e-ed13-746c-9ff541942c7d-41942c52 {
  place-self: center end;
}

#w-node-f8884449-557e-ed13-746c-9ff541942c82-41942c52 {
  justify-self: start;
}

#w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-8220b271 {
  align-self: center;
}

#w-node-_5674642c-dd99-b05c-ca58-002f0d325b18-8220b271 {
  justify-self: center;
}

#w-node-cebb66c6-d3eb-0bc9-c1d3-67938ff6a79d-8220b271, #w-node-_1ae2d210-a8a5-d2c3-c6ea-db7f2b6db3c8-8220b271 {
  align-self: end;
}

#w-node-_7787f4d5-e33e-c5ac-8aee-89bc929375d1-8220b271 {
  place-self: stretch stretch;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b11d-8220b271 {
  justify-self: end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b11e-8220b271 {
  place-self: center start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b123-8220b271 {
  place-self: center end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b128-8220b271 {
  justify-self: start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b12a-8220b271 {
  justify-self: end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b12b-8220b271 {
  place-self: center start;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b130-8220b271 {
  place-self: center end;
}

#w-node-_46c3af70-60d9-9965-0607-9848a424b135-8220b271 {
  justify-self: start;
}

#w-node-_51c37465-1c5f-79e6-4e96-c6a471b6c14c-1c20b272 {
  align-self: start;
}

#w-node-ab2ff349-6acf-37a6-6988-1346de31a11c-1c20b272 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-b165255b-9dac-661a-0d6b-88eab6c83a57-1c20b272 {
  place-self: center;
}

#w-node-_6a79f647-b6b3-f1f1-840f-04127d850e35-1c20b272 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-a620b273 {
  align-self: center;
}

#w-node-_4bdb10b2-3cfa-3e6a-c7f5-0cb5866a8b1c-a620b273 {
  justify-self: center;
}

#w-node-cebb66c6-d3eb-0bc9-c1d3-67938ff6a79d-a620b273 {
  align-self: end;
}

#w-node-_1ae2d210-a8a5-d2c3-c6ea-db7f2b6db3c8-a620b273 {
  align-self: start;
}

#w-node-_7787f4d5-e33e-c5ac-8aee-89bc929375d1-a620b273 {
  place-self: stretch stretch;
}

#w-node-_94ec5a03-354a-858b-46af-37f0c18fee10-a620b273 {
  justify-self: end;
}

#w-node-_94ec5a03-354a-858b-46af-37f0c18fee11-a620b273 {
  place-self: center start;
}

#w-node-_94ec5a03-354a-858b-46af-37f0c18fee16-a620b273 {
  place-self: center end;
}

#w-node-_94ec5a03-354a-858b-46af-37f0c18fee1b-a620b273 {
  justify-self: start;
}

#w-node-_94ec5a03-354a-858b-46af-37f0c18fee1d-a620b273 {
  justify-self: end;
}

#w-node-_94ec5a03-354a-858b-46af-37f0c18fee1e-a620b273 {
  place-self: center start;
}

#w-node-_94ec5a03-354a-858b-46af-37f0c18fee23-a620b273 {
  place-self: center end;
}

#w-node-_94ec5a03-354a-858b-46af-37f0c18fee28-a620b273 {
  justify-self: start;
}

#w-node-_94ec5a03-354a-858b-46af-37f0c18fee2a-a620b273 {
  justify-self: end;
}

#w-node-_94ec5a03-354a-858b-46af-37f0c18fee2b-a620b273 {
  place-self: center start;
}

#w-node-_4a11ccfe-bd1e-b962-6ef9-f9e4a15e65a6-ec6babec {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_4a11ccfe-bd1e-b962-6ef9-f9e4a15e65a9-ec6babec {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_355ccce3-edab-42fb-c024-3efbe9664c14-ec6babec {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_4a11ccfe-bd1e-b962-6ef9-f9e4a15e65b0-ec6babec, #w-node-_9ae248a4-d493-0609-d9d0-a994294fb4cc-ec6babec, #w-node-fafb8f7c-b483-b362-de73-7a7971aa4b82-ec6babec {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f2a04cd-ace7-64ce-caf7-3f9f37160b85-ec6babec {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_16c67fb1-9c72-6388-6449-9b9af5aef1d9-ec6babec {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4a11ccfe-bd1e-b962-6ef9-f9e4a15e65a6-3d01f214 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_4a11ccfe-bd1e-b962-6ef9-f9e4a15e65a9-3d01f214 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4e5f9ef5-0086-7322-3ca8-d7d96b415611-3d01f214, #w-node-_4a11ccfe-bd1e-b962-6ef9-f9e4a15e65b0-3d01f214, #w-node-_355ccce3-edab-42fb-c024-3efbe9664c14-3d01f214 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e74d-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e751-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e755-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e759-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e75d-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e761-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e765-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e769-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e76d-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e771-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e779-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e77e-1eda16f6 {
  place-self: stretch start;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e783-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e788-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e78d-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e792-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e797-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e79c-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e7a4-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e7b3-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e7c7-1eda16f6 {
  align-self: stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e7d1-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e7e6-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e7ed-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e802-1eda16f6 {
  align-self: stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e80c-1eda16f6 {
  align-self: end;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e821-1eda16f6 {
  align-self: stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e82b-1eda16f6 {
  align-self: end;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e840-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e84a-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e85f-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e869-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e87e-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e888-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e89d-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e8a7-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e8bc-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e8c6-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e8dc-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e8ea-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e905-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e910-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e92c-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e937-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e950-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e95b-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e975-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e980-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e999-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e9a4-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e9be-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e9cc-1eda16f6 {
  place-self: end stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e9e9-1eda16f6 {
  place-self: stretch stretch;
}

#w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e9f4-1eda16f6 {
  place-self: end stretch;
}

#w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb7f2-d7d28ab5 {
  align-self: stretch;
}

#w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb801-d7d28ab5 {
  align-self: end;
}

#w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb818-d7d28ab5 {
  align-self: stretch;
}

#w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb823-d7d28ab5 {
  align-self: end;
}

#w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb839-d7d28ab5 {
  align-self: stretch;
}

#w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb844-d7d28ab5 {
  align-self: end;
}

#w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb85a-d7d28ab5 {
  align-self: stretch;
}

#w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb865-d7d28ab5 {
  align-self: end;
}

#w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb87b-d7d28ab5 {
  align-self: stretch;
}

#w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb886-d7d28ab5 {
  align-self: end;
}

#w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb89c-d7d28ab5 {
  align-self: stretch;
}

#w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb8a7-d7d28ab5 {
  align-self: end;
}

#w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb8bd-d7d28ab5 {
  align-self: stretch;
}

#w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb8c8-d7d28ab5 {
  align-self: end;
}

#w-node-dd5a338a-31e5-95f9-bb37-741675ef465c-6ae7b4a5 {
  place-self: stretch start;
}

#w-node-dd5a338a-31e5-95f9-bb37-741675ef4661-6ae7b4a5, #w-node-dd5a338a-31e5-95f9-bb37-741675ef4666-6ae7b4a5, #w-node-dd5a338a-31e5-95f9-bb37-741675ef466b-6ae7b4a5, #w-node-dd5a338a-31e5-95f9-bb37-741675ef4670-6ae7b4a5, #w-node-dd5a338a-31e5-95f9-bb37-741675ef4675-6ae7b4a5, #w-node-dd5a338a-31e5-95f9-bb37-741675ef467a-6ae7b4a5, #w-node-dd5a338a-31e5-95f9-bb37-741675ef467f-6ae7b4a5, #w-node-dd5a338a-31e5-95f9-bb37-741675ef4684-6ae7b4a5, #w-node-dd5a338a-31e5-95f9-bb37-741675ef4689-6ae7b4a5, #w-node-_730ce604-0503-3448-e377-bb0e5a8facdd-6ae7b4a5 {
  place-self: stretch stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8face9-6ae7b4a5 {
  place-self: end stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8facfd-6ae7b4a5 {
  place-self: stretch stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fad06-6ae7b4a5 {
  place-self: end stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fad1b-6ae7b4a5 {
  place-self: stretch stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fad27-6ae7b4a5 {
  place-self: end stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fad3b-6ae7b4a5 {
  place-self: stretch stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fad44-6ae7b4a5 {
  place-self: end stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fad59-6ae7b4a5 {
  place-self: stretch stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fad62-6ae7b4a5 {
  place-self: end stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fad76-6ae7b4a5 {
  place-self: stretch stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fad7f-6ae7b4a5 {
  place-self: end stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fad94-6ae7b4a5 {
  place-self: stretch stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fad9d-6ae7b4a5 {
  place-self: end stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fadb1-6ae7b4a5 {
  place-self: stretch stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fadba-6ae7b4a5 {
  place-self: end stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fadcf-6ae7b4a5 {
  place-self: stretch stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fadd8-6ae7b4a5 {
  place-self: end stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fadec-6ae7b4a5 {
  place-self: stretch stretch;
}

#w-node-_730ce604-0503-3448-e377-bb0e5a8fadf5-6ae7b4a5 {
  place-self: end stretch;
}

#w-node-_635e174a-45f8-3bf2-8f27-7fd9bc6058b1-e340fe7c {
  place-self: stretch start;
}

#w-node-_635e174a-45f8-3bf2-8f27-7fd9bc6058b6-e340fe7c, #w-node-_635e174a-45f8-3bf2-8f27-7fd9bc6058bb-e340fe7c, #w-node-_635e174a-45f8-3bf2-8f27-7fd9bc6058c0-e340fe7c, #w-node-_635e174a-45f8-3bf2-8f27-7fd9bc6058c5-e340fe7c, #w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb0191-e340fe7c {
  place-self: stretch stretch;
}

#w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb019a-e340fe7c {
  place-self: end stretch;
}

#w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb01b3-e340fe7c {
  place-self: stretch stretch;
}

#w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb01bf-e340fe7c {
  place-self: end stretch;
}

#w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb01d9-e340fe7c {
  place-self: stretch stretch;
}

#w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb01e5-e340fe7c {
  place-self: end stretch;
}

#w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb01fe-e340fe7c {
  place-self: stretch stretch;
}

#w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb020a-e340fe7c {
  place-self: end stretch;
}

#w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb0224-e340fe7c {
  place-self: stretch stretch;
}

#w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb0230-e340fe7c {
  place-self: end stretch;
}

#w-node-_5d557da0-1a0a-6631-f113-3b8b3c79078f-ae308ea5 {
  place-self: stretch start;
}

#w-node-_5d557da0-1a0a-6631-f113-3b8b3c790794-ae308ea5, #w-node-_5d557da0-1a0a-6631-f113-3b8b3c790799-ae308ea5, #w-node-_5d557da0-1a0a-6631-f113-3b8b3c79079e-ae308ea5, #w-node-_5d557da0-1a0a-6631-f113-3b8b3c7907a3-ae308ea5, #w-node-_5d557da0-1a0a-6631-f113-3b8b3c7907a8-ae308ea5, #w-node-_5d557da0-1a0a-6631-f113-3b8b3c7907ad-ae308ea5, #w-node-_5d557da0-1a0a-6631-f113-3b8b3c7907b2-ae308ea5, #w-node-_5d557da0-1a0a-6631-f113-3b8b3c7907b7-ae308ea5, #w-node-_5d557da0-1a0a-6631-f113-3b8b3c7907bc-ae308ea5, #w-node-_05912fbf-d73f-3e74-e59a-d29f8a8341d5-ae308ea5 {
  place-self: stretch stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a8341de-ae308ea5 {
  place-self: end stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a8341f7-ae308ea5 {
  place-self: stretch stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a834200-ae308ea5 {
  place-self: end stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a83421a-ae308ea5 {
  place-self: stretch stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a83422b-ae308ea5 {
  place-self: end stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a834244-ae308ea5 {
  place-self: stretch stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a834258-ae308ea5 {
  place-self: end stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a834272-ae308ea5 {
  place-self: stretch stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a834289-ae308ea5 {
  place-self: end stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a8342a2-ae308ea5 {
  place-self: stretch stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a8342b6-ae308ea5 {
  place-self: end stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a8342d0-ae308ea5 {
  place-self: stretch stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a8342e4-ae308ea5 {
  place-self: end stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a8342fd-ae308ea5 {
  place-self: stretch stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a834311-ae308ea5 {
  place-self: end stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a83432b-ae308ea5 {
  place-self: stretch stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a83433f-ae308ea5 {
  place-self: end stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a83435c-ae308ea5 {
  place-self: stretch stretch;
}

#w-node-_05912fbf-d73f-3e74-e59a-d29f8a834370-ae308ea5 {
  place-self: end stretch;
}

#w-node-_111d3808-dd25-4891-873d-44aa83af78c8-7e539e05 {
  place-self: stretch start;
}

#w-node-_111d3808-dd25-4891-873d-44aa83af78cd-7e539e05, #w-node-_111d3808-dd25-4891-873d-44aa83af78d2-7e539e05, #w-node-_111d3808-dd25-4891-873d-44aa83af78d7-7e539e05, #w-node-_111d3808-dd25-4891-873d-44aa83af78dc-7e539e05, #w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc615-7e539e05 {
  place-self: stretch stretch;
}

#w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc61e-7e539e05 {
  place-self: end stretch;
}

#w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc639-7e539e05 {
  place-self: stretch stretch;
}

#w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc642-7e539e05 {
  place-self: end stretch;
}

#w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc661-7e539e05 {
  place-self: stretch stretch;
}

#w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc66a-7e539e05 {
  place-self: end stretch;
}

#w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc683-7e539e05 {
  place-self: stretch stretch;
}

#w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc68c-7e539e05 {
  place-self: end stretch;
}

#w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc6a9-7e539e05 {
  place-self: stretch stretch;
}

#w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc6b2-7e539e05 {
  place-self: end stretch;
}

@media screen and (max-width: 991px) {
  #w-node-_51c37465-1c5f-79e6-4e96-c6a471b6c14c-a420b264, #w-node-_51c37465-1c5f-79e6-4e96-c6a471b6c14c-2120b265 {
    justify-self: center;
  }

  #w-node-ab2ff349-6acf-37a6-6988-1346de31a11c-2120b265 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-7820b266 {
    justify-self: center;
  }

  #w-node-_5674642c-dd99-b05c-ca58-002f0d325b18-7820b266, #w-node-_7787f4d5-e33e-c5ac-8aee-89bc929375d1-7820b266 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-1020b267 {
    justify-self: center;
  }

  #w-node-_7787f4d5-e33e-c5ac-8aee-89bc929375d1-1020b267 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-f520b269, #w-node-_51c37465-1c5f-79e6-4e96-c6a471b6c14c-0720b26a, #w-node-_7d9d2843-3bc0-937c-f7b3-7f6ddf7dcb5b-9b20b26b, #w-node-c3bdaa13-b85c-9a2d-b9cf-db2621bac6ec-d120b26c, #w-node-_4a11ccfe-bd1e-b962-6ef9-f9e4a15e65a6-5b20b26d, #w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-1620b26e {
    justify-self: center;
  }

  #w-node-_7787f4d5-e33e-c5ac-8aee-89bc929375d1-1620b26e {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-c320b26f {
    justify-self: center;
  }

  #w-node-_7787f4d5-e33e-c5ac-8aee-89bc929375d1-c320b26f {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-4720b270 {
    justify-self: center;
  }

  #w-node-_7787f4d5-e33e-c5ac-8aee-89bc929375d1-4720b270 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-8220b271 {
    justify-self: center;
  }

  #w-node-_7787f4d5-e33e-c5ac-8aee-89bc929375d1-8220b271 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_51c37465-1c5f-79e6-4e96-c6a471b6c14c-1c20b272 {
    justify-self: center;
  }

  #w-node-ab2ff349-6acf-37a6-6988-1346de31a11c-1c20b272 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_7f5ff4cb-df97-02eb-34b8-a3c26094e69b-a620b273 {
    justify-self: center;
  }

  #w-node-_7787f4d5-e33e-c5ac-8aee-89bc929375d1-a620b273 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_4a11ccfe-bd1e-b962-6ef9-f9e4a15e65a6-ec6babec {
    justify-self: center;
  }

  #w-node-_9ae248a4-d493-0609-d9d0-a994294fb4cc-ec6babec {
    justify-self: stretch;
  }

  #w-node-_4a11ccfe-bd1e-b962-6ef9-f9e4a15e65a6-3d01f214 {
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-cebb66c6-d3eb-0bc9-c1d3-67938ff6a79d-7820b266, #w-node-_46c3af70-60d9-9965-0607-9848a424b123-7820b266 {
    justify-self: start;
  }

  #w-node-_46c3af70-60d9-9965-0607-9848a424b128-7820b266 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_46c3af70-60d9-9965-0607-9848a424b130-7820b266 {
    justify-self: start;
  }

  #w-node-_46c3af70-60d9-9965-0607-9848a424b135-7820b266 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-cebb66c6-d3eb-0bc9-c1d3-67938ff6a79d-1020b267, #w-node-_46c3af70-60d9-9965-0607-9848a424b123-1020b267 {
    justify-self: start;
  }

  #w-node-_46c3af70-60d9-9965-0607-9848a424b128-1020b267 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_46c3af70-60d9-9965-0607-9848a424b130-1020b267 {
    justify-self: start;
  }

  #w-node-_46c3af70-60d9-9965-0607-9848a424b135-1020b267 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-bf198afa-305a-0311-6cee-795fe609f590-0720b26a {
    justify-self: start;
  }

  #w-node-ce3dfa54-6678-9925-13b8-ad1cb82119d4-0720b26a {
    order: -9999;
    justify-self: start;
  }

  #w-node-cebb66c6-d3eb-0bc9-c1d3-67938ff6a79d-1620b26e, #w-node-_46c3af70-60d9-9965-0607-9848a424b123-1620b26e {
    justify-self: start;
  }

  #w-node-_46c3af70-60d9-9965-0607-9848a424b128-1620b26e {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_46c3af70-60d9-9965-0607-9848a424b130-1620b26e {
    justify-self: start;
  }

  #w-node-_46c3af70-60d9-9965-0607-9848a424b135-1620b26e {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-cebb66c6-d3eb-0bc9-c1d3-67938ff6a79d-c320b26f, #w-node-_46c3af70-60d9-9965-0607-9848a424b123-c320b26f {
    justify-self: start;
  }

  #w-node-_46c3af70-60d9-9965-0607-9848a424b128-c320b26f {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_6763194b-a02f-7909-539b-9095dce465ae-c320b26f {
    justify-self: start;
  }

  #w-node-_6763194b-a02f-7909-539b-9095dce465b3-c320b26f {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-cebb66c6-d3eb-0bc9-c1d3-67938ff6a79d-4720b270, #w-node-f8884449-557e-ed13-746c-9ff541942c63-41942c52 {
    justify-self: start;
  }

  #w-node-f8884449-557e-ed13-746c-9ff541942c68-41942c52 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-f8884449-557e-ed13-746c-9ff541942c70-41942c52 {
    justify-self: start;
  }

  #w-node-f8884449-557e-ed13-746c-9ff541942c75-41942c52 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-f8884449-557e-ed13-746c-9ff541942c7d-41942c52 {
    justify-self: start;
  }

  #w-node-f8884449-557e-ed13-746c-9ff541942c82-41942c52 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-cebb66c6-d3eb-0bc9-c1d3-67938ff6a79d-8220b271, #w-node-_46c3af70-60d9-9965-0607-9848a424b123-8220b271 {
    justify-self: start;
  }

  #w-node-_46c3af70-60d9-9965-0607-9848a424b128-8220b271 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_46c3af70-60d9-9965-0607-9848a424b130-8220b271 {
    justify-self: start;
  }

  #w-node-_46c3af70-60d9-9965-0607-9848a424b135-8220b271 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-cebb66c6-d3eb-0bc9-c1d3-67938ff6a79d-a620b273, #w-node-_94ec5a03-354a-858b-46af-37f0c18fee16-a620b273 {
    justify-self: start;
  }

  #w-node-_94ec5a03-354a-858b-46af-37f0c18fee1b-a620b273 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_94ec5a03-354a-858b-46af-37f0c18fee23-a620b273 {
    justify-self: start;
  }

  #w-node-_94ec5a03-354a-858b-46af-37f0c18fee28-a620b273 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e7a4-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e7c7-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e7e6-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e802-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e821-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e840-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e85f-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e87e-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e89d-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e8bc-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e8dc-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e905-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e92c-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e950-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e975-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e999-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e9be-1eda16f6, #w-node-_6138c3df-ab98-ce6a-1c5a-159fff58e9e9-1eda16f6, #w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb7f2-d7d28ab5, #w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb818-d7d28ab5, #w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb839-d7d28ab5, #w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb85a-d7d28ab5, #w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb87b-d7d28ab5, #w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb89c-d7d28ab5, #w-node-_3e4bae02-7984-bdc3-fd21-1bfc3cdcb8bd-d7d28ab5, #w-node-_730ce604-0503-3448-e377-bb0e5a8facdd-6ae7b4a5, #w-node-_730ce604-0503-3448-e377-bb0e5a8facfd-6ae7b4a5, #w-node-_730ce604-0503-3448-e377-bb0e5a8fad1b-6ae7b4a5, #w-node-_730ce604-0503-3448-e377-bb0e5a8fad3b-6ae7b4a5, #w-node-_730ce604-0503-3448-e377-bb0e5a8fad59-6ae7b4a5, #w-node-_730ce604-0503-3448-e377-bb0e5a8fad76-6ae7b4a5, #w-node-_730ce604-0503-3448-e377-bb0e5a8fad94-6ae7b4a5, #w-node-_730ce604-0503-3448-e377-bb0e5a8fadb1-6ae7b4a5, #w-node-_730ce604-0503-3448-e377-bb0e5a8fadcf-6ae7b4a5, #w-node-_730ce604-0503-3448-e377-bb0e5a8fadec-6ae7b4a5, #w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb0191-e340fe7c, #w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb01b3-e340fe7c, #w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb01d9-e340fe7c, #w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb01fe-e340fe7c, #w-node-_0f34c2dd-f689-2d07-2d48-e3f400fb0224-e340fe7c, #w-node-_05912fbf-d73f-3e74-e59a-d29f8a8341d5-ae308ea5, #w-node-_05912fbf-d73f-3e74-e59a-d29f8a8341f7-ae308ea5, #w-node-_05912fbf-d73f-3e74-e59a-d29f8a83421a-ae308ea5, #w-node-_05912fbf-d73f-3e74-e59a-d29f8a834244-ae308ea5, #w-node-_05912fbf-d73f-3e74-e59a-d29f8a834272-ae308ea5, #w-node-_05912fbf-d73f-3e74-e59a-d29f8a8342a2-ae308ea5, #w-node-_05912fbf-d73f-3e74-e59a-d29f8a8342d0-ae308ea5, #w-node-_05912fbf-d73f-3e74-e59a-d29f8a8342fd-ae308ea5, #w-node-_05912fbf-d73f-3e74-e59a-d29f8a83432b-ae308ea5, #w-node-_05912fbf-d73f-3e74-e59a-d29f8a83435c-ae308ea5, #w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc615-7e539e05, #w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc639-7e539e05, #w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc661-7e539e05, #w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc683-7e539e05, #w-node-_3f1f5c15-7b9d-0dd9-726c-9584383fc6a9-7e539e05 {
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_51c37465-1c5f-79e6-4e96-c6a471b6c14c-a420b264 {
    justify-self: stretch;
  }

  #w-node-b1d11f56-1e6c-bfad-100f-b7f8ab7a4acc-ab7a4ac9 {
    grid-column: span 1 / span 1;
  }

  #w-node-_5674642c-dd99-b05c-ca58-002f0d325b18-7820b266 {
    grid-area: 1 / 1 / 3 / 2;
  }

  #w-node-_6a79f647-b6b3-f1f1-840f-04127d850e35-1c20b272 {
    grid-column: span 1 / span 1;
  }

  #w-node-_9ae248a4-d493-0609-d9d0-a994294fb4cc-ec6babec {
    justify-self: center;
  }
}


