:root {
  --black: #2c2a2a;
  --heading-black: #020303;
  --black-2: #0b0d0f;
  --white: #fff;
  --dark-green: #007b7b;
  --light-green: #65c3b1;
  --elda-green: #0f6966;
  --elda-orange: #ff7585;
  --strike-off-grey: #aeadad;
  --input-field-color: #606060;
}
.form-submitted-success{
    display: none;
    color: var(--dark-green);
    background-color: #fff;
    border-radius: 1rem;
    padding: 20px 20px 10px 20px;
    box-shadow: 0 2px 30px #0003;
    text-align: center;
    margin-top: 16px;
}
.form-submitted-fail{
    display: none;
    color: #333;
    border-radius: 1rem;
    padding: 20px 20px 10px 20px;
    box-shadow: 0 2px 30px #0003;
    text-align: center;
    margin-top: 16px;
    background-color: #ffdede;
}

.w-pagination-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.w-pagination-previous {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-previous-icon {
  margin-right: 4px;
}

.w-pagination-next {
  color: #333;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px 20px;
  font-size: 14px;
  display: block;
}

.w-pagination-next-icon {
  margin-left: 4px;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.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-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

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

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

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

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

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

body {
  color: var(--black);
  font-family: Gothambook, sans-serif;
  font-size: 1rem;
  line-height: 1.6rem;
}

h1 {
  margin-top: 0;
  margin-bottom: .8rem;
  font-family: Visbycf, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  color: var(--heading-black);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Visbycf, sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}

h3 {
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Visbycf, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1rem;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: Visbycf, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.1;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  color: #2c2a2a;
  margin-bottom: 0;
  font-family: Gothambook, sans-serif;
}

a {
  color: var(--black-2);
  border-color: #000;
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 0;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

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

label {
  color: var(--white);
  margin-bottom: .25rem;
  font-family: Gotham, sans-serif;
  font-weight: 400;
  line-height: 1.2;
}

blockquote {
  border-left: .1875rem solid #000;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.overflow-hidden {
  overflow: hidden;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

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

.hide {
  display: none;
}

.text-style-link {
  text-decoration: underline;
}

.max-width-xlarge {
  width: 100%;
  max-width: 55rem;
  margin-left: auto;
  margin-right: auto;
}

.max-width-medium, .max-width-xsmall {
  width: 100%;
  max-width: 35rem;
  margin-left: auto;
  margin-right: auto;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 21.3rem;
  margin-left: auto;
  margin-right: auto;
}

.max-width-xxsmall.small {
  max-width: 15rem;
}

.page-wrapper, .page-wrapper.show {
  display: block;
}

.container-large {
  width: 100%;
  max-width: 67rem;
  margin-left: auto;
  margin-right: auto;
}

.container-large.testimonial {
  background-color: #fff;
  background-image: url('../images/testimonial_obj.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 2.5rem;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.max-width-large {
  width: 100%;
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
}

.max-width-small {
  width: 100%;
  max-width: 39.5rem;
  margin-left: auto;
  margin-right: auto;
}

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.container-medium {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 62rem;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: 100%;
  max-width: 61rem;
  margin-left: auto;
  margin-right: auto;
}

.margin-tiny {
  margin: .55rem;
}

.margin-xxsmall {
  margin: .5rem;
}

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.margin-xxhuge {
  margin: 10rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .25rem;
}

.padding-xxsmall {
  padding: .5rem;
}

.padding-xsmall {
  padding: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 7rem;
}

.padding-xxhuge {
  padding: 10rem;
}

.margin-top, .margin-top.margin-custom1, .margin-top.margin-huge, .margin-top.margin-small, .margin-top.margin-tiny, .margin-top.margin-custom3, .margin-top.margin-medium, .margin-top.margin-xxsmall, .margin-top.margin-xxhuge, .margin-top.margin-custom2, .margin-top.margin-xsmall, .margin-top.margin-large, .margin-top.margin-xxlarge, .margin-top.margin-xlarge, .margin-top.margin-0, .margin-top.margin-xhuge {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom, .margin-bottom.margin-xxlarge, .margin-bottom.margin-medium, .margin-bottom.margin-custom3, .margin-bottom.margin-custom1, .margin-bottom.margin-tiny, .margin-bottom.margin-small, .margin-bottom.margin-large, .margin-bottom.margin-0, .margin-bottom.margin-xlarge, .margin-bottom.margin-xhuge, .margin-bottom.margin-xxhuge, .margin-bottom.margin-huge, .margin-bottom.margin-xxsmall, .margin-bottom.margin-custom2, .margin-bottom.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left, .margin-left.margin-tiny, .margin-left.margin-xxlarge, .margin-left.margin-0, .margin-left.margin-small, .margin-left.margin-xsmall, .margin-left.margin-large, .margin-left.margin-huge, .margin-left.margin-xlarge, .margin-left.margin-custom3, .margin-left.margin-xxsmall, .margin-left.margin-custom1, .margin-left.margin-custom2, .margin-left.margin-xhuge, .margin-left.margin-xxhuge, .margin-left.margin-medium {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right, .margin-right.margin-huge, .margin-right.margin-xsmall, .margin-right.margin-xxhuge, .margin-right.margin-small, .margin-right.margin-medium, .margin-right.margin-xlarge, .margin-right.margin-custom3, .margin-right.margin-custom2, .margin-right.margin-xxsmall, .margin-right.margin-xhuge, .margin-right.margin-custom1, .margin-right.margin-large, .margin-right.margin-0, .margin-right.margin-xxlarge, .margin-right.margin-tiny {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical, .margin-vertical.margin-medium, .margin-vertical.margin-xlarge, .margin-vertical.margin-xxsmall, .margin-vertical.margin-xxlarge, .margin-vertical.margin-huge, .margin-vertical.margin-0, .margin-vertical.margin-xxhuge, .margin-vertical.margin-tiny, .margin-vertical.margin-xsmall, .margin-vertical.margin-custom1, .margin-vertical.margin-small, .margin-vertical.margin-large, .margin-vertical.margin-xhuge, .margin-vertical.margin-custom2, .margin-vertical.margin-custom3 {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal, .margin-horizontal.margin-medium, .margin-horizontal.margin-tiny, .margin-horizontal.margin-custom3, .margin-horizontal.margin-0, .margin-horizontal.margin-xxlarge, .margin-horizontal.margin-xhuge, .margin-horizontal.margin-huge, .margin-horizontal.margin-xlarge, .margin-horizontal.margin-custom1, .margin-horizontal.margin-xxsmall, .margin-horizontal.margin-xsmall, .margin-horizontal.margin-large, .margin-horizontal.margin-custom2, .margin-horizontal.margin-small, .margin-horizontal.margin-xxhuge {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top, .padding-top.padding-xhuge, .padding-top.padding-xxhuge, .padding-top.padding-0, .padding-top.padding-large, .padding-top.padding-custom2, .padding-top.padding-xlarge, .padding-top.padding-huge, .padding-top.padding-xxsmall, .padding-top.padding-custom3, .padding-top.padding-tiny, .padding-top.padding-medium, .padding-top.padding-xxlarge, .padding-top.padding-small, .padding-top.padding-xsmall, .padding-top.padding-custom1 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom, .padding-bottom.padding-xlarge, .padding-bottom.padding-small, .padding-bottom.padding-xxhuge, .padding-bottom.padding-large, .padding-bottom.padding-xhuge, .padding-bottom.padding-custom2, .padding-bottom.padding-xxsmall, .padding-bottom.padding-xxlarge, .padding-bottom.padding-custom3, .padding-bottom.padding-custom1, .padding-bottom.padding-xsmall, .padding-bottom.padding-huge, .padding-bottom.padding-tiny, .padding-bottom.padding-medium, .padding-bottom.padding-0 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left, .padding-left.padding-xhuge, .padding-left.padding-xlarge, .padding-left.padding-0, .padding-left.padding-small, .padding-left.padding-xsmall, .padding-left.padding-medium, .padding-left.padding-xxhuge, .padding-left.padding-huge, .padding-left.padding-custom1, .padding-left.padding-tiny, .padding-left.padding-xxsmall, .padding-left.padding-custom3, .padding-left.padding-custom2, .padding-left.padding-xxlarge, .padding-left.padding-large {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right, .padding-right.padding-xxhuge, .padding-right.padding-custom2, .padding-right.padding-large, .padding-right.padding-xlarge, .padding-right.padding-tiny, .padding-right.padding-custom3, .padding-right.padding-custom1, .padding-right.padding-xsmall, .padding-right.padding-xxlarge, .padding-right.padding-xxsmall, .padding-right.padding-medium, .padding-right.padding-xhuge, .padding-right.padding-huge, .padding-right.padding-0, .padding-right.padding-small {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-vertical, .padding-vertical.padding-0, .padding-vertical.padding-xxhuge, .padding-vertical.padding-large, .padding-vertical.padding-custom3, .padding-vertical.padding-medium, .padding-vertical.padding-tiny, .padding-vertical.padding-xxlarge, .padding-vertical.padding-custom1, .padding-vertical.padding-xsmall, .padding-vertical.padding-xhuge, .padding-vertical.padding-xlarge, .padding-vertical.padding-custom2, .padding-vertical.padding-xxsmall, .padding-vertical.padding-huge, .padding-vertical.padding-small {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal, .padding-horizontal.padding-xxsmall, .padding-horizontal.padding-0, .padding-horizontal.padding-custom3, .padding-horizontal.padding-huge, .padding-horizontal.padding-xsmall, .padding-horizontal.padding-medium, .padding-horizontal.padding-xxlarge, .padding-horizontal.padding-large, .padding-horizontal.padding-xhuge {
  padding-top: 0;
  padding-bottom: 0;
}

.padding-horizontal.padding-custom1 {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

.padding-horizontal.padding-tiny, .padding-horizontal.padding-custom2, .padding-horizontal.padding-xxhuge, .padding-horizontal.padding-small, .padding-horizontal.padding-xlarge {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

.text-weight-medium {
  font-weight: 500;
}

.text-size-medium {
  font-size: 1.125rem;
}

.margin-top-auto {
  margin-top: auto;
}

.text-style-quote {
  border-left: .1875rem solid #000;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.heading-style-h2 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}

.rl-styleguide_tutorial-callout {
  grid-column-gap: 2rem;
  background-color: #fff;
  border: 1px solid #000;
  justify-content: space-between;
  align-items: center;
  padding: .75rem .75rem .75rem 1rem;
  display: flex;
}

.rl-styleguide_callout-link-wrapper {
  background-image: linear-gradient(135deg, #ff744826, #ff484826 50%, #6248ff26), linear-gradient(#fff, #fff);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  display: flex;
}

.rl-styleguide_heading {
  z-index: 4;
  color: #fff;
  background-color: #000;
  padding: .25rem .5rem;
  position: sticky;
  top: 0;
}

.styleguide_grid-colours {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.background-color-gray {
  background-color: #f4f4f4;
}

.heading-style-h6 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.rl-styleguide_item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
}

.icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.rl-styleguide_empty-space {
  z-index: -1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: relative;
}

.shadow-xxlarge {
  box-shadow: 0 32px 64px -12px #00000024;
}

.rl-styleguide_icons-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.icon-embed-medium {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.form-radio {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex;
}

.heading-style-h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.heading-style-h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.form-checkbox-icon {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form-checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form-checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.form-checkbox-label {
  margin-bottom: 0;
}

.text-size-tiny {
  font-size: .75rem;
}

.field-label {
  margin-bottom: .5rem;
  font-weight: 400;
}

.button {
  color: #000;
  text-align: center;
  background-color: #fff;
  border-radius: 20rem;
  padding: 1rem 1.5rem;
  font-family: Visbycf, sans-serif;
  font-weight: 500;
  line-height: 1.2rem;
}

.button.is-link {
  color: #000;
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button.is-link.is-alternate {
  color: #fff;
  background-color: #0000;
}

.button.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.button.is-icon {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button.is-secondary {
  color: #000;
  background-color: #0000;
}

.button.is-secondary.is-alternate {
  color: #fff;
  background-color: #0000;
  border-color: #fff;
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.button.is-small.is-icon-only {
  padding-left: .5rem;
  padding-right: .5rem;
}

.button.is-alternate {
  color: #000;
  background-color: #fff;
}

.button.is-tertiary {
  color: #000;
  background-color: #0000;
  border-color: #0000;
}

.button.is-icon-only {
  padding-left: .75rem;
  padding-right: .75rem;
}

.button.text-color-green {
  color: var(--dark-green);
}

.button.program {
  background-color: var(--light-green);
  color: var(--white);
  white-space: nowrap;
  border-radius: .2rem;
  width: 100%;
  padding: .5rem .9rem;
  font-family: Visbycf, sans-serif;
  font-size: .8rem;
  font-weight: 400;
}

.button.green-pill {
  background-color: var(--dark-green);
  color: var(--white);
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  transition: transform .2s;
}

.button.green-pill:hover {
  transform: scale(.95);
}

.button.green-outline {
  border: 1px solid var(--dark-green);
  background-color: var(--white);
  color: var(--dark-green);
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.text-weight-normal {
  font-weight: 400;
}

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.text-style-italic {
  font-style: italic;
}

.icon-1x1-xxsmall {
  width: 1rem;
  height: 1rem;
}

.form-radio-label {
  margin-bottom: 0;
}

.rl-styleguide_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 1rem;
  display: grid;
}

.rl-styleguide_item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}

.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.shadow-xlarge {
  box-shadow: 0 24px 48px -12px #0000002e;
}

.text-weight-light {
  font-weight: 300;
}

.rl-styleguide_label {
  color: #fff;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0073e6;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.rl-styleguide_label.is-html-tag {
  background-color: #be4aa5;
}

.text-size-regular {
  font-size: .8rem;
}

.text-weight-xbold {
  font-weight: 800;
}

.text-align-right {
  text-align: right;
}

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

.icon-height-xlarge {
  height: 6.5rem;
}

.heading-style-h3 {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
}

.icon-1x1-large {
  width: 5rem;
  height: 5rem;
}

.form-input {
  color: #000;
  background-color: #fff0;
  border: 1px solid #fff;
  border-radius: 2rem;
  flex: 1;
  margin-bottom: 0;
  padding: 0 .75rem 0 3rem;
  font-family: Visbycf, sans-serif;
  font-size: .9rem;
  line-height: 1.6;
  overflow: hidden;
}

.form-input:focus {
  border: 1px solid var(--elda-green);
}

.form-input::placeholder {
  color: #606060;
}

.form-input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.form-input.is-select-input {
  z-index: 1;
  background-image: none;
  padding-right: 2.75rem;
  position: relative;
}

.form-input.is-select-input:focus {
  border-width: 0;
}

.form-input.is-select-input.outline:focus {
  border-width: 1px;
}

.form-input.phone {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 4rem;
}

.form-input.outline {
  border-color: #d5d5d5;
}

.form-input.outline.is-textarea {
  border-radius: 1.2rem;
  max-width: 760px;
  min-height: 128px;
  padding-top: .5rem;
  padding-left: 1.2rem;
}

.form-input.career {
  border-color: #d5d5d5;
  padding-left: .9rem;
}

.form-input.career.upload {
  border-color: var(--dark-green);
  background-color: #c3ece5;
  min-width: 100%;
  height: 3rem;
  padding-top: .7rem;
  position: relative;
}

.form-input.career.phone {
  padding-left: 2.3rem;
}

.rl-styleguide_paste-text {
  color: #00000080;
  text-align: center;
  border: 1px dashed #00000026;
  padding: 1rem;
}

.rl-styleguide_button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid;
}

.rl-styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

.icon-embed-custom1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.rl-styleguide_color {
  padding-bottom: 8rem;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group.center {
  justify-content: center;
}

.button-group.center.margin-top {
  margin-top: 25px;
}

.text-color-white {
  color: #fff;
}

.text-color-white.medium {
  padding-top: .7rem;
  font-family: Gotham, sans-serif;
  font-weight: 500;
  line-height: 1rem;
}

.background-color-white {
  background-color: #fff;
}

.background-color-white.w--open {
  width: auto;
  font-size: .8rem;
}

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

.text-style-muted {
  opacity: .6;
}

.text-style-nowrap {
  white-space: nowrap;
}

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

.icon-embed-large {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex;
}

.shadow-xxsmall {
  box-shadow: 0 1px 2px #0000000d;
}

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

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.icon-height-xxsmall {
  height: 1rem;
}

.background-color-black {
  color: #fff;
  background-color: #000;
}

.shadow-xsmall {
  box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f;
}

.icon-1x1-custom1 {
  width: 1.25rem;
  height: 1.25rem;
}

.rl-styleguide_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.rl-styleguide_subheading {
  z-index: 3;
  color: #000;
  background-color: #d3d3d3;
  padding: .25rem .5rem;
  position: sticky;
  top: 2rem;
}

.form-radio-icon {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

.form-radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000;
}

.form-radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.rl-styleguide_shadows-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
}

.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.rl-styleguide_callout-link {
  background-color: #fff;
  background-image: linear-gradient(135deg, #ff7448, #ff4848 50%, #6248ff);
  justify-content: space-between;
  align-items: center;
  padding: 1px;
  text-decoration: none;
  display: flex;
}

.icon-height-custom1 {
  height: 1.25rem;
}

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

.text-size-small {
  padding-top: .4rem;
  font-size: .8rem;
  line-height: 1rem;
}

.class-label-column {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.icon-height-small {
  height: 2rem;
}

.icon-height-large {
  height: 5rem;
}

.shadow-large {
  box-shadow: 0 20px 24px -4px #00000014, 0 8px 8px -4px #00000008;
}

.icon-embed-xlarge {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
}

.icon-1x1-small {
  width: 2rem;
  height: 2rem;
}

.class-label-row {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.text-rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-rich-text h2, .text-rich-text h3, .text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h5, .text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text p {
  margin-bottom: 1rem;
}

.text-rich-text a {
  text-decoration: underline;
}

.text-rich-text figcaption {
  text-align: left;
  border-left: 2px solid #000;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.icon-height-medium {
  height: 3rem;
}

.form-checkbox {
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

.shadow-small {
  box-shadow: 0 4px 8px -2px #0000001a, 0 2px 4px -2px #0000000f;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

.rl-styleguide_button-row {
  grid-column-gap: 1rem;
  display: flex;
}

.shadow-medium {
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #00000008;
}

.text-size-large {
  font-size: 1.2rem;
  line-height: 2rem;
}

.icon-height-xsmall {
  height: 1.5rem;
}

.rl-styleguide_spacing-all {
  display: none;
}

.padding-section-small {
  flex-direction: column;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.rl-styleguide_empty-box {
  z-index: -1;
  background-color: #eee;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.rl-styleguide_spacing {
  border: 1px dashed #d3d3d3;
}

.padding-global {
  padding-left: 1rem;
  padding-right: 1rem;
}

.padding-section-medium {
  padding-top: 3rem;
  padding-bottom: .9rem;
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.spacer-tiny {
  width: 100%;
  padding-top: .25rem;
}

.spacer-xxsmall {
  width: 100%;
  padding-top: .5rem;
}

.spacer-xsmall {
  width: 100%;
  padding-top: 1rem;
}

.spacer-small {
  width: 100%;
  padding-top: 1.5rem;
}

.spacer-medium {
  width: 100%;
  padding-top: 2rem;
}

.spacer-large {
  width: 100%;
  padding-top: 3rem;
}

.spacer-xlarge {
  width: 100%;
  padding-top: 4rem;
}

.spacer-xxlarge {
  width: 100%;
  padding-top: 5rem;
}

.spacer-huge {
  width: 100%;
  padding-top: 6rem;
}

.spacer-xhuge {
  width: 100%;
  padding-top: 7rem;
}

.spacer-xxhuge {
  width: 100%;
  padding-top: 10rem;
}

.is-black {
  background-color: #000;
}

.is-white {
  background-color: #fff;
}

.is-gray {
  background-color: #f4f4f4;
}

.navbar {
  background-color: #fff;
  flex-direction: column-reverse;
  justify-content: space-around;
  align-items: stretch;
  height: 4rem;
  display: flex;
}

.nav_link {
  color: #2c2a2a;
  padding: 1.5rem 1rem .8rem;
  font-size: .9rem;
  transition: background-color .2s;
}

.nav_link:hover {
  color: var(--elda-green);
}

.nav_link.w--current {
  color: var(--dark-green);
}

.nav_link.drop-down {
  padding-right: 2.2rem;
}

.brand {
  align-items: center;
  display: flex;
}

.section_bounceback_hero {
  background-image: url('../images/final_dl_beatsnoop_27.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
}

.hero_content {
  color: var(--white);
}

.price-text {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

.section_symptoms {
  overflow: hidden;
}

.marquee-content {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-wrap: nowrap;
  display: flex;
}

.symptom_card {
  border-radius: 2rem;
  flex: none;
  width: 14.7rem;
  position: relative;
  overflow: hidden;
}

.symptom_image_overlay {
  color: var(--white);
  text-align: center;
  background-image: linear-gradient(#0000, #0000009e);
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 1.1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.image {
  object-fit: cover;
  width: 100%;
}

.symptom_text {
  font-family: Gotham, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.marquee-wrap {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
}

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

.evidence_grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  max-width: 58.5rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5.6rem;
  display: flex;
}

.evidence_circle {
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
  background-color: #007b7b;
  border-radius: 50rem;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 16.1rem;
  height: 16.1rem;
  padding-left: 2.6rem;
  padding-right: 2.6rem;
  display: flex;
  box-shadow: 0 30px 40px #1616161a;
}

.evidence_circle.outline {
  color: var(--black-2);
  background-color: #fff;
  border: 2px solid #469787;
  align-self: center;
  align-items: center;
  position: relative;
  top: -4.8rem;
  left: -3.7rem;
}

.evidence_circle.light_green {
  background-color: var(--light-green);
  position: relative;
  left: -7.3rem;
}

.evidence_circle.outline-2 {
  color: var(--black-2);
  background-color: #fff;
  border: 2px solid #469787;
  position: relative;
  top: -4.4rem;
  left: -11.3rem;
}

.evidence_percentage {
  font-family: Gotham, sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 3.2rem;
}

.form-wrapper {
  background-color: var(--light-green);
  background-image: url('../images/form-bottom-right.svg'), url('../images/form-bottom-left.svg');
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: 19%, 16%;
  border-radius: 2.5rem;
  padding: 4.6rem 4.6rem 2.5rem;
}

.form_grid {
  grid-column-gap: 3rem;
  grid-row-gap: 1.75rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 8px;
  display: grid;
}

.form_block {
  max-width: 38rem;
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.submit-button {
  background-color: #ff7585;
  border-radius: 5rem;
  width: 17.5rem;
  height: 3.6rem;
  font-family: Visbycf, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform .2s;
}

.submit-button:hover {
  transform: scale(.95);
}

.submit-button.green {
  background-color: var(--dark-green);
}

.form_symptoms_wrapper {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.checkbox-label {
  margin-bottom: 0;
  padding-top: .2rem;
  padding-left: .1rem;
  font-family: Visbycf, sans-serif;
  font-size: .9rem;
  line-height: 1.2rem;
}

.form-field {
  background-color: #fff;
  border-radius: 2rem;
  flex-direction: column;
  min-height: 3rem;
  display: flex;
  position: relative;
}

.form-field.select {
  background-color: #fff;
  border-radius: 2rem;
}

.field_icon {
  width: 1rem;
  height: 1rem;
  position: absolute;
  inset: 1rem auto 0% 1.2rem;
}

.form-checkbox-icon-2 {
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #0000;
  border-radius: .2rem;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: .3rem;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form-checkbox-icon-2.w--redirected-checked {
  box-shadow: none;
  background-color: #ff7585;
  background-size: 16px 16px;
  border-width: 0;
}

.form-checkbox-icon-2.w--redirected-focus {
  box-shadow: none;
  border-width: 0;
}

.section_whats_in_it {
  background-color: #f9f9fb;
  overflow: hidden;
}

.section-sub-text {
  color: var(--heading-black);
  text-align: center;
  text-transform: capitalize;
}

.section-sub-text.text-color-white {
  color: var(--white);
}

.whats_in_card {
  background-color: #fff;
  border-radius: 1.25rem;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem;
  display: flex;
  box-shadow: 0 4px 40px #cacaca0d;
}

.whats_in_card.bounceback {
  height: 554px;
}

.whats_in_card.unwind {
  height: 486px;
}

.whats_in_card.wellness_program {
  height: 550px;
}

.whats_in_card.holistic {
  height: 586px;
  display: inline-block;
}

.whats_in_card.skin_hair {
  height: 372px;
}

.whats_in_card.emotional_wellbeing {
  height: 458px;
}

.whats_in_card.sexual_wellness {
  height: 436px;
}

.whats_in_card.nutrition {
  height: 636px;
}

.mask-overflow-visible {
  max-width: 48%;
  height: auto;
  overflow: visible;
}

.whats_in_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.whats_in_icon-wrap {
  flex: none;
  width: 4rem;
}

.whats_in_list_wrap {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  padding-top: 1.1rem;
  padding-left: 2rem;
  padding-right: 1rem;
  display: flex;
}

.check-text-wrapper {
  grid-column-gap: 1.3rem;
  grid-row-gap: 1.3rem;
  color: #303030;
  flex-wrap: nowrap;
  align-items: flex-start;
  display: flex;
}

.check-text-wrapper.gap-small {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
}

.check-text {
  padding-top: .6rem;
  line-height: 1.6rem;
}

.check-text.small {
  color: #404040;
  font-size: .8rem;
  line-height: 1.6rem;
}

.check_303030 {
  padding-top: .8rem;
}

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

.arrow-orange-right {
  background-color: var(--elda-orange);
  background-image: url('../images/slider-arrow-white-right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 5rem;
  width: 2.7rem;
  height: 2.7rem;
  box-shadow: 0 22px 30px #16161640;
}

.arrow-orange-right.program-right {
  inset: auto 0% 0% 3.5rem;
}

.arrow-orange-right.right-margin {
  right: -2rem;
}

.arrow-orange-left {
  background-color: var(--elda-orange);
  background-image: url('../images/slider-arrow-left-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 5rem;
  width: 2.7rem;
  height: 2.7rem;
  box-shadow: 0 22px 30px #16161640;
}

.arrow-orange-left.program-left {
  position: absolute;
  inset: auto 3.5rem 0% 0%;
}

.arrow-orange-left.left-margin {
  left: -2rem;
}

.program_highlights_grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.highlight-card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: #16191d;
  background-color: #fff;
  border-radius: .6rem;
  align-items: flex-start;
  padding: 1.1rem 1rem 1.1rem 1.3rem;
  font-size: .9rem;
  line-height: 1.5rem;
  display: flex;
}

.highlight_heading {
  color: var(--heading-black);
  padding-top: 12px;
  font-family: Gotham, sans-serif;
  font-size: 1.2rem;
  line-height: 1.3;
}

.plans_wrapper {
  background-color: #65c3b10d;
  border-radius: 2.5rem;
}

.plans_wrapper.grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-transform: capitalize;
  grid-template-rows: auto auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  padding: 3rem 2rem;
  display: grid;
}

.plan_heading {
  color: var(--elda-orange);
  flex-direction: column;
  justify-content: flex-end;
  font-family: Visbycf, sans-serif;
  font-weight: 500;
  display: flex;
}

.plan-wrap {
  margin-left: 1.1rem;
  margin-right: 1.1rem;
}

.text-green-bold {
  color: #007b7b;
  padding-top: .9rem;
  line-height: .4rem;
}

.text-green-bold.diagnostic {
  color: #fd787a;
  padding-top: .9rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1rem;
}

.plan_price {
  color: var(--heading-black);
  padding-top: 1.3rem;
  font-family: Gotham, sans-serif;
  font-size: .9rem;
  font-weight: 500;
  line-height: .5rem;
}

.plan_validity {
  padding-top: 0;
  font-size: .8rem;
}

.plan_button {
  background-color: var(--dark-green);
  border-radius: .2rem;
  justify-content: center;
  align-items: center;
  height: 2rem;
  padding-left: 0;
  padding-right: 0;
  font-family: Visbycf, sans-serif;
  font-size: .8rem;
  font-weight: 400;
  display: flex;
}

.plan-sub-heading {
  color: var(--black-2);
  border-bottom: 1px solid #007b7b4d;
  padding-top: 1.6rem;
  font-size: .9rem;
  line-height: 3rem;
}

.plan-sub-heading.bold {
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  font-family: Gotham, sans-serif;
  font-size: .8rem;
  font-weight: 500;
}

.plan-sub-heading.padding-top {
  padding-top: .6rem;
  line-height: 3.1rem;
}

.plan-sub-heading.padding-top.without-line {
  border-bottom-style: none;
}

.plan-sub-heading.bold-no-padding {
  padding-top: .7rem;
  padding-left: 1.1rem;
  padding-right: 1.1rem;
  font-family: Gotham, sans-serif;
  font-size: .8rem;
  font-weight: 500;
}

.plan-sub-heading.bold-no-padding.without-line {
  border-bottom-style: none;
}

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

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

.green-text {
  color: var(--dark-green);
  text-align: center;
}

.experts_grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.expert_card {
  background-color: #fff;
  border-radius: 1.2rem;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 40px #a8a8a81a;
}

.expert_details {
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  padding: 1.5rem 1.2rem;
  line-height: 1.3rem;
  display: flex;
}

.expert_name {
  color: var(--elda-orange);
  margin-bottom: .4rem;
  padding-top: .6rem;
  font-family: Gotham, sans-serif;
  font-size: 1.2rem;
  line-height: 1rem;
}

.qualification {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  align-items: flex-start;
  padding-top: .3rem;
  display: flex;
}

.text-style-red {
  color: var(--elda-orange);
}

.text-style-red.text-size-small {
  margin-right: .4rem;
  padding-top: .3rem;
  font-size: .8rem;
  line-height: 1.1rem;
}

.section_stories.postpartum-hide {
  display: none;
}

.faq-wrapper {
  border: 1px solid #d8e4e2;
  border-radius: 1rem;
  overflow: hidden;
}

.faq_question-group {
  background-color: #fff;
  border-bottom: 1px solid #d8e4e2;
}

.faq_question {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  cursor: pointer;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  padding: 1.5rem 1.5rem .9rem;
  font-family: Gotham, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6rem;
  display: flex;
}

.faq-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.faq_answer {
  color: #404040;
  margin-bottom: 1.5rem;
  margin-left: 1.5rem;
  margin-right: 3.4rem;
  font-size: .9rem;
  line-height: 1.8rem;
}

.faq_answer_wrap {
  overflow: hidden;
}

.section_footer {
  background-color: #032929;
}

.footer_grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  border-bottom: 1px solid #073939;
  grid-template-rows: auto;
  grid-template-columns: 2.75fr .75fr 1.25fr;
  grid-auto-columns: 1fr;
  padding-bottom: 3rem;
  display: grid;
}

.app_links_wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  display: flex;
}

.app_links_wrapper.hero {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  margin-top: 0;
}

.app_links_wrapper.center {
  justify-content: center;
}

.footer_link_wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer_heading {
  color: #7a9595;
  letter-spacing: .1rem;
  text-transform: uppercase;
  font-family: Gotham, sans-serif;
  font-size: 1.1rem;
}

.footer_link {
  color: var(--white);
  border-bottom: 1px solid #0000;
  justify-content: flex-start;
  margin-bottom: .5rem;
  padding-top: .3rem;
  padding-bottom: 0;
  font-size: .9rem;
  line-height: 1.1rem;
  text-decoration: none;
  transition: border;
  display: inline-block;
}

.footer_link:hover {
  border-bottom-color: #fff;
}

.footer_image_link {
  grid-column-gap: .8rem;
  grid-row-gap: .8rem;
  color: var(--white);
  align-items: center;
  margin-bottom: 1rem;
  font-size: .9rem;
  line-height: 1.9rem;
  text-decoration: none;
  display: flex;
}

.footer_image_link:hover {
  text-decoration: underline;
}

.phone {
  padding-top: .5rem;
}

.footer_legal {
  color: var(--white);
  text-transform: uppercase;
  padding-top: 1.8rem;
  padding-bottom: .7rem;
  font-size: .7rem;
}

.nav-menu-mobile {
  height: 100%;
}

.home_hero_slider_nav {
  bottom: 0;
}

.section_home_hero {
  overflow: hidden;
}

.home_hero {
  background-image: url('../images/smiley_woman_portrait_medium_shot_1_1-1.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  min-height: 95vh;
  padding-top: 3rem;
  padding-bottom: 0;
  display: flex;
}

.home_hero.slider-2 {
  background-color: var(--dark-green);
  background-image: url('../images/hero-slide-3-obj.svg');
  background-position: 0%;
  background-size: auto;
}

.home_hero.slider-3 {
  background-image: url('../images/all_products_main_banner_copy_1_1-1.webp');
}

.form-message-success {
  color: var(--dark-green);
  background-color: #fff;
  border-radius: 1rem;
  padding-top: 1.7rem;
  box-shadow: 0 2px 30px #0003;
}

.video_wrapper {
  max-width: 50rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.whats_in_slide {
  max-width: 29.5rem;
  height: auto;
  margin-right: 1rem;
  padding-left: 1rem;
}

.experts_image {
  object-fit: cover;
  object-position: 50% 26%;
  width: 100%;
  height: 11.7rem;
}

.section_unwind_hero {
  background-image: url('../images/final_dl_beatsnoop_34.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 4.1rem;
  padding-bottom: 4.1rem;
}

.section_results {
  overflow: hidden;
}

.grid-3-columns {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.road_map_card {
  background-color: var(--white);
  border-radius: 1.2rem;
  padding: 1rem;
  font-family: Gotham, sans-serif;
  font-weight: 500;
  box-shadow: 0 4px 40px #c5c5c533;
}

.roadmap_image_wrapper {
  border-radius: .8rem;
  overflow: hidden;
}

.roadmap_image {
  object-fit: contain;
  width: 100%;
}

.dropdown-link {
  background-color: #fff;
  border-radius: .6rem;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 10px;
  font-size: .8rem;
  line-height: 1.2rem;
  transition: all .2s;
}

.dropdown-link:hover {
  color: var(--dark-green);
  background-color: #fafafa;
}

.dropdown-link:active {
  background-color: #f5f5f5;
}

.dropdown-link.w--current {
  color: var(--dark-green);
}

.dropdown-link.hidden {
  display: none;
}

.dropdown-list {
  background-color: #fff;
  border-radius: .4rem;
  transition: box-shadow .2s;
}

.dropdown-list.w--open {
  box-shadow: 0 2px 30px #0000001a;
}

.section_wellness_program_hero {
  background-image: url('../images/final_dl_beatsnoop_51.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
}

.section_holistic_postpartum_hero {
  background-image: url('../images/side_view_mother_holding_baby_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 5.7rem;
  padding-bottom: 5.7rem;
}

.section_hair_and_skin_hero {
  background-image: url('../images/final_dl_beatsnoop_37.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3.2rem;
}

.text-align-center-no-animation {
  text-align: center;
}

.section_emotional_wellbeing_hero {
  background-image: url('../images/indian_woman_doing_yoga_meditation_lotus_asana_pose_outdoor_summer_park_1-1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.section_how_it_works {
  background-color: #f9f9fb;
}

.text-style-nocaps {
  text-transform: lowercase;
}

.hiw_grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.hiw_card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #fff;
  border-radius: 1.2rem;
  flex-direction: column;
  padding: 2rem;
  display: flex;
}

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

.section-greybg {
  background-color: #f9f9fb;
}

.section_sexual_wellness_hero {
  background-image: url('../images/final_dl_beatsnoop_38.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.sw_heading {
  font-size: 1.2rem;
  line-height: 2rem;
}

.sw_card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: center;
  background-color: #fff;
  border-radius: 1.2rem;
  flex-direction: column;
  padding: 2rem;
  display: flex;
}

.sw_text {
  padding-top: .6rem;
  font-size: .8rem;
  line-height: 1.5rem;
}

.caret {
  position: absolute;
  inset: 26px 24px 0% auto;
}

.country-code {
  z-index: 0;
  font-family: Visbycf, sans-serif;
  font-size: .9rem;
  position: absolute;
  inset: 14.5px auto 0% 52px;
}

.country-code.careers {
  left: 19px;
}

.bootleg {
  padding-top: 2.25rem;
}

.bootleg._2 {
  padding-top: .8rem;
}

.bootleg._3 {
  padding-top: 3.5rem;
}

.bootleg._4 {
  padding-top: 5.15rem;
}

.bootleg._5 {
  padding-top: 0;
}

.swiper-wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.swiper-slide {
  flex-direction: column;
  flex: none;
  display: flex;
}

.loader {
  z-index: 99999999;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 98vh;
  display: none;
  position: static;
  inset: 0%;
}

.loader-img {
  max-width: 80px;
}

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

.heading-h1.text-color-white {
  color: var(--white);
  text-transform: capitalize;
  position: static;
}

.heading-h2 {
  font-size: 2.4rem;
}

.html-embed {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.html-embed.h1-hide {
  display: none;
}

.heading-h1-hero {
  display: block;
}

.slider2 {
  height: auto;
  min-height: 95vh;
  max-height: 95vh;
}

.hero_slide_content {
  color: var(--white);
}

.hero_slide_content.slide_2 {
  z-index: 4;
  max-width: 23rem;
  position: relative;
}

.hero_slide_content.slide_3 {
  max-width: 28.3rem;
}

.hero_slide_image {
  max-height: 91vh;
  position: absolute;
  inset: auto 0% 0% auto;
}

.heading-h1-style-2 {
  font-size: 3rem;
}

.heading-h1-style-2.text-color-green {
  color: var(--dark-green);
}

.section_logos {
  background-color: #f9f9fb;
  overflow: hidden;
}

.logo_wrapper {
  grid-column-gap: 1.4rem;
  grid-row-gap: 1.4rem;
  flex-flow: row;
  flex: none;
  justify-content: flex-start;
  margin-right: 1.4rem;
  display: flex;
}

.logo_image {
  width: 5rem;
}

.logo_card {
  background-color: #fff;
  border-radius: .6rem;
  flex: none;
  align-items: center;
  padding: 1rem 2.5rem;
  display: flex;
}

.logo_marquee {
  justify-content: flex-start;
  display: flex;
}

.section_lets_explore {
  background-color: #f9f9fb;
}

.cta_wrapper {
  background-color: #65c3b1;
  background-image: url('../images/cta2.svg'), url('../images/cta1.svg');
  background-position: 0%, 95% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  border-radius: 2.5rem;
  padding: 6.2rem 5.2rem;
}

.justify-center {
  justify-content: center;
  display: flex;
}

.justify-center.social {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  align-items: center;
}

.program_slider {
  background-color: #f9f9fb;
  height: auto;
  padding-bottom: 3.9rem;
}

.mask {
  max-width: 34.5%;
  height: auto;
  overflow: visible;
}

.program_card {
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 1rem;
  flex-direction: column;
  height: 652.359px;
  margin-right: 2rem;
  display: flex;
  overflow: hidden;
}

.program_details {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1rem;
  display: flex;
}

.program_heading {
  color: var(--dark-green);
  padding-top: .5rem;
  font-family: Gotham, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.1;
}

.padding-section-xsmall {
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.check_mark {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--black-2);
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: .2rem;
  padding-top: 10px;
  line-height: 1.2rem;
  display: flex;
}

.program_price_wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  display: flex;
}

.program_price_text {
  padding-top: 12px;
  line-height: 1.2rem;
  display: none;
}

.price_red {
  color: var(--elda-orange);
}

.slide {
  height: 100%;
}

.program_image {
  object-fit: cover;
  width: 100%;
  height: 209.859px;
}

.section_programs {
  background-color: #f9f9fb;
  padding-bottom: 49px;
  overflow: hidden;
}

.section_testimonial {
  background-color: #f9f9fb;
  overflow: hidden;
}

.testimonial_slider {
  background-color: #ddd0;
  height: auto;
  margin-top: 2rem;
  margin-left: 2rem;
  margin-right: 2rem;
}

.testimonial_wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: 43rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.testimonial_slide {
  height: auto;
}

.video-embed {
  border-radius: .6rem;
  flex: 1;
  overflow: hidden;
}

.testimonial_video_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--black-2);
  text-align: center;
  flex-direction: column;
  font-family: Gotham, sans-serif;
  font-weight: 500;
  display: flex;
}

.testimonial_heading {
  padding-top: 20px;
  font-family: Visbycf, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.testimonial-red {
  color: var(--elda-orange);
  padding-left: 9px;
  text-decoration: underline;
}

.testimonial_grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
  display: grid;
}

.symptom_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--black-2);
  align-items: center;
  padding-top: 5px;
  font-size: .9rem;
  line-height: 1.2rem;
  display: flex;
}

.mask_overflow_none {
  height: auto;
}

.gray_section {
  background-color: #f9f9fb;
}

.process_wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: minmax(200px, 520px) 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.scroll_track {
  position: relative;
}

.doctor_image {
  border-radius: 1.25rem;
  width: 520px;
  height: 330.445px;
  position: sticky;
  top: 1rem;
  box-shadow: 0 40px 40px #1616161a;
}

.process_content_wrapper {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  padding-left: 4.1rem;
  display: flex;
  position: relative;
}

.process_card {
  z-index: 2;
  position: relative;
}

.process_heading {
  color: var(--elda-green);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.process_check {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-family: Gothambook, sans-serif;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.5rem;
  display: flex;
}

.process_check_text {
  padding-top: 7px;
}

.ripple_dot {
  background-color: var(--light-green);
  border-radius: 12rem;
  flex: none;
  width: 1rem;
  height: 1rem;
  position: absolute;
}

.ripple {
  background-color: #addfd6;
  border-radius: 20rem;
  flex: none;
  width: 1.8rem;
  height: 1.8rem;
}

.ripple_wrapper {
  justify-content: center;
  align-items: center;
  width: 1.6rem;
  display: flex;
  position: absolute;
  inset: 0 auto auto -82px;
}

.process_bar {
  background-color: #addfd6;
  border-radius: 1rem;
  width: .5rem;
  margin-top: 11px;
  margin-left: 11px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.testimonial_name {
  font-family: Visbycf, sans-serif;
}

.text-size-large-no-animation {
  font-size: 1.2rem;
  line-height: 2rem;
}

.section_ourapp {
  background-color: #f9f9fb;
}

.our_app_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.app_features {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.app_preview {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.app_feature_card {
  color: #16191d;
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: .8rem;
  line-height: 1.3rem;
  display: flex;
}

.app_feature_heading {
  color: var(--heading-black);
  margin-top: 1rem;
  margin-bottom: .5rem;
  font-family: Gotham, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

.app_feat_image {
  border-radius: 4rem;
  width: 60px;
  box-shadow: 0 20px 15px #f5917b26;
}

.section_social {
  background-color: #f8f8fa;
}

.social-wrap {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 1rem;
  display: flex;
}

.insta_gallery {
  width: 100%;
}

.section_yoga_hero {
  background-image: url('../images/');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.underline-green {
  background-image: url('../images/greenline.svg');
  background-position: 50% 112%;
  background-repeat: no-repeat;
  background-size: auto;
}

.section_packages {
  position: relative;
}

.green_bg {
  background-color: var(--elda-green);
  height: 40%;
  max-height: 610px;
  position: absolute;
  inset: 0%;
}

.green_bg.dark-green {
  background-color: var(--dark-green);
}

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

.package_card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-radius: 2.5rem;
  grid-template-rows: auto 1fr;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  overflow: hidden;
}

.package_image_wrapper {
  padding-bottom: 0;
}

.package_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.package_content_wrapper {
  background-color: var(--white);
  padding: 2.5rem;
  font-size: .8rem;
  line-height: 1.5rem;
}

.body-text {
  color: var(--black-2);
  padding-top: 8px;
}

.body-text.text-color-white {
  color: var(--white);
}

.program_feature_icons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 20px;
  display: grid;
}

.section_treetrunk {
  background-image: url('../images/orangetshirtyoga_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.treetrunk_text {
  color: var(--white);
  text-transform: uppercase;
  font-family: Gothambook, sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
}

.padding-section-xlarge {
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.oval_grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.oval_image_wrapper {
  color: var(--white);
  border-radius: 300px;
  position: relative;
  overflow: hidden;
}

.full-width {
  width: 100%;
}

.image-overlay {
  z-index: 1;
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3.1rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.circle_div_wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.circle_card {
  background-color: var(--dark-green);
  color: var(--white);
  text-align: center;
  border-radius: 20rem;
  justify-content: center;
  align-items: center;
  width: 262px;
  height: 262px;
  padding: 2.1rem 1.5rem 1.5rem;
  display: flex;
  position: relative;
}

.circle_icon {
  border-radius: 100px;
  position: absolute;
  inset: 0% auto auto 0%;
  box-shadow: 0 4px 4px #00000040;
}

.grid-two-row {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  display: grid;
}

.section_nutrition_hero {
  background-image: url('../images/different_vegetables_seeds_fruits_table_healthy_diet_flat_lay_top_view_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.nutrition_grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.section_nutrition_overlay {
  background-image: url('../images/nutrition-overlay_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.body-gray {
  background-color: #f9f9fb;
}

.section_ourapp_hero {
  background-color: var(--dark-green);
  background-image: url('../images/ouappherobg.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  align-items: center;
  min-height: 95vh;
  display: flex;
  position: relative;
}

.our_app_hero_content {
  color: var(--white);
  max-width: 31.2rem;
}

.our_app_hero_image {
  width: 100%;
  max-width: 40%;
  position: absolute;
  right: 4%;
}

.section_ourapp_cta {
  background-color: #8c52ff;
  align-items: center;
  min-height: 95vh;
  display: flex;
  position: relative;
}

.install-btn {
  transition: transform .2s;
}

.install-btn:hover {
  transform: scale(.95);
}

.our_app_cta_content {
  color: var(--white);
  max-width: 24rem;
}

.our_cta_hero_image {
  width: 100%;
  max-width: 61%;
  position: absolute;
  right: 0;
}

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

.app_features_card {
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: .9rem;
  line-height: 1.3rem;
  display: flex;
}

.app_features_card.orange {
  background-color: #f48168;
}

.app_features_card.purple {
  background-color: #d8a1c9;
}

.app_features_card.cherry {
  background-color: #f17285;
}

.app_features_card.cyan {
  background-color: #65c3b1;
}

.app_features_card.yellow {
  background-color: #ffbe0b;
}

.app_features_card.blue {
  background-color: #3a86ff;
}

.app_heading {
  font-size: 1.8rem;
}

.app_feat_text {
  margin-bottom: 1.5rem;
  padding-top: .8rem;
}

.app-max-width {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 24rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.app_feature_image {
  width: 100%;
  max-width: 31.5rem;
  margin-top: -2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.experts_wrapper {
  position: relative;
}

.experts_filter_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: space-between;
  height: 50px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.experts_filter_wrapper.blog {
  padding-left: 0;
}

.filter-button {
  color: #636363;
  background-color: #ececec;
  border-radius: 4rem;
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  height: 50px;
  margin-bottom: 0;
  padding: 0 1.5rem;
  font-family: Visbycf, sans-serif;
  text-decoration: none;
  transition: color .2s, background-color .2s;
  display: flex;
}
.filter-button.filter-active {
  background-color: var(--dark-green);
  color: #fff;
}

.experts_filter_scroll {
  z-index: 9;
  background-color: #f9f9fb;
  padding-top: .7rem;
  padding-bottom: .7rem;
  display: flex;
  position: sticky;
  top: 0;
  overflow: auto;
  scroll-behavior: smooth;
}

.experts_main_grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.experts_main_card {
  background-color: #fff;
  border-radius: 1.2rem;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.experts_main_image {
  object-fit: cover;
  object-position: 50% 9%;
  width: 100%;
  height: 260px;
}

.experts_main_content {
  color: var(--heading-black);
  padding: 1.2rem;
  position: relative;
}

.expert_heading {
  color: var(--elda-orange);
  text-transform: capitalize;
  padding-right: 30px;
  font-family: Gotham, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.new-tab-icon {
  position: absolute;
  inset: 25px 25px auto auto;
}

.expert_card_large {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  background-color: #fff;
  border-radius: 1.2rem;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2.4rem;
  display: grid;
  box-shadow: 0 4px 40px #6d6d6d1a;
}

.expert_image_large {
  border-radius: .6rem;
  width: 100%;
}

.expert_content_large {
  color: var(--heading-black);
  flex-direction: column;
  justify-content: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.expert_card_heading {
  color: var(--dark-green);
  margin-bottom: .5rem;
  padding-top: 15px;
  font-family: Gotham, sans-serif;
  font-size: 1.6rem;
}

.body-bold {
  font-family: Gotham, sans-serif;
  font-weight: 500;
}

.expert_story_text {
  font-size: .8rem;
  line-height: 1.4rem;
}

.contact_grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contactform {
  background-color: #fff;
  background-image: url('../images/contactbg2.svg'), url('../images/contactbg.svg');
  background-position: 0 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  border-radius: 2.5rem;
  padding: 2rem 3.9rem 3.9rem;
}

.contact_details_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact_detail_card {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #fff;
  border-radius: 1.2rem;
  align-items: flex-start;
  padding: 2rem;
  font-size: 1.2rem;
  line-height: 1.8rem;
  text-decoration: none;
  display: flex;
}

.address_text {
  padding-top: 8px;
}

.newsletter {
  aspect-ratio: auto;
  background-color: var(--dark-green);
  object-fit: fill;
  background-image: url('../images/nl2.svg'), url('../images/nl1.svg');
  background-position: 0 100%, 95% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  border-radius: 2.5rem;
  flex-flow: column;
  flex: 0 auto;
  order: 0;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 2rem 5.2rem 1rem;
  display: flex;
  overflow: visible;
}

.newsletter_input_wrapper {
  flex-direction: column;
  width: 100%;
  max-width: 620px;
  margin-bottom: 12px;
}

.newsletter-form {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: stretch flex-start;
  align-items: stretch;
  width: 100%;
  padding-top: 1rem;
  display: grid;
}

.newsletter_input {
  border: 1px solid #d1d6db;
  border-radius: 2rem;
  height: auto;
  margin-bottom: 0;
  padding: 8px 16px 8px 25px;
  font-family: Visbycf, sans-serif;
  font-size: 18px;
  line-height: 20px;
  transition: all .2s;
}

.newsletter_input::placeholder {
  color: #5e5e5ecc;
  font-family: Visbycf, sans-serif;
}

.newsletter-btn {
  background-color: var(--elda-orange);
  color: var(--white);
  border-radius: 2rem;
  margin-left: 0;
  padding-left: 1.7rem;
  padding-right: 1.7rem;
  font-family: Visbycf, sans-serif;
}

.section_blog_hero {
  background-image: url('../images/bloghero_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.featured_blog_slider {
  background-color: #fff0;
  height: auto;
}

.featured_blog_card {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: #fff;
  border-radius: .6rem;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  overflow: hidden;
}

.featured_blog_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.featured_blog_content {
  color: var(--black-2);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  padding-right: 1.4rem;
  display: flex;
}

.blog_tag {
  color: var(--dark-green);
  margin-bottom: .8rem;
  font-family: Gotham, sans-serif;
  font-size: .7rem;
  font-weight: 500;
}

.blog_heading {
  font-family: Gotham, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1rem;
}

.blog_summary {
  font-size: .8rem;
}

.blog_time_date_wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #2e3338;
  padding-top: 5px;
  font-size: .7rem;
  line-height: 1.5rem;
  display: flex;
}

.line {
  background-color: #2e3338;
  align-self: stretch;
  width: 1px;
  margin-bottom: 7px;
}

.justify-right {
  flex-direction: row;
  justify-content: flex-end;
  display: flex;
}

.readmore_btn {
  background-color: var(--light-green);
  text-transform: uppercase;
  border-radius: .4rem;
  margin-top: 20px;
  padding: 11px 1.6rem;
  font-family: Visbycf, sans-serif;
  font-size: .8rem;
  transition: transform .2s;
}

.readmore_btn:hover {
  transform: scale(.95);
}

.blog-grid {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.blog-grid.two_column {
  grid-template-columns: 1fr 1fr;
}

.blog-card {
  background-color: #fff;
  border-radius: 1.2rem;
  width: 100%;
  height: 100%;
  padding: 1rem;
  text-decoration: none;
}

.blog-card_image_wrapper {
  border-radius: .6rem;
  flex-direction: column;
  width: 100%;
  height: 210px;
  position: relative;
  overflow: hidden;
}

.blog-card_image_wrapper.large {
  height: 300px;
}

.blog-card_image {
  object-fit: cover;
  object-position: 0% 50%;
  width: 100%;
  height: 100%;
}

.blog-card_tag {
  background-color: #fff;
  border-radius: .4rem;
  padding: 10px 20px;
  font-family: Visbycf, sans-serif;
  font-size: .7rem;
  font-weight: 500;
  line-height: .6rem;
  position: absolute;
  inset: auto auto 10px 10px;
}

.blog_card_content {
  padding-top: .2rem;
}

.time_date_icon_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.time_wrapper {
  grid-column-gap: .4rem;
  grid-row-gap: .4rem;
  color: #2e3338;
  align-items: center;
  padding-top: 6px;
  padding-bottom: 6px;
  font-size: .7rem;
  line-height: 1.4rem;
  display: flex;
}

.time {
  font-family: Visbycf, sans-serif;
  font-weight: 500;
}

.blog_card_heading {
  color: var(--heading-black);
  text-transform: capitalize;
  padding-top: 5px;
  font-family: Gotham, sans-serif;
  font-weight: 500;
}

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

.blog_main_image {
  width: 100%;
}

.author_name {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #2e3338;
  margin-top: 1rem;
  margin-bottom: .4rem;
  font-size: .9rem;
  line-height: 1.6rem;
  display: flex;
}

.section_webinar_hero {
  background-image: url('../images/webinar-hero_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.section_careers_hero {
  background-image: url('../images/careershero_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.open_positions_grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.career_card {
  background-color: var(--white);
  border: 1px solid #dcdcdc;
  border-radius: 1.2rem;
  padding: 2rem;
}

.career_card.main {
  border-width: 0;
}

.career_heading {
  color: var(--dark-green);
}

.career_grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.career_details {
  color: #777f88;
  font-size: .9rem;
}

.career_button {
  background-color: var(--dark-green);
  color: var(--white);
  border-radius: .4rem;
  padding: 15px 45px 3px;
  font-size: .9rem;
  transition: transform .2s;
}

.career_button:hover {
  transform: scale(.95);
}

.section_about_us {
  background-color: var(--light-green);
}

.about_us_hero_image {
  width: 100%;
}

.about_us_greentext {
  color: var(--dark-green);
  font-size: 1.6rem;
  line-height: 2rem;
}

.about_image_grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 858px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.aboutus_grid_image_1 {
  z-index: 1;
  width: 429px;
  position: relative;
}

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

.numbers_card {
  color: var(--elda-orange);
  flex-direction: column;
  align-items: flex-start;
  font-family: Visbycf, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  display: flex;
}

.numbers_card.middle {
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
  margin-left: 44px;
  margin-right: 44px;
  padding-left: 67px;
  padding-right: 67px;
}

.section_trust_home {
  background-color: #addfd64d;
  background-image: url('../images/hero_2_sec.svg');
  background-position: 94% 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.home_number_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.home_number_image_wrapper {
  position: relative;
}

.home_number_image {
  object-fit: cover;
  border-radius: 1rem;
  height: 100%;
}

.home_number_count {
  background-color: var(--light-green);
  color: var(--white);
  text-align: center;
  border-radius: .8rem;
  padding: 12px 21px;
  font-family: Visbycf, sans-serif;
  font-weight: 600;
  line-height: 1.5rem;
  position: absolute;
  inset: auto -30px -37px auto;
  box-shadow: 0 40px 30px #65c3b140;
}

.home_number_heading {
  color: var(--dark-green);
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.number_sub {
  color: var(--black);
  padding-top: 18px;
  font-family: Gothambook, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.about_highlights_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about_us_highlight_card {
  grid-column-gap: 1.1rem;
  grid-row-gap: 1.1rem;
  color: #2e3338;
  background-color: #fff;
  border-radius: 1.2rem;
  justify-content: flex-start;
  padding: 1.5rem;
  line-height: 1.3rem;
  display: flex;
  box-shadow: 0 30px 40px #b8ebe21a;
}

.about_us_highlight_heading {
  color: var(--heading-black);
  font-family: Gotham, sans-serif;
  font-weight: 500;
}

.text-size-16 {
  font-size: .8rem;
}

.section_pictorial {
  overflow: hidden;
}

.place-holder {
  background-color: #dadada;
  height: 300px;
}

.leaders_grid {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.leaders_card {
  color: var(--heading-black);
  background-color: #fff;
  border-radius: 1.2rem;
  width: 100%;
  text-decoration: none;
  transition: color .2s, background-color .2s;
  position: relative;
  overflow: hidden;
}

.leaders_card:hover {
  background-color: var(--dark-green);
  color: var(--white);
}

.leader_image {
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 300px;
}

.leaders_content {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding: 1.3rem 1rem 1.6rem;
  font-size: .8rem;
  line-height: 1.5rem;
  display: flex;
}

.text-block {
  font-family: Gotham, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.linked_in_icon {
  position: absolute;
  inset: 15px 15px auto auto;
}

.policy_wrapper {
  background-color: var(--white);
  border-radius: 2.5rem;
  padding: 5rem;
}

.policy_text h2 {
  color: var(--dark-green);
  text-transform: capitalize;
  margin-top: 2rem;
  margin-bottom: 1.3rem;
  font-size: 1.6rem;
}

.policy_text p {
  color: #2e3338;
}

.policy_text h3 {
  color: #fb6e67;
  margin-top: 1rem;
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

.dropdown_grid {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding: 1.2rem;
  display: grid;
}

.dropdown_grid.flex {
  flex-direction: column;
  display: flex;
}

.upload-text {
  color: #16191d;
  padding-top: 8px;
  font-size: .8rem;
}

.plus {
  position: absolute;
  inset: 20px 24px 0% auto;
}

.resume_heading {
  font-size: 1.7rem;
}

.collection_item_no_shrink {
  flex: none;
}

.form-block-2 {
  z-index: 1;
  flex: none;
  margin-bottom: 0;
  display: flex;
  position: relative;
}

.pagination {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  font-family: Visbycf, sans-serif;
}

.pagination-button {
  background-color: #fff;
  border-color: #ccc0;
  border-radius: .8rem;
  justify-content: center;
  align-items: center;
  height: 50px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.pagination-button.w--current {
  background-color: var(--dark-green);
  color: var(--white);
}

.width0 {
  border-width: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.no-margin {
  margin-bottom: 0;
}

.section_women_of_elda {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  min-height: 100vh;
  display: grid;
}

.green_mobile {
  background-color: var(--dark-green);
  background-image: url('../images/wof_obj.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  padding: 1.9rem;
  display: flex;
}

.wof_content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  color: var(--dark-green);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  display: flex;
}

.wof_image {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--white);
  flex-direction: column;
  width: 63%;
  display: flex;
}

.wof_heading {
  text-align: center;
  font-size: 1.6rem;
}

.download_link {
  border: 1px solid var(--dark-green);
  border-radius: 3rem;
  box-shadow: 0 8px 8px #007b7b1a;
}

.wof_link {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--dark-green);
  white-space: nowrap;
  align-items: center;
  font-family: Visbycf, sans-serif;
  font-weight: 500;
  display: flex;
}

.wof_header {
  font-size: 1.4rem;
}

.wof_offer_text {
  padding-top: 5px;
  font-family: Gotham, sans-serif;
  font-size: 1.8rem;
  line-height: 2rem;
}

.wof_install_group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.wof_mobile_image, .wof_mobile_logo {
  display: none;
}

.wof_mobile_heading {
  padding-top: 1.1rem;
  display: none;
}

.wof_heading_large {
  display: block;
}

.section_media_hero {
  background-image: url('../images/media_hero_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.media_grid {
  grid-column-gap: 2rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.media_card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px solid #dcdcdc;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  grid-auto-columns: 1fr;
  height: 100%;
  padding: 2.5rem 0;
  text-decoration: none;
  display: flex;
}

.media_card:hover {
  color: var(--dark-green);
}

.media_heading {
  font-family: Gotham, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.media_heading.large {
  font-size: 1.2rem;
  line-height: 1.9rem;
}

.media_name {
  color: #1b8787;
  font-family: Gotham, sans-serif;
}

.media_image {
  border-radius: .4rem;
  flex: none;
  width: 200px;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.featured_media_card {
  color: var(--white);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: .4rem;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 0;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.media_card_overlay {
  z-index: 1;
  background-image: linear-gradient(#fff0, #000000a1);
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 300px;
  padding: 1.2rem;
  display: flex;
  position: relative;
}

.media_card_image {
  width: 100%;
  max-width: none;
  position: absolute;
  inset: 0%;
}

.blog_filter_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.swiper-container {
  position: relative;
}

.swiper-button-prev {
  background-color: var(--elda-orange);
  background-image: url('../images/slider-arrow-left-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 5rem;
  width: 2.7rem;
  height: 2.7rem;
  box-shadow: 0 22px 30px #16161640;
}

.swiper-button-next {
  background-color: var(--elda-orange);
  background-image: url('../images/slider-arrow-white-right.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 5rem;
  width: 2.7rem;
  height: 2.7rem;
  box-shadow: 0 22px 30px #16161640;
}

.carousel {
  justify-content: flex-start;
  display: flex;
  overflow: hidden;
}

.carousel-cell {
  flex: none;
  width: 31.5%;
  margin-right: 1.5rem;
}

.price_text_large {
  color: var(--heading-black);
  font-family: Gotham, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2rem;
}

.section_experts_component {
  background-color: #f9f9fb;
}

.lightbox-link {
  flex: 1;
  position: relative;
}

.lightbox_image {
  object-fit: cover;
  height: 100%;
}

.video-icon {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.testimonial_designation {
  font-size: .9rem;
  font-weight: 400;
  line-height: 1rem;
}

.rich-text-block {
  font-family: Visbycf, sans-serif;
  line-height: 1.8rem;
}

.rich-text-block p {
  font-family: Visbycf, sans-serif;
}

.arrow_wrapper {
  z-index: 22;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  cursor: pointer;
  background-image: linear-gradient(to right, #fff0, #ffffffe3);
  flex: none;
  order: 1;
  justify-content: flex-end;
  align-items: center;
  width: 29px;
  height: auto;
  display: flex;
  position: sticky;
  inset: 0% 0 0% auto;
}

.caret-down {
  flex: none;
  width: 100%;
  transform: rotate(-90deg);
}

.blog_wrapper {
  position: relative;
}

.team_mask {
  width: 31.5%;
  overflow: visible;
}

.team_slide {
  margin-right: 1.5rem;
}

.container-1110 {
  width: 100%;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.container-1110.overflow-true {
  overflow: visible;
}

.pictorial_mask {
  width: 48.6%;
  overflow: visible;
}

.pictorial_image {
  aspect-ratio: 1;
  object-fit: cover;
  background-color: #f5f5f5;
  border-radius: 1.2rem;
  width: 100%;
  overflow: hidden;
}

.pictorial_image.group-pic-1 {
  aspect-ratio: 1;
  width: 100%;
}

.pictorial_slide {
  margin-right: 1.5rem;
}

.hero-subtext {
  color: var(--white);
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: .8rem;
  font-size: 1.1rem;
  line-height: 2rem;
}

.hero-subtext.text-color-white {
  color: var(--white);
}

.hero-sub-text {
  color: var(--heading-black);
  text-transform: capitalize;
}

.hero-sub-text.text-color-white {
  color: var(--white);
}

.section_about_content {
  overflow: hidden;
}

.arrow_btn_track {
  position: relative;
}

.collection-list-wrapper {
  flex: none;
  width: auto;
}

.div-block {
  width: 100%;
  display: flex;
  position: relative;
}

.loading-screen {
  z-index: 99999999;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.centered-heading {
  color: #007b7b;
  text-align: center;
  margin-bottom: 16px;
  font-family: Gotham, sans-serif;
  font-size: 39px;
  font-weight: 400;
  line-height: 40px;
}

.text-block-305 {
  background-color: #0000;
  margin-left: 10px;
  margin-right: 10px;
  font-family: Visbycf, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 20px;
}

.div-block-548 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-148 {
  width: 412px;
}

.text-span-96 {
  color: #020303;
}

.text-block-237 {
  color: #000;
  font-size: 20px;
  line-height: 28px;
}

.text-block-237.titan {
  font-family: Visbycf, sans-serif;
}

.div-block-504 {
  background-color: #fd787a;
  border-radius: 20px;
  width: 120px;
  height: 4px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.column-51 {
  justify-content: center;
  align-items: flex-start;
  margin-top: 5%;
  padding-top: 0;
  display: flex;
}

.team-circles {
  background-color: #f9f9fb;
  border-bottom: 1px solid #e4ebf3;
  padding: 0 0 80px;
  position: relative;
}

.columns-25 {
  background-color: #0000;
  align-items: stretch;
  margin-top: 0;
  padding-top: 0;
  display: flex;
}

.columns-25.titan {
  background-color: #fff3e5;
}

.button-29 {
  background-color: #65c3b1;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 9px;
  font-family: Visbycf, sans-serif;
  font-weight: 600;
  display: flex;
}

.team-member-image {
  object-fit: cover;
  border-radius: 0%;
  width: 100%;
  height: 240px;
  margin-bottom: 24px;
}

.team-grid {
  grid-column-gap: 10rem;
  grid-row-gap: 56px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  margin-top: 50px;
  display: grid;
}

.image-219 {
  width: 120px;
  height: 120px;
}

.team-member-name {
  color: #007b7b;
  text-align: left;
  margin-bottom: 6px;
  padding-left: 10px;
  font-family: Gotham, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.column-52 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 5%;
  display: flex;
}

.column-52.titan {
  justify-content: center;
  padding-left: 40px;
}

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

.list-item-54 {
  color: #0b0d0f;
  text-align: left;
  margin-top: 6px;
  font-family: Visbycf, sans-serif;
  font-size: 18px;
  font-weight: 300;
  list-style-type: disc;
}

.team-card {
  text-align: center;
  background-color: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  font-size: 14px;
  line-height: 22px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.button-25 {
  background-color: #fd787a;
  border-radius: 50px;
  margin-top: 20px;
  font-size: 22px;
  font-weight: 400;
}

.button-25.titan {
  background-color: #fd787a;
  padding-left: 50px;
  padding-right: 50px;
  font-family: Visbycf, sans-serif;
}

.text-block-236 {
  color: #007b7b;
  font-family: Cormorantgaramond, sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 59px;
}

.text-block-236.titan {
  font-family: Gotham, sans-serif;
  font-weight: 400;
}

.text-block-306 {
  aspect-ratio: 2.39;
  position: static;
}

.hero-heading-left {
  background-color: #fff;
  border-bottom: 1px solid #e4ebf3;
  padding: 0 0 50px;
  position: relative;
}

.container {
  background-color: #fff;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-wrapper {
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-split {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 60%;
  max-width: 60%;
  padding-top: 0;
  display: flex;
}

.hero-split.img {
  background-color: #fff;
  width: 40%;
  max-width: 40%;
  padding-top: 0;
}

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

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

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

.shadow-two.image {
  box-shadow: none;
  object-fit: contain;
  background-color: #fff;
  height: 90vh;
}

.div-block-549 {
  flex-direction: row;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.div-block-550 {
  background-color: #007b7b;
  border-radius: 0 48px 48px 0;
  justify-content: space-between;
  align-items: center;
  width: 50%;
  padding: 6px 20px;
  display: flex;
}

.div-block-551 {
  margin-top: 25px;
  display: flex;
}

.text-block-307 {
  color: var(--white);
  margin-top: 0;
  padding-top: 0;
  padding-left: 0;
  font-family: Visbycf, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.image-221 {
  margin-left: 10px;
}

.div-block-552 {
  background-color: #007b7b;
  border-radius: 24px;
  justify-content: center;
  align-items: center;
  width: 30%;
  margin-left: 5%;
  padding: 0 0%;
  display: none;
}

.text-block-308 {
  color: var(--white);
  margin-left: 0%;
  margin-right: 0%;
  padding-right: 0%;
  font-family: Visbycf, sans-serif;
  font-size: 1.3rem;
}

.text-block-309 {
  color: var(--elda-green);
  margin-left: 25px;
  font-family: Gotham, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.div-block-553 {
  background-color: #c9451d;
  border-radius: 24px;
  margin-left: 25px;
  padding: 10px 20px;
}

.div-block-554 {
  background-color: #c9451d;
  border-radius: 24px;
  margin-left: 10px;
  padding: 10px 20px;
}

.text-block-310, .text-block-311 {
  color: var(--white);
  font-family: Visbycf, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.text-block-312 {
  color: var(--elda-green);
  background-color: #fff;
  margin-bottom: 25px;
  margin-left: 25px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: Visbycf, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.5rem;
}

.text-block-313 {
  color: var(--elda-green);
  margin-top: 25px;
  margin-bottom: 25px;
  margin-left: 25px;
  font-family: Visbycf, sans-serif;
  font-size: 2rem;
  font-weight: 400;
}

.text-block-314 {
  color: var(--heading-black);
  margin-top: 5px;
  padding-left: 15px;
  font-family: Visbycf, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.text-block-315 {
  color: var(--elda-green);
  font-family: Visbycf, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.div-block-555 {
  background-color: #fff;
  margin-left: 25px;
}

.image-222 {
  margin-left: 25px;
}

.image-223 {
  display: none;
}

.default-state {
  width: 100%;
  height: 100%;
}

.file-upload {
  flex-direction: column;
  height: 3rem;
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
}

.icon {
  margin-top: 6px;
}

.remove {
  color: var(--dark-green);
  flex-direction: column;
  width: 25px;
  font-size: 1.7rem;
  display: flex;
  position: absolute;
  inset: -3px 16px 0% auto;
}

.icon-2 {
  width: 100%;
  font-size: .8rem;
}

.text-block-316 {
  padding-top: 4px;
}

.error-message {
  padding-top: 16px;
  font-size: .7rem;
}

.section {
  background-color: #007b7b;
  display: flex;
}

.section.margin-top {
  flex-direction: column;
  margin-top: 25px;
}

.radio-button-field-21 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  display: flex;
}

.field-label-9 {
  color: #007b7b;
  font-family: Cormorantgaramond, sans-serif;
  font-weight: 500;
}

.text-block-302 {
  color: #000;
  font-size: 10px;
}

.container-1163 {
  height: 1244px;
  margin-top: 34px;
  margin-bottom: 0;
}

.radio-button-field-20 {
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  margin-left: 0;
  display: flex;
}

.yoga-ebook {
  -webkit-text-stroke-width: 0px;
  border: 0 dotted #000;
  border-radius: 0;
  flex-direction: column;
  padding-bottom: 30px;
  display: flex;
  transform: translate(0);
}

.text-field-20 {
  border-radius: 6px;
}

.radio-button-label-13 {
  color: var(--black);
  padding-left: 10px;
  font-family: Visbycf, sans-serif;
  font-size: .8rem;
}

.radio-button-label-13.e-book-form {
  color: var(--black-2);
  font-family: Visbycf, sans-serif;
  font-size: .8rem;
}

.select-field-10 {
  background-color: #fff;
  border-radius: 6px;
}

.heading-76 {
  text-align: center;
  font-size: 40px;
  line-height: 40px;
}

.text-field-18 {
  border-radius: 6px;
}

.image-212 {
  object-fit: fill;
  position: relative;
  inset: auto auto 0% 23%;
}

.heading-77 {
  text-align: center;
  font-size: 37px;
}

.submit-button-10 {
  background-color: #fd787a;
  border-radius: 6px;
  align-self: center;
  margin-top: 30px;
  font-family: Cormorantgaramond, sans-serif;
  position: static;
  top: 10px;
  left: 395px;
}

.ebook {
  margin: 190px -34px 0 31px;
  position: relative;
  bottom: 0;
  right: 0;
}

.trust-marker {
  background-color: #007b7b;
}

.div-block-556 {
  background-color: #0b0d0f66;
}

.text-block-317 {
  color: var(--white);
  text-align: center;
  padding-top: 20px;
  padding-bottom: 10px;
  font-family: Gotham, sans-serif;
  font-weight: 700;
}

.form-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #65c3b1;
  background-image: url('../images/form-bottom-left.svg'), url('../images/form-bottom-right.svg');
  background-position: 0 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 70%, auto 70%;
  background-attachment: scroll, scroll;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: stretch;
  place-items: center;
  padding-top: 2rem;
  padding-bottom: 3rem;
  display: grid;
}

.submit-button-11 {
  background-color: #ff7585;
  border-radius: 100px;
  margin-top: 0;
  padding: .4rem 3rem;
  font-family: Visbycf, sans-serif;
}

.text-field-21 {
  clear: none;
  outline-offset: 0px;
  color: var(--heading-black);
  background-color: #0000;
  border: 0 solid #fff;
  border-radius: 0;
  outline: 3px #020303;
  height: 2rem;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Visbycf, sans-serif;
  font-size: .8rem;
  position: static;
  top: 0;
  overflow: visible;
}

.field-label-10 {
  font-size: .8rem;
  font-weight: 400;
}

.field-label-11 {
  font-size: .8rem;
}

.div-block-557 {
  width: 50%;
  margin-left: 0;
}

.div-block-558 {
  width: 50%;
  margin-bottom: 0;
  margin-right: 0;
  padding-right: 0;
}

.div-block-559 {
  width: 50%;
  margin-right: 0;
}

.div-block-560 {
  width: 50%;
  margin-left: 0;
}

.div-block-561 {
  background-color: #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  min-height: 2.5rem;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.text-field-22 {
  text-align: left;
  background-color: #fff0;
  border: 1px solid #000;
  align-self: auto;
  font-family: Gotham, sans-serif;
  position: relative;
}

.grid-5 {
  margin-top: 1rem;
  margin-left: 2rem;
  margin-right: 2rem;
}

.section-2 {
  background-color: #65c3b1;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.text-block-318 {
  color: var(--white);
  text-align: center;
  font-size: 2rem;
  line-height: 3rem;
}

.text-block-319 {
  text-align: center;
  font-size: 2rem;
  line-height: 3rem;
}

.section-3 {
  cursor: pointer;
  background-image: url('../images/');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 85%;
  justify-content: space-around;
  align-items: center;
  min-height: 275px;
  display: flex;
}

.section-3.mobile {
  display: none;
}

.text-block-320 {
  color: var(--white);
  text-align: center;
  width: 60%;
  padding-left: 0;
  font-size: 1.5rem;
  line-height: 2rem;
}

.button-30 {
  background-color: #00f;
  border: 7px #65c3b1;
  align-self: flex-end;
  margin-bottom: 2rem;
  margin-right: 0;
  padding-top: 9px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Visbycf, sans-serif;
  font-size: 1rem;
  display: block;
  position: static;
  left: 0;
}

.section-4 {
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 0;
  display: flex;
  position: fixed;
  bottom: 0;
}

.button-31 {
  text-align: center;
  background-color: #1f01ff;
  border: 0 solid #65c3b1;
  border-radius: 0;
  align-self: auto;
  padding: 9px 0;
  font-family: Visbycf, sans-serif;
  font-weight: 700;
}

.modal-wrapper {
  z-index: 9999;
  background-color: #0000009e;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.newsletter_leadform {
  text-align: center;
  background-color: #fff;
  background-image: url('../images/form-bottom-left.svg'), url('../images/form-bottom-right.svg');
  background-position: 0 100%, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: 113px, 120px;
  border-radius: 20px;
  width: 90%;
  padding-top: 3rem;
  padding-bottom: 2rem;
  display: block;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.button-32 {
  background-color: #fd787a;
  border-radius: 10px;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Visbycf, sans-serif;
  font-size: .7rem;
  position: absolute;
  top: 10px;
  right: 10px;
}

.submit-button-12 {
  background-color: #fd787a;
  border-radius: 50px;
  width: 40%;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Visbycf, sans-serif;
}

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

.form-3 {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.field-label-12 {
  color: var(--black-2);
  text-align: left;
  font-size: .8rem;
}

.div-block-562 {
  background-color: #f4f4f4;
  border-radius: 50px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 6px 10px;
  display: flex;
}

.text-field-23 {
  background-color: #0000;
  border: 0 #0000;
  margin-bottom: 0;
  font-family: Visbycf, sans-serif;
  font-size: .8rem;
}

.div-block-563 {
  width: 50%;
  margin-bottom: 1rem;
  margin-left: 0;
}

.div-block-563.full-length {
  width: 50%;
}

.div-block-564 {
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  display: flex;
}

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

.section-5 {
  z-index: 9999;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: fixed;
  bottom: 0;
}

.button-33 {
  text-align: center;
  background-color: #1f01ff;
  font-family: Visbycf, sans-serif;
  font-weight: 700;
}

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

.text-block-321 {
  color: var(--elda-green);
  margin-top: 10px;
  font-family: Visbycf, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.grid-8 {
  grid-template-rows: auto auto;
  margin-top: 1rem;
}

.text-block-322 {
  font-family: Gothambook, sans-serif;
  font-size: .6rem;
  font-weight: 400;
  line-height: .6rem;
}

.div-block-565, .div-block-566, .div-block-567 {
  height: 0;
}

.button-34 {
  background-color: #007b7b;
  border-radius: 8px;
  align-self: center;
  font-family: Visbycf, sans-serif;
}

.div-block-568 {
  border: 1px solid #fff;
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: baseline;
  padding: .5rem;
  display: flex;
  box-shadow: 0 0 3px 1px #0003;
}

.div-block-569 {
  margin-top: 1rem;
}

.div-block-570 {
  width: 50%;
}

.select-field-11 {
  background-color: #0000;
  border: 0 solid #000;
  margin-bottom: 0;
  font-family: Visbycf, sans-serif;
}

.text-block-323 {
  color: var(--elda-orange);
  font-family: Visbycf, sans-serif;
  font-size: .6rem;
  font-weight: 400;
}

.text-span-97 {
  text-transform: none;
}

.text-span-98 {
  color: #8a8a8aa8;
  text-decoration: line-through;
}

.text-block-324 {
  color: var(--white);
  background-color: #007b7b;
  border: 3px solid #f1e450;
  border-radius: 8px;
  padding-left: 2rem;
  padding-right: 2rem;
  font-family: Visbycf, sans-serif;
  font-size: .7rem;
  font-weight: 500;
  position: static;
  top: 0;
  box-shadow: 0 2px 5px #0003;
}

.div-block-571 {
  border-radius: 20px;
  align-self: center;
  height: 0;
  position: relative;
  inset: -30px 0% 0% auto;
  overflow: visible;
}

.text-block-325 {
  text-align: center;
  letter-spacing: 4px;
  background-image: radial-gradient(circle at 100%, #f1e450 100%, #fff);
  border-radius: 8px;
  align-self: stretch;
  font-family: Visbycf, sans-serif;
  font-weight: 500;
}

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

.image-226 {
  margin-top: 0;
  position: static;
}

.image-227 {
  margin-top: 0;
}

.text-block-326 {
  font-size: 3rem;
}

.mask-2 {
  background-image: url('../images/Republic-Day-Sale-3.webp');
  background-position: 0 0;
  background-size: auto;
}

.text-block-327 {
  outline-offset: 0px;
  color: var(--white);
  text-align: center;
  outline: 3px #fff;
  padding-top: 40px;
  font-family: Gotham, sans-serif;
  font-size: 1.8rem;
  display: block;
}

.mask-3 {
  background-color: #9cb7ae;
}

.slide-3 {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
}

.slide-1 {
  aspect-ratio: 3 / 2;
  background-image: url('../images/Group-1066-1_1.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.text-block-328 {
  color: var(--white);
  text-align: center;
  margin-top: 40px;
  font-family: Gotham, sans-serif;
  font-size: 2.5rem;
}

.text-block-329 {
  color: var(--white);
  text-align: center;
  margin-top: 10px;
  font-family: Gotham, sans-serif;
  font-size: 1.5rem;
}

.div-block-573 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.image-229 {
  flex: 0 auto;
}

.section-6 {
  background-image: url('../images/CaseStudyBanner_1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 750px;
}

.div-block-574 {
  background-color: #000000b3;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding-left: 5%;
  display: flex;
}

.heading-78 {
  color: var(--white);
  width: 50%;
  margin-bottom: 0;
  font-family: Gotham, sans-serif;
  font-size: 2rem;
  font-weight: 600;
}

.heading-79 {
  color: var(--white);
  width: 50%;
  font-size: 3.5rem;
  font-weight: 400;
}

.button-35 {
  background-color: var(--elda-orange);
  border-radius: 20px;
  padding-left: 50px;
  padding-right: 50px;
  font-family: Visbycf, sans-serif;
  font-weight: 500;
}

.section-7 {
  justify-content: center;
  align-items: center;
  padding-top: 5%;
  padding-bottom: 5%;
  display: flex;
}

.div-block-575 {
  background-image: url('../images/cta1.svg'), url('../images/nl1.svg');
  background-position: 100% 100%, 1% 100%;
  background-repeat: no-repeat, no-repeat;
  background-size: 88px, 88px;
  background-attachment: scroll, scroll;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 80%;
  padding: 5% 15px;
  display: flex;
  box-shadow: 0 2px 5px #0003;
}

.form-block-4 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 70%;
  display: block;
}

.form-4 {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  display: grid;
}

.div-block-576 {
  background-color: #f3f3f3;
  border-radius: 100px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  display: flex;
}

.text-field-24 {
  color: var(--black-2);
  background-color: #f3f3f3;
  border: 0 solid #000;
  margin-bottom: 0;
  font-family: Visbycf, sans-serif;
}

.text-block-330 {
  font-family: Gotham, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
}

.image-230 {
  width: 20px;
  height: 20px;
}

.div-block-577 {
  display: flex;
}

.checkbox-label-2 {
  color: var(--black);
  background-color: #0000;
  margin-left: 10px;
  font-family: Visbycf, sans-serif;
  font-style: italic;
}

.checkbox {
  width: 20px;
  height: 20px;
}

.checkbox-field {
  align-items: center;
  display: flex;
}

.div-block-578 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.submit-button-13 {
  background-color: #fd787a;
  border-radius: 50px;
  padding-left: 25px;
  padding-right: 25px;
  font-family: Visbycf, sans-serif;
  font-weight: 500;
}

.select-field-12 {
  color: var(--black);
  border: 0 solid #000;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Visbycf, sans-serif;
  display: block;
}

.div-block-579, .div-block-580 {
  display: none;
}

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

.div-block-581 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.slide-nav {
  display: none;
}

.product-slide-container {
  width: 23%;
  max-width: 30%;
  margin-left: 1%;
  margin-right: 0%;
}

.slider-4 {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin-top: 2%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.collection-item {
  margin-left: 0%;
  margin-right: 0%;
}

.collection-list {
  grid-column-gap: 26px;
  grid-row-gap: 26px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: start center;
  margin-left: 16px;
  display: grid;
}

.div-block-582 {
  flex-direction: row;
  margin-top: 10px;
  display: flex;
}

.text-block-331 {
  color: var(--strike-off-grey);
  padding-left: 0;
  font-family: Visbycf, sans-serif;
  font-size: .7rem;
  text-decoration: line-through;
}

.text-block-332 {
  margin-top: 10px;
  font-family: Visbycf, sans-serif;
  font-size: .8rem;
  text-decoration: none;
}

.text-block-333 {
  font-family: Visbycf, sans-serif;
  font-size: .7rem;
}

.text-block-334 {
  color: var(--elda-green);
  padding-left: 0;
  font-family: Visbycf, sans-serif;
  font-size: .7rem;
  font-weight: 500;
}

.text-block-335 {
  color: var(--strike-off-grey);
  padding-left: 10px;
  padding-right: 0;
  font-family: Visbycf, sans-serif;
  font-size: .7rem;
}

.text-block-335.black {
  color: var(--elda-green);
  padding-right: 0;
  font-size: .7rem;
  font-weight: 400;
}

.collection-list-wrapper-2 {
  display: none;
}

.section-8 {
  padding-top: 5%;
  padding-bottom: 5%;
}

.icon-3 {
  background-color: var(--white);
  color: var(--black);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  font-size: .9rem;
  display: flex;
  box-shadow: 0 5px 20px 11px #0003;
}

.left-arrow {
  margin-left: 2%;
}

.link-block, .link-block-2, .link-block-3, .link-block-4 {
  text-decoration: none;
}

.section-navbar-v {
  width: 1300px;
  height: 80px;
}

.main-section-navbar-v {
  border-radius: 0;
  height: 80px;
}

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

.navbar-container {
  border-radius: 2px;
  height: 80px;
}

.navbar-header {
  height: 80px;
}

.navbar-heading {
  direction: ltr;
  color: var(--dark-green);
  text-align: left;
  text-transform: capitalize;
  border-radius: 0;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 80px;
  padding-left: 20px;
  font-family: Bitter, serif;
  font-size: 1.5rem;
  text-decoration: none;
  display: flex;
}

.section_warrior_programm_hero {
  opacity: .88;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  -webkit-text-stroke-color: var(--black-2);
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-color: #0000;
  background-image: url('../images/hero-banner-img_1.webp');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: border-box;
  height: 600px;
  margin-bottom: 4rem;
  padding-top: 0;
  padding-bottom: 0;
}

.hero-banner {
  aspect-ratio: 16 / 9;
  opacity: 1;
  object-fit: cover;
  display: block;
}

.warrior_hero_image {
  aspect-ratio: auto;
  background-color: #000;
  background-image: linear-gradient(#000, #000);
  width: 1297px;
}

.warrior-padding-section {
  background-color: #0000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 3.4rem 1rem 0;
  display: block;
}

.banner-section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 7rem;
  display: block;
}

.banner-section.banner-heading {
  height: 100%;
  padding-bottom: 1rem;
}

.div-block-583 {
  margin-left: auto;
}

.text-block-336 {
  font-family: Gotham, sans-serif;
  font-size: 3.75rem;
}

.data_wrapper {
  border: 3px solid #000;
  border-radius: 0;
  margin-top: 10px;
  padding-top: 0;
  line-height: 5rem;
}

.container-1167 {
  height: 38px;
}

.heading-81 {
  font-family: Gotham, sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
}

.paragraph {
  font-family: Gotham, sans-serif;
  font-size: 3.75rem;
}

.container-1168 {
  height: 100%;
}

.warrior-heading {
  color: var(--white);
  text-transform: none;
  justify-content: center;
  align-items: flex-start;
  font-family: Gotham, sans-serif;
  font-size: 2.7rem;
  font-weight: 500;
  display: flex;
}

.paragraph-2 {
  margin-top: .5rem;
  margin-bottom: .5rem;
  font-family: Gotham, sans-serif;
  font-size: 1.4rem;
  line-height: 1.8rem;
}

.paragraph-3 {
  font-family: Gotham, sans-serif;
  font-size: 1.3rem;
}

.paragraph-4 {
  font-family: Gotham, sans-serif;
  font-size: 1.5rem;
}

.div-block-584 {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  text-align: center;
  text-indent: 3rem;
  column-count: auto;
  overflow-wrap: normal;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  height: 2.8rem;
  margin-top: 2.4rem;
  margin-bottom: 0;
  font-family: Gotham, sans-serif;
  display: block;
}

.paragraph-5 {
  text-align: left;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  justify-content: center;
  align-items: center;
  font-family: Gotham, sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2rem;
  display: flex;
}

.text-block-337 {
  color: var(--white);
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 2.2rem;
  display: block;
}

.text-block-338 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 300;
}

.text-block-339 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2rem;
}

.text-span-99 {
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 2.5rem;
}

.section-9 {
  background-color: red;
  border: 3px solid #000;
}

.container-1169 {
  border: 3px solid #000;
  margin-top: 5.2rem;
  margin-right: auto;
}

.body {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.5rem;
}

.signup-btn {
  color: var(--dark-green);
  background-color: #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: flex-end;
  width: 250px;
  padding-left: 11px;
  padding-right: 11px;
  font-weight: 700;
  display: block;
}

.sign-up-container {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  display: flex;
}

.sign-up-btn {
  color: var(--elda-green);
  text-align: left;
  letter-spacing: 1px;
  overflow-wrap: normal;
  background-color: #fff;
  border-radius: 20px;
  flex-flow: row;
  flex: 0 auto;
  order: 0;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  width: 284px;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.6rem;
  display: flex;
}

.data-info-container {
  margin-top: 0;
  margin-bottom: 52px;
}

.paragraph-6 {
  text-align: center;
}

.paragraph-7 {
  color: #000;
  text-align: center;
  letter-spacing: 1px;
  column-count: 0;
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
  font-family: Gotham, sans-serif;
  font-size: 1.4rem;
  line-height: 2rem;
}

.span-text-white-bold, .text-span-101 {
  color: #007b7b;
}

.info-section {
  width: auto;
}

.div-block-586 {
  margin-top: 51px;
  margin-bottom: 51px;
}

.text-block-341 {
  text-align: center;
  letter-spacing: 1px;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 1.8rem;
  line-height: 2rem;
}

.elda-heading {
  color: var(--elda-green);
  font-family: Visbycf, sans-serif;
}

.div-block-587 {
  margin-top: 11px;
  margin-bottom: 0;
  line-height: 1rem;
}

.text-block-342 {
  color: var(--black-2);
  text-align: center;
  letter-spacing: 3px;
  text-indent: 0;
  width: 900px;
  margin-top: 1px;
  margin-bottom: 15px;
  font-family: Visbycf, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2rem;
}

.heading-83 {
  color: var(--black-2);
  text-align: center;
  letter-spacing: 2px;
  -webkit-text-stroke-color: var(--black-2);
  font-family: Visbycf, sans-serif;
  font-size: 1.8rem;
}

.text-block-343 {
  color: var(--heading-black);
  text-align: center;
  letter-spacing: 2px;
  margin-top: 7px;
  margin-bottom: 0;
  font-family: Visbycf, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.text-block-344 {
  color: var(--heading-black);
  text-align: center;
  letter-spacing: 2px;
  margin-top: 7px;
  font-family: Visbycf, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.doc-profile {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.container-1170 {
  margin-top: 0;
  margin-bottom: 0;
}

.img-meds {
  grid-column-gap: 39px;
  grid-row-gap: 39px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: .75fr;
  justify-content: center;
  align-items: flex-start;
  height: 450px;
  margin-bottom: 0;
  display: flex;
}

.meds-img {
  aspect-ratio: 2.39;
  text-align: left;
  flex: 0 auto;
  align-self: flex-start;
  width: 1000px;
  height: 300px;
  margin-top: 8.4rem;
  margin-bottom: 8.4rem;
  margin-left: -23px;
  padding-bottom: 0;
  padding-left: 0;
  display: block;
}

.image-232 {
  margin-right: -.4rem;
}

.doc-img {
  flex: 1;
  align-self: flex-end;
  width: 375px;
  height: 400px;
  margin-top: 23px;
  margin-bottom: 23px;
  margin-left: 7.2rem;
}

.doc-info {
  max-height: none;
  margin-top: -32px;
  margin-bottom: 1rem;
}

.doc-img-meds-container {
  height: auto;
}

.cust-cell {
  flex-flow: row;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.image-234, .image-235, .image-236 {
  flex: 0 auto;
  height: 150px;
}

.customer-img {
  flex: 0 auto;
  width: 120px;
  height: 120px;
}

.product-info-container {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  background-color: #efffff;
  margin-top: .25rem;
  margin-bottom: 2rem;
  padding-top: 10px;
}

.common {
  flex: 0 auto;
  order: 0;
  align-self: auto;
  height: 150px;
}

.common.custom-hug {
  height: 120px;
}

.happy-cust-cell {
  flex-flow: row;
  justify-content: center;
  align-items: flex-end;
}

.happy-cust-cell.custom-hug {
  flex-flow: row;
  justify-content: flex-end;
  align-items: stretch;
}

.ratings-cell, .natural-img-cell, .safety-img-cell {
  justify-content: flex-end;
  align-items: center;
}

.stories-header-section {
  margin-top: 4px;
  margin-bottom: 2rem;
}

.story-main-heading {
  text-align: center;
  font-size: 2.6rem;
}

.stories-text {
  color: var(--black-2);
  text-align: center;
  letter-spacing: 2px;
  text-indent: 2px;
  text-transform: capitalize;
  margin-top: 9px;
  font-family: Visbycf, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7rem;
}

.custom-hug {
  height: 120px;
}

.common-img {
  height: 150px;
}

.help-us-section {
  background-color: #007b7b;
  height: auto;
  min-height: 800px;
  margin: 5rem 0 5px;
  padding-top: 0;
  padding-bottom: 2rem;
}

.heading-84 {
  color: var(--white);
  text-align: center;
  letter-spacing: 3px;
  text-transform: none;
  margin-top: 1.7rem;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.5rem;
}

.help-text-white {
  text-align: center;
  font-weight: 700;
}

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

.help-us-container {
  grid-column-gap: 27px;
  grid-row-gap: 10px;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.help-text {
  color: var(--white);
  letter-spacing: 0;
  flex: 0 auto;
  align-self: flex-start;
  margin-left: 1rem;
  font-family: Gotham, sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2rem;
}

.help-text.text-white {
  color: var(--white);
  text-align: left;
  letter-spacing: 0;
  align-self: flex-start;
  font-family: Gotham, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8rem;
}

.help-text.help-cell-last-child {
  text-align: left;
  align-self: center;
  font-size: 1.6rem;
}

.cell, .cell-copy, .help-us-text-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: stretch;
}

.bold-white-text {
  letter-spacing: 1px;
  font-family: Gotham, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
}

.quick-stack {
  grid-column-gap: 0px;
}

.cell-2 {
  justify-content: flex-start;
  align-items: stretch;
}

.help-us-stack {
  letter-spacing: 0;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  padding-top: 20px;
  padding-right: 0;
}

.quick-stack-2 {
  margin-top: 3rem;
}

.paragraph-8 {
  color: #fff;
  text-align: justify;
  letter-spacing: 1px;
  flex: 0 auto;
  align-self: auto;
  margin-top: .5rem;
  margin-bottom: .5rem;
  font-family: Gotham, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.9rem;
}

.div-block-588 {
  margin: 4rem 5.4rem;
}

.grid-10 {
  grid-template-rows: auto auto;
  grid-template-areas: "Area Area-2"
                       ". .";
}

.text-white-block {
  color: var(--white);
  letter-spacing: 1px;
  margin-top: 9px;
  margin-bottom: 9px;
  font-family: Gotham, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
}

.cell-6 {
  justify-content: flex-start;
  align-items: stretch;
}

.help_stack {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-top: 4rem;
  margin-left: 4rem;
  margin-right: 4rem;
}

.help_cell {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.grid-11 {
  grid-template: ". Area"
  / 1fr 6.5fr;
}

.help-img {
  align-self: flex-start;
  height: 60px;
}

.text-block-345 {
  margin-left: 36px;
}

.cell-7 {
  justify-content: center;
  align-items: flex-start;
}

.text-block-346 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.cell-8 {
  flex-flow: row;
}

.cell-9 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.help-text-bold {
  text-align: right;
  font-weight: 500;
}

.text-span-102 {
  font-weight: 500;
}

.doubt-stack {
  grid-column-gap: 16px;
  grid-row-gap: 5px;
  background-color: #7bb5aa8a;
  border-radius: 36px;
  margin: 51px 2rem 2rem;
}

.image-240 {
  align-self: center;
  width: 150px;
}

.heading-85 {
  align-self: flex-start;
}

.heading-87 {
  color: var(--white);
  letter-spacing: 1px;
  text-transform: none;
  font-weight: 600;
}

.help-meet-link {
  color: #fff;
  flex: 0 auto;
  align-self: auto;
  margin-top: 2rem;
  font-family: Gotham, sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 2.7rem;
}

.meet-info-cell {
  font-family: Visbycf, sans-serif;
  font-weight: 600;
  text-decoration: none;
}

.doc-image-cell {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}

.help-meet-bold {
  font-weight: 500;
}

.heading-88 {
  letter-spacing: 1.5px;
  text-transform: none;
  align-self: center;
  font-family: Visbycf, sans-serif;
  font-size: 2.3rem;
}

.text-block-347 {
  color: var(--black-2);
  letter-spacing: 1.5px;
  align-self: center;
  font-family: Visbycf, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.heading-formula {
  margin-top: 2rem;
}

.extract-heading {
  text-align: center;
  letter-spacing: 1px;
  font-size: 2.3rem;
}

.carousal-section, .slider-5 {
  margin-bottom: 2rem;
}

.slide-0 {
  width: 100vw;
}

.carousal-frame {
  margin-bottom: 2rem;
}

.image-241 {
  direction: ltr;
  text-align: left;
  width: 100%;
  height: 100%;
}

.form_section {
  color: #606060;
  background-color: #65c3b1;
  border-radius: 3rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-left: 0;
  padding-top: 1px;
  padding-bottom: 1px;
  font-family: Gotham, sans-serif;
  font-weight: 300;
}

.heading_container {
  margin-top: 0;
}

.heading-89 {
  color: var(--white);
  text-align: center;
  margin-top: 2.6rem;
  margin-bottom: 2.6rem;
  font-family: Gotham, sans-serif;
  font-size: 2.3rem;
  font-weight: 400;
}

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

.form_container {
  text-align: left;
  width: 80%;
}

.outer-grid-layout {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-content: stretch;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.form-block-6 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  display: grid;
}

.form-block-7 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #65c3b1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.form-5 {
  grid-column-gap: 32px;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  justify-content: start;
  place-items: stretch stretch;
  display: grid;
}

.div-block-589 {
  width: 40%;
  margin-top: 11px;
  margin-bottom: 11px;
}

.submit-button-14 {
  letter-spacing: 1px;
  background-color: #ff7585;
  border-radius: 2rem;
  width: 100%;
  height: 60px;
  font-family: Gotham, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.input_block {
  width: 100%;
}

.input_label {
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.input_text {
  text-align: left;
  -webkit-text-stroke-color: var(--black-2);
  color: #606060;
  background-color: #fff;
  border: 0 solid #fcf5f5;
  border-radius: 0;
  flex: 0 auto;
  order: 0;
  align-self: auto;
  width: auto;
  height: 40px;
  margin-top: 10px;
  margin-left: 0;
  margin-right: 0;
  padding: 11px 0 11px 5px;
  font-family: Visbycf, sans-serif;
  font-size: 1.06rem;
  font-weight: 500;
}

.input_text.full_input {
  width: 90%;
}

.input_text.select_input {
  cursor: pointer;
  color: #606060;
  background-color: #fff;
  width: 70%;
  max-width: 800px;
  transition-property: opacity;
  transition-duration: .6s;
  transition-timing-function: ease;
}

.input_text.select_input.gender_input {
  width: 75%;
}

.input_text.gender_field, .input_text.city_field {
  width: 70%;
}

.input_image {
  align-self: center;
  width: 1.4rem;
  height: 1.6rem;
  margin-left: 13px;
  margin-right: 0;
  padding-left: 0;
  font-size: 1.5rem;
}

.input_image.gender_img {
  width: 2.5rem;
  height: 1.9rem;
}

.field_input {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: #fff;
  border-radius: 2rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.field_input.full_width {
  width: 100%;
}

.join_elda_form_container {
  width: 100vw;
  max-width: 90vw;
}

.internal-form-grid {
  grid-column-gap: 37px;
  grid-row-gap: 37px;
}

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

.grid-13 {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.paragraph-9 {
  text-align: center;
  letter-spacing: 1px;
  font-family: Gotham, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.2rem;
}

.data-text-blue {
  color: #007b7b;
}

.data_para {
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  margin-top: 2rem;
  font-family: Visbycf, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.8rem;
}

.div-block-591 {
  background-image: url('../images/hero-banner-img_1.webp');
  background-position: 50% 0;
  background-size: cover;
}

.blue-span-text {
  color: var(--elda-green);
}

.container-1171 {
  width: 90%;
}

.section-12 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.div-block-592 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  place-items: center;
  width: auto;
  display: grid;
}

.single-med-container {
  width: 100%;
}

.meds-container {
  max-width: 1200px;
}

.meds-section {
  margin-top: 4rem;
  margin-bottom: 2rem;
  padding: 20px;
}

.med-image {
  width: 288.003px;
}

.container-1172 {
  width: 30%;
  height: 200px;
}

.lightbox-link-2, .image-242 {
  width: 100%;
  height: 100%;
}

.testimonail-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  width: 100%;
  display: grid;
}

.lightbox--link {
  width: 100%;
  height: 100%;
  display: block;
  box-shadow: 0 2px 5px #0003;
}

.slider-img {
  width: 100%;
  height: 100%;
}

.testimonial-outer-wrapper {
  max-width: 1000px;
  height: 100%;
  box-shadow: 0 0 #211e1e80;
}

.container-1174 {
  max-width: 1000px;
  height: 100%;
  margin-bottom: 3rem;
}

.testimonial-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  width: 100%;
  height: 100%;
  display: grid;
}

.mask-4 {
  width: 100%;
  height: 100%;
}

.slider-6 {
  width: auto;
  height: 100%;
  display: block;
}

.light-box-link-container, .image-244 {
  width: 100%;
  height: 100%;
}

.section-14 {
  align-items: stretch;
  height: 100%;
  box-shadow: 0 2px 5px #0003;
}

.testimonial-section {
  height: auto;
}

.testimonial-slider {
  height: 100%;
  box-shadow: 0 2px 5px #0003;
}

.image-245, .image-246 {
  height: 100%;
}

.testimonial-img {
  object-fit: cover;
  width: auto;
  height: 100%;
  display: block;
  box-shadow: 0 2px 5px #0003;
}

.right-arrow {
  margin-left: 0;
  inset: 0% -6.4rem 0% auto;
}

.icon-4 {
  color: var(--white);
  object-fit: cover;
  background-color: #ff7585;
  border-radius: 55%;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  display: flex;
  top: 0;
  right: 0;
  overflow: visible;
}

.icon-4.arrow-icon {
  background-color: #0000;
}

.arrow-left {
  inset: 0% auto 0% 0%;
}

.arrow-right {
  display: block;
  inset: 0% 0% 0% auto;
}

.icon-5 {
  object-fit: cover;
  background-color: #ff7585;
  border-radius: 55%;
  font-size: 3rem;
  line-height: 3rem;
}

.icon-5.arrow-icon {
  background-color: #0000;
  font-size: 2.5rem;
  line-height: 2.5rem;
}

.image-247 {
  width: 70%;
  height: 70%;
  margin-top: 0;
}

.div-block-593 {
  width: 20%;
  height: 100%;
  margin-top: 12px;
}

.text-span-103 {
  color: var(--white);
  margin-top: 10px;
  font-size: 1.7rem;
  text-decoration: underline;
  display: block;
}

.info-grid {
  grid-column-gap: 31px;
  grid-row-gap: 31px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

.paragraph-10 {
  color: #fff;
  letter-spacing: 1px;
  font-family: Visbycf, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
}

.text-span-104 {
  font-weight: 600;
}

.success-message {
  background-color: #65c3b1;
  border-radius: 7px;
}

.text-block-348 {
  color: var(--white);
  letter-spacing: 1px;
  font-family: Visbycf, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.error-message-2.error-warrior-msg {
  background-color: #cc3838;
  border-radius: 8px;
}

.text-block-349 {
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  font-family: Visbycf, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
}

.dropdown {
  width: 70%;
}

.dropdown.input_text {
  letter-spacing: .8px;
  color: #606060;
  align-self: flex-start;
  padding-top: 4px;
}

.icon-6 {
  font-size: 1.2rem;
  top: 0%;
  right: 0;
}

.dropdown-toggle {
  margin-bottom: 0;
  padding: 0;
  display: block;
  position: relative;
}

.text-block-350 {
  color: #606060;
  font-family: Visbycf, sans-serif;
  font-weight: 500;
}

.slide-nav-2 {
  inset: auto 0% 0%;
}

.input-text {
  width: 70%;
}

.input-text.input_text {
  opacity: .83;
  color: var(--input-field-color);
  padding-bottom: 10px;
  font-family: Gotham, sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.experience {
  color: var(--elda-orange);
  font-size: .875rem;
}

@media screen and (min-width: 1280px) {
  .program_image {
    height: 238.922px;
  }

  .doctor_image {
    width: 520px;
    height: 330.453px;
  }

  .image-148 {
    width: 350px;
  }

  .button-25 {
    margin-top: 40px;
  }

  .section-3 {
    background-size: 85%;
  }

  .text-block-320 {
    width: 60%;
  }

  .button-30 {
    display: block;
  }

  .section_warrior_programm_hero {
    background-color: var(--white);
    background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
    background-position: 0 0;
    background-size: auto;
    margin-bottom: 2rem;
  }

  .warrior-padding-section {
    background-image: url('../images/hero-banner-img_1.webp');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .div-block-587 {
    margin-bottom: 0;
  }

  .doc-profile {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .img-meds {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }

  .doc-img-meds-container {
    height: 450px;
  }

  .help-us-section {
    padding-bottom: 14px;
  }

  .container-1175 {
    line-height: 1rem;
  }

  .input-text.input_text {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media screen and (min-width: 1440px) {
  .section_bounceback_hero {
    padding-top: 7.1rem;
    padding-bottom: 7.1rem;
  }

  .evidence_circle {
    flex: none;
    width: 17.5rem;
    height: 17.5rem;
    padding: 3.2rem 3.5rem;
  }

  .evidence_circle.outline {
    left: -4.5rem;
  }

  .evidence_circle.light_green {
    left: -9.2rem;
  }

  .evidence_circle.outline-2 {
    left: -13.9rem;
  }

  .whats_in_card.bounceback {
    height: 502px;
  }

  .whats_in_card.unwind, .whats_in_card.wellness_program {
    height: 470px;
  }

  .whats_in_card.holistic {
    height: 502px;
  }

  .whats_in_card.skin_hair {
    height: 384px;
  }

  .whats_in_card.emotional_wellbeing {
    height: 470px;
  }

  .whats_in_card.sexual_wellness {
    height: 436px;
  }

  .whats_in_card.nutrition {
    height: 556px;
  }

  .whats_in_icon-wrap {
    width: 4.8rem;
  }

  .plans_wrapper.grid-2 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .plan_price {
    font-size: 1.2rem;
  }

  .home_hero {
    padding-top: 6.9rem;
    padding-bottom: 4.2rem;
  }

  .section_unwind_hero, .section_wellness_program_hero, .section_holistic_postpartum_hero, .section_hair_and_skin_hero, .section_emotional_wellbeing_hero {
    padding-top: 7.1rem;
    padding-bottom: 7.1rem;
  }

  .hiw_grid {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
  }

  .section_sexual_wellness_hero {
    padding-top: 7.1rem;
    padding-bottom: 7.1rem;
  }

  .bootleg, .bootleg._2 {
    padding-top: .9rem;
  }

  .bootleg._3 {
    padding-top: 2rem;
  }

  .bootleg._4 {
    padding-top: 5.3rem;
  }

  .html-embed {
    margin-bottom: -38px;
  }

  .html-embed.h1-hide {
    margin-bottom: -40px;
    display: block;
  }

  .heading-h1-hero {
    display: none;
  }

  .hero_slide_image {
    max-height: 100vh;
  }

  .program_card {
    height: 641.719px;
  }

  .program_image {
    height: 238.922px;
  }

  .testimonial_wrapper {
    max-width: 48rem;
  }

  .doctor_image {
    width: 520px;
    height: 330.445px;
  }

  .app_features {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .section_yoga_hero {
    padding-top: 7.1rem;
    padding-bottom: 7.1rem;
  }

  .circle_card {
    width: 262px;
    height: 262px;
  }

  .section_nutrition_hero {
    padding-top: 7.1rem;
    padding-bottom: 7.1rem;
  }

  .section_ourapp_hero {
    min-height: 82vh;
  }

  .our_app_hero_image {
    right: 6%;
  }

  .section_ourapp_cta {
    min-height: 82vh;
  }

  .experts_filter_wrapper {
    width: auto;
  }

  .experts_filter_scroll {
    margin-left: 0;
    margin-right: 0;
  }

  .section_blog_hero {
    padding-top: 7.1rem;
    padding-bottom: 7.1rem;
  }

  .blog-card_image_wrapper.large {
    height: 360px;
  }

  .section_webinar_hero, .section_careers_hero {
    padding-top: 7.1rem;
    padding-bottom: 7.1rem;
  }

  .green_mobile {
    padding-top: 5.2rem;
  }

  .wof_content {
    padding: 4.7rem;
  }

  .wof_image {
    width: 68%;
  }

  .wof_install_group {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .section_media_hero {
    padding-top: 7.1rem;
    padding-bottom: 7.1rem;
  }

  .blog_filter_wrapper {
    width: auto;
  }

  .team-member-image {
    width: 100%;
    height: 270px;
    max-height: none;
  }

  .button-25 {
    margin-top: 40px;
  }

  .section-3 {
    background-size: 85%;
    width: 100%;
  }

  .text-block-320 {
    align-self: center;
    width: 60%;
    margin-top: 0;
    padding-bottom: 0;
    padding-left: 5rem;
    padding-right: 5rem;
    font-size: 2rem;
    line-height: 3rem;
  }

  .button-30 {
    background-color: #00f;
    border: 7px #65c3b1;
    margin-right: 2rem;
    padding-top: 9px;
    padding-left: 2rem;
    padding-right: 2rem;
    display: block;
    position: relative;
    right: 0;
  }

  .help-us-section {
    height: 1200px;
    min-height: 0;
  }

  .help-text {
    align-self: flex-start;
    font-size: 1.5rem;
  }

  .help_stack {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
  }

  .help-img {
    align-self: flex-start;
  }

  .help-text-bold {
    letter-spacing: 1px;
    font-size: 1.5rem;
    line-height: 2.7rem;
  }

  .doubt-stack {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    width: 1200px;
    height: 360px;
    margin-top: 4rem;
    margin-left: 8rem;
    margin-right: 8rem;
  }

  .image-240 {
    align-self: flex-start;
    width: 180px;
    height: 300px;
    margin-left: 6.4rem;
    margin-right: 4.3rem;
  }

  .heading-87 {
    letter-spacing: 2px;
    flex-flow: column;
    justify-content: center;
    align-self: auto;
    align-items: stretch;
    margin-top: .3rem;
    margin-bottom: .3rem;
    padding-top: 0;
    padding-bottom: 0;
    display: block;
  }

  .help-meet-link {
    text-align: left;
    flex: 0 auto;
    align-self: auto;
    margin: 2rem -2px;
    font-size: 1.9rem;
  }

  .meet-info-cell {
    text-align: justify;
    justify-content: flex-start;
    align-items: flex-start;
    display: block;
  }

  .doc-image-cell {
    flex-flow: row;
    justify-content: center;
    align-items: stretch;
  }

  .help-meet-bold {
    font-weight: 500;
  }

  .input_text {
    width: 70%;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .input_text.gender_field {
    padding-top: 0;
    padding-bottom: 0;
  }

  .input-text.input_text {
    height: 40px;
  }
}

@media screen and (min-width: 1920px) {
  .heading-h1.text-color-white {
    margin-bottom: 0;
  }

  .program_image {
    height: 238.922px;
  }

  .doctor_image {
    width: 519.984px;
    height: 330.445px;
  }

  .our_app_hero_content {
    flex-direction: column;
    justify-content: space-between;
    display: flex;
  }

  .hero-subtext {
    margin-bottom: 0;
  }

  .team-member-image {
    width: 100%;
  }

  .button-25 {
    margin-top: 50px;
  }

  .section-3 {
    background-size: 85%;
    justify-content: space-around;
    display: flex;
  }

  .text-block-320 {
    width: 60%;
  }

  .button-30 {
    background-color: #00f;
    border-style: none;
    padding-top: 9px;
    display: block;
  }

  .doubt-stack {
    width: auto;
    height: auto;
  }

  .input_label {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: flex-start;
    align-items: stretch;
    display: flex;
  }

  .container-1172 {
    height: 100%;
  }

  .section-13 {
    height: 500px;
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .hide-tablet {
    display: none;
  }

  .container-large.testimonial {
    background-color: #fff0;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    border-radius: 0;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .rl-styleguide_icons-list {
    grid-auto-flow: row;
  }

  .heading-style-h1 {
    font-size: 3.25rem;
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .heading-style-h3 {
    font-size: 2.25rem;
  }

  .form-input.outline.is-textarea {
    padding-top: .8rem;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

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

  .spacer-large {
    padding-top: 2.5rem;
  }

  .spacer-xlarge {
    padding-top: 3.5rem;
  }

  .spacer-xxlarge {
    padding-top: 4.5rem;
  }

  .spacer-huge {
    padding-top: 5rem;
  }

  .spacer-xhuge {
    padding-top: 6rem;
  }

  .spacer-xxhuge {
    padding-top: 7.5rem;
  }

  .navbar {
    padding-top: .2rem;
  }

  .brand {
    padding-left: 0;
  }

  .max_content_wrap {
    background-color: var(--white);
  }

  .evidence_grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-wrap: wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    padding-top: 1.1rem;
    display: grid;
  }

  .evidence_circle {
    position: relative;
    left: 2.5rem;
  }

  .evidence_circle.outline {
    top: 2.1rem;
    left: -.7rem;
  }

  .evidence_circle.light_green {
    top: -1.6rem;
    left: -2.1rem;
  }

  .evidence_circle.outline-2 {
    top: -2.3rem;
    left: 1.9rem;
  }

  .form-wrapper {
    padding-top: 2.8rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .whats_in_card.holistic {
    height: 454px;
  }

  .mask-overflow-visible {
    max-width: 100%;
    overflow: hidden;
  }

  .whats_in_icon-wrap {
    width: 4rem;
  }

  .arrow-orange-right.right-margin {
    right: 0;
  }

  .arrow-orange-left.left-margin {
    left: 0;
  }

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

  .plans_wrapper.grid-2 {
    background-color: #ffffff0d;
    grid-template-columns: 1fr;
  }

  .plan_heading {
    display: none;
  }

  .plan-wrap {
    background-color: #fff;
    margin-left: 0;
    margin-right: 0;
    padding: .7rem;
  }

  .plan-sub-heading {
    padding-top: .5rem;
  }

  .plan-sub-heading.bold, .plan-sub-heading.bold-no-padding {
    background-color: #fff;
    border-bottom-width: 0;
    margin-top: -1px;
  }

  .grid-4 {
    grid-column-gap: 1px;
    background-color: #007b7b4d;
    border: 1px solid #007b7b4d;
  }

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

  .faq_question {
    cursor: auto;
  }

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

  .hamburger_menu {
    width: 1.8rem;
    height: 1.8rem;
  }

  .nav-menu.w--open {
    background-color: #fff;
    border-radius: .9rem;
  }

  .nav-menu-mobile {
    background-color: #fff;
    inset: 4rem 0% 0%;
  }

  .home_hero.slider-2 {
    padding-top: 2.3rem;
  }

  .whats_in_slide {
    max-width: none;
  }

  .section_unwind_hero {
    background-position: 100%;
  }

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

  .dropdown-list.w--open {
    box-shadow: none;
    position: static;
  }

  .section_holistic_postpartum_hero {
    background-position: 100%;
  }

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

  .bootleg._5 {
    padding-top: 1.3rem;
  }

  .swiper-slide {
    max-width: 100%;
  }

  .hero_slide_image {
    max-height: none;
    position: relative;
  }

  .cta_wrapper {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .mask {
    max-width: 52.5%;
  }

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

  .testimonial_slide {
    background-color: #fff;
    border-radius: 1rem;
    margin-right: 1rem;
    padding: 1rem;
  }

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

  .mask_overflow_none {
    width: 101%;
    overflow: visible;
  }

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

  .doctor_image {
    width: 727.984px;
    height: 462.625px;
  }

  .testimonial_name {
    display: none;
  }

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

  .app_preview {
    padding-bottom: 1rem;
  }

  .package_card, .oval_grid {
    grid-template-columns: 1fr;
  }

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

  .section_ourapp_hero {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .our_app_hero_image {
    object-fit: cover;
    width: 60%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    right: 0%;
  }

  .section_ourapp_cta {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .our_cta_hero_image {
    object-fit: cover;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    right: 0%;
  }

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

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

  .newsletter {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

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

  .home_number_grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .home_number_count {
    right: 33px;
  }

  .policy_wrapper {
    padding: 3.2rem;
  }

  .dropdown_grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

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

  .green_mobile {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    flex-direction: column;
    padding-top: 4.3rem;
    padding-bottom: .2rem;
  }

  .wof_content {
    background-color: var(--dark-green);
    color: var(--white);
  }

  .wof_link {
    color: var(--white);
  }

  .wof_mobile_image {
    margin-bottom: 2rem;
    display: block;
  }

  .wof_image_large {
    display: none;
  }

  .wof_mobile_logo {
    margin-bottom: 1rem;
    display: block;
  }

  .wof_mobile_heading {
    display: block;
  }

  .wof_heading_large {
    display: none;
  }

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

  .media_grid.featured {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .carousel-cell {
    width: 48%;
  }

  .lightbox-link {
    border-radius: .8rem;
    overflow: hidden;
  }

  .lightbox_image {
    object-position: 50% 0%;
    width: 1000%;
    height: 500px;
  }

  .team_mask {
    width: 48%;
  }

  .columns-25 {
    padding-bottom: 40px;
  }

  .team-member-image {
    width: 190px;
    height: 190px;
  }

  .team-grid {
    grid-column-gap: 40px;
  }

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

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .section_warrior_programm_hero {
    opacity: .88;
    background-position: 50% 0;
    background-size: cover;
    height: auto;
    font-weight: 400;
  }

  .warrior-padding-section {
    padding-top: 0;
    padding-left: .125rem;
    padding-right: .125rem;
  }

  .banner-section.banner-heading {
    padding-top: 2rem;
  }

  .text-block-337 {
    margin-bottom: .25rem;
    font-size: 1.2rem;
    line-height: 2.4rem;
  }

  .text-block-339 {
    margin-bottom: .5rem;
    font-size: 1.4rem;
  }

  .text-block-342 {
    text-align: center;
    justify-content: flex-start;
    align-items: stretch;
    margin-left: -96px;
    margin-right: -96px;
    display: block;
  }

  .img-meds {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
  }

  .meds-img {
    width: auto;
  }

  .image-234, .image-235, .image-236 {
    height: 120px;
  }

  .product-info-container {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    margin-bottom: 4rem;
    padding-bottom: 0;
  }

  .common.warrior-img, .common-img {
    height: 120px;
  }

  .help-us-section {
    margin-top: 3rem;
    margin-bottom: 0;
    padding-bottom: 1rem;
  }

  .help-text {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .help-text.help-cell-last-child {
    font-size: 1.3rem;
  }

  .help_stack {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.2rem;
    padding: 0;
  }

  .meet-info-cell {
    font-size: 1.3rem;
  }

  .text-block-347 {
    text-align: center;
  }

  .input_text {
    width: auto;
    font-size: 1rem;
  }

  .input_text.full_input {
    flex: 0 auto;
    width: 85%;
    padding-left: 0;
  }

  .input_text.select_input.gender_input {
    width: 70%;
    padding-left: 0;
  }

  .field_input {
    justify-content: flex-start;
    align-items: stretch;
  }

  .internal-form-grid {
    grid-auto-rows: 1fr;
  }

  .div-block-592 {
    grid-column-gap: 26px;
    grid-row-gap: 41px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    place-items: center end;
  }

  .meds-section {
    margin-top: 2rem;
  }

  .med-image {
    width: 100%;
  }

  .testimonial-outer-wrapper {
    width: 90%;
  }

  .testimonial-section {
    margin-bottom: 0;
  }

  .right-arrow {
    bottom: -28.2rem;
    right: 16.9rem;
  }

  .icon-4 {
    background-color: #ff7585;
    inset: 0%;
    box-shadow: 7px 10px 15px 4px #8f8686bf;
  }

  .icon-4.arrow-icon {
    box-shadow: none;
    inset: 0% 0% 0% auto;
  }

  .testimonial-arrow-left {
    right: -10px;
  }

  .arrow-left {
    inset: 0% auto 0% 0%;
    overflow: visible;
    box-shadow: 0 2px 5px #0003;
  }

  .arrow-right {
    color: var(--black-2);
    object-fit: cover;
    background-color: #0000;
    position: absolute;
    inset: 0% 0% 0% auto;
    overflow: visible;
    box-shadow: 0 0 #55515187;
  }

  .icon-5.arrow-icon {
    box-shadow: 0 0 #55515187;
  }

  .text-span-103 {
    font-size: 1.2rem;
  }

  .dropdown.input_text {
    height: auto;
    padding-bottom: 0;
  }

  .input-text.input_text {
    width: 70%;
    font-size: .95rem;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: .8rem;
    line-height: 1.4rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-xsmall {
    margin: .75rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

  .padding-xsmall {
    padding: .75rem;
  }

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .text-style-quote {
    font-size: 1.125rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .heading-style-h2.text-color-white {
    font-size: 1.6rem;
  }

  .heading-style-h6 {
    font-size: 1.125rem;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .heading-style-h3 {
    font-size: 2rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .text-size-large {
    font-size: 1.1rem;
  }

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

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .spacer-xsmall {
    padding-top: .75rem;
  }

  .spacer-small {
    padding-top: 1.25rem;
  }

  .spacer-medium {
    padding-top: 1.5rem;
  }

  .spacer-large {
    padding-top: 2rem;
  }

  .spacer-xlarge {
    padding-top: 2.5rem;
  }

  .spacer-xxlarge {
    padding-top: 3rem;
  }

  .spacer-huge {
    padding-top: 3.5rem;
  }

  .spacer-xhuge {
    padding-top: 4rem;
  }

  .spacer-xxhuge {
    padding-top: 5rem;
  }

  .evidence_circle {
    width: 12rem;
    height: 12rem;
    font-size: .7rem;
    line-height: 1.2rem;
  }

  .evidence_circle.outline {
    top: .1rem;
  }

  .evidence_circle.light_green {
    top: -2.2rem;
    left: -1.3rem;
  }

  .evidence_circle.outline-2 {
    top: -2.8rem;
  }

  .evidence_percentage {
    font-size: 1.8em;
    line-height: 1.8rem;
  }

  .form_grid, .form_symptoms_wrapper {
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .check-text {
    line-height: 1.1rem;
  }

  .arrow-orange-right {
    width: 2.2rem;
    height: 2.2rem;
  }

  .arrow-orange-right.right-margin {
    right: -.5rem;
  }

  .arrow-orange-left {
    width: 2.2rem;
    height: 2.2rem;
  }

  .arrow-orange-left.left-margin {
    left: -.5rem;
  }

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

  .plans_wrapper.grid-2 {
    padding: 0;
  }

  .plan-wrap {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .text-green-bold {
    font-size: .6rem;
  }

  .plan_price {
    font-size: .7rem;
  }

  .plan_validity {
    font-size: .6rem;
  }

  .plan_button {
    border-radius: .4rem;
    padding-left: .8rem;
    padding-right: .8rem;
    font-size: .6rem;
  }

  .plan-sub-heading {
    font-family: Gotham, sans-serif;
    font-size: .8rem;
    font-weight: 500;
  }

  .plan-sub-heading.bold, .plan-sub-heading.bold-no-padding {
    text-align: center;
    font-family: Gothambook, sans-serif;
    font-size: .7rem;
    font-weight: 400;
  }

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

  .experts_image {
    width: 100%;
  }

  .section_holistic_postpartum_hero {
    background-position: 91%;
  }

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

  .sw_text {
    line-height: 1.1rem;
  }

  .country-code {
    top: 16px;
  }

  .bootleg {
    padding-top: 3.05rem;
  }

  .bootleg._2 {
    padding-top: 0;
  }

  .heading-h1-style-2 {
    font-size: 2.5rem;
  }

  .cta_wrapper {
    padding-left: 2.3rem;
    padding-right: 2.3rem;
  }

  .mask {
    max-width: 100%;
    overflow: hidden;
  }

  .program_card {
    margin-right: 0;
  }

  .doctor_image {
    width: 528px;
    height: 335.531px;
  }

  .text-size-large-no-animation {
    font-size: 1.1rem;
  }

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

  .treetrunk_text {
    font-size: 1.2rem;
  }

  .circle_div_wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    width: 1170px;
    display: flex;
  }

  .circle_card {
    flex: none;
    width: 200px;
    height: 200px;
    margin-right: 1.7rem;
    padding: 2rem .7rem .7rem;
    line-height: 1.2rem;
  }

  .circle_icon {
    width: 64px;
  }

  .grid-two-row {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    display: flex;
  }

  .oval-scroll {
    margin-right: -1rem;
    overflow: auto;
  }

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

  .expert_card_large {
    padding: 1.6rem;
  }

  .contactform {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .contact_details_grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .newsletter {
    padding-left: 2.3rem;
    padding-right: 2.3rem;
  }

  .featured_blog_card {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .featured_blog_content {
    padding-left: 1.4rem;
  }

  .blog-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .blog-grid.two_column {
    grid-template-columns: 1fr;
  }

  .about_us_greentext {
    font-size: 1.2rem;
    line-height: 1.6rem;
  }

  .numbers_grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .numbers_card {
    text-align: center;
    align-items: center;
    padding-top: 17px;
    padding-bottom: 17px;
  }

  .numbers_card.middle {
    border-width: 1px 0;
    border-top-style: solid;
    border-top-color: #d3d3d3;
    border-bottom-style: solid;
    border-bottom-color: #d3d3d3;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .about_highlights_grid {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .about_us_highlight_card {
    flex-direction: column;
  }

  .about_us_highlight_heading {
    font-size: 1rem;
  }

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

  .swiper-button-prev, .swiper-button-next {
    width: 2.2rem;
    height: 2.2rem;
  }

  .carousel-cell {
    width: 100%;
  }

  .price_text_large {
    font-size: 1.1rem;
  }

  .pictorial_mask {
    width: 100%;
  }

  .team-circles {
    padding: 60px 15px;
  }

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

  .hero-heading-left {
    padding: 60px 15px;
  }

  .section_warrior_programm_hero {
    background-color: #0000;
    background-position: 100%;
    background-repeat: repeat-y;
    background-size: cover;
  }

  .banner-section.banner-heading {
    padding-bottom: 2.3rem;
  }

  .div-block-583 {
    height: 80%;
  }

  .warrior-heading {
    text-align: center;
    justify-content: center;
    align-items: center;
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: 2.4rem;
    display: block;
  }

  .text-block-337 {
    font-size: 1.3rem;
    line-height: 2.2rem;
  }

  .text-block-338 {
    font-size: 1.2rem;
  }

  .text-block-339 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.1rem;
  }

  .text-span-99 {
    font-size: 1.5rem;
  }

  .body {
    margin-left: auto;
    margin-right: auto;
  }

  .sign-up-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-top: 2rem;
    margin-bottom: .3rem;
  }

  .sign-up-btn {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
    width: auto;
    padding-left: 0;
    padding-right: 1.4rem;
    font-size: 1.2rem;
  }

  .paragraph-7 {
    justify-content: flex-start;
    align-items: stretch;
    display: block;
  }

  .span-text-white-bold {
    text-align: center;
    font-size: 1.5rem;
  }

  .info-section {
    font-size: .5rem;
  }

  .text-block-341 {
    font-size: 1.4rem;
  }

  .text-block-342 {
    letter-spacing: 2px;
    white-space: normal;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    font-size: 1.2rem;
  }

  .img-meds {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    aspect-ratio: auto;
    text-align: left;
    mix-blend-mode: normal;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: .75fr;
    place-content: start;
    align-items: stretch;
    height: 450px;
    display: grid;
    overflow: visible;
  }

  .meds-img {
    aspect-ratio: auto;
    text-align: left;
    object-fit: contain;
    align-self: flex-start;
    width: 100vw;
    height: 200px;
    margin: -6.4rem 0 auto;
    overflow: visible;
  }

  .doc-img {
    width: auto;
    height: 250px;
    margin-left: 13.6rem;
    display: block;
  }

  .doc-img-meds-container {
    height: auto;
  }

  .cust-cell {
    justify-content: flex-start;
    align-items: center;
  }

  .image-234 {
    height: 90px;
    max-height: 90px;
  }

  .image-235 {
    flex: 0 auto;
    height: 90px;
  }

  .image-236 {
    height: 90px;
  }

  .product-info-container {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    font-size: .7rem;
  }

  .common.warrior-img {
    aspect-ratio: auto;
    align-self: flex-end;
    height: auto;
    max-height: 90px;
    display: block;
  }

  .happy-cust-cell {
    justify-content: center;
    align-items: center;
    padding-top: 0;
    display: flex;
  }

  .ratings-cell, .natural-img-cell, .safety-img-cell {
    justify-content: flex-end;
    align-items: center;
  }

  .story-main-heading {
    font-size: 2rem;
  }

  .stories-text {
    letter-spacing: 1px;
    font-size: .85rem;
  }

  .common-img {
    align-self: auto;
    height: 90px;
    max-height: 90px;
  }

  .help-us-section {
    margin-bottom: 0;
    padding-bottom: 1rem;
  }

  .heading-84 {
    margin-top: 2rem;
  }

  .help-text {
    align-self: center;
  }

  .help-text.help-cell-last-child {
    font-size: 1.1rem;
  }

  .help_stack {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: left;
    margin-top: 1.9rem;
    margin-left: 0;
    margin-right: 0;
    padding: 2rem 4px 4px 2rem;
  }

  .help_cell {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 10px;
    display: flex;
  }

  .image-240 {
    align-self: auto;
    width: auto;
    height: auto;
  }

  .help-meet-link {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 2rem;
  }

  .meet-info-cell {
    font-family: Visbycf, sans-serif;
    font-size: 1rem;
  }

  .heading-88 {
    text-align: center;
    font-size: 2rem;
  }

  .extract-heading {
    font-size: 2rem;
  }

  .form_section {
    margin-top: 1rem;
    margin-bottom: 1rem;
    transition: background-color .35s;
  }

  .heading-89 {
    font-size: 2rem;
  }

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

  .form-5 {
    grid-template-rows: auto;
    grid-auto-flow: column;
    place-items: stretch stretch;
  }

  .div-block-589 {
    width: 100%;
  }

  .submit-button-14 {
    height: auto;
  }

  .submit-button-14:hover {
    background-color: #fb6f92;
  }

  .input_block {
    width: auto;
  }

  .input_block.second-child, .input_block.third-child, .input_block.forth-child, .input_block.fifth-child, .input_block.sexth-child, .input_block.first-child {
    width: 90%;
  }

  .input_text.full_input {
    width: 82%;
  }

  .input_text.select_input {
    width: 70%;
    padding-left: 0;
  }

  .field_input {
    width: auto;
  }

  .internal-form-grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    margin-right: 0;
    padding-left: 0;
  }

  .data_para {
    font-weight: 300;
  }

  .blue-span-text {
    color: var(--elda-green);
  }

  .div-block-592 {
    grid-column-gap: 2px;
    grid-row-gap: 11px;
    place-items: stretch center;
  }

  .single-med-container {
    width: 80%;
  }

  .meds-section {
    margin-top: 1.7rem;
    margin-bottom: 1.7rem;
  }

  .med-image {
    width: 100%;
    display: block;
  }

  .arrow-left {
    inset: 0% auto 0% 0%;
    box-shadow: 0 2px #0003;
  }

  .arrow-right {
    inset: 0% 0% 0% auto;
  }

  .quick-stack-5 {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
  }

  .div-block-593 {
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 80%;
    display: flex;
  }

  .text-span-103 {
    letter-spacing: 1px;
    font-size: 1rem;
  }

  .info-grid {
    grid-row-gap: 10px;
  }

  .paragraph-10 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .slide-nav-2 {
    z-index: 100;
    color: red;
    background-color: #0000;
    padding-top: 10px;
    font-family: Visbycf, sans-serif;
    font-weight: 400;
    inset: auto 0% 0;
  }

  .link-block-5 {
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

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

  h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  h3 {
    font-size: 1.3rem;
    line-height: 1.6rem;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .container-large.testimonial {
    background-color: #fff0;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .heading-style-h2.text-color-white {
    font-size: 1.4rem;
  }

  .button.green-pill.mobile {
    border-radius: .8rem;
    width: 100%;
    padding-top: .6rem;
    padding-bottom: .6rem;
  }

  .button.green-outline.mobile {
    border-radius: .8rem;
    width: 100%;
    padding-top: .9rem;
    padding-bottom: .3rem;
  }

  .form-input {
    min-height: 2.5rem;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 2.8rem;
    font-size: .8rem;
  }

  .form-input.is-select-input {
    padding-right: 2.05rem;
  }

  .form-input.phone {
    padding-left: 3.6rem;
  }

  .form-input.career.upload {
    height: 2.5rem;
    padding-top: .6rem;
  }

  .form-field-wrapper {
    overflow: visible;
  }

  .text-size-large {
    font-size: .9rem;
    line-height: 1.5rem;
  }

  .padding-global {
    padding-top: 0;
  }

  .padding-section-medium {
    padding-top: 1rem;
    padding-bottom: 0;
  }

  .padding-section-large {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }

  .section_bounceback_hero {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .price-text {
    font-size: 1.2rem;
  }

  .symptom_card {
    width: 12rem;
  }

  .symptom_text {
    font-family: Gotham, sans-serif;
    font-size: 1rem;
    font-weight: 400;
  }

  .evidence_grid {
    padding-top: 0;
    padding-left: 2%;
  }

  .evidence_circle {
    width: 9rem;
    height: 9rem;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
    line-height: 1rem;
    left: .3rem;
  }

  .evidence_circle.outline {
    left: -.8rem;
  }

  .evidence_circle.light_green {
    top: -1.6rem;
    left: -.6rem;
  }

  .evidence_circle.outline-2 {
    top: -1.6rem;
    left: .6rem;
  }

  .form-wrapper {
    border-radius: 1.2rem;
    padding: 2.3rem 1rem;
  }

  .form_block {
    margin-top: 1.2rem;
  }

  .submit-button {
    width: auto;
    height: auto;
    padding-left: 2.9rem;
    padding-right: 2.9rem;
    font-size: .8rem;
  }

  .form_symptoms_wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .checkbox-label {
    font-size: .8rem;
  }

  .form-field {
    min-height: 2.5rem;
  }

  .field_icon {
    top: .8rem;
    left: 1rem;
  }

  .whats_in_card.unwind {
    height: 448px;
  }

  .whats_in_card.wellness_program {
    height: 512px;
  }

  .whats_in_card.holistic {
    height: 524px;
  }

  .whats_in_card.skin_hair {
    height: 392px;
  }

  .whats_in_card.emotional_wellbeing {
    height: 426px;
  }

  .whats_in_card.sexual_wellness {
    height: 424px;
  }

  .whats_in_card.nutrition {
    height: 578px;
  }

  .whats_in_header {
    grid-column-gap: .75rem;
    grid-row-gap: .75rem;
    align-items: flex-start;
  }

  .whats_in_icon-wrap {
    width: 3.1rem;
  }

  .whats_in_list_wrap {
    padding-top: .7rem;
    padding-left: .3rem;
  }

  .arrow-orange-right {
    background-size: 19px;
    width: 1.5rem;
    height: 1.5rem;
    right: -10px;
  }

  .arrow-orange-right.program-right {
    display: none;
  }

  .arrow-orange-left {
    background-size: 19px;
    width: 1.5rem;
    height: 1.5rem;
    left: -10px;
  }

  .arrow-orange-left.program-left {
    display: none;
  }

  .program_highlights_grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .highlight-card {
    padding-left: 1rem;
    font-size: .8rem;
  }

  .highlight_heading {
    font-size: 1rem;
    font-weight: 400;
  }

  .plans_wrapper.grid-2 {
    margin-left: -10px;
    margin-right: -10px;
  }

  .plan-wrap {
    padding: 0 0 .5rem;
  }

  .plan_price {
    padding-top: .4rem;
  }

  .plan_button {
    align-self: stretch;
    max-width: 100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 .4rem;
    line-height: .8rem;
  }

  .plan-sub-heading {
    line-height: 2.3rem;
  }

  .plan-sub-heading.bold {
    padding: .4rem 0 0;
  }

  .plan-sub-heading.padding-top {
    line-height: 2.3rem;
  }

  .plan-sub-heading.bold-no-padding {
    padding: .4rem 0 0;
  }

  .expert_name {
    line-height: 1.4rem;
  }

  .faq_question {
    font-size: .9rem;
    font-weight: 400;
  }

  .faq_answer {
    margin-right: .8rem;
    font-size: .8rem;
    line-height: 1.5rem;
  }

  .footer_grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    padding-bottom: 0;
  }

  .app_links_wrapper {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    justify-content: flex-start;
  }

  .app_links_wrapper.hero.align-center {
    justify-content: center;
  }

  .footer_heading {
    margin-bottom: .25rem;
  }

  .home_hero {
    min-height: 87vh;
    padding-top: 3rem;
    padding-bottom: 0;
  }

  .home_hero.slider-2 {
    text-align: center;
  }

  .home_hero.slider-3 {
    text-align: center;
    justify-content: flex-start;
    padding-top: 3rem;
  }

  .whats_in_slide {
    padding-left: 0;
  }

  .section_unwind_hero {
    background-position: 88%;
    padding-top: 6.3rem;
    padding-bottom: 6.3rem;
  }

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

  .section_holistic_postpartum_hero {
    background-position: 77%;
  }

  .hiw_card {
    padding: 1.2rem;
  }

  .sw_heading, .sw_heading.green-text {
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .sw_card {
    padding: 1rem;
  }

  .caret {
    width: 16px;
    top: 21px;
    right: 17px;
  }

  .country-code {
    font-size: .8rem;
    top: 11px;
    left: 48px;
  }

  .heading-h2.text-color-white {
    font-size: 1rem;
  }

  .heading-h1-hero {
    font-size: 2.3rem;
  }

  .slider2 {
    height: 87vh;
    min-height: auto;
    max-height: none;
  }

  .heading-h1-style-2 {
    line-height: 1.1;
  }

  .cta_wrapper {
    background-image: url('../images/cta1.svg');
    background-position: 95% 100%;
    background-repeat: no-repeat;
    background-size: auto;
    border-radius: 1.2rem;
    padding: 5.2rem .8rem;
  }

  .program_slider {
    padding-bottom: 0;
  }

  .mask {
    width: 90%;
    overflow: visible;
  }

  .program_card {
    height: 600px;
  }

  .slide {
    margin-right: 1rem;
  }

  .section_programs {
    padding-bottom: 0;
  }

  .testimonial_slider {
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial_wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .testimonial_slide {
    height: 700px;
    margin-right: 1rem;
    padding: 1rem;
  }

  .testimonial_heading {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-direction: column;
    padding-top: 0;
    font-size: 1rem;
    line-height: 1.3rem;
    display: flex;
  }

  .testimonial-red {
    padding-left: 0;
  }

  .mask_overflow_none {
    width: 90%;
    overflow: visible;
  }

  .doctor_image {
    object-fit: cover;
    width: 100%;
    height: 237.672px;
  }

  .process_content_wrapper {
    padding-left: 2.4rem;
  }

  .ripple_wrapper {
    left: -48px;
  }

  .text-size-large-no-animation {
    font-size: .9rem;
    line-height: 1.5rem;
  }

  .app_feature_heading {
    font-size: .8rem;
  }

  .package_card {
    border-radius: 1rem;
    grid-template-rows: auto 1fr auto;
    grid-auto-flow: column;
  }

  .package_content_wrapper {
    padding: 1rem;
  }

  .section_treetrunk {
    background-position: 58%;
    background-size: cover;
  }

  .padding-section-xlarge {
    padding-top: 4.7rem;
    padding-bottom: 4.7rem;
  }

  .circle_div_wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .nutrition_grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .section_nutrition_overlay {
    background-position: 58%;
    background-size: cover;
  }

  .section_ourapp_cta {
    min-height: auto;
    padding-bottom: 3rem;
  }

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

  .app_feature_image {
    margin-top: -1rem;
  }

  .experts_filter_wrapper {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    justify-content: flex-start;
    height: 40px;
    padding-right: .1rem;
  }

  .filter-button {
    height: 40px;
    padding-left: .9rem;
    padding-right: .9rem;
  }

  .filter-button.last {
    border-right-width: 1rem;
    border-right-color: #fff0;
  }

  .experts_main_grid {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .expert_card_large {
    grid-column-gap: 1.2rem;
    grid-row-gap: 1.2rem;
    padding: .9rem;
  }

  .contactform {
    border-radius: 1.2rem;
    padding: 1rem 1.1rem 1.6rem;
  }

  .contact_detail_card {
    padding: 1.1rem;
    font-size: .8rem;
    line-height: 1.4rem;
  }

  .newsletter {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    border-radius: 1.4rem;
    padding: 2.5rem .5rem 14rem;
  }

  .newsletter_input_wrapper {
    align-self: stretch;
    margin-bottom: 15px;
  }

  .newsletter-form {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    height: 50px;
  }

  .newsletter_input {
    font-size: 14px;
  }

  .newsletter-btn {
    padding-left: .7rem;
    padding-right: .7rem;
    font-size: .7rem;
  }

  .featured_blog_content {
    padding: 1rem;
  }

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

  .career_card {
    padding: 1.8rem 1.1rem 1.1rem;
  }

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

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

  .about_us_greentext {
    line-height: 1.6rem;
  }

  .home_number_heading {
    font-size: 1.3rem;
    line-height: 1.4;
  }

  .about_highlights_grid, .leaders_grid {
    grid-template-columns: 1fr;
  }

  .policy_wrapper {
    background-color: #fff0;
    padding: 0;
  }

  .plus {
    width: 16px;
    top: 17px;
    right: 17px;
  }

  .pagination-button {
    height: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .green_mobile {
    padding-top: 2.3rem;
  }

  .wof_content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .wof_link, .wof_header {
    font-size: 1rem;
  }

  .wof_offer_text {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5rem;
  }

  .wof_mobile_image {
    width: 75%;
    margin-top: -.7rem;
  }

  .media_card {
    flex-direction: column-reverse;
  }

  .media_heading.large {
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .media_image {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }

  .blog_filter_wrapper {
    justify-content: flex-start;
  }

  .swiper-button-prev {
    background-size: 19px;
    width: 1.5rem;
    height: 1.5rem;
    left: -10px;
  }

  .swiper-button-next {
    background-size: 19px;
    width: 1.5rem;
    height: 1.5rem;
    right: -10px;
  }

  .price_text_large {
    font-size: .9rem;
    line-height: 1.5rem;
  }

  .lightbox-link {
    border-radius: .7rem;
    overflow: hidden;
  }

  .lightbox_image {
    object-position: 50% 5%;
    width: 100%;
    height: 280px;
  }

  .arrow_wrapper {
    width: 26px;
  }

  .team_mask {
    width: 100%;
  }

  .container-1110 {
    overflow: visible;
  }

  .pictorial_image {
    border-radius: .8rem;
  }

  .centered-heading {
    margin-top: 40px;
    margin-bottom: 24px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 25px;
    line-height: 30px;
  }

  .text-block-305 {
    text-align: center;
    font-size: 14px;
  }

  .div-block-548 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .image-220 {
    width: 90px;
    height: 35px;
  }

  .image-148 {
    width: 250px;
  }

  .text-block-237 {
    text-align: center;
    font-size: 14px;
    line-height: 20px;
  }

  .text-block-237.titan {
    font-size: 19px;
  }

  .div-block-504 {
    margin-top: 20px;
  }

  .team-circles {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .columns-25 {
    flex-direction: column;
    margin-top: 0;
  }

  .button-29 {
    font-size: 16px;
  }

  .team-member-image {
    width: 100%;
  }

  .team-grid {
    grid-template-columns: 1fr;
    padding-left: 15px;
    padding-right: 15px;
  }

  .image-219 {
    width: 90px;
    height: 90px;
  }

  .team-member-name {
    font-size: 20px;
  }

  .column-52 {
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }

  .column-52.titan {
    padding-left: 0;
  }

  .container-1165 {
    max-width: none;
    margin-top: 60px;
  }

  .list-item-54 {
    font-size: 16px;
  }

  .button-25 {
    text-align: center;
    width: 50%;
    margin-top: 20px;
    font-size: 15px;
  }

  .button-25.titan {
    padding-left: 15px;
    padding-right: 15px;
  }

  .text-block-236 {
    text-align: center;
    font-size: 28px;
    line-height: 30px;
  }

  .text-block-236.titan {
    margin-top: 20px;
  }

  .hero-heading-left {
    padding-top: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .container {
    max-width: none;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .hero-split {
    align-items: center;
    width: 100%;
    padding-top: 0;
  }

  .hero-split.img {
    background-color: #fff;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
  }

  .shadow-two.image {
    object-fit: contain;
    background-color: #fff;
    width: 100%;
    height: 70vh;
    margin-top: 0;
    display: none;
  }

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

  .div-block-550 {
    border-top-left-radius: 48px;
    border-bottom-left-radius: 48px;
    width: 100%;
    margin-left: 10px;
    margin-right: 10px;
  }

  .div-block-551 {
    margin-top: 10px;
  }

  .text-block-307 {
    font-size: 16px;
  }

  .text-block-309 {
    margin-left: 10px;
    margin-right: 10px;
    font-size: .8rem;
  }

  .div-block-553 {
    justify-content: center;
    align-items: center;
    margin-left: 0;
    display: flex;
  }

  .div-block-554 {
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-left: 0;
    display: flex;
  }

  .text-block-310, .text-block-311 {
    font-size: .8rem;
  }

  .text-block-312 {
    text-align: center;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1.2rem;
    line-height: 1.2rem;
  }

  .text-block-313 {
    text-align: center;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 1rem;
    line-height: 1.2rem;
  }

  .text-block-314 {
    text-align: center;
    padding-left: 0;
    font-size: .8rem;
    line-height: 1rem;
  }

  .text-block-315 {
    font-size: 1rem;
  }

  .div-block-555 {
    margin-left: 0;
    margin-right: 10px;
  }

  .image-222 {
    margin-left: 0;
    display: none;
  }

  .image-223 {
    width: 50%;
    height: 150px;
    line-height: 1.4rem;
    display: block;
  }

  .slide-2 {
    background-color: #fff;
  }

  .file-upload {
    height: 2.5rem;
  }

  .text-block-316 {
    padding-top: 0;
  }

  .field-label-9 {
    padding-left: 10px;
  }

  .text-block-302 {
    line-height: 10px;
  }

  .yoga-ebook {
    margin-bottom: 105px;
  }

  .heading-76 {
    font-size: 36px;
  }

  .text-field-18 {
    object-fit: fill;
    margin-right: 0;
    padding-right: 0;
    position: relative;
    left: 0;
    right: 0;
  }

  .image-212 {
    object-fit: cover;
    max-width: 100%;
    margin-left: 19px;
    padding-left: 0;
    padding-right: 0;
    left: -7%;
  }

  .heading-77 {
    font-size: 35px;
    line-height: 55px;
  }

  .submit-button-10 {
    object-fit: fill;
    border-radius: 0;
    min-width: 150px;
    max-width: 1000px;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    left: 100px;
  }

  .image-213 {
    margin-top: 153px;
    margin-left: 0;
  }

  .ebook {
    margin-top: -3px;
    margin-left: 48px;
    margin-right: 0;
    padding-left: 15px;
  }

  .image-224 {
    margin-top: 153px;
    margin-left: 0;
  }

  .text-block-317 {
    font-size: .6rem;
  }

  .form-2 {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    padding-left: 10px;
    padding-right: 10px;
  }

  .submit-button-11 {
    width: 100%;
    padding-top: .4rem;
    padding-bottom: .5rem;
    font-family: Visbycf, sans-serif;
  }

  .div-block-557 {
    width: 100%;
    margin-left: 0;
  }

  .div-block-558 {
    width: 100%;
    margin-bottom: 0;
    margin-left: 10px;
    margin-right: 0;
  }

  .div-block-559 {
    width: 100%;
    margin-right: 0;
  }

  .div-block-560 {
    width: 100%;
    margin-left: 0;
  }

  .grid-5 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .text-block-318 {
    padding-left: 5px;
    padding-right: 5px;
    font-size: .8rem;
    line-height: 1rem;
  }

  .section-3 {
    background-size: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 160px;
    margin-top: 10px;
    margin-bottom: 20px;
    display: none;
  }

  .section-3.mobile {
    background-position: 50% 0;
    flex-direction: column;
    justify-content: center;
    min-height: 160px;
    margin-bottom: 0;
    display: flex;
  }

  .text-block-320 {
    text-align: center;
    width: 100%;
    padding-left: 0;
    font-size: .8rem;
    line-height: 1rem;
  }

  .button-30 {
    background-color: #00f;
    border: 2.8px #65c3b1;
    align-self: center;
    margin-bottom: 0;
    margin-right: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    display: block;
    position: relative;
    top: 59px;
    bottom: 0;
  }

  .form-block-3 {
    margin-bottom: 0;
  }

  .button-31 {
    padding-top: 9px;
    font-family: Visbycf, sans-serif;
  }

  .modal-wrapper {
    display: none;
  }

  .newsletter_leadform {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
  }

  .submit-button-12 {
    width: 100%;
  }

  .form-3 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-563, .div-block-563.full-length {
    width: 100%;
  }

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

  .image-225 {
    margin-top: 1rem;
  }

  .grid-7 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
  }

  .button-34 {
    text-align: center;
    align-self: stretch;
  }

  .text-block-326 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .slide-1 {
    background-size: cover;
  }

  .text-block-328 {
    font-size: 1.8rem;
    line-height: 2rem;
  }

  .text-block-329 {
    font-size: 1rem;
  }

  .image-229 {
    flex: 0 auto;
    width: 150px;
    height: 60px;
  }

  .section-6 {
    background-position: 60%;
  }

  .div-block-574 {
    justify-content: flex-end;
    padding-bottom: 5%;
  }

  .heading-78 {
    width: 100%;
    font-family: Gotham, sans-serif;
    font-size: 1.2rem;
  }

  .heading-79 {
    width: 100%;
    font-size: 1.8rem;
  }

  .button-35 {
    display: block;
  }

  .div-block-575 {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
    width: 100%;
    margin-left: 15px;
    margin-right: 15px;
  }

  .form-block-4 {
    width: 100%;
  }

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

  .text-block-330 {
    font-size: .8rem;
  }

  .div-block-578 {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .div-block-579, .div-block-580 {
    display: none;
  }

  .product-slide-container {
    width: 85%;
    max-width: 85%;
    margin-left: 2%;
    margin-right: 2%;
  }

  .section_warrior_programm_hero {
    opacity: .8;
    -webkit-text-fill-color: inherit;
    background-color: #0000;
    background-position: 50%;
    background-repeat: repeat;
    background-size: cover;
    background-clip: border-box;
    margin-bottom: 1rem;
    padding-top: 2rem;
  }

  .warrior-padding-section {
    padding-top: 0;
  }

  .banner-section.banner-heading {
    opacity: 1;
    padding-top: 0;
    padding-bottom: 1rem;
  }

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

  .warrior-heading {
    font-size: 1.2rem;
  }

  .div-block-584 {
    text-align: center;
    margin-top: 1.2rem;
    margin-bottom: 0;
    line-height: 1rem;
  }

  .text-block-337 {
    text-align: center;
    letter-spacing: 0;
    text-indent: 0;
    font-size: 1rem;
    line-height: 1.3rem;
  }

  .text-block-338 {
    text-align: center;
    text-indent: 0;
  }

  .text-block-339 {
    text-align: center;
    text-indent: 0;
    font-size: 1rem;
    line-height: 1.7rem;
  }

  .text-span-99 {
    font-size: 1.2rem;
  }

  .sign-up-container {
    margin-top: 2rem;
    margin-bottom: 0;
  }

  .sign-up-btn {
    width: 184px;
    padding-left: 0;
    padding-right: 2.2rem;
    font-size: .8rem;
    line-height: 1rem;
  }

  .paragraph-7 {
    text-align: center;
    margin-top: 1.2rem;
    padding-right: 0;
    font-size: 1.1rem;
    line-height: 1.8rem;
  }

  .text-block-341 {
    text-align: center;
    font-family: Visbycf, sans-serif;
    font-size: .9rem;
    line-height: 2rem;
  }

  .div-block-587 {
    margin-bottom: 0;
  }

  .text-block-342 {
    text-align: center;
    width: auto;
    margin-bottom: 0;
    font-family: Visbycf, sans-serif;
    font-size: .9rem;
    line-height: 1.5rem;
  }

  .heading-83 {
    font-family: Visbycf, sans-serif;
    font-size: 1.4rem;
  }

  .text-block-343 {
    letter-spacing: 1px;
    font-family: Visbycf, sans-serif;
    font-size: 1rem;
    line-height: 1rem;
  }

  .text-block-344 {
    font-family: Visbycf, sans-serif;
    font-size: 1rem;
  }

  .doc-profile {
    margin-top: .7rem;
    margin-bottom: 1.6rem;
  }

  .img-meds {
    flex-flow: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    place-items: center;
    height: auto;
    display: flex;
  }

  .meds-img {
    width: 600px;
    height: auto;
    margin-top: -3.4rem;
    margin-bottom: 0;
    margin-left: 0;
  }

  .image-232 {
    clear: none;
    margin-bottom: -13.2rem;
    margin-left: 6rem;
    margin-right: 6rem;
    padding-left: 0;
  }

  .doc-img {
    aspect-ratio: auto;
    object-fit: fill;
    flex: 0 auto;
    align-self: center;
    width: 120px;
    height: 207px;
    margin: 1.9rem 6.3rem 0;
  }

  .cust-cell {
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }

  .image-234 {
    flex: 0 auto;
    align-self: auto;
    height: 80%;
    display: block;
  }

  .image-235 {
    flex: 0 auto;
    align-self: auto;
    width: auto;
    height: auto;
    margin-bottom: 0;
    line-height: 1.5rem;
  }

  .image-236 {
    flex: 0 auto;
    align-self: auto;
    width: auto;
    height: auto;
  }

  .customer-img {
    flex: 0 auto;
    align-self: flex-start;
    height: auto;
  }

  .product-info-container {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
    padding: 0 11px;
  }

  .common {
    align-self: flex-end;
    height: auto;
  }

  .common.custom-hug {
    align-self: flex-start;
  }

  .common.warrior-img {
    height: 80%;
  }

  .happy-cust-cell {
    flex-flow: row;
    justify-content: center;
    align-items: flex-start;
  }

  .ratings-cell, .natural-img-cell, .safety-img-cell {
    justify-content: flex-end;
    align-items: center;
  }

  .story-main-heading {
    font-size: 1.4rem;
  }

  .stories-text {
    letter-spacing: 1px;
    font-size: .8rem;
    line-height: 1rem;
  }

  .common-img {
    align-self: flex-end;
    height: 80%;
    font-size: .5rem;
  }

  .help-us-section {
    min-height: auto;
    margin-top: 2rem;
    padding-top: 6px;
    padding-bottom: 2rem;
  }

  .heading-84 {
    letter-spacing: 1px;
    margin-top: .5rem;
    font-size: 1.5rem;
  }

  .help-us-header {
    line-height: 1rem;
  }

  .help-us-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin-top: .6rem;
    line-height: 1.5rem;
  }

  .help-text {
    text-align: left;
    font-size: .8rem;
    font-weight: 300;
    line-height: 1.5rem;
  }

  .help-text.text-white {
    letter-spacing: 0;
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .help-text.help-cell-last-child {
    flex: 0 auto;
    margin-left: 1.5rem;
    font-size: .8rem;
    line-height: 1.2rem;
  }

  .help-us-text-container {
    letter-spacing: 1px;
  }

  .help-us-stack {
    grid-column-gap: 12px;
    flex: 0 auto;
    align-self: auto;
    font-family: Gotham, sans-serif;
  }

  .cell-3 {
    flex-flow: row;
    justify-content: center;
    align-items: stretch;
  }

  .cell-4 {
    flex-flow: row;
    justify-content: center;
    align-items: stretch;
    font-size: .8rem;
  }

  .cell-5 {
    flex-flow: column;
    justify-content: center;
    align-items: stretch;
    font-family: Gotham, sans-serif;
  }

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

  .grid-10 {
    grid-template-columns: 1fr;
    grid-template-areas: "Area";
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
  }

  .quick-stack-3 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
  }

  .help_stack {
    grid-column-gap: 22px;
    grid-row-gap: 8px;
    margin: .5rem 0;
    padding-top: 1rem;
    padding-bottom: 10px;
    padding-right: 2rem;
  }

  .help_cell {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    padding-top: 1rem;
    padding-bottom: .25rem;
  }

  .help_cell.first_cell {
    padding-top: 1.2rem;
  }

  .help-img {
    height: 40px;
  }

  .quick-stack-4 {
    flex: 0 auto;
  }

  .doubt-stack {
    grid-column-gap: 5px;
    border-radius: 18px;
    margin: 1.9rem .25rem 0;
    padding: 8px 0 1rem 13px;
  }

  .image-240 {
    flex: 0 auto;
    align-self: center;
    height: 100px;
    margin-top: 0;
    display: block;
  }

  .heading-87 {
    flex: 0 auto;
    font-size: .85rem;
    line-height: 1.7;
  }

  .help-meet-link {
    text-align: left;
    letter-spacing: 0;
    margin-top: 9px;
    font-size: .75rem;
    font-weight: 300;
    line-height: .75rem;
  }

  .meet-info-cell {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: flex-start;
  }

  .doc-image-cell {
    justify-content: center;
    align-items: stretch;
  }

  .help-meet-bold {
    letter-spacing: 0;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    margin-top: 0;
    margin-bottom: 0;
    font-size: .7rem;
    font-weight: 300;
    line-height: 1rem;
    display: block;
  }

  .heading-88 {
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: .5rem;
    font-size: 1.15rem;
    line-height: 1.2;
  }

  .text-block-347 {
    text-align: center;
    letter-spacing: 1px;
    font-size: .7rem;
    line-height: 1.2rem;
  }

  .section-11 {
    margin-top: 2rem;
    margin-bottom: .5rem;
  }

  .heading-formula {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .extract-heading {
    font-size: 1rem;
  }

  .form_section {
    padding-bottom: 0;
  }

  .heading_container {
    margin-top: 0;
    margin-bottom: 0;
  }

  .heading-89 {
    margin-top: 2rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
  }

  .form_container {
    width: auto;
    padding-left: 1px;
    padding-right: 1px;
  }

  .outer-grid-layout {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    place-items: stretch stretch;
    display: grid;
  }

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

  .form-5 {
    grid-column-gap: 15px;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .div-block-589 {
    justify-content: center;
    align-items: center;
    width: 50%;
    display: flex;
  }

  .submit-button-14 {
    width: auto;
    min-width: 100%;
    height: auto;
    font-size: 1.2rem;
    display: block;
  }

  .input_block {
    width: 90%;
  }

  .input_block.sexth-child {
    text-align: left;
  }

  .input_block.first-child {
    object-fit: fill;
    line-height: 1.5rem;
    overflow: hidden;
  }

  .input_label {
    width: 100%;
    margin-bottom: 1rem;
    margin-left: 18px;
    font-size: .9rem;
    line-height: 1.3;
  }

  .input_text {
    width: 70%;
    padding-top: 0;
    padding-bottom: 0;
    font-size: .95rem;
  }

  .input_text.full_input {
    width: 70%;
    padding-left: 0;
  }

  .input_text.select_input {
    width: 75%;
    padding-left: 0;
  }

  .input_text.select_input.gender_input {
    text-align: left;
    width: 70%;
  }

  .input_text.gender_field {
    opacity: .65;
    color: var(--black);
    width: 70%;
    padding-left: 0;
    font-weight: 500;
  }

  .input_image {
    width: 1rem;
    height: 1rem;
  }

  .input_image.gender_img {
    width: 2rem;
  }

  .field_input {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 100%;
    line-height: 1rem;
  }

  .internal-form-grid {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    line-height: 1.5rem;
    display: flex;
  }

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

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

  .paragraph-9 {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .data_para {
    color: #eadcdc;
    text-align: center;
    font-family: Visbycf, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.7rem;
  }

  .div-block-592 {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .single-med-container {
    width: 100%;
  }

  .meds-section {
    margin-top: .5rem;
    margin-bottom: .5rem;
  }

  .icon-4.arrow-icon {
    width: auto;
    height: auto;
    font-size: .8rem;
    inset: 0% 0% 0% auto;
  }

  .arrow-left {
    width: auto;
    inset: 0% auto 0% 0%;
  }

  .arrow-right {
    width: auto;
    height: auto;
    inset: 0% 0% 0% auto;
  }

  .icon-5.arrow-icon {
    width: auto;
    font-size: .8rem;
    line-height: 1.5rem;
  }

  .quick-stack-5 {
    padding-top: 10px;
    padding-bottom: 10px;
  }

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

  .image-247 {
    text-align: left;
    width: 50%;
    height: auto;
  }

  .div-block-593 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    margin-top: auto;
    margin-left: 0;
  }

  .text-span-103 {
    font-size: .6rem;
    line-height: 1rem;
  }

  .link {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 100%;
    font-size: .8rem;
    line-height: 1rem;
    display: block;
  }

  .info-grid {
    grid-row-gap: 1px;
    padding: 18px;
  }

  .paragraph-10 {
    font-size: .75rem;
    line-height: 1rem;
  }

  .text-span-104 {
    line-height: 1.2rem;
  }

  .success-message {
    color: var(--white);
    background-color: #65c3b1;
  }

  .text-block-348 {
    letter-spacing: .75px;
    font-family: Visbycf, sans-serif;
    font-size: .87rem;
    font-weight: 500;
  }

  .error-message-2 {
    background-color: #ff0000e0;
  }

  .text-block-349 {
    color: var(--white);
    text-align: center;
    letter-spacing: .7px;
    font-family: Visbycf, sans-serif;
    font-size: .75rem;
    font-weight: 500;
  }

  .dropdown {
    background-color: #fff;
    width: 70%;
    margin-left: 0;
  }

  .icon-6 {
    inset: 0% 0% 0% auto;
  }

  .slide-nav-2 {
    font-size: .5rem;
  }

  .html-embed-2 {
    height: auto;
  }

  .input-text.input_text {
    opacity: .69;
    width: 75%;
    max-width: 800px;
    margin-top: 0;
    padding-bottom: 0;
    font-size: .9rem;
  }

  .link-block-5 {
    width: 50%;
    height: 50%;
  }
}

#w-node-_9c5facba-5b68-7c75-bc76-172fdfd4a9c9-8350c192, #w-node-_84ddf271-645b-37fa-b898-1c4853df822e-8350c192, #w-node-bdea4b81-cc53-ef9d-44cc-6e8c291c1475-8350c192, #w-node-bdea4b81-cc53-ef9d-44cc-6e8c291c147f-8350c192, #w-node-bdea4b81-cc53-ef9d-44cc-6e8c291c1484-8350c192, #w-node-_065b01d1-9a8e-d2a4-11b5-ca98b90e5be8-8350c192, #w-node-da921c7b-154a-cb01-3a46-64c126068f44-8350c192, #w-node-d1efab1a-5438-d16e-ba11-9a341fa11a37-8350c192, #w-node-dd201719-d6b8-ef83-9b03-76c848845af5-8350c192, #w-node-_5ab1cf65-59bc-fd8f-4e16-81b743f00cbf-8350c192, #w-node-aa86f0ff-6294-66ba-b25f-62221808c17e-8350c192, #w-node-_36060127-bce0-13c7-16ac-a6733ad46873-8350c192, #w-node-_36060127-bce0-13c7-16ac-a6733ad46877-8350c192, #w-node-_36060127-bce0-13c7-16ac-a6733ad4687b-8350c192, #w-node-_9c7e8070-7004-0c20-9c76-11e2ef1af1dc-8350c192, #w-node-bc8a78e2-300c-3993-e339-cc13f54d204c-8350c192, #w-node-bc8a78e2-300c-3993-e339-cc13f54d2053-8350c192, #w-node-bc8a78e2-300c-3993-e339-cc13f54d205c-8350c192, #w-node-bc8a78e2-300c-3993-e339-cc13f54d2060-8350c192, #w-node-bc8a78e2-300c-3993-e339-cc13f54d2064-8350c192, #w-node-bc8a78e2-300c-3993-e339-cc13f54d2068-8350c192, #w-node-bc8a78e2-300c-3993-e339-cc13f54d2070-8350c192, #w-node-bc8a78e2-300c-3993-e339-cc13f54d2074-8350c192, #w-node-bc8a78e2-300c-3993-e339-cc13f54d207c-8350c192, #w-node-bc8a78e2-300c-3993-e339-cc13f54d2078-8350c192, #w-node-_997aa060-02c9-37f7-19c9-563bf21f6b79-8350c192, #w-node-_997aa060-02c9-37f7-19c9-563bf21f6b80-8350c192, #w-node-_997aa060-02c9-37f7-19c9-563bf21f6b89-8350c192, #w-node-_997aa060-02c9-37f7-19c9-563bf21f6b8d-8350c192, #w-node-_997aa060-02c9-37f7-19c9-563bf21f6b91-8350c192, #w-node-_997aa060-02c9-37f7-19c9-563bf21f6b95-8350c192, #w-node-_997aa060-02c9-37f7-19c9-563bf21f6b9d-8350c192, #w-node-_997aa060-02c9-37f7-19c9-563bf21f6ba1-8350c192, #w-node-_997aa060-02c9-37f7-19c9-563bf21f6ba9-8350c192, #w-node-aa51958b-9454-1e9f-8f62-9de9fb665400-8350c192, #w-node-f1a5f496-bf97-3f16-9da7-521b0349957c-8350c192, #w-node-ddbc4bba-ab00-2a54-a081-fbb9fbc2e328-8350c192, #w-node-feed831b-2aa3-e35d-51f9-ccf7b1403bbf-8350c192, #w-node-_99263f4b-64a7-0b2e-738e-37f0efd8ea6e-8350c192, #w-node-a1edbce3-fbaa-5734-6c28-f87704bc0995-04bc0990, #w-node-a1edbce3-fbaa-5734-6c28-f87704bc09a0-04bc0990, #w-node-a1edbce3-fbaa-5734-6c28-f87704bc09ab-04bc0990, #w-node-_065238c1-61d9-6a60-566b-e654e26c6fe1-8350c1e8, #w-node-_065238c1-61d9-6a60-566b-e654e26c6feb-8350c1e8, #w-node-_065238c1-61d9-6a60-566b-e654e26c6ff0-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515007e6-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515007fd-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500816-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500829-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500842-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa85150085f-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500866-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa85150086d-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500874-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa85150087b-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500882-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500889-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500890-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500897-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008ad-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008b0-8350c1e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91d38b27-8fda-c543-8a26-eaa8515008b1-8350c1e8 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_91d38b27-8fda-c543-8a26-eaa8515008bd-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008c9-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008d5-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008e4-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008e5-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008e8-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008eb-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008ee-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008f1-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008f4-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008f5-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008f8-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008fb-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008fe-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500901-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500904-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500905-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500908-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa85150090b-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa85150090e-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500911-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500914-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500915-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500917-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500919-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa85150091b-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa85150091d-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500920-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500921-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500923-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500925-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500927-8350c1e8, #w-node-e73d0f4e-e636-1c97-4436-03fafef31002-8350c1e8, #w-node-f616c433-e5e0-bb30-d014-a875f1c42a67-8350c1e8, #w-node-f616c433-e5e0-bb30-d014-a875f1c42a68-8350c1e8, #w-node-f616c433-e5e0-bb30-d014-a875f1c42a6a-8350c1e8, #w-node-f616c433-e5e0-bb30-d014-a875f1c42a6c-8350c1e8, #w-node-f616c433-e5e0-bb30-d014-a875f1c42a6e-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500930-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500936-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa85150093c-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500942-8350c1e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91d38b27-8fda-c543-8a26-eaa85150094b-8350c1e8, #w-node-_91d38b27-8fda-c543-8a26-eaa851500951-8350c1e8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_91d38b27-8fda-c543-8a26-eaa851500953-8350c1e8 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_4931e583-59d6-cc7a-be0f-327628ff5054-8350c1eb, #w-node-_4931e583-59d6-cc7a-be0f-327628ff505e-8350c1eb, #w-node-_4931e583-59d6-cc7a-be0f-327628ff5063-8350c1eb, #w-node-_91d38b27-8fda-c543-8a26-eaa8515007e6-8350c1eb, #w-node-_91d38b27-8fda-c543-8a26-eaa8515007fd-8350c1eb, #w-node-_91d38b27-8fda-c543-8a26-eaa851500816-8350c1eb, #w-node-_91d38b27-8fda-c543-8a26-eaa851500874-8350c1eb, #w-node-_91d38b27-8fda-c543-8a26-eaa85150087b-8350c1eb, #w-node-_91d38b27-8fda-c543-8a26-eaa851500882-8350c1eb, #w-node-_71fd25ed-d9b4-a5ac-4fed-6fc54febe321-8350c1eb, #w-node-_91d38b27-8fda-c543-8a26-eaa85150086d-8350c1eb, #w-node-_91d38b27-8fda-c543-8a26-eaa851500890-8350c1eb, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008ad-8350c1eb, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008b0-8350c1eb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91d38b27-8fda-c543-8a26-eaa8515008b1-8350c1eb {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_91d38b27-8fda-c543-8a26-eaa8515008bd-8350c1eb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_91d38b27-8fda-c543-8a26-eaa8515008e4-8350c1eb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91d38b27-8fda-c543-8a26-eaa8515008e5-8350c1eb, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008e8-8350c1eb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_91d38b27-8fda-c543-8a26-eaa8515008f1-8350c1eb, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008f4-8350c1eb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91d38b27-8fda-c543-8a26-eaa8515008f5-8350c1eb, #w-node-_91d38b27-8fda-c543-8a26-eaa8515008f8-8350c1eb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_74b86013-0c3b-5190-eb92-775cc41178f0-8350c1eb, #w-node-_329c8fcb-48a0-dc25-56a5-5f9790fcc2f0-8350c1eb, #w-node-_7317e0e0-2a53-e271-a276-8f7048ddf52e-8350c1eb, #w-node-e78e97a6-868f-52ff-ff8a-c00ad61ccc43-8350c1eb, #w-node-e78e97a6-868f-52ff-ff8a-c00ad61ccc49-8350c1eb, #w-node-e78e97a6-868f-52ff-ff8a-c00ad61ccc51-8350c1eb, #w-node-e78e97a6-868f-52ff-ff8a-c00ad61ccc57-8350c1eb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e78e97a6-868f-52ff-ff8a-c00ad61ccc62-8350c1eb, #w-node-e78e97a6-868f-52ff-ff8a-c00ad61ccc69-8350c1eb {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_6530e764-993d-9a6a-fb13-5f4b73987873-8350c1eb {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_65e95f8d-9241-3fb9-d7e0-03b7a2ca79de-8350c1ec, #w-node-_65e95f8d-9241-3fb9-d7e0-03b7a2ca79e8-8350c1ec, #w-node-_65e95f8d-9241-3fb9-d7e0-03b7a2ca79ed-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d7de-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d7f6-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d822-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d857-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d88f-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d865-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d86c-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d873-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d87a-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a5-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a8-8350c1ec {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a9-8350c1ec {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8b5-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8c1-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8dc-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8dd-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8e0-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8e3-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8e9-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8ec-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8ed-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8f0-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8f3-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8f9-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8fc-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8fd-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d900-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d903-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d909-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d90c-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d90d-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d90f-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d911-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d915-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d918-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d919-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d91b-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d91d-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d928-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d92e-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d934-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d93a-8350c1ec {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d943-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d949-8350c1ec {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d94b-8350c1ec {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-c5c142d9-11f0-fd99-d915-d17336018090-8350c1ed, #w-node-c5c142d9-11f0-fd99-d915-d1733601809a-8350c1ed, #w-node-c5c142d9-11f0-fd99-d915-d1733601809f-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d7de-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d822-8350c1ed, #w-node-_0ec0c613-0c71-0b3a-975b-98fbe4302ebe-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d857-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d87a-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d88f-8350c1ed, #w-node-_189459bf-3262-a326-b70a-14f1821e97f1-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d865-8350c1ed, #w-node-b4c17d32-f33c-1167-26fd-1124169cad22-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a5-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a8-8350c1ed {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a9-8350c1ed {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8b5-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8c1-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8e9-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8ec-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8ed-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8f0-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8f3-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8f9-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8fc-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8fd-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d900-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d903-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d909-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d90c-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d90d-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d90f-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d911-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d915-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d918-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d919-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d91b-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d91d-8350c1ed, #w-node-_821ec8ab-3ba4-130f-f05f-b5618264e9f6-8350c1ed, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb41-8350c1ed, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb42-8350c1ed, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb43-8350c1ed, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb44-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d928-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d92e-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d934-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d93a-8350c1ed {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d943-8350c1ed, #w-node-_489591cd-b120-a944-7be0-2f4dbe0dee26-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d949-8350c1ed {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d94b-8350c1ed {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_0d8e6079-6d3c-2b02-a43a-5200fc240440-8350c1ee, #w-node-_0d8e6079-6d3c-2b02-a43a-5200fc24044a-8350c1ee, #w-node-_0d8e6079-6d3c-2b02-a43a-5200fc24044f-8350c1ee, #w-node-_1167f729-7392-3cbc-d55d-9cd1013a91cd-8350c1ee, #w-node-_439a040a-e6cc-5799-aabe-c85c1ecc69ce-8350c1ee, #w-node-_0c4fcbbb-45fe-4df3-e335-eba008635489-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d7de-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d7f6-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d822-8350c1ee, #w-node-c0a24c64-89c4-c1b7-133f-f1e0458a3b2b-8350c1ee, #w-node-_833e2dbb-7282-00ab-c350-54381ef68be9-8350c1ee, #w-node-c4125403-df24-386e-54a8-45f3d96da767-8350c1ee, #w-node-_9dc02980-a2d7-785b-1ff8-5d91dabab4da-8350c1ee, #w-node-b683a216-bf5e-4125-7f6c-828feec9ddc5-8350c1ee, #w-node-_7c3b076b-6070-00fd-e54b-b22c5d4b34ee-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a5-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a8-8350c1ee {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a9-8350c1ee {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8b5-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8c1-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8dc-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8dd-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8e0-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8e3-8350c1ee, #w-node-_821ec8ab-3ba4-130f-f05f-b5618264e9f6-8350c1ee, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb41-8350c1ee, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb42-8350c1ee, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb43-8350c1ee, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb44-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8f9-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8fc-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8fd-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d900-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d903-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d928-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d92e-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d934-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d93a-8350c1ee {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d943-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d949-8350c1ee {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d94b-8350c1ee {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_1167f729-7392-3cbc-d55d-9cd1013a91cd-8350c1fd, #w-node-ac9a5c2e-60d5-910d-65da-8321b1331e13-8350c1fd, #w-node-c5b69f9c-cfac-5c0f-9d1f-b250b4710c46-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d7de-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d7f6-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d822-8350c1fd, #w-node-c0a24c64-89c4-c1b7-133f-f1e0458a3b2b-8350c1fd, #w-node-_833e2dbb-7282-00ab-c350-54381ef68be9-8350c1fd, #w-node-c4125403-df24-386e-54a8-45f3d96da767-8350c1fd, #w-node-b683a216-bf5e-4125-7f6c-828feec9ddc5-8350c1fd, #w-node-ba0bcd9f-e601-06b9-c28b-25320e2d87a7-8350c1fd, #w-node-_72519eb4-f0c6-82bb-1cf9-4258d56fefbc-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a5-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a8-8350c1fd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a9-8350c1fd {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8b5-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8c1-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8dc-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8dd-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8e0-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8e3-8350c1fd, #w-node-_821ec8ab-3ba4-130f-f05f-b5618264e9f6-8350c1fd, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb41-8350c1fd, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb42-8350c1fd, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb43-8350c1fd, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb44-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8f9-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8fc-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8fd-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d900-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d903-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d928-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d92e-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d934-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d93a-8350c1fd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d943-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d949-8350c1fd {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d94b-8350c1fd {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_9def7626-fa60-db95-352d-64f8dad99842-8350c1fe, #w-node-_9def7626-fa60-db95-352d-64f8dad9984c-8350c1fe, #w-node-_9def7626-fa60-db95-352d-64f8dad99851-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d7de-8350c1fe, #w-node-_622b549f-4108-1cb0-5fbc-3b11af75888b-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d7f6-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d822-8350c1fe, #w-node-_0ec0c613-0c71-0b3a-975b-98fbe4302ebe-8350c1fe, #w-node-cc76f0db-56ac-ed56-7e20-2a9b9204d8ec-8350c1fe, #w-node-a6666d75-6d46-0c6d-27c2-ff002b0885b6-8350c1fe, #w-node-_09864091-1a55-e65f-f801-6988d3802a0a-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d857-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d86c-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d87a-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a5-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a8-8350c1fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8a9-8350c1fe {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8b5-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8c1-8350c1fe, #w-node-f8bf6d0d-00f6-09dd-d6ea-19b846426a61-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8dc-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8dd-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8e0-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8e3-8350c1fe, #w-node-fa092270-55da-b7a3-53b9-08fb0ae9b633-8350c1fe, #w-node-_821ec8ab-3ba4-130f-f05f-b5618264e9f6-8350c1fe, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb41-8350c1fe, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb42-8350c1fe, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb43-8350c1fe, #w-node-_0c4fca00-7a83-0bf3-0d42-759187c2bb44-8350c1fe, #w-node-c9ddd224-0787-6837-ba73-bf207647029b-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8f9-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8fc-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d8fd-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d900-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d903-8350c1fe, #w-node-_3ce974bf-68c0-2df2-8717-61c2f26f8535-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d909-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d90c-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d90d-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d90f-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d911-8350c1fe, #w-node-df018612-e9c6-7510-d4a5-a97eea6bfb70-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d915-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d918-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d919-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d91b-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d91d-8350c1fe, #w-node-_55010cdd-9b36-603b-9fe6-c9efdf8f0940-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d928-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d92e-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d934-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d93a-8350c1fe {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d943-8350c1fe, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d949-8350c1fe {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d94b-8350c1fe {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86205-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86207-8350c1ff {
  justify-self: center;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621b-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621c-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86220-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86221-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86225-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86226-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622a-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622b-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622f-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86230-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86234-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86235-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8623f-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86240-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86244-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86245-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86249-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624a-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624e-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624f-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86253-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86254-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86258-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86259-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86263-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86264-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86268-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86269-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626d-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626e-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86272-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86273-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627c-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627d-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86286-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86287-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86299-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629a-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629e-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629f-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a3-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a4-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a8-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a9-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ad-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ae-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b8-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b9-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862bd-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862be-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c2-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c3-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c7-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c8-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cc-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cd-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d1-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d2-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862dd-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862de-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e2-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e3-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e7-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e8-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ec-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ed-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f1-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f2-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f6-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f7-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fb-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fc-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86300-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86301-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86305-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86306-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86310-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86311-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86315-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86316-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631a-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631b-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86322-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86323-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86367-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86386-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86393-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86394-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8638e-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8638f-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863a4-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863b0-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ba-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863bd-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863be-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c1-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c2-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c5-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c6-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ca-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863cd-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ce-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d1-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d2-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d5-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863dd-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863de-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863df-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e1-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e4-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e5-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e6-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ea-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ed-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ee-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ef-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f3-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc863f7-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f8-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863fe-8350c1ff, #w-node-e9f171cc-11b4-0905-714d-593dc5e729cd-8350c1ff, #w-node-e9f171cc-11b4-0905-714d-593dc5e729ce-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e9f171cc-11b4-0905-714d-593dc5e729cf-8350c1ff {
  justify-self: start;
}

#w-node-e9f171cc-11b4-0905-714d-593dc5e729d3-8350c1ff, #w-node-_803d93b2-f316-78e7-4b37-d40ff102217f-8350c1ff, #w-node-_803d93b2-f316-78e7-4b37-d40ff1022180-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_803d93b2-f316-78e7-4b37-d40ff1022181-8350c1ff {
  justify-self: start;
}

#w-node-_803d93b2-f316-78e7-4b37-d40ff1022187-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86402-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86403-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86407-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640a-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640f-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86410-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86411-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86415-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86418-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86419-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8641a-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86420-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86423-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86424-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86425-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8642b-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642e-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642f-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86430-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86438-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643b-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643c-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8643d-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86449-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc8644a-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644b-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644f-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86454-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86455-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86456-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8645c-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86461-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86462-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86463-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86469-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646e-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646f-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86470-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86478-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc8647e-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8647f-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86485-8350c1ff, #w-node-bf202792-073b-d0b9-2e3f-1ac68c32701c-8350c1ff, #w-node-bf202792-073b-d0b9-2e3f-1ac68c32701d-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bf202792-073b-d0b9-2e3f-1ac68c32701e-8350c1ff {
  justify-self: start;
}

#w-node-bf202792-073b-d0b9-2e3f-1ac68c327022-8350c1ff, #w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1608-8350c1ff, #w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1609-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e160a-8350c1ff {
  justify-self: start;
}

#w-node-_7c4d1b7c-78f1-8ac7-381e-93ec539e1610-8350c1ff, #w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece1-8350c1ff, #w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece2-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece3-8350c1ff {
  justify-self: start;
}

#w-node-_45e7d798-6f20-3ddc-ae2f-bdd2974eece9-8350c1ff, #w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b7e-8350c1ff, #w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b7f-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b80-8350c1ff {
  justify-self: start;
}

#w-node-efb2dd60-0fd7-ccc6-83fa-c5f7f2777b88-8350c1ff, #w-node-_0a1c269a-9c65-cac5-d78d-08680a95253d-8350c1ff, #w-node-_0a1c269a-9c65-cac5-d78d-08680a95253e-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0a1c269a-9c65-cac5-d78d-08680a95253f-8350c1ff {
  justify-self: start;
}

#w-node-_0a1c269a-9c65-cac5-d78d-08680a952545-8350c1ff, #w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7c-8350c1ff, #w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7d-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee513712-f44c-c02b-b1ea-6045fc69ab7e-8350c1ff {
  justify-self: start;
}

#w-node-ee513712-f44c-c02b-b1ea-6045fc69ab86-8350c1ff, #w-node-_40872103-aff7-c010-da67-704a8f3f1108-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_40872103-aff7-c010-da67-704a8f3f1109-8350c1ff {
  justify-self: start;
}

#w-node-_40872103-aff7-c010-da67-704a8f3f110f-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc8648f-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86490-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86491-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86492-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86494-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc86497-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649b-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649c-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649d-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a6-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a7-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a8-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b1-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b2-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b3-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864b4-8350c1ff {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864ba-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bb-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bc-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864bd-8350c1ff {
  justify-self: start;
}

#w-node-da163454-3d7f-a6d2-8037-3b46b9c50abd-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c3-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c4-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c5-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864c6-8350c1ff, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c8-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369290-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369294-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369295-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369297-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369299-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929a-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929c-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929e-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929f-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a1-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a3-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a4-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a6-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a8-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a9-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ab-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ad-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ae-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b0-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b2-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b3-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b5-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b6-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b8-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b9-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bb-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bc-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692be-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bf-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c1-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c2-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c4-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c5-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c7-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692cd-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d1-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d2-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d4-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d6-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d7-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d9-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692db-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692dc-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692de-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e0-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e1-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e3-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e5-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e6-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e8-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ea-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692eb-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ed-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ef-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f0-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f2-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f4-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f5-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f7-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f9-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fa-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fc-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fe-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ff-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369301-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369303-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369304-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369306-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930b-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930f-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369311-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369314-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369319-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936931e-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369323-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369328-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936932f-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369330-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369332-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369333-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369335-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369336-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369338-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369339-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933b-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933c-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933e-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933f-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369341-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369342-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369344-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369345-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369347-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369348-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934a-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934b-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934d-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934e-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369350-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369351-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369353-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369354-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369356-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369357-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369359-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935a-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935c-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935d-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935f-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369360-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369362-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369363-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369365-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369366-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369368-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369369-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936b-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936c-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936e-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936f-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369371-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369372-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369374-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369375-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369377-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369378-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937a-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937b-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937d-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937e-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369380-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369381-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369383-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369384-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369386-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369387-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936938c-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369390-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369392-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369395-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939a-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939f-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a4-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a9-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b0-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b1-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b3-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b4-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b6-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b7-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b9-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ba-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bc-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bd-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bf-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c0-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c2-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c3-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c5-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c6-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c8-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c9-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cb-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cc-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ce-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cf-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d1-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d2-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d4-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d5-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d7-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d8-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693da-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693db-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693dd-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693de-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e0-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e1-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e3-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e4-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e6-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e7-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e9-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ea-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ec-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ed-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ef-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f0-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f2-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f3-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f5-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f6-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f8-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f9-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fb-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fc-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fe-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ff-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369401-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369402-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369404-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369405-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369407-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369408-8350c1ff, #w-node-aba73718-5f03-827e-9e0b-61449dc1d37c-8350c1ff, #w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f8-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448f9-8350c1ff {
  justify-self: start;
}

#w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fb-8350c1ff, #w-node-_1a6e4211-c1a3-edfa-99df-59c05fb448fc-8350c1ff, #w-node-_16994295-7a31-57da-1001-8ec0ea846a1e-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a1f-8350c1ff {
  justify-self: start;
}

#w-node-_16994295-7a31-57da-1001-8ec0ea846a21-8350c1ff, #w-node-_16994295-7a31-57da-1001-8ec0ea846a22-8350c1ff, #w-node-_8f691932-76bb-1979-3d19-a80adf0a25f2-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f3-8350c1ff {
  justify-self: start;
}

#w-node-_8f691932-76bb-1979-3d19-a80adf0a25f5-8350c1ff, #w-node-_8f691932-76bb-1979-3d19-a80adf0a25f6-8350c1ff, #w-node-f28919c2-e180-d075-d1c2-81b601b8a964-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a965-8350c1ff {
  justify-self: start;
}

#w-node-f28919c2-e180-d075-d1c2-81b601b8a967-8350c1ff, #w-node-f28919c2-e180-d075-d1c2-81b601b8a968-8350c1ff, #w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b3-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b4-8350c1ff {
  justify-self: start;
}

#w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b6-8350c1ff, #w-node-b2bd7b9e-a5b1-0617-1861-ecb60c9b53b7-8350c1ff, #w-node-ee961e8d-845a-edc3-3307-509470022457-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee961e8d-845a-edc3-3307-509470022458-8350c1ff {
  justify-self: start;
}

#w-node-ee961e8d-845a-edc3-3307-50947002245a-8350c1ff, #w-node-ee961e8d-845a-edc3-3307-50947002245b-8350c1ff, #w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e1-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e2-8350c1ff {
  justify-self: start;
}

#w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e4-8350c1ff, #w-node-_588dd3e3-4aa6-cc42-1280-2d37cff319e5-8350c1ff, #w-node-_626bd165-37fe-b21e-713f-accb16c57414-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57415-8350c1ff {
  justify-self: start;
}

#w-node-_626bd165-37fe-b21e-713f-accb16c57417-8350c1ff, #w-node-_626bd165-37fe-b21e-713f-accb16c57418-8350c1ff, #w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f40-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f41-8350c1ff {
  justify-self: start;
}

#w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f43-8350c1ff, #w-node-_8198cc96-510b-d5a9-b63d-22b6607f5f44-8350c1ff, #w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee5-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee6-8350c1ff {
  justify-self: start;
}

#w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee8-8350c1ff, #w-node-_2a26aaa0-f27b-d541-a441-687d55aa9ee9-8350c1ff, #w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe33-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe34-8350c1ff {
  justify-self: start;
}

#w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe36-8350c1ff, #w-node-_2abe4c27-4e03-1a95-b21e-aef8fb82fe37-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fa-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fe-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694ff-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369503-8350c1ff, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369505-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369506-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950a-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950b-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369514-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369515-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369519-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951a-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951e-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951f-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369523-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369524-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369528-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369529-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952d-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952e-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369532-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369533-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369536-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369537-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953a-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953b-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953f-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369540-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369544-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369545-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369549-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954a-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954e-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954f-8350c1ff {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369553-8350c1ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369554-8350c1ff {
  justify-self: start;
}

#w-node-_1167f729-7392-3cbc-d55d-9cd1013a91cd-d73b8acb, #w-node-ac9a5c2e-60d5-910d-65da-8321b1331e13-d73b8acb, #w-node-c5b69f9c-cfac-5c0f-9d1f-b250b4710c46-d73b8acb, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62ef-d73b8acb, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62f0-d73b8acb, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62f1-d73b8acb, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62fc-d73b8acb, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c6300-d73b8acb, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c6304-d73b8acb, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c6308-d73b8acb, #w-node-db1d01fb-a5d0-eed8-1e7c-151b06fa2c5d-d73b8acb, #w-node-db1d01fb-a5d0-eed8-1e7c-151b06fa2c5e-d73b8acb, #w-node-db1d01fb-a5d0-eed8-1e7c-151b06fa2c5f-d73b8acb, #w-node-db1d01fb-a5d0-eed8-1e7c-151b06fa2c6a-d73b8acb, #w-node-db1d01fb-a5d0-eed8-1e7c-151b06fa2c6e-d73b8acb, #w-node-db1d01fb-a5d0-eed8-1e7c-151b06fa2c72-d73b8acb, #w-node-ab34f058-bbea-3311-78c4-88cb40a186ee-d73b8acb, #w-node-_49a640f8-dfb6-41f6-b325-251474c69b3c-d73b8acb, #w-node-b6bc689e-e869-de84-ff4e-084b5a3600ba-d73b8acb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0d08d60d-b409-e8e2-79af-dc5c7da4f078-d73b8acb {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_1106f564-db32-b816-1b89-7c880ab72a48-d73b8acb, #w-node-_65d83ae8-64fe-7b25-bc98-d69e5707b677-d73b8acb, #w-node-_2ab83246-49ab-6ddb-9069-1eafc6174f2c-d73b8acb, #w-node-_2ab83246-49ab-6ddb-9069-1eafc6174f35-d73b8acb, #w-node-_2ab83246-49ab-6ddb-9069-1eafc6174f3d-d73b8acb, #w-node-_1167f729-7392-3cbc-d55d-9cd1013a91cd-d20e77e8, #w-node-ac9a5c2e-60d5-910d-65da-8321b1331e13-d20e77e8, #w-node-c5b69f9c-cfac-5c0f-9d1f-b250b4710c46-d20e77e8, #w-node-_51f7ae52-36c2-2a20-591b-0907b4c84f36-d20e77e8, #w-node-e05a0202-69a8-20d8-33a6-37e97ef92c3c-d20e77e8, #w-node-_6ac07aba-586d-671a-9f39-22b7c51a187b-d20e77e8, #w-node-_2b4bbe39-3500-b73f-f373-e00d5706bc47-d20e77e8, #w-node-_2b4bbe39-3500-b73f-f373-e00d5706bc51-d20e77e8, #w-node-_2b4bbe39-3500-b73f-f373-e00d5706bc56-d20e77e8, #w-node-a5cbedf1-984d-35e2-c222-6d1b54d144fc-d20e77e8, #w-node-a5cbedf1-984d-35e2-c222-6d1b54d14515-d20e77e8, #w-node-_2ab83246-49ab-6ddb-9069-1eafc6174f2c-d20e77e8, #w-node-_2ab83246-49ab-6ddb-9069-1eafc6174f35-d20e77e8, #w-node-_2ab83246-49ab-6ddb-9069-1eafc6174f3d-d20e77e8, #w-node-_87382470-648d-caee-4b9e-ade1dbddd346-d20e77e8, #w-node-_87382470-648d-caee-4b9e-ade1dbddd34c-d20e77e8, #w-node-_87382470-648d-caee-4b9e-ade1dbddd352-d20e77e8, #w-node-_87382470-648d-caee-4b9e-ade1dbddd358-d20e77e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_87382470-648d-caee-4b9e-ade1dbddd362-d20e77e8, #w-node-_87382470-648d-caee-4b9e-ade1dbddd369-d20e77e8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_87382470-648d-caee-4b9e-ade1dbddd36b-d20e77e8 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_77651603-7664-b897-15ab-528799f87ae5-c8281493, #w-node-_4db780fd-0312-0232-cc6a-fcb9cd88b61b-c8281493, #w-node-_7929f900-dbbe-f543-6b60-092d0cfb4e83-c8281493, #w-node-_4561f2d9-e37c-b341-1e41-fb273314e8ad-c8281493, #w-node-fc8dd021-15e9-e3dc-1f26-4466e5f2469a-c8281493, #w-node-_05f7f20b-e361-b342-79b2-57d00e7c84f6-c8281493, #w-node-c489b7b7-bd03-3b7a-999c-2ec1604b8e0f-2985b230, #w-node-_40345bec-b4d7-9229-e17b-fd81e4a27d93-724e3368, #w-node-_9bba663d-065f-3c23-b5e9-e70d1bd0f3f9-724e3368, #w-node-_9bba663d-065f-3c23-b5e9-e70d1bd0f3ff-724e3368, #w-node-_9bba663d-065f-3c23-b5e9-e70d1bd0f405-724e3368, #w-node-_9bba663d-065f-3c23-b5e9-e70d1bd0f40b-724e3368 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9bba663d-065f-3c23-b5e9-e70d1bd0f415-724e3368, #w-node-_9bba663d-065f-3c23-b5e9-e70d1bd0f41c-724e3368 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_56e26f15-d992-306a-57f2-489c733585f7-724e3368 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_24ad02e9-cabb-96dd-2f0f-d112a4fb7131-724e3368 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-b5fc4c06-8070-8c44-6ef3-1070ee64a203-724e3368, #w-node-_439492d6-b339-3789-f985-3e7b2c2feddd-724e3368, #w-node-ec03dbad-7203-bba3-40df-46c44993da06-2151efee {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0f35535a-b974-8027-567c-102147c39139-2151efee {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-fcae5c98-9166-e88e-73c1-a5ff99bc445c-2151efee {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-e55c07be-dbe2-d06d-fbb7-29f0807050f6-ec7abd07, #w-node-_8dfae378-9f32-f87b-ddfd-aa3b28682217-ec7abd07, #w-node-a6e8e042-4ffa-3bfc-fd62-89a16bf1b578-64f9229a, #w-node-a6e8e042-4ffa-3bfc-fd62-89a16bf1b57c-64f9229a, #w-node-a6e8e042-4ffa-3bfc-fd62-89a16bf1b580-64f9229a, #w-node-a6e8e042-4ffa-3bfc-fd62-89a16bf1b584-64f9229a, #w-node-_86588805-4b10-24df-2c7f-7dee5ef11f0c-64f9229a, #w-node-_86588805-4b10-24df-2c7f-7dee5ef11f12-64f9229a, #w-node-_86588805-4b10-24df-2c7f-7dee5ef11f18-64f9229a, #w-node-_7388b973-8b20-eda1-a086-84eed645cd04-64f9229a, #w-node-_31e91dec-db8e-4eef-7c94-4b6a0ab4ae90-64f9229a, #w-node-af02de3c-aba5-ebea-815f-12247817a920-64f9229a, #w-node-_65a7013b-0c57-335b-ec3c-e8120c025f8e-64f9229a, #w-node-_380320be-6545-eccf-9232-a3cccb94adf3-64f9229a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_86588805-4b10-24df-2c7f-7dee5ef11f25-64f9229a, #w-node-_86588805-4b10-24df-2c7f-7dee5ef11f2a-64f9229a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_8e4660e7-d461-2872-a85b-65ae62147fac-ef765460, #w-node-_78dcb40b-74d6-2244-b8d8-13bf090b2e41-ef765460, #w-node-_5e40c07f-fb96-1dfb-3b8b-60df51dae6a3-ef765460, #w-node-_1482bea3-73b6-1c92-3700-106649f6ef1a-ef765460, #w-node-e5e947d1-92f9-fe6d-8fba-dab3aa47071a-b39af082, #w-node-_87f7a1e8-ad4f-1030-c962-9132c49d7bce-b39af082, #w-node-_0a550aca-31b6-adaf-785d-42654442f376-b39af082 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_43ae7604-e4bb-404b-fca8-b3d428c8ed12-b39af082 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_9efcf942-2691-cabe-ba58-79dcebdb1a5d-b39af082, #w-node-_32b6b470-53e4-3f7e-7383-18a5657cf16c-b39af082, #w-node-_89fde005-dac6-b74f-bd94-cefbb7341239-b39af082, #w-node-_787cce13-b679-ec95-d2c8-0d2ae5f04b3a-b39af082, #w-node-d257804d-ea6d-0eec-b607-4820684b654e-b39af082, #w-node-a4c1ea5e-1ad5-e342-2937-159352eb973e-b39af082, #w-node-_013b0448-1fac-c6f8-9e38-dedfcae9cec2-14d90d26, #w-node-_145f83ce-9749-d742-684c-43220064a951-14d90d26, #w-node-_13c3b7b2-743a-0022-ce44-2260a3c30760-7925c49d, #w-node-_8c56d9f2-0a15-33b9-ef2c-c5a1bec1ddff-7925c49d, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62ef-3e46048c, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62f0-3e46048c, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62f1-3e46048c, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62fc-3e46048c, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c6300-3e46048c, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c6304-3e46048c, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c6308-3e46048c, #w-node-b64aa221-0773-2fb3-f9e0-eb0da1b2864f-3e46048c, #w-node-b64aa221-0773-2fb3-f9e0-eb0da1b28650-3e46048c, #w-node-b64aa221-0773-2fb3-f9e0-eb0da1b28651-3e46048c, #w-node-b64aa221-0773-2fb3-f9e0-eb0da1b2865c-3e46048c, #w-node-b64aa221-0773-2fb3-f9e0-eb0da1b28660-3e46048c, #w-node-b64aa221-0773-2fb3-f9e0-eb0da1b28664-3e46048c, #w-node-b64aa221-0773-2fb3-f9e0-eb0da1b28668-3e46048c, #w-node-db1d01fb-a5d0-eed8-1e7c-151b06fa2c5d-3e46048c, #w-node-db1d01fb-a5d0-eed8-1e7c-151b06fa2c5e-3e46048c, #w-node-db1d01fb-a5d0-eed8-1e7c-151b06fa2c5f-3e46048c, #w-node-db1d01fb-a5d0-eed8-1e7c-151b06fa2c6a-3e46048c, #w-node-db1d01fb-a5d0-eed8-1e7c-151b06fa2c6e-3e46048c, #w-node-db1d01fb-a5d0-eed8-1e7c-151b06fa2c72-3e46048c, #w-node-e9b8587f-0166-cd18-56ec-8d2df5121ddc-3e46048c, #w-node-e9b8587f-0166-cd18-56ec-8d2df5121de2-3e46048c, #w-node-e9b8587f-0166-cd18-56ec-8d2df5121de8-3e46048c, #w-node-e9b8587f-0166-cd18-56ec-8d2df5121dee-3e46048c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e9b8587f-0166-cd18-56ec-8d2df5121df8-3e46048c, #w-node-e9b8587f-0166-cd18-56ec-8d2df5121dff-3e46048c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-e9b8587f-0166-cd18-56ec-8d2df5121e01-3e46048c {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-d712075b-7f16-83b3-1844-f100a8ffb5b6-f5f9e0af, #w-node-d712075b-7f16-83b3-1844-f100a8ffb5c6-f5f9e0af, #w-node-d712075b-7f16-83b3-1844-f100a8ffb5d6-f5f9e0af, #w-node-d712075b-7f16-83b3-1844-f100a8ffb5e6-f5f9e0af, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62ef-062d0f86, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62f0-062d0f86, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62f1-062d0f86, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62fc-062d0f86, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c6300-062d0f86, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c6304-062d0f86, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c6308-062d0f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f099f5bf-09e3-cb56-5a97-5e09a1778376-062d0f86 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_84111bc6-bb50-8bb3-899f-5f8c04fa76d7-062d0f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-a675807b-dfcb-cf6a-574e-3732df7e6ce6-062d0f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_17c57f78-d571-8c42-93b1-8086132083aa-062d0f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_9e4d3066-c1b8-27b3-5f51-1a8ff05c29fb-062d0f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f099f5bf-09e3-cb56-5a97-5e09a177837e-062d0f86 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center;
}

#w-node-_939cd828-8ee1-46e5-457c-1fd8f4dea4dd-062d0f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6526aded-4bbe-3850-f175-18c2b233273c-062d0f86 {
  grid-area: span 2 / span 1 / span 2 / span 1;
  align-self: center;
}

#w-node-a77b5730-3aae-5631-4244-eb006866e89e-062d0f86, #w-node-_1167f729-7392-3cbc-d55d-9cd1013a91cd-062d0f86, #w-node-ac9a5c2e-60d5-910d-65da-8321b1331e13-062d0f86, #w-node-c5b69f9c-cfac-5c0f-9d1f-b250b4710c46-062d0f86, #w-node-ab34f058-bbea-3311-78c4-88cb40a186ee-062d0f86, #w-node-_49a640f8-dfb6-41f6-b325-251474c69b3c-062d0f86, #w-node-b6bc689e-e869-de84-ff4e-084b5a3600ba-062d0f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0d08d60d-b409-e8e2-79af-dc5c7da4f078-062d0f86 {
  grid-area: span 3 / span 1 / span 3 / span 1;
}

#w-node-_1106f564-db32-b816-1b89-7c880ab72a48-062d0f86, #w-node-_65d83ae8-64fe-7b25-bc98-d69e5707b677-062d0f86, #w-node-_2ab83246-49ab-6ddb-9069-1eafc6174f2c-062d0f86, #w-node-_2ab83246-49ab-6ddb-9069-1eafc6174f35-062d0f86, #w-node-_2ab83246-49ab-6ddb-9069-1eafc6174f3d-062d0f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a7da43e1-e0ef-4021-8c4a-0d4a9e9a6631-062d0f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_53271287-33d7-9050-af7a-1577754e621c-062d0f86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2f1498cf-4bd9-6aa0-18dc-578726746704-062d0f86, #w-node-_63cc68af-4d63-a9ee-9c94-97d48b980658-062d0f86 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-_671a8661-eb9b-bdfd-d777-78d0454c62ef-947eb41e, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62f0-947eb41e, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62f1-947eb41e, #w-node-_8544de91-c2b0-0486-9060-89470200d66a-947eb41e, #w-node-_838d8b85-9a97-7c1b-ad86-b36e1f6a03ea-947eb41e, #w-node-_06ece4fb-9a03-52c6-d7b3-e58692e9ee26-947eb41e, #w-node-_2ad97b37-47ce-a460-9f0d-21f36ee51a82-947eb41e, #w-node-_0673618d-f697-7e2d-dbc3-507a696d9c5b-947eb41e, #w-node-_4e8218e1-77c4-b1f4-cd8a-fd6d92acfdcf-947eb41e, #w-node-_1b685d69-07e8-9733-5a3d-02eb97f2681b-947eb41e, #w-node-_9a22208b-3c45-80ba-ae79-8450f09214ed-947eb41e, #w-node-c0051266-d683-0bab-1d01-243581771082-947eb41e, #w-node-dedfe710-fe98-165e-8054-0b98fbde897a-947eb41e, #w-node-_3d4dbc9b-023a-b513-93c7-fe00f9aff0de-947eb41e, #w-node-_642972d5-63b6-5585-5151-33b8db7094cb-947eb41e, #w-node-_61616015-2e08-7ba1-8939-e95628d9c4b3-947eb41e, #w-node-_919ea6cb-e786-4a3c-b54b-ca6b34c7fecd-947eb41e, #w-node-c2893b56-23a7-57c7-b26e-4be149a30bdd-947eb41e, #w-node-_80afe15b-2f7f-499c-612a-3f879602a524-947eb41e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1efcc467-9daa-618e-883c-fc18911de24f-947eb41e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: auto;
}

#w-node-_4cd92d84-8fdf-00dd-6d95-3b8c4760fb79-947eb41e, #w-node-_4cd92d84-8fdf-00dd-6d95-3b8c4760fb7b-947eb41e, #w-node-_4cd92d84-8fdf-00dd-6d95-3b8c4760fb7d-947eb41e, #w-node-_4cd92d84-8fdf-00dd-6d95-3b8c4760fb7f-947eb41e, #w-node-_4cd92d84-8fdf-00dd-6d95-3b8c4760fb81-947eb41e, #w-node-_4cd92d84-8fdf-00dd-6d95-3b8c4760fb83-947eb41e, #w-node-_4cd92d84-8fdf-00dd-6d95-3b8c4760fb85-947eb41e, #w-node-_4cd92d84-8fdf-00dd-6d95-3b8c4760fb87-947eb41e, #w-node-_4cd92d84-8fdf-00dd-6d95-3b8c4760fb89-947eb41e, #w-node-_4cd92d84-8fdf-00dd-6d95-3b8c4760fb8b-947eb41e, #w-node-_4cd92d84-8fdf-00dd-6d95-3b8c4760fb8d-947eb41e, #w-node-_4cd92d84-8fdf-00dd-6d95-3b8c4760fb8f-947eb41e, #w-node-_20e81b15-27e0-b2fb-29ce-7bf72cdea557-947eb41e, #w-node-_6521688e-364f-2528-266c-9c84de78bb1f-947eb41e, #w-node-_5534320e-87cd-10a8-476a-525e6909561f-947eb41e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f099f5bf-09e3-cb56-5a97-5e09a1778376-947eb41e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_84111bc6-bb50-8bb3-899f-5f8c04fa76d7-947eb41e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-a675807b-dfcb-cf6a-574e-3732df7e6ce6-947eb41e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_17c57f78-d571-8c42-93b1-8086132083aa-947eb41e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-d12a9f0a-5e69-15f7-362e-120d9610e91a-947eb41e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-f099f5bf-09e3-cb56-5a97-5e09a177837e-947eb41e {
  grid-area: span 1 / span 2 / span 1 / span 2;
  place-self: center;
}

#w-node-_71274a98-37b7-896f-2f79-ebbca76a9091-e1a10cb4, #w-node-fe6205d6-e3c5-abba-3866-353b903a6546-e1a10cb4, #w-node-_931a9d77-75ed-73b5-95f4-2897babc067e-e1a10cb4, #w-node-_608055f5-a4bb-db93-3618-5c3d26d74d87-e1a10cb4, #w-node-_4cf2b4da-f03f-9568-b4ff-8e51340984ac-e1a10cb4 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0bc558dc-901a-1bc6-004e-e6a3a1a50e05-d292d1da {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#w-node-c4f4c39d-63bd-4837-8e6a-07e8565048ae-d292d1da {
  justify-self: auto;
}

#w-node-f42bea96-5cdb-0fad-e03c-e7525a199076-d292d1da {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_4bb9189f-0e7d-98bc-6035-4719252684fe-d292d1da {
  grid-column: span 2 / span 2;
}

#w-node-_74fcbb5d-7d1a-b8fc-4605-5011e0ded134-d292d1da {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

#w-node-a8c4b8d3-3d27-9a27-b52a-1b7e3b7ac72b-d292d1da {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-ed5021d2-52de-c917-8c8c-d8f023dc5817-d292d1da, #w-node-cb5148a0-bb31-da1c-0fc9-6dda303b0945-d292d1da {
  grid-column: span 2 / span 2;
}

#w-node-_05fc18d3-ff90-4f60-9a8c-5a6ef4868e48-d292d1da {
  order: -9999;
  grid-area: 1 / 1 / 2 / 3;
  justify-self: auto;
}

#w-node-d2457b9d-17a3-be6c-e880-069a20bcad75-d292d1da {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-f450f739-8df4-dcd1-4f21-d482aa973608-d292d1da {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-a7e65850-1e54-24ec-cd3f-4745fb1124fe-d292d1da {
  grid-area: 2 / 3 / 3 / 5;
}

#w-node-_8a144dcf-74c1-3b89-7f11-10bd5cf4f3e9-d292d1da {
  grid-area: 3 / 1 / 4 / 5;
}

#w-node-deba39bf-fa10-feb9-af0b-68bc54f4460a-d292d1da {
  grid-area: 4 / 1 / 5 / 5;
}

#w-node-_7699029b-ac45-b540-da05-b4f367dcb896-d292d1da {
  grid-area: 5 / 1 / 5 / 5;
  justify-self: center;
}

#w-node-_0bc558dc-901a-1bc6-004e-e6a3a1a50e05-6b27fd52 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

#w-node-c4f4c39d-63bd-4837-8e6a-07e8565048ae-6b27fd52 {
  justify-self: auto;
}

#w-node-f42bea96-5cdb-0fad-e03c-e7525a199076-6b27fd52 {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_4bb9189f-0e7d-98bc-6035-4719252684fe-6b27fd52 {
  grid-column: span 2 / span 2;
}

#w-node-_74fcbb5d-7d1a-b8fc-4605-5011e0ded134-6b27fd52 {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
}

#w-node-a8c4b8d3-3d27-9a27-b52a-1b7e3b7ac72b-6b27fd52 {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-ed5021d2-52de-c917-8c8c-d8f023dc5817-6b27fd52, #w-node-cb5148a0-bb31-da1c-0fc9-6dda303b0945-6b27fd52 {
  grid-column: span 2 / span 2;
}

#w-node-_05fc18d3-ff90-4f60-9a8c-5a6ef4868e48-6b27fd52 {
  order: -9999;
  grid-area: 1 / 1 / 2 / 3;
  justify-self: auto;
}

#w-node-d2457b9d-17a3-be6c-e880-069a20bcad75-6b27fd52 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-f450f739-8df4-dcd1-4f21-d482aa973608-6b27fd52 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-a7e65850-1e54-24ec-cd3f-4745fb1124fe-6b27fd52 {
  grid-area: 2 / 3 / 3 / 5;
}

#w-node-_8a144dcf-74c1-3b89-7f11-10bd5cf4f3e9-6b27fd52 {
  grid-area: 3 / 1 / 4 / 5;
}

#w-node-deba39bf-fa10-feb9-af0b-68bc54f4460a-6b27fd52 {
  grid-area: 4 / 1 / 5 / 5;
}

#w-node-_7699029b-ac45-b540-da05-b4f367dcb896-6b27fd52 {
  grid-area: 5 / 1 / 5 / 5;
  justify-self: center;
}

#w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-d084e2a3, #w-node-_994ec7e4-e450-b460-8848-50a3a3f2a327-18f8d58b, #w-node-_994ec7e4-e450-b460-8848-50a3a3f2a327-05780966, #w-node-_994ec7e4-e450-b460-8848-50a3a3f2a327-832e76b0, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-84e9200e, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-31bf6343, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-b9ba5087, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-2210a167, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-6ca807f8, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-2fe51931, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-4c629c95, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-a3bc7728, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-439d9fdd, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-b0e4b023, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-15cee3e7, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-4c668462, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-f48709df, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-8753398d, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-3f09db51, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-723ab127, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-df6160a5, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-5919efb9, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-4c697368, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-aff2ae53, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-11f749ac, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-ecb1b3a0, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-8758837d, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-d488c3e1, #w-node-_7e770772-13bc-fcae-21a4-58eb1a9fcbec-aff53bd3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-_91d38b27-8fda-c543-8a26-eaa851500953-8350c1e8, #w-node-_6530e764-993d-9a6a-fb13-5f4b73987873-8350c1eb, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d94b-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d94b-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d94b-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d94b-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d94b-8350c1fe {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62f1-d73b8acb, #w-node-db1d01fb-a5d0-eed8-1e7c-151b06fa2c5f-d73b8acb {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_87382470-648d-caee-4b9e-ade1dbddd36b-d20e77e8 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-_32b6b470-53e4-3f7e-7383-18a5657cf16c-b39af082, #w-node-_89fde005-dac6-b74f-bd94-cefbb7341239-b39af082, #w-node-_787cce13-b679-ec95-d2c8-0d2ae5f04b3a-b39af082, #w-node-d257804d-ea6d-0eec-b607-4820684b654e-b39af082, #w-node-_013b0448-1fac-c6f8-9e38-dedfcae9cec2-14d90d26, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62f1-3e46048c, #w-node-b64aa221-0773-2fb3-f9e0-eb0da1b28651-3e46048c, #w-node-db1d01fb-a5d0-eed8-1e7c-151b06fa2c5f-3e46048c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e9b8587f-0166-cd18-56ec-8d2df5121e01-3e46048c {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-d712075b-7f16-83b3-1844-f100a8ffb5c6-f5f9e0af, #w-node-d712075b-7f16-83b3-1844-f100a8ffb5d6-f5f9e0af, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62f1-062d0f86, #w-node-_671a8661-eb9b-bdfd-d777-78d0454c62f1-947eb41e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-bdea4b81-cc53-ef9d-44cc-6e8c291c147f-8350c192 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-bdea4b81-cc53-ef9d-44cc-6e8c291c1484-8350c192 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-feed831b-2aa3-e35d-51f9-ccf7b1403bbf-8350c192 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_065238c1-61d9-6a60-566b-e654e26c6feb-8350c1e8 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_065238c1-61d9-6a60-566b-e654e26c6ff0-8350c1e8 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_4931e583-59d6-cc7a-be0f-327628ff505e-8350c1eb {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_4931e583-59d6-cc7a-be0f-327628ff5063-8350c1eb {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_65e95f8d-9241-3fb9-d7e0-03b7a2ca79e8-8350c1ec {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_65e95f8d-9241-3fb9-d7e0-03b7a2ca79ed-8350c1ec {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-c5c142d9-11f0-fd99-d915-d1733601809a-8350c1ed {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-c5c142d9-11f0-fd99-d915-d1733601809f-8350c1ed {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0d8e6079-6d3c-2b02-a43a-5200fc24044a-8350c1ee {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_0d8e6079-6d3c-2b02-a43a-5200fc24044f-8350c1ee {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_9def7626-fa60-db95-352d-64f8dad9984c-8350c1fe {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_9def7626-fa60-db95-352d-64f8dad99851-8350c1fe {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_2b4bbe39-3500-b73f-f373-e00d5706bc51-d20e77e8 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_2b4bbe39-3500-b73f-f373-e00d5706bc56-d20e77e8 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-f42bea96-5cdb-0fad-e03c-e7525a199076-d292d1da {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_5d808b29-0765-046c-3a41-5de3ab600996-d292d1da {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-deba39bf-fa10-feb9-af0b-68bc54f4460a-d292d1da {
    grid-row-start: 3;
    grid-column-end: 5;
  }

  #w-node-_45547f0c-c837-7e14-9671-a065938bc045-d292d1da {
    justify-self: auto;
  }

  #w-node-f42bea96-5cdb-0fad-e03c-e7525a199076-6b27fd52 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_5d808b29-0765-046c-3a41-5de3ab600996-6b27fd52 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-deba39bf-fa10-feb9-af0b-68bc54f4460a-6b27fd52 {
    grid-row-start: 3;
    grid-column-end: 5;
  }

  #w-node-_45547f0c-c837-7e14-9671-a065938bc045-6b27fd52 {
    justify-self: auto;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_91d38b27-8fda-c543-8a26-eaa85150094b-8350c1e8, #w-node-e78e97a6-868f-52ff-ff8a-c00ad61ccc62-8350c1eb, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d943-8350c1ec, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d943-8350c1ed, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d943-8350c1ee, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d943-8350c1fd, #w-node-_2ae0682d-8e04-cbe0-ba2d-16502d87d943-8350c1fe, #w-node-_87382470-648d-caee-4b9e-ade1dbddd362-d20e77e8, #w-node-_9bba663d-065f-3c23-b5e9-e70d1bd0f415-724e3368, #w-node-_24ad02e9-cabb-96dd-2f0f-d112a4fb7131-724e3368, #w-node-_86588805-4b10-24df-2c7f-7dee5ef11f25-64f9229a {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_43ae7604-e4bb-404b-fca8-b3d428c8ed12-b39af082 {
    justify-self: stretch;
  }

  #w-node-e9b8587f-0166-cd18-56ec-8d2df5121df8-3e46048c {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_37b2ab39-0919-181e-f4c2-8d5380351405-d292d1da {
    place-self: auto start;
  }

  #w-node-cfa5c43b-e1e7-b650-8a81-45a01257b8d4-d292d1da {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: start;
  }

  #w-node-_0bc558dc-901a-1bc6-004e-e6a3a1a50e05-d292d1da {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  #w-node-f42bea96-5cdb-0fad-e03c-e7525a199076-d292d1da {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_5273f6df-5322-9d46-f136-acf2dd8ffa2f-d292d1da {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d453fd34-9433-5835-8143-b62b4bb7be3f-d292d1da, #w-node-_90c8afea-9e23-239b-af2e-eb60bebda38b-d292d1da, #w-node-_0ef5b92d-f26b-56ce-fcc9-e3313c8c1396-d292d1da {
    grid-column: span 2 / span 2;
  }

  #w-node-a8c4b8d3-3d27-9a27-b52a-1b7e3b7ac72b-d292d1da {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_05fc18d3-ff90-4f60-9a8c-5a6ef4868e48-d292d1da {
    order: -9999;
    grid-area: 1 / 1 / 2 / 5;
    justify-self: stretch;
  }

  #w-node-d2457b9d-17a3-be6c-e880-069a20bcad75-d292d1da {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-f450f739-8df4-dcd1-4f21-d482aa973608-d292d1da {
    grid-row: 3 / 4;
    grid-column-end: 5;
  }

  #w-node-a7e65850-1e54-24ec-cd3f-4745fb1124fe-d292d1da {
    grid-row: 4 / 5;
    grid-column-start: 1;
  }

  #w-node-_8a144dcf-74c1-3b89-7f11-10bd5cf4f3e9-d292d1da {
    grid-area: 5 / 1 / 6 / 5;
  }

  #w-node-deba39bf-fa10-feb9-af0b-68bc54f4460a-d292d1da {
    grid-row: 5 / 6;
  }

  #w-node-_7699029b-ac45-b540-da05-b4f367dcb896-d292d1da {
    grid-row: 7 / 8;
  }

  #w-node-_37b2ab39-0919-181e-f4c2-8d5380351405-6b27fd52 {
    place-self: auto start;
  }

  #w-node-cfa5c43b-e1e7-b650-8a81-45a01257b8d4-6b27fd52 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: start;
  }

  #w-node-_0bc558dc-901a-1bc6-004e-e6a3a1a50e05-6b27fd52 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  #w-node-f42bea96-5cdb-0fad-e03c-e7525a199076-6b27fd52 {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_5273f6df-5322-9d46-f136-acf2dd8ffa2f-6b27fd52 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-d453fd34-9433-5835-8143-b62b4bb7be3f-6b27fd52, #w-node-_90c8afea-9e23-239b-af2e-eb60bebda38b-6b27fd52, #w-node-_0ef5b92d-f26b-56ce-fcc9-e3313c8c1396-6b27fd52 {
    grid-column: span 2 / span 2;
  }

  #w-node-a8c4b8d3-3d27-9a27-b52a-1b7e3b7ac72b-6b27fd52 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_05fc18d3-ff90-4f60-9a8c-5a6ef4868e48-6b27fd52 {
    order: -9999;
    grid-area: 1 / 1 / 2 / 5;
    justify-self: stretch;
  }

  #w-node-d2457b9d-17a3-be6c-e880-069a20bcad75-6b27fd52 {
    grid-row: 2 / 3;
    grid-column-start: 1;
  }

  #w-node-f450f739-8df4-dcd1-4f21-d482aa973608-6b27fd52 {
    grid-row: 3 / 4;
    grid-column-end: 5;
  }

  #w-node-a7e65850-1e54-24ec-cd3f-4745fb1124fe-6b27fd52 {
    grid-row: 4 / 5;
    grid-column-start: 1;
  }

  #w-node-_8a144dcf-74c1-3b89-7f11-10bd5cf4f3e9-6b27fd52 {
    grid-area: 5 / 1 / 6 / 5;
  }

  #w-node-deba39bf-fa10-feb9-af0b-68bc54f4460a-6b27fd52 {
    grid-row: 5 / 6;
  }

  #w-node-_7699029b-ac45-b540-da05-b4f367dcb896-6b27fd52 {
    grid-row: 7 / 8;
  }
}

@media screen and (max-width: 479px) {
  #w-node-f1af617f-3522-4152-c398-8f60768c7096-2151efee {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0f35535a-b974-8027-567c-102147c39139-2151efee, #w-node-fcae5c98-9166-e88e-73c1-a5ff99bc445c-2151efee, #w-node-f099f5bf-09e3-cb56-5a97-5e09a1778376-062d0f86, #w-node-f099f5bf-09e3-cb56-5a97-5e09a177837e-062d0f86, #w-node-_2f1498cf-4bd9-6aa0-18dc-578726746704-062d0f86, #w-node-_63cc68af-4d63-a9ee-9c94-97d48b980658-062d0f86, #w-node-f099f5bf-09e3-cb56-5a97-5e09a1778376-947eb41e, #w-node-f099f5bf-09e3-cb56-5a97-5e09a177837e-947eb41e {
    grid-column: span 1 / span 1;
  }

  #w-node-_7e173842-00fa-7031-a10a-a9d60dca08c1-e1a10cb4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_71274a98-37b7-896f-2f79-ebbca76a9091-e1a10cb4, #w-node-fe6205d6-e3c5-abba-3866-353b903a6546-e1a10cb4, #w-node-_931a9d77-75ed-73b5-95f4-2897babc067e-e1a10cb4 {
    grid-column: span 1 / span 1;
  }

  #w-node-_608055f5-a4bb-db93-3618-5c3d26d74d87-e1a10cb4 {
    grid-column: span 1 / span 1;
    justify-self: center;
  }

  #w-node-_0bc558dc-901a-1bc6-004e-e6a3a1a50e05-d292d1da {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  #w-node-f42bea96-5cdb-0fad-e03c-e7525a199076-d292d1da {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_5273f6df-5322-9d46-f136-acf2dd8ffa2f-d292d1da, #w-node-d453fd34-9433-5835-8143-b62b4bb7be3f-d292d1da, #w-node-_90c8afea-9e23-239b-af2e-eb60bebda38b-d292d1da, #w-node-_0ef5b92d-f26b-56ce-fcc9-e3313c8c1396-d292d1da {
    grid-column: span 2 / span 2;
  }

  #w-node-_74fcbb5d-7d1a-b8fc-4605-5011e0ded134-d292d1da {
    grid-template-rows: auto;
    grid-template-columns: .25fr 1fr;
  }

  #w-node-_05fc18d3-ff90-4f60-9a8c-5a6ef4868e48-d292d1da {
    order: -9999;
    grid-area: 1 / 1 / 2 / 5;
    justify-self: auto;
  }

  #w-node-d2457b9d-17a3-be6c-e880-069a20bcad75-d292d1da {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-f450f739-8df4-dcd1-4f21-d482aa973608-d292d1da {
    grid-row: 3 / 4;
    grid-column-end: 5;
  }

  #w-node-a7e65850-1e54-24ec-cd3f-4745fb1124fe-d292d1da {
    grid-row: 4 / 5;
    grid-column-start: 1;
  }

  #w-node-_8a144dcf-74c1-3b89-7f11-10bd5cf4f3e9-d292d1da {
    grid-row: 5 / 6;
  }

  #w-node-deba39bf-fa10-feb9-af0b-68bc54f4460a-d292d1da {
    grid-row: 6 / 7;
    justify-self: auto;
  }

  #w-node-_7699029b-ac45-b540-da05-b4f367dcb896-d292d1da {
    grid-area: 7 / 1 / 8 / 5;
    place-self: center;
  }

  #w-node-_0bc558dc-901a-1bc6-004e-e6a3a1a50e05-6b27fd52 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  #w-node-f42bea96-5cdb-0fad-e03c-e7525a199076-6b27fd52 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_5273f6df-5322-9d46-f136-acf2dd8ffa2f-6b27fd52, #w-node-d453fd34-9433-5835-8143-b62b4bb7be3f-6b27fd52, #w-node-_90c8afea-9e23-239b-af2e-eb60bebda38b-6b27fd52, #w-node-_0ef5b92d-f26b-56ce-fcc9-e3313c8c1396-6b27fd52 {
    grid-column: span 2 / span 2;
  }

  #w-node-_74fcbb5d-7d1a-b8fc-4605-5011e0ded134-6b27fd52 {
    grid-template-rows: auto;
    grid-template-columns: .25fr 1fr;
  }

  #w-node-_05fc18d3-ff90-4f60-9a8c-5a6ef4868e48-6b27fd52 {
    order: -9999;
    grid-area: 1 / 1 / 2 / 5;
    justify-self: auto;
  }

  #w-node-d2457b9d-17a3-be6c-e880-069a20bcad75-6b27fd52 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-f450f739-8df4-dcd1-4f21-d482aa973608-6b27fd52 {
    grid-row: 3 / 4;
    grid-column-end: 5;
  }

  #w-node-a7e65850-1e54-24ec-cd3f-4745fb1124fe-6b27fd52 {
    grid-row: 4 / 5;
    grid-column-start: 1;
  }

  #w-node-_8a144dcf-74c1-3b89-7f11-10bd5cf4f3e9-6b27fd52 {
    grid-row: 5 / 6;
  }

  #w-node-deba39bf-fa10-feb9-af0b-68bc54f4460a-6b27fd52 {
    grid-row: 6 / 7;
    justify-self: auto;
  }

  #w-node-_7699029b-ac45-b540-da05-b4f367dcb896-6b27fd52 {
    grid-area: 7 / 1 / 8 / 5;
    place-self: center;
  }
}


@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamMediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamMedium_1.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/GothamBoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gothambook';
  src: url('../fonts/GothamBook.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorantgaramond';
  src: url('../fonts/CormorantGaramond-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorantgaramond';
  src: url('../fonts/CormorantGaramond-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorantgaramond';
  src: url('../fonts/CormorantGaramond-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorantgaramond';
  src: url('../fonts/CormorantGaramond-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-UltraItalic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-ThinItalic.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-XLightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Visbycf';
  src: url('../fonts/VisbyCF-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Visbycf';
  src: url('../fonts/VisbyCF-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Visbycf';
  src: url('../fonts/VisbyCF-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Visbycf';
  src: url('../fonts/VisbyCF-LightOblique.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Visbycf';
  src: url('../fonts/VisbyCF-Heavy.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Visbycf';
  src: url('../fonts/VisbyCF-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Visbycf';
  src: url('../fonts/VisbyCF-RegularOblique.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Visbycf';
  src: url('../fonts/VisbyCF-HeavyOblique.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Visbycf';
  src: url('../fonts/VisbyCF-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Visbycf';
  src: url('../fonts/VisbyCF-ThinOblique.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Visbycf';
  src: url('../fonts/VisbyCF-DemiBoldOblique.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Visbycf';
  src: url('../fonts/VisbyCF-BoldOblique.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Visbycf';
  src: url('../fonts/VisbyCF-MediumOblique.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}