:root {
  --dark: #0e1a1f;
  --white: white;
  --light-blue: #4f69da;
  --blue: #3252db;
  --light-gray: gainsboro;
}

.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-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-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-users-userformpagewrap {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: 340px;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.w-users-userloginformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-userformheader {
  text-align: center;
}

.w-users-userformbutton {
  text-align: center;
  width: 100%;
}

.w-users-userformfooter {
  justify-content: space-between;
  margin-top: 12px;
  display: flex;
}

.w-users-userformerrorstate {
  margin-left: 20px;
  margin-right: 20px;
  position: absolute;
  top: 100%;
  left: 0%;
  right: 0%;
}

.w-users-usersignupformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-userformsuccessstate {
  display: none;
}

.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-users-usersignupverificationmessage {
  display: none;
}

.w-users-userresetpasswordformwrapper, .w-users-userupdatepasswordformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-useraccountwrapper {
  background-color: #f5f5f5;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
}

.w-users-blockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-users-blockcontent {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  margin-bottom: 20px;
  padding: 20px;
}

.w-users-useraccountformsavebutton {
  text-align: center;
  margin-right: 8px;
}

.w-users-useraccountformcancelbutton {
  text-align: center;
  color: #333;
  background-color: #d3d3d3;
}

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}

h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

p {
  margin-bottom: 16px;
}

a {
  color: var(--light-blue);
  text-decoration: none;
  transition: color .6s cubic-bezier(.165, .84, .44, 1);
}

a:hover {
  color: var(--white);
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-bottom: 8px;
  display: inline-block;
}

blockquote {
  border-left: 3px solid var(--light-blue);
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 16px 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

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

.section.double-top {
  padding-top: 0;
}

.section.double-bottom {
  padding-bottom: 160px;
  overflow: hidden;
}

.section.image-background {
  -webkit-text-fill-color: inherit;
  background-image: url('../images/BlueWillow-home-background.png');
  background-position: 0 0;
  background-size: cover;
  background-clip: border-box;
  padding-top: 176px;
  padding-bottom: 176px;
  position: relative;
}

.section.image-background.short {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section.secondary-page {
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
  padding-top: 160px;
}

.section.background {
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
  padding-top: 112px;
  padding-bottom: 112px;
}

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

.section.no-bottom-padding {
  padding-bottom: 0;
}

.section.double {
  padding-top: 160px;
  padding-bottom: 160px;
}

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

.container.wide {
  max-width: 100%;
}

._12-columns {
  grid-row-gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

._12-columns.justify-left {
  justify-content: flex-start;
}

._12-columns.space-between {
  justify-content: space-between;
  align-items: center;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}

._12-columns.align-top {
  align-items: flex-start;
}

._12-columns.align-stretch {
  align-items: stretch;
}

._12-columns.align-bottom {
  align-items: flex-end;
}

.heading.xxl {
  margin-top: 0;
  margin-bottom: 32px;
  font-size: 82px;
  font-weight: 600;
  line-height: 1.2;
}

.heading.xl {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.2;
}

.heading.l {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 56px;
  line-height: 1.2;
}

.heading.m {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 44px;
  line-height: 1.3;
}

.heading.s {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
}

.heading.xs {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.heading.xxs {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.paragraph {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}

.paragraph.s {
  margin-bottom: 16px;
  font-size: 16px;
}

.paragraph.xs {
  margin-bottom: 0;
  font-size: 14px;
}

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

.dark.outline {
  border: 1px solid rgba(74, 197, 223, .2);
}

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

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

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

.gradient {
  background-image: linear-gradient(135deg, var(--blue), var(--light-blue));
}

.gradient-light {
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
}

.column {
  padding-left: 16px;
  padding-right: 16px;
}

.column.desktop-1 {
  width: 8.33%;
}

.column.desktop-2 {
  width: 16.66%;
}

.column.desktop-3 {
  width: 25%;
}

.column.desktop-4 {
  width: 33.33%;
}

.column.desktop-4.tablet-12 {
  width: 25%;
}

.column.desktop-4.tablet-12.fade-in {
  width: 33%;
  margin-top: -30px;
}

.column.desktop-4.tablet-6.mobile-12.scale-up {
  width: 33%;
}

.column.desktop-5 {
  width: 41.66%;
}

.column.desktop-6 {
  width: 50%;
}

.column.desktop-6.tablet-12 {
  width: 70%;
}

.column.desktop-6.tablet-8.mobile-12 {
  text-align: center;
}

.column.desktop-7 {
  width: 58.33%;
}

.column.desktop-8 {
  width: 66.66%;
}

.column.desktop-8.tablet-12 {
  text-align: center;
  width: 80%;
}

.column.desktop-9 {
  width: 75%;
}

.column.desktop-10 {
  width: 83.33%;
}

.column.desktop-11 {
  width: 91.66%;
}

.column.desktop-12 {
  width: 100%;
}

.column.desktop-0 {
  width: 0%;
  display: none;
}

.button {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(135deg, var(--blue), var(--light-blue));
  color: #fff;
  text-align: center;
  border-radius: 100vw;
  padding: 1px;
  text-decoration: none;
  transition: transform .6s cubic-bezier(.165, .84, .44, 1), box-shadow .6s cubic-bezier(.165, .84, .44, 1);
  box-shadow: 0 0 rgba(0, 0, 0, 0);
}

.button:hover {
  transform: scale(1.03)translate(0, -8px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, .25);
}

.button.tertiary {
  box-shadow: none;
  background-image: none;
  border-radius: 0;
  padding: 0;
  transition-property: none;
  position: relative;
}

.button.tertiary:hover {
  transform: none;
}

.button.navigation {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--white);
  flex: 0 auto;
  align-items: center;
  margin-left: 16px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
}

.button.navigation:hover {
  transform: translate(0, -4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.button.navigation.lw_green_bg {
  background-image: linear-gradient(#00934b, #00934b);
}

.button.navigation.get_started {
  text-align: center;
  width: 200px;
  height: 60px;
  margin-top: 10px;
}

.button.cta-navigation {
  color: var(--dark);
  margin-left: 16px;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.button.cta-navigation:hover {
  transform: translate(0, -4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.button.secondary {
  color: var(--light-blue);
  transition-property: transform, color;
}

.button.secondary:hover {
  box-shadow: none;
  color: var(--white);
  transform: none;
}

.button.secondary.button-text {
  color: #fff;
}

.button.form {
  border: 1px solid var(--light-blue);
  background-image: linear-gradient(135deg, rgba(50, 82, 219, .3), rgba(79, 105, 218, .3));
  margin-top: 8px;
  padding: 16px 32px;
  font-size: 18px;
  line-height: 1.2;
}

.button.prompt_submit {
  border: 1.5px solid var(--blue);
  background-image: url('../images/next.png'), linear-gradient(#203058, #203058);
  background-position: 90%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 20px 20px, auto;
  background-attachment: scroll, scroll;
  width: 235px;
  height: 60px;
  padding-left: 0;
  padding-right: 30px;
  font-size: 18px;
  font-weight: 400;
}

.button-text {
  background-color: #0e1a1f;
  background-image: linear-gradient(135deg, rgba(50, 82, 219, .3), rgba(79, 105, 218, .3));
  border-radius: 100vw;
  padding: 18px 40px;
  font-size: 18px;
  line-height: 1.2;
}

.button-text.tertiary {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-radius: 0;
  padding: 10px;
}

.button-text.secondary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border: 1px solid var(--blue);
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
  justify-content: center;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
}

.button-text.secondary.small {
  cursor: pointer;
  padding: 7px 20px;
  font-size: 14px;
}

.button-text.secondary.small.is-active {
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--blue), var(--blue));
}

.spacer {
  width: 8px;
  height: 8px;
}

.spacer._16 {
  width: 16px;
  height: 16px;
}

.spacer._24 {
  flex: none;
  width: 24px;
  height: 24px;
}

.spacer._32 {
  width: 32px;
  height: 32px;
}

.spacer._40 {
  width: 40px;
  height: 40px;
}

.spacer._48 {
  width: 48px;
  height: 48px;
}

.spacer._72 {
  width: 72px;
  height: 72px;
}

.button-border {
  opacity: .25;
  background-image: linear-gradient(135deg, #11cca8, #4ac5df);
  width: 100%;
  height: 1.5px;
  position: absolute;
}

.button-border.hover {
  opacity: 1;
  width: 0%;
}

.lead-in {
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  background-color: #cbced8;
  background-image: none;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  display: inline-block;
}

.lead-in-container {
  background-image: linear-gradient(135deg, rgba(50, 82, 219, .15), rgba(79, 105, 218, .15));
  border-radius: 8px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 24px;
  padding: 0 16px;
  display: flex;
}

.lead-in-container.bottom {
  margin-top: 8px;
  margin-bottom: 0;
}

.horizontal-rule {
  background-image: linear-gradient(135deg, var(--blue), var(--light-blue));
  width: 100%;
  height: 1px;
}

.horizontal-rule.light {
  opacity: .2;
}

.checklist-item {
  text-align: left;
  display: flex;
}

.rounded-image {
  border-radius: 32px;
}

.checkmark {
  width: 22px;
  height: 22px;
  margin-top: 4px;
  margin-right: 16px;
}

.checkmark.large {
  width: 32px;
  height: 32px;
  margin-top: 0;
  margin-right: 0;
}

.checkmark.disabled {
  opacity: .4;
}

.checkmark.small {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  margin-right: 12px;
}

.checklist {
  margin-top: 32px;
}

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

.grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  display: grid;
}

.grid._4-column-with-dividers {
  grid-template-columns: 1fr .25fr 1fr .25fr 1fr .25fr 1fr;
  align-items: center;
}

.grid._2-column {
  grid-row-gap: 48px;
  grid-template-columns: 1fr 1fr;
}

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

.icon-circle {
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .1), rgba(74, 197, 223, .1));
  border-radius: 100vw;
  justify-content: center;
  align-items: center;
  width: 104px;
  height: 104px;
  margin-bottom: 32px;
  display: flex;
  position: relative;
}

.icon-circle.middle {
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .2), rgba(74, 197, 223, .2));
  width: 80%;
  height: 80%;
  margin-top: 0;
  margin-bottom: 0;
  position: absolute;
}

.icon-circle.inner {
  background-image: linear-gradient(135deg, #11cca8, #4ac5df);
  width: 50%;
  height: 50%;
  margin-top: 0;
  margin-bottom: 0;
  position: absolute;
}

.icon-circle.l {
  width: 128px;
  height: 128px;
}

.icon-circle.outline {
  border: 1px solid var(--light-blue);
  background-image: none;
  flex: none;
  width: 48px;
  height: 48px;
}

.icon {
  margin-bottom: 0;
}

.icon.s {
  width: 53%;
  height: 53%;
}

.icon.xs {
  width: 40%;
  height: 40%;
}

.icon-card {
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05));
  border-radius: 32px;
  height: 100%;
  padding: 72px;
}

.image-card {
  color: var(--white);
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05));
  border-radius: 32px;
  height: 100%;
  text-decoration: none;
}

.image-card:hover {
  color: var(--white);
}

.image-card-text {
  padding: 32px 32px 16px;
}

.image-background {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-background.grid {
  opacity: .3;
}

.image-overlay {
  background-color: rgba(14, 26, 31, 0);
  background-image: linear-gradient(to top, rgba(14, 26, 31, 0) 80%, var(--dark)), linear-gradient(to bottom, rgba(14, 26, 31, 0) 80%, var(--dark)), linear-gradient(to bottom, rgba(14, 26, 31, .6), rgba(14, 26, 31, .6));
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-overlay.grid {
  background-image: linear-gradient(to right, rgba(14, 26, 31, 0), var(--dark) 40%, #0e1a1f 60%, rgba(14, 26, 31, 0));
}

.image-background-text {
  z-index: 10;
  position: relative;
}

.component-lead-in {
  margin-top: 80px;
  margin-bottom: 32px;
}

.image-wrapper {
  border-radius: 32px;
  padding-bottom: 68%;
  display: block;
  position: relative;
  overflow: hidden;
}

.image-wrapper.no-rounding {
  border-radius: 0;
}

.image-wrapper.tall {
  padding-bottom: 108%;
}

.image-wrapper.extra-tall {
  padding-bottom: 125%;
}

.image-wrapper.landing-page-image {
  border-radius: 16px;
  padding-bottom: 64%;
}

.image-wrapper.icons {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05));
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 500px;
  padding-bottom: 0%;
  display: flex;
}

.image {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image.no-cropping {
  object-fit: contain;
}

.button-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 56px;
  display: flex;
}

.button-wrapper.center {
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
}

.button-wrapper.pricing {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-top: 24px;
}

.large-hero-wrapper {
  margin-top: 64px;
}

.form-block-outer {
  background-image: linear-gradient(135deg, var(--blue), var(--light-blue));
  border-radius: 100vw;
  padding: 1px;
  display: flex;
}

.form-field {
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(79, 105, 218, .3);
  border-radius: 4px;
  margin-bottom: 0;
  padding: 32px;
  font-size: 18px;
  line-height: 1.5;
}

.form-field:focus {
  border-color: var(--light-blue);
}

.form-field::placeholder {
  color: rgba(255, 255, 255, .5);
}

.form-field.text-area {
  min-width: 100%;
  max-width: 100%;
  min-height: 192px;
  padding-top: 20px;
}

.form-field.dropdown {
  height: 68px;
  margin-bottom: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.form-field.sign-up-form {
  border: 0 rgba(0, 0, 0, 0);
  padding: 24px 32px;
}

.form-block-inner {
  background-color: var(--dark);
  border-radius: 100vw;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 6px;
  display: flex;
}

.form-button {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(135deg, var(--blue), var(--light-blue));
  color: var(--dark);
  border-radius: 100vw;
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  transition: color .15s;
}

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

.form-button.small {
  padding: 12px 32px;
  font-size: 16px;
}

.email-sign-up-form {
  margin-top: 56px;
  margin-bottom: 0;
}

.alternating-wrapper {
  grid-row-gap: 160px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.heading-wrapper {
  margin-bottom: 40px;
}

.heading-wrapper.large {
  margin-bottom: 72px;
}

.outline-card {
  border: 1px solid var(--light-blue);
  border-radius: 32px;
  height: 100%;
  padding: 48px;
}

.icon-list-item {
  align-items: flex-start;
  margin-bottom: 8px;
  display: flex;
}

.icon-text {
  padding-top: 6px;
}

.nav-bar {
  background-color: rgba(0, 0, 0, 0);
}

.nav-bar.bottom-line {
  border-bottom: 1px solid rgba(74, 197, 223, .2);
}

.nav-wrapper {
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
}

.nav-wrapper.center {
  justify-content: center;
}

.brand {
  align-self: flex-end;
  width: 140px;
  margin: -8px;
  padding: 0 8px 8px;
}

.brand.w--current {
  object-fit: fill;
  flex: 0 auto;
  align-self: flex-end;
}

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

.brand.footer-logo.large {
  width: 236px;
  margin-bottom: 0;
}

.nav-link {
  color: var(--white);
  margin-left: 8px;
  margin-right: 8px;
  padding: 0 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  transition: transform .6s cubic-bezier(.165, .84, .44, 1), color .6s cubic-bezier(.165, .84, .44, 1);
  display: inline-block;
}

.nav-link:hover {
  color: rgba(255, 255, 255, .7);
  transform: translate(0, -4px);
}

.nav-link.w--current {
  color: var(--white);
}

.nav-button-wrapper {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.nav-button-wrapper.mobile-hidden {
  display: flex;
}

.hamburger-line {
  background-color: #e2641a;
  width: 32px;
  height: 1px;
  position: absolute;
  top: 16px;
  bottom: auto;
  left: auto;
  right: 8px;
}

.hamburger-line.middle {
  width: 18px;
  top: 24px;
}

.hamburger-line.bottom {
  width: 24px;
  top: 32px;
}

.desktop-hidden {
  display: none;
}

.mobile-hidden {
  display: block;
}

.cta-nav-link {
  color: var(--white);
  margin-left: 8px;
  margin-right: 8px;
  padding: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  transition: transform .6s cubic-bezier(.165, .84, .44, 1), color .6s cubic-bezier(.165, .84, .44, 1);
}

.cta-nav-link:hover {
  color: rgba(255, 255, 255, .7);
  transform: translate(0, -4px);
}

.cta-nav-link.w--current {
  color: var(--white);
}

.nav-bar-floating {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 24px;
  padding-bottom: 24px;
}

.nav-wrapper-floating {
  background-image: linear-gradient(135deg, rgba(50, 82, 219, .05), rgba(79, 105, 218, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  padding: 32px 40px;
  display: flex;
  box-shadow: 35px 0 70px rgba(0, 0, 0, .25);
}

.sticky {
  z-index: 9999;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.nav-menu-floating {
  background-color: rgba(0, 0, 0, 0);
  justify-content: space-between;
  width: auto;
  display: flex;
}

.announcement-banner {
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
  text-align: center;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  position: relative;
}

.announcement-close {
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 8px;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: auto;
  right: 48px;
  overflow: hidden;
  transform: translate(0, -50%);
}

.announcement-wrapper {
  padding: 16px;
}

.tab {
  color: var(--light-blue);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 100vw;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 40px;
  font-weight: 500;
  transition-duration: 0s;
  display: flex;
  position: static;
}

.tab:hover, .tab:active {
  color: var(--light-blue);
}

.tab.w--current {
  background-image: linear-gradient(135deg, var(--blue), var(--light-blue));
  color: var(--dark);
}

.tabs-menu {
  border: 1px solid var(--light-blue);
  border-radius: 100vw;
  margin-bottom: 48px;
  padding: 6px;
  font-size: 16px;
  line-height: 1.2;
  display: flex;
}

.tabs-menu.small {
  align-self: flex-end;
  margin-bottom: 24px;
  padding: 5px;
  font-size: 14px;
}

.tabs-content {
  width: 100%;
  overflow: visible;
}

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

.tabs.right-align {
  margin-top: 16px;
}

.pricing-card {
  background-image: linear-gradient(135deg, rgba(50, 82, 219, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 32px;
  padding: 40px;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--light-blue);
  background-image: none;
}

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

.pricing-row {
  align-items: baseline;
  margin-top: 24px;
  display: flex;
}

.pricing-row.center {
  justify-content: center;
}

.price {
  background-image: linear-gradient(135deg, var(--blue), var(--light-blue));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 16px;
  margin-right: 8px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

.pricing-small-text {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.most-popular-callout {
  background-image: linear-gradient(135deg, var(--blue), var(--light-blue));
  color: var(--dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100vw;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  position: absolute;
  top: -20px;
  bottom: auto;
  left: 40px;
  right: auto;
}

.pricing-card-wide {
  border: 1px solid var(--light-blue);
  border-radius: 32px;
  display: flex;
}

.pricing-card-left {
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
  border-radius: 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 43%;
  padding: 48px;
  display: flex;
}

.pricing-card-right {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 40px 48px 48px;
}

.free-trial-wrapper {
  justify-content: center;
  align-items: flex-start;
  margin-top: 24px;
  display: flex;
}

.free-trial-item {
  text-align: left;
  margin-left: 12px;
  margin-right: 12px;
  display: flex;
}

.callout-box {
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
  border-radius: 32px;
  padding: 96px;
}

.callout-box.scale-up {
  background-image: linear-gradient(135deg, rgba(50, 82, 219, .05), rgba(79, 105, 218, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
}

.callout-box.form {
  padding: 72px;
}

.number-wrapper {
  width: 100%;
  margin-bottom: -16px;
}

.number {
  background-image: linear-gradient(135deg, var(--blue), var(--light-blue));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 8px;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  display: inline-block;
}

.number.small {
  font-size: 44px;
}

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

.vertical-rule {
  background-color: rgba(255, 255, 255, .2);
  width: 1px;
  height: 50%;
}

.outline-card-text-wrapper {
  margin-bottom: -16px;
}

.logo {
  opacity: .3;
  object-fit: contain;
  width: auto;
  padding: 16px;
}

.testimonial-logo {
  opacity: .3;
  width: 162px;
  height: auto;
}

.testimonial {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.3;
}

.testimonial.small {
  margin-bottom: 24px;
  font-size: 32px;
}

.testimonial-author {
  color: var(--light-blue);
  display: inline-block;
}

.features-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  margin-bottom: 32px;
}

.features-grid.full {
  grid-template-columns: 2fr;
}

.features-grid.split {
  grid-template-columns: 1fr 1fr;
}

.features-grid-card {
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
  border-radius: 32px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 48px 48px 32px;
  display: flex;
  overflow: hidden;
}

.features-grid-card.horizontal {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  padding: 56px 72px;
  display: grid;
}

.features-grid-image {
  object-fit: contain;
  height: auto;
}

.features-grid-image-wrapper {
  position: relative;
}

.features-grid-image-wrapper.full {
  margin-bottom: -32px;
  margin-left: -48px;
  margin-right: -48px;
}

.features-grid-image-wrapper.full-top {
  margin-top: -48px;
  margin-left: -48px;
  margin-right: -48px;
}

.gradient-fade {
  background-image: linear-gradient(rgba(16, 35, 40, 0), #102328);
  width: 100%;
  height: 96px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.faq-item {
  color: var(--white);
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  width: 100%;
  padding: 28px 24px 16px;
  text-decoration: none;
}

.faq-item.large {
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
  border-bottom-style: none;
  border-radius: 32px;
  margin-bottom: 8px;
  padding: 16px 40px 8px;
}

.faq-item.large.scale-up {
  margin-bottom: 8px;
  padding-top: 16px;
  padding-bottom: 2px;
}

.question {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-top: 0;
  display: flex;
}

.question-heading {
  color: var(--white);
  margin-bottom: 0;
  padding-right: 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.question-heading.s {
  margin-bottom: 16px;
  padding-right: 0;
  font-size: 24px;
}

.question-heading.xs {
  background-image: linear-gradient(135deg, var(--blue), var(--light-blue));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 16px;
  padding-right: 0;
  font-size: 20px;
  line-height: 1.5;
  display: inline-block;
}

.answer {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 0;
  display: flex;
  overflow: hidden;
}

.faq-plus {
  border: 2px solid var(--light-blue);
  border-radius: 100vw;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: relative;
}

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

.image-marquee-wrapper {
  overflow: hidden;
}

.image-marquee-wrapper.cta {
  margin-top: 72px;
}

.image-marquee-row {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 24px;
  display: flex;
}

.marquee-image-wrapper {
  border-radius: 16px;
  flex: none;
  width: 36%;
  padding-bottom: 20.5%;
  position: relative;
  overflow: hidden;
}

.marquee-image {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.footer {
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
  font-size: 18px;
}

.footer.no-background {
  background-image: none;
}

.footer-top {
  padding-top: 96px;
  padding-bottom: 96px;
}

.footer-top.s {
  padding-top: 72px;
  padding-bottom: 72px;
}

.footer-top.xs {
  padding-top: 40px;
  padding-bottom: 40px;
}

.footer-item-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-item-wrapper.center {
  align-items: center;
}

.footer-links-wrapper {
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer-link {
  color: var(--white);
  margin: -8px;
  padding: 8px;
  text-decoration: none;
  transition: transform .6s cubic-bezier(.165, .84, .44, 1), color .6s cubic-bezier(.165, .84, .44, 1);
}

.footer-link:hover {
  color: rgba(255, 255, 255, .7);
  transform: translate(8px);
}

.footer-left {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.footer-bottom {
  border-top: 1px solid rgba(74, 197, 223, .3);
  padding-top: 16px;
  padding-bottom: 16px;
}

.footer-bottom.no-border {
  border-top-style: none;
  padding-top: 0;
}

.link-light {
  color: rgba(255, 255, 255, .6);
}

.link-light:hover {
  color: var(--light-blue);
}

.footer-text {
  margin-bottom: 0;
  font-size: 12px;
}

.footer-social-links {
  display: flex;
}

.social-link {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  margin-right: 16px;
  padding: 4px;
  transition: transform .6s cubic-bezier(.165, .84, .44, 1), opacity .6s, color .6s cubic-bezier(.165, .84, .44, 1);
  display: flex;
}

.social-link:hover {
  opacity: .7;
  transform: translate(0, -6px);
}

.form-label {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  display: inline-block;
}

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

.compare-grid-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
  border-radius: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr .5fr .5fr;
  grid-auto-columns: 1fr;
  padding: 32px 40px;
  display: grid;
}

.compare-grid-row.no-background {
  background-image: none;
}

.compare-grid-row.header-row {
  background-image: none;
  padding-top: 0;
}

.compare-grid-row._2-column {
  grid-template-columns: 1fr .5fr .5fr;
  padding-left: 32px;
  padding-right: 32px;
}

.compare-subhead {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
}

.compare-subhead.small {
  margin-bottom: 0;
  font-size: 20px;
}

.compare-body {
  margin-bottom: 0;
  font-size: 16px;
}

.compare-checkmark-wrapper {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.compare-label {
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.4;
}

.compare-label.large {
  letter-spacing: 0;
  text-transform: none;
  font-size: 20px;
  font-weight: 600;
}

.compare-text {
  color: var(--light-blue);
  margin-bottom: 0;
}

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

.sg-lead-in {
  background-image: linear-gradient(135deg, var(--blue), var(--light-blue));
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  display: inline-block;
}

.sg-headline-wrapper {
  margin-bottom: 48px;
}

.sg-grid-column {
  background-color: rgba(74, 197, 223, .1);
  width: 100%;
  height: 100px;
}

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

.form-radio-button {
  margin-bottom: 16px;
  padding-left: 0;
  font-size: 18px;
}

.radio-button {
  border-color: var(--light-blue);
  width: 24px;
  height: 24px;
  margin-top: 3px;
  margin-left: 0;
  margin-right: 12px;
}

.radio-button.w--redirected-checked {
  border-width: 1px;
  border-color: var(--light-blue);
  background-color: var(--light-blue);
}

.form-checkbox {
  margin-bottom: 24px;
  padding-left: 0;
  font-size: 18px;
}

.check-box {
  border-color: var(--light-blue);
  border-radius: 2px;
  width: 24px;
  height: 24px;
  margin-top: 3px;
  margin-left: 0;
  margin-right: 12px;
}

.check-box.w--redirected-checked {
  border-color: var(--light-blue);
  background-color: var(--light-blue);
  background-position: 50%;
  background-size: 16px;
}

.sg-navigation {
  background-image: linear-gradient(to bottom, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
}

.sg-navigation.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.sg-nav-menu {
  float: none;
  margin-left: -16px;
  margin-right: -16px;
}

.sg-nav-link {
  color: rgba(254, 247, 241, .8);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  margin-right: 8px;
  padding: 12px 20px;
  font-size: 16px;
  transition: border-color .3s, opacity .3s;
}

.sg-nav-link:hover {
  border-bottom-color: var(--light-blue);
  color: #fef7f1;
}

.sg-nav-link.w--current {
  border-bottom-color: var(--light-blue);
  color: var(--white);
}

.horizontal-heading {
  flex-wrap: wrap;
  display: flex;
}

.heading-text-wrapper {
  width: 50%;
}

.compare-logo {
  object-fit: contain;
  width: 200px;
}

.announcement-text p {
  margin-bottom: 0;
}

.faq-answer {
  font-size: 16px;
}

.faq-answer h1, .faq-answer h2, .faq-answer h3, .faq-answer h4, .faq-answer h5 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.75;
}

.faq-answer h6 {
  margin-bottom: 8px;
  line-height: 1.75;
}

.marquee-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.marquee-item {
  grid-column-gap: 16px;
  border: 1px solid rgba(74, 197, 223, .5);
  border-radius: 8px;
  flex: none;
  align-items: center;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 1.2;
  display: flex;
}

.icon-28px {
  width: 28px;
  height: 28px;
  margin-bottom: 0;
}

.marquee-outer {
  justify-content: center;
  width: 100%;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.horizontal-fade {
  background-image: linear-gradient(270deg, rgba(14, 26, 31, 0), #0e1a1f);
  width: 128px;
  height: 100%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.horizontal-fade.right {
  background-image: linear-gradient(to right, rgba(14, 26, 31, 0), #0e1a1f);
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.landing-page-card {
  color: var(--white);
  text-align: center;
  width: 100%;
  margin-bottom: 48px;
  text-decoration: none;
  transition: transform .8s cubic-bezier(.165, .84, .44, 1);
}

.landing-page-card:hover {
  color: var(--white);
  transform: translate(0, -16px);
}

.rich-text h5 {
  margin-top: 32px;
}

.rich-text h6 {
  margin-top: 24px;
}

.rich-text h4, .rich-text h3 {
  margin-top: 32px;
}

.rich-text h2, .rich-text h1 {
  margin-top: 48px;
}

.rich-text p {
  font-size: 18px;
}

.rich-text li {
  margin-bottom: 16px;
}

.rich-text ol {
  font-size: 18px;
}

.icon-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  align-items: center;
  display: flex;
}

.cl-item {
  border-top: 1px solid rgba(17, 204, 168, .2);
  border-bottom: 1px solid rgba(17, 204, 168, .2);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 32px 32px 16px;
  display: flex;
}

.cl-heading-wrapper {
  align-items: baseline;
  display: flex;
}

.cl-date {
  margin-left: 8px;
  font-size: 16px;
}

.cl-text-wrapper {
  width: 50%;
}

.logo-image {
  object-fit: contain;
  height: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  position: static;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding-top: 128px;
  padding-bottom: 128px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 55%;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.form-block {
  text-align: left;
  width: 100%;
}

.form-helper-text {
  color: rgba(255, 255, 255, .7);
  margin-top: 12px;
  font-size: 14px;
}

.sign-up-form {
  flex-direction: column;
  display: flex;
}

.sign-up-text {
  margin-top: 32px;
  margin-bottom: 0;
  font-size: 14px;
}

.form-success {
  background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
  border-radius: 8px;
  padding: 32px;
  font-size: 18px;
}

.form-error {
  border: 1px solid var(--light-blue);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 8px;
  margin-top: 24px;
  padding: 24px 32px;
  font-size: 18px;
}

.checkbox-label {
  display: inline;
}

.paragraph-2 {
  margin-bottom: 40px;
}

.text-span {
  font-family: Ubuntu, Helvetica, sans-serif;
}

.background-video {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  width: 100%;
  height: 100%;
}

.link, .link.w--current {
  font-size: 12px;
}

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

.text-block {
  color: var(--light-gray);
  margin-top: -10px;
  padding-bottom: 10px;
  padding-left: 0;
  font-size: 14px;
  font-style: normal;
  text-decoration: none;
}

.div-block {
  padding-bottom: 10px;
}

.blog-block {
  color: var(--light-blue);
  background-color: rgba(79, 105, 218, .15);
  border-radius: 16px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
  padding-bottom: 20px;
  text-decoration: none;
  display: flex;
}

.container-2 {
  padding-right: 0;
}

.collection-items {
  display: flex;
}

.collection-list-wrapper {
  padding-left: 10px;
  padding-right: 10px;
}

.div-block-2 {
  max-width: 800px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.div-block-3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: column;
  margin-top: -20px;
  display: flex;
}

.text-block-2 {
  color: var(--light-gray);
  font-size: 14px;
}

.image-2 {
  object-fit: cover;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  height: 100%;
  min-height: 0;
  max-height: 200px;
}

.blog-content-container {
  max-height: 200px;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.paragraph-5 {
  color: var(--light-gray);
  text-transform: none;
  white-space: normal;
  height: auto;
  max-height: 75px;
  font-size: 14px;
  overflow: hidden;
}

.rich-text-block {
  margin-top: 30px;
}

.text-block-3 {
  color: var(--light-gray);
  margin-top: 10px;
  font-size: 14px;
}

.text-block-4 {
  margin-top: -5px;
}

.circle {
  border: 2px solid var(--blue);
  border-radius: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.paragraph-6 {
  text-align: center;
  margin-bottom: 0;
  padding-top: 2px;
}

.success-message {
  background-color: rgba(0, 0, 0, 0);
}

.error-message {
  background-color: rgba(218, 79, 79, .66);
  border-radius: 20px;
  padding-left: 10px;
}

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

.div-block-5 {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  display: flex;
}

.div-block-6 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  display: flex;
}

.text-block-6 {
  color: var(--white);
  text-align: center;
  white-space: nowrap;
  word-break: keep-all;
  flex: 0 auto;
  width: 100%;
  text-decoration: none;
}

.image-3 {
  width: 16px;
  height: auto;
  margin-bottom: 0;
}

.div-block-7 {
  padding-bottom: 0;
}

.column-copy {
  padding-left: 16px;
  padding-right: 16px;
}

.column-copy.desktop-1 {
  width: 8.33%;
}

.column-copy.desktop-2 {
  width: 16.66%;
}

.column-copy.desktop-3 {
  width: 25%;
}

.column-copy.desktop-4 {
  width: 33.33%;
}

.column-copy.desktop-4.tablet-6.mobile-12.scale-up {
  width: 100%;
}

.column-copy.desktop-5 {
  width: 41.66%;
}

.column-copy.desktop-6 {
  width: 50%;
}

.column-copy.desktop-6.tablet-12 {
  width: 70%;
}

.column-copy.desktop-6.tablet-8.mobile-12 {
  text-align: center;
}

.column-copy.desktop-7 {
  width: 58.33%;
}

.column-copy.desktop-8 {
  width: 66.66%;
}

.column-copy.desktop-8.tablet-12 {
  text-align: center;
  width: 80%;
}

.column-copy.desktop-9 {
  width: 75%;
}

.column-copy.desktop-10 {
  width: 83.33%;
}

.column-copy.desktop-11 {
  width: 91.66%;
}

.column-copy.desktop-12 {
  width: 100%;
}

.column-copy.desktop-0 {
  width: 0%;
  display: none;
}

.div-block-8, .column-2 {
  height: 100%;
}

.heading-3 {
  padding-left: 20px;
}

.rich-text-block-2 {
  font-size: 12px;
}

.text-span-2 {
  color: var(--light-gray);
}

.paragraph-7, .paragraph-8 {
  font-size: 14px;
}

.image-4 {
  width: 8px;
  max-width: none;
  height: auto;
  margin-bottom: 0;
}

.div-block-9 {
  background-color: var(--light-blue);
  object-fit: none;
  border-radius: 20px;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  padding: 8px 8px 8px 10px;
  display: flex;
}

.div-block-10 {
  justify-content: center;
  width: 100%;
  display: flex;
}

.lightbox-link {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  display: flex;
}

.column-3 {
  padding-left: 20px;
}

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

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

.form-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.container-3 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  padding-left: 0;
  display: flex;
}

.column-4 {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-11 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: column;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.columns {
  order: -1;
  align-self: auto;
  display: block;
}

.glossary-section {
  width: 100%;
  padding-top: 4px;
  padding-left: 8px;
  padding-right: 8px;
  overflow: visible;
}

.div-block-13 {
  justify-content: space-between;
  display: flex;
}

.image-5 {
  width: 50%;
  height: 50%;
  margin-bottom: 0;
}

.image-6 {
  max-width: 400px;
}

.heading-4 {
  margin-bottom: 0;
  padding-left: 10px;
  padding-right: 10px;
}

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

.header-plus {
  border: 2px solid var(--light-blue);
  border-radius: 100vw;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  display: flex;
  position: relative;
}

.glossary-prompts {
  overflow: hidden;
}

.category-header {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-top: 0;
  display: flex;
}

.header-chevron {
  width: 20px;
}

.text-block-7, .icon-2 {
  color: var(--white);
}

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

.div-block-15 {
  align-self: center;
}

.blog-image {
  min-width: 100%;
}

.image-7 {
  width: 50%;
  max-width: none;
  height: 50%;
  margin-bottom: 0;
}

.image-8 {
  max-width: 200px;
  margin-bottom: 0;
}

.image-9, .image-10 {
  width: 100px;
  height: auto;
}

.collection-list-wrapper-2 {
  display: block;
}

.link-2 {
  overflow: visible;
}

.link-3, .link-4 {
  display: none;
}

.image-11 {
  width: 150px;
}

.heading-5 {
  padding-left: 16px;
}

.dropdown-2 {
  position: absolute;
  top: 25%;
  bottom: 25%;
  left: auto;
  right: 1%;
  overflow: visible;
}

.text-block-8, .icon-3, .dropdown-list {
  color: var(--light-gray);
}

.dropdown-list.w--open {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  object-fit: fill;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(rgba(50, 82, 219, .05), rgba(50, 82, 219, .05));
  border-radius: 5px;
  flex-flow: column;
  width: 150px;
  max-width: 100px;
  margin-top: 10px;
  display: block;
  position: absolute;
  left: auto;
  right: auto;
}

.dropdown-link {
  color: var(--white);
  cursor: pointer;
  transition: color .6s cubic-bezier(.165, .84, .44, 1);
}

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

.language-dropdown {
  display: inline-block;
  position: static;
  top: 25%;
  bottom: 25%;
  left: auto;
  right: 1%;
}

.dropdown-toggle {
  display: none;
}

.dropdown-toggle-2 {
  justify-content: space-between;
  padding: 0 25px 0 0;
  display: flex;
}

.collection-item {
  background-color: #101d28;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  max-width: 200px;
  padding-left: 20px;
  display: flex;
}

.subscribe-container {
  width: 100%;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.subscribe-container.wide {
  max-width: 100%;
}

.text-field {
  display: none;
}

.flag-icon {
  object-fit: contain;
  width: auto;
  max-height: 16px;
  margin-bottom: 0;
}

.flating-menu-options {
  align-self: center;
  display: none;
}

.collection-list-wrapper-3 {
  background-color: #101d28;
  max-width: 200px;
  padding-top: 4px;
  padding-bottom: 10px;
  overflow: hidden;
}

.collection-list-2 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-direction: column;
  max-width: 150px;
  display: flex;
}

.image-12 {
  width: auto;
  max-height: 16px;
  margin-bottom: auto;
}

.language-dropdown-in-menu {
  display: inline-block;
  position: static;
  top: 25%;
  bottom: 25%;
  left: auto;
  right: 1%;
}

.form-3 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.radio-button-2 {
  margin-top: 0;
  margin-left: 0;
  display: none;
}

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

.collection-list-3 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
}

.text-block-9 {
  margin-left: 0;
  margin-right: 0;
}

.category-wrapper {
  margin-left: 20px;
  margin-right: 20px;
}

.blog-category {
  color: #222;
  font-size: 12px;
  display: inline-block;
}

.div-block-18 {
  opacity: 1;
  color: rgba(0, 0, 0, 0);
  background-color: #dcdcdc;
  border-radius: 1px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 2px 6px;
  font-size: 12px;
  display: inline-block;
  overflow: visible;
}

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

.collection-list-4 {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  display: flex;
}

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

.button-2 {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.column-5 {
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 20px;
}

.column-6 {
  padding-left: 40px;
}

.html-embed {
  margin-top: 129px;
  margin-bottom: -82px;
}

.section-2 {
  height: 46vw;
  display: flex;
}

.section-2.image-background {
  position: relative;
}

.flex-block {
  flex-wrap: wrap;
}

.div-block-21 {
  background-image: url('../images/BlueWillow-home-background.png');
  background-position: 0 0;
  background-size: auto;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.div-block-21.image-background {
  background-image: none;
  flex-direction: column;
  max-width: 60%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.form-block-2 {
  flex: 0 auto;
  width: 100%;
  max-width: 0;
}

.form-block-3 {
  width: 100%;
  max-width: 400px;
}

.inputfield {
  background-color: #0e1a1f;
  background-image: url('../images/user-2.png');
  background-position: 4%;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  border: 2px solid #1a2b3a;
  border-radius: 6px;
  padding: 26px 18px 26px 44px;
  font-size: 18px;
  transition: all .4s;
}

.inputfield:focus {
  background-color: #111e29;
  background-image: url('../images/user-3.png');
  border-color: #1a2b3a;
}

.inputfield.inputname {
  color: #64696d;
  background-color: #0e1a1f;
  background-image: url('../images/user-6.png');
  border-color: #64696d;
}

.inputfield.inputname:focus {
  color: #fff;
  background-image: url('../images/user-3.png');
  border-color: #fff;
}

.inputfield.inputname::placeholder {
  color: #64696d;
}

.inputfield.inputemail {
  color: #64696d;
  background-image: url('../images/mail-2.png');
  border-color: #64696d;
}

.inputfield.inputemail:focus {
  color: var(--white);
  background-image: url('../images/mail-3.png');
  border-color: #fff;
}

.inputfield.inputemail:focus-visible {
  color: var(--white);
}

.inputfield.inputemail[data-wf-focus-visible] {
  color: var(--white);
}

.inputfield.inputemail::placeholder {
  color: #64696d;
  -webkit-text-stroke-color: #343f49;
}

.inputbutton {
  text-align: left;
  background-color: #111e29;
  background-image: url('../images/next.png'), linear-gradient(270deg, #3252db, #4f69da);
  background-position: 94%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 18px 18px, auto;
  border: 2px #1a2b3a;
  border-radius: 6px;
  width: 230px;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 1s cubic-bezier(.645, .045, .355, 1);
}

.inputbutton:hover {
  background-image: url('../images/next.png'), linear-gradient(to right, #3252db, #4f69da);
  background-position: 94%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 18px 18px, auto;
}

.heading-6 {
  text-align: center;
  align-self: center;
  width: 100%;
  margin-bottom: 0;
  font-size: 62px;
}

.paragraph-9 {
  text-align: center;
  margin-bottom: 24px;
}

.borderline {
  background-image: linear-gradient(to right, #3252db, #4f69da 20%, #0e1a1f 39%);
  width: 100%;
  height: 2px;
  margin-bottom: 32px;
}

.borderline.borderline2 {
  background-image: linear-gradient(to top, #3252db, #4f69da 20%, #0e1a1f 39%);
  width: 2px;
  height: 70%;
  position: absolute;
  top: 0;
  bottom: auto;
  right: -32px;
}

.success-message-2 {
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
}

.error-message-2 {
  background-color: rgba(255, 222, 222, 0);
  padding: 0;
}

.bold-text {
  font-size: 50px;
  line-height: 58px;
}

.section-3 {
  justify-content: center;
  align-items: center;
  height: 75vh;
  display: flex;
}

.heading-7 {
  text-align: center;
  max-width: 800px;
  font-size: 40px;
  line-height: 1.4;
}

.form-4 {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-width: 0;
  margin-top: 0;
  display: flex;
  position: relative;
}

.form-4.margins_noforget {
  margin-top: 10px;
  margin-bottom: 30px;
}

.field-label {
  margin-top: 15px;
  font-weight: 500;
}

.textarea {
  clear: none;
  background-color: var(--white);
  box-shadow: 0 2px 5px 0 var(--dark);
  text-align: center;
  cursor: text;
  border-radius: 20px;
  max-width: 600px;
  margin-top: 5px;
  margin-bottom: 15px;
  font-size: 16px;
  position: static;
}

.textarea.no_resize {
  border: 1.5px solid var(--light-blue);
  box-shadow: 0 2px 5px 0 var(--dark);
  text-align: center;
  background-color: rgba(14, 26, 31, .8);
  border-radius: 6px;
  padding-top: 27px;
  padding-bottom: 10px;
  overflow: auto;
}

.textarea.no_resize.color_white {
  width: 115%;
}

.text-block-10 {
  color: #617fff;
}

.div-block-22 {
  text-align: center;
  justify-content: center;
  display: flex;
}

.div-block-22.hgfd {
  margin-top: 30px;
}

.text-block-11 {
  font-size: 15px;
  line-height: 1.4;
  position: absolute;
  top: 55px;
  left: 20px;
}

.image-13 {
  object-fit: contain;
  width: auto;
  height: 30px;
  position: absolute;
  top: 15px;
  left: 20px;
}

.section-4 {
  height: 115px;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    margin-bottom: 16px;
    font-size: 46px;
  }

  h3 {
    font-size: 38px;
  }

  h4 {
    margin-bottom: 12px;
    font-size: 32px;
  }

  h5 {
    margin-bottom: 12px;
  }

  h6 {
    margin-bottom: 8px;
  }

  a:hover {
    color: var(--light-blue);
  }

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

  .section.double-top {
    padding-top: 112px;
  }

  .section.double-bottom {
    padding-bottom: 112px;
  }

  .section.image-background {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .section.image-background.short {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section.secondary-page {
    padding-top: 128px;
  }

  .section.background {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section.double {
    padding-top: 112px;
    padding-bottom: 112px;
  }

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

  ._12-columns.space-between.mobile-reverse {
    flex-wrap: wrap-reverse;
  }

  .heading.xxl {
    margin-bottom: 24px;
    font-size: 68px;
  }

  .heading.xl {
    font-size: 60px;
  }

  .heading.l {
    margin-bottom: 16px;
    font-size: 46px;
  }

  .heading.m {
    font-size: 38px;
  }

  .heading.s {
    margin-bottom: 12px;
    font-size: 32px;
  }

  .heading.xs {
    margin-bottom: 12px;
  }

  .heading.xxs {
    margin-bottom: 8px;
  }

  .paragraph {
    font-size: 18px;
  }

  .paragraph.s {
    font-size: 16px;
  }

  .column.desktop-4.tablet-12 {
    width: 50%;
  }

  .column.tablet-12 {
    width: 100%;
  }

  .column.tablet-11 {
    width: 91.66%;
  }

  .column.tablet-10 {
    width: 83.33%;
  }

  .column.tablet-9 {
    width: 75%;
  }

  .column.tablet-8 {
    width: 66.66%;
  }

  .column.tablet-7 {
    width: 58.33%;
  }

  .column.tablet-6 {
    width: 50%;
  }

  .column.tablet-5 {
    width: 41.66%;
  }

  .column.tablet-4 {
    width: 33.33%;
  }

  .column.tablet-3 {
    width: 25%;
  }

  .column.tablet-2 {
    width: 16.66%;
  }

  .column.tablet-1 {
    width: 8.33%;
  }

  .column.tablet-0 {
    width: 0%;
    display: none;
  }

  .button:hover {
    box-shadow: none;
    color: var(--white);
    transform: none;
  }

  .button.navigation {
    margin-left: 0;
    padding: 16px 40px;
    font-size: 18px;
  }

  .button.navigation:hover, .button.cta-navigation:hover {
    box-shadow: none;
    color: var(--dark);
    transform: none;
  }

  .button.secondary:hover {
    color: var(--light-blue);
  }

  .button.form:hover {
    box-shadow: none;
    transform: none;
  }

  .spacer._24.tablet-16 {
    width: 16px;
    height: 16px;
  }

  .spacer._24.tablet-0 {
    width: 0;
    height: 0;
    display: none;
  }

  .spacer._48.tablet-32 {
    width: 32px;
    height: 32px;
  }

  .lead-in-container {
    margin-bottom: 16px;
  }

  .checkmark {
    margin-top: 3px;
    margin-right: 12px;
  }

  .checkmark.large {
    width: 24px;
    height: 24px;
  }

  .grid._4-column-with-dividers {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .grid._5-column {
    grid-column-gap: 24px;
  }

  .icon-circle {
    width: 96px;
    height: 96px;
    margin-bottom: 24px;
  }

  .icon-circle.l {
    width: 96px;
    height: 96px;
  }

  .icon-card {
    padding: 40px;
  }

  .image-card-text {
    padding: 24px 24px 12px;
  }

  .component-lead-in {
    margin-top: 64px;
    margin-bottom: 24px;
  }

  .image-wrapper.icons {
    height: 450px;
  }

  .button-wrapper {
    margin-top: 48px;
  }

  .large-hero-wrapper {
    margin-top: 40px;
  }

  .form-button:hover, .form-button.small:hover {
    color: var(--dark);
  }

  .email-sign-up-form {
    margin-top: 24px;
  }

  .alternating-wrapper {
    grid-row-gap: 72px;
  }

  .heading-wrapper {
    margin-bottom: 32px;
  }

  .heading-wrapper.large {
    margin-bottom: 48px;
  }

  .outline-card {
    padding: 40px;
  }

  .icon-list-item {
    margin-bottom: 0;
  }

  .nav-wrapper {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .brand {
    z-index: 999;
    width: 172px;
  }

  .brand.footer-logo.large {
    width: 216px;
  }

  .nav-link {
    text-align: center;
    margin-bottom: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 18px;
    font-weight: 500;
  }

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

  .nav-button-wrapper {
    flex-direction: column;
    margin-top: 72px;
  }

  .nav-button-wrapper.desktop-hidden {
    margin-top: 72px;
  }

  .menu-button {
    z-index: 999;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 48px;
    margin-right: -8px;
    padding: 8px;
  }

  .menu-button.w--open {
    color: #055346;
    background-color: rgba(0, 0, 0, 0);
  }

  .hamburger-line {
    background-color: rgba(0, 0, 0, 0);
    background-image: linear-gradient(135deg, var(--blue), var(--light-blue));
    height: 1px;
  }

  .desktop-hidden {
    display: block;
  }

  .mobile-hidden {
    display: none;
  }

  .nav-menu {
    background-color: #0e1a1f;
    justify-content: center;
    width: 100%;
    height: 100vh;
    padding-top: 128px;
    padding-left: 40px;
    padding-right: 40px;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .cta-nav-menu {
    background-color: #0e1a1f;
    justify-content: center;
    padding-top: 0;
  }

  .cta-nav-link:hover {
    color: var(--white);
    transform: none;
  }

  .nav-wrapper-floating {
    padding: 24px 32px;
  }

  .nav-menu-floating {
    background-image: linear-gradient(135deg, rgba(17, 204, 168, .05), rgba(74, 197, 223, .05)), linear-gradient(to bottom, var(--dark), var(--dark));
    border-radius: 16px;
    justify-content: center;
    width: auto;
    height: auto;
    margin: 24px 40px;
    padding-top: 96px;
    padding-left: 40px;
    padding-right: 40px;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    overflow: hidden;
    box-shadow: 35px 0 70px rgba(0, 0, 0, .25);
  }

  .announcement-close {
    right: 40px;
  }

  .announcement-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .tabs-menu {
    margin-top: 16px;
    margin-bottom: 32px;
  }

  .tabs.right-align {
    margin-top: 0;
  }

  .pricing-card {
    padding: 32px;
  }

  .pricing-card-left {
    padding: 40px;
  }

  .pricing-card-right {
    padding: 32px 40px 40px;
  }

  .callout-box {
    padding: 48px;
  }

  .callout-box.form {
    padding: 56px;
  }

  .number {
    font-size: 44px;
    line-height: 1.3;
  }

  .column-divider {
    display: none;
  }

  .testimonial-logo {
    width: 140px;
  }

  .testimonial {
    margin-top: 32px;
    margin-bottom: 32px;
    font-size: 36px;
  }

  .testimonial.small {
    margin-top: 24px;
    font-size: 24px;
  }

  .testimonial-author {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 2fr;
  }

  .features-grid.split {
    grid-template-columns: 1fr;
  }

  .features-grid-card {
    padding-top: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .features-grid-card.horizontal {
    grid-template-columns: 2fr;
    padding: 40px;
  }

  .features-grid-image-wrapper.full {
    margin-left: -40px;
    margin-right: -40px;
  }

  .features-grid-image-wrapper.full-top {
    margin-top: -40px;
    margin-left: -40px;
    margin-right: -40px;
  }

  .faq-item {
    padding-left: 0;
    padding-right: 0;
  }

  .faq-item:hover {
    color: var(--white);
  }

  .faq-item.large {
    padding: 24px 32px 8px;
  }

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

  .question-heading.s {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .question-heading.xs {
    margin-bottom: 8px;
  }

  .faq-plus {
    border-width: 1px;
    width: 32px;
    height: 32px;
  }

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

  .image-marquee-wrapper.cta {
    margin-top: 56px;
  }

  .footer-top {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .footer-top.s {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .footer-top.xs {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .footer-links-wrapper {
    margin-top: 24px;
  }

  .footer-link:hover {
    color: var(--white);
    transform: none;
  }

  .link-light:hover {
    color: rgba(255, 255, 255, .6);
  }

  .footer-social-links.tablet-center {
    justify-content: center;
  }

  .social-link:hover {
    opacity: 1;
    transform: none;
  }

  .footer-text-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .compare-grid-row {
    padding: 24px 32px;
  }

  .compare-subhead {
    font-size: 20px;
  }

  .compare-subhead.small {
    font-size: 18px;
  }

  .compare-label {
    font-size: 14px;
  }

  .compare-label.large {
    font-size: 18px;
  }

  .heading-text-wrapper {
    width: 100%;
  }

  .compare-logo {
    object-fit: contain;
  }

  .landing-page-card {
    margin-bottom: 40px;
  }

  .landing-page-card:hover {
    transform: none;
  }

  .utility-page-wrap {
    min-height: auto;
  }

  .utility-page-content {
    width: 100%;
  }

  .text-block {
    margin-top: -10px;
  }

  .column-copy.tablet-12 {
    width: 100%;
  }

  .column-copy.tablet-11 {
    width: 91.66%;
  }

  .column-copy.tablet-10 {
    width: 83.33%;
  }

  .column-copy.tablet-9 {
    width: 75%;
  }

  .column-copy.tablet-8 {
    width: 66.66%;
  }

  .column-copy.tablet-7 {
    width: 58.33%;
  }

  .column-copy.tablet-6 {
    width: 50%;
  }

  .column-copy.tablet-5 {
    width: 41.66%;
  }

  .column-copy.tablet-4 {
    width: 33.33%;
  }

  .column-copy.tablet-3 {
    width: 25%;
  }

  .column-copy.tablet-2 {
    width: 16.66%;
  }

  .column-copy.tablet-1 {
    width: 8.33%;
  }

  .column-copy.tablet-0 {
    width: 0%;
    display: none;
  }

  .collection-list-3-col, .collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .header-plus {
    border-width: 1px;
    width: 32px;
    height: 32px;
  }

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

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

  .dropdown-2 {
    position: static;
  }

  .dropdown-toggle {
    display: inline-block;
  }

  .dropdown-toggle-2 {
    display: none;
  }

  .subscribe-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .flating-menu-options {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: block;
  }

  .collection-list-3 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-2 {
    height: 68vw;
  }

  .heading-6 {
    font-size: 46px;
  }

  .paragraph-9 {
    font-size: 16px;
  }

  .section-3 {
    height: 70vh;
  }

  .heading-7 {
    max-width: 80%;
    font-size: 32px;
  }

  .div-block-22.hgfd {
    margin-top: 25px;
  }

  .section-4 {
    height: 115px;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 44px;
    line-height: 1.3;
  }

  h2 {
    font-size: 40px;
    line-height: 1.3;
  }

  h3 {
    font-size: 36px;
    line-height: 1.3;
  }

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

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

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

  .section.image-background {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section.image-background.short {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section.secondary-page {
    padding-top: 96px;
  }

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

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

  ._12-columns {
    margin-left: -12px;
    margin-right: -12px;
  }

  ._12-columns.align-top {
    flex-direction: row;
  }

  .heading.xxl {
    margin-bottom: 16px;
    font-size: 48px;
    line-height: 1.3;
  }

  .heading.xl {
    margin-bottom: 16px;
    font-size: 44px;
    line-height: 1.3;
  }

  .heading.l {
    font-size: 40px;
    line-height: 1.3;
  }

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

  .column {
    padding-left: 12px;
    padding-right: 12px;
  }

  .column.desktop-4.tablet-12 {
    width: 50%;
  }

  .column.mobile-1 {
    width: 8.33%;
  }

  .column.mobile-2 {
    width: 16.66%;
  }

  .column.mobile-3 {
    width: 25%;
  }

  .column.mobile-4 {
    width: 33.33%;
  }

  .column.mobile-5 {
    width: 41.66%;
  }

  .column.mobile-6 {
    width: 50%;
  }

  .column.mobile-7 {
    width: 58.33%;
  }

  .column.mobile-8 {
    width: 66.66%;
  }

  .column.mobile-9 {
    width: 75%;
  }

  .column.mobile-10 {
    width: 83.33%;
  }

  .column.mobile-11 {
    width: 91.66%;
  }

  .column.mobile-12 {
    width: 100%;
  }

  .column.mobile-0 {
    width: 0%;
    display: none;
  }

  .button.navigation {
    font-size: 16px;
  }

  .button.cta-navigation {
    margin-top: 16px;
    margin-left: 0;
    font-size: 16px;
  }

  .lead-in-container.bottom {
    margin-bottom: 24px;
  }

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

  .grid._4-column-with-dividers {
    grid-template-columns: 1fr 1fr;
  }

  .grid._5-column {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .icon-circle {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .icon-circle.l {
    width: 80px;
    height: 80px;
  }

  .icon-card {
    padding: 32px;
  }

  .component-lead-in {
    margin-top: 48px;
    margin-bottom: 16px;
  }

  .image-wrapper.icons {
    height: 375px;
  }

  .button-wrapper {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .button-wrapper.center {
    margin-top: 40px;
  }

  .form-field {
    padding: 28px 24px;
    font-size: 16px;
  }

  .form-field.dropdown {
    height: 60px;
  }

  .email-sign-up-form {
    margin-top: 24px;
  }

  .alternating-wrapper {
    grid-row-gap: 32px;
  }

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

  .heading-wrapper.large {
    margin-bottom: 40px;
  }

  .outline-card {
    padding: 32px;
  }

  .nav-wrapper {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand {
    width: 156px;
  }

  .brand.footer-logo {
    width: 190px;
  }

  .brand.footer-logo.large {
    width: 200px;
  }

  .nav-link {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .nav-button-wrapper, .nav-button-wrapper.desktop-hidden {
    margin-top: 48px;
  }

  .menu-button {
    transform: scale(.85);
  }

  .nav-menu {
    padding-top: 96px;
  }

  .cta-nav-menu {
    align-items: flex-end;
    width: 100%;
    height: 100vh;
    padding-top: 96px;
    display: flex;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .cta-nav-link {
    text-align: center;
    margin-bottom: 8px;
    font-size: 16px;
  }

  .nav-bar-floating {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav-wrapper-floating {
    padding: 16px 24px;
  }

  .nav-menu-floating {
    margin: 16px 24px;
    padding-top: 72px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .announcement-banner {
    text-align: left;
    font-size: 11px;
  }

  .announcement-close {
    width: 32px;
    height: 32px;
    padding: 4px;
    right: 24px;
  }

  .announcement-wrapper {
    padding-top: 12px;
    padding-bottom: 12px;
  }

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

  .tabs-menu.small {
    align-self: center;
  }

  .price {
    font-size: 32px;
  }

  .pricing-card-wide {
    flex-direction: column;
  }

  .pricing-card-left {
    width: 100%;
    padding: 32px;
  }

  .pricing-card-right {
    padding: 8px 32px 24px;
  }

  .callout-box {
    padding: 40px;
  }

  .callout-box.form {
    padding: 48px;
  }

  .number {
    font-size: 40px;
  }

  .number.small {
    font-size: 36px;
    line-height: 1.4;
  }

  .vertical-rule {
    width: 100%;
    height: 1px;
  }

  .testimonial {
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 28px;
    line-height: 1.4;
  }

  .features-grid.split {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .features-grid-card {
    padding: 32px 32px 24px;
  }

  .features-grid-image-wrapper.full {
    margin-bottom: -24px;
    margin-left: -32px;
    margin-right: -32px;
  }

  .features-grid-image-wrapper.full-top {
    margin-top: -32px;
    margin-left: -32px;
    margin-right: -32px;
  }

  .faq-item {
    padding-top: 24px;
    font-size: 16px;
  }

  .faq-item.large {
    padding-bottom: 16px;
  }

  .question {
    margin-bottom: 8px;
  }

  .question-heading {
    font-size: 18px;
  }

  .question-heading.s {
    font-size: 20px;
  }

  .image-marquee-wrapper.cta {
    margin-top: 48px;
  }

  .image-marquee-row {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    margin-bottom: 16px;
  }

  .marquee-image-wrapper {
    width: 50%;
    padding-bottom: 28%;
  }

  .footer-top, .footer-top.s {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .footer-links-wrapper {
    margin-top: 16px;
  }

  .footer-link {
    font-size: 16px;
  }

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

  .form-label {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .footer-text-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
  }

  .compare-grid-row {
    grid-row-gap: 24px;
    grid-template-columns: 1fr 1fr 1fr;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .compare-grid-row._2-column {
    grid-template-columns: 1fr 1fr;
  }

  .compare-label.large {
    font-size: 16px;
  }

  .field-block {
    margin-bottom: 16px;
  }

  .form-radio-button {
    font-size: 16px;
  }

  .radio-button {
    margin-top: 0;
  }

  .form-checkbox {
    font-size: 16px;
  }

  .check-box {
    margin-top: 0;
  }

  .compare-logo {
    width: 170px;
  }

  .compare-info-wrapper {
    text-align: center;
  }

  .compare-info-wrapper.header {
    display: none;
  }

  .landing-page-card {
    margin-bottom: 24px;
  }

  .rich-text p {
    font-size: 16px;
  }

  .cl-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .utility-page-wrap {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .text-block {
    margin-top: 0;
    font-size: 12px;
  }

  .paragraph-5 {
    height: auto;
    font-size: 12px;
  }

  .heading-2 {
    font-size: 18px;
  }

  .column-copy {
    padding-left: 12px;
    padding-right: 12px;
  }

  .column-copy.mobile-1 {
    width: 8.33%;
  }

  .column-copy.mobile-2 {
    width: 16.66%;
  }

  .column-copy.mobile-3 {
    width: 25%;
  }

  .column-copy.mobile-4 {
    width: 33.33%;
  }

  .column-copy.mobile-5 {
    width: 41.66%;
  }

  .column-copy.mobile-6 {
    width: 50%;
  }

  .column-copy.mobile-7 {
    width: 58.33%;
  }

  .column-copy.mobile-8 {
    width: 66.66%;
  }

  .column-copy.mobile-9 {
    width: 75%;
  }

  .column-copy.mobile-10 {
    width: 83.33%;
  }

  .column-copy.mobile-11 {
    width: 91.66%;
  }

  .column-copy.mobile-12 {
    width: 100%;
  }

  .column-copy.mobile-0 {
    width: 0%;
    display: none;
  }

  .column-3 {
    padding-left: 10px;
  }

  .category-header {
    margin-bottom: 8px;
  }

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

  .dropdown-2 {
    position: static;
  }

  .dropdown-toggle {
    display: inline-block;
  }

  .dropdown-toggle-2 {
    display: block;
  }

  .subscribe-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .flating-menu-options {
    margin-top: 40px;
  }

  .collection-list-3 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-2 {
    height: 74vw;
  }

  .heading-6 {
    font-size: 38px;
  }

  .paragraph-9 {
    font-size: 12px;
  }

  .heading-7 {
    font-size: 28px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

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

  .section.double-top {
    padding-top: 72px;
  }

  .section.double-bottom {
    padding-bottom: 72px;
  }

  .section.background {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section.double {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  ._12-columns {
    grid-row-gap: 24px;
  }

  ._12-columns.align-top {
    flex-direction: column;
  }

  ._12-columns.align-top.justify-left {
    flex-direction: column;
    align-items: center;
  }

  .heading.xxl {
    line-height: 1.2;
  }

  .heading.xl {
    font-size: 32px;
  }

  .heading.l {
    font-size: 36px;
  }

  .heading.m {
    font-size: 32px;
  }

  .heading.s {
    font-size: 28px;
  }

  .paragraph {
    text-align: center;
    margin-top: 0;
    font-size: 14px;
  }

  .column.desktop-4.tablet-12 {
    width: 100%;
  }

  .column.desktop-4.tablet-6.mobile-12.scale-up {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 24px;
    display: flex;
  }

  .column.desktop-6.tablet-12 {
    width: 90%;
  }

  .column.desktop-8.tablet-12 {
    width: 95%;
  }

  .spacer._32.mobile-24 {
    width: 24px;
    height: 24px;
  }

  .spacer._48.tablet-32 {
    width: 0;
    height: 0;
  }

  .lead-in {
    margin-top: 8px;
    font-size: 12px;
  }

  .grid._4-column-with-dividers {
    grid-template-columns: 1fr;
  }

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

  .grid._5-column {
    grid-template-columns: 1fr 1fr;
  }

  .icon-circle.outline {
    width: 40px;
    height: 40px;
  }

  .image-wrapper.icons {
    height: 250px;
  }

  .button-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .form-block-outer {
    background-image: none;
  }

  .form-field.sign-up-form {
    border: 1px solid var(--light-blue);
    padding: 28px 24px;
    font-size: 16px;
  }

  .form-block-inner {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    background-color: rgba(0, 0, 0, 0);
    flex-direction: column;
    align-items: center;
  }

  .form-block-inner.gradient-light {
    grid-row-gap: 16px;
    flex-direction: column;
    align-items: flex-start;
  }

  .brand {
    width: 120px;
  }

  .brand.footer-logo.large {
    width: 190px;
  }

  .nav-link {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-wrapper-floating {
    padding: 8px 16px;
  }

  .announcement-wrapper {
    padding-right: 48px;
  }

  .tabs-menu {
    border-radius: 32px;
    flex-direction: column;
  }

  .price {
    font-size: 28px;
  }

  .callout-box {
    padding: 32px;
  }

  .callout-box.scale-up {
    padding-left: 20px;
    padding-right: 20px;
  }

  .callout-box.form {
    padding: 32px;
  }

  .testimonial {
    font-size: 24px;
  }

  .features-grid-card.horizontal {
    padding: 32px;
  }

  .footer-top.xs {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .compare-grid-row {
    padding: 24px 16px;
  }

  .compare-subhead {
    font-size: 18px;
  }

  .compare-body {
    font-size: 14px;
  }

  .compare-label {
    font-size: 12px;
  }

  .compare-text {
    font-size: 16px;
  }

  .marquee-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .marquee-item {
    padding: 12px 20px;
    font-size: 16px;
  }

  .icon-28px {
    width: 24px;
  }

  .cl-item {
    padding: 16px 16px 8px;
  }

  .cl-heading-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .cl-date {
    margin-bottom: 8px;
    margin-left: 0;
  }

  .paragraph-2 {
    text-align: center;
    font-size: 14px;
  }

  .paragraph-3, .paragraph-4 {
    font-size: 14px;
  }

  .text-block {
    margin-top: -10px;
    font-size: 10px;
  }

  .collection-items {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .image-2 {
    max-height: 150px;
  }

  .paragraph-5 {
    height: auto;
    max-height: none;
    font-size: 10px;
    overflow: hidden;
  }

  .circle {
    display: flex;
  }

  .div-block-5 {
    padding-top: 10px;
  }

  .heading-2 {
    font-size: 14px;
  }

  .text-block-6 {
    font-size: 12px;
  }

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

  .column-copy.desktop-4.tablet-6.mobile-12.scale-up {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-left: 24px;
    display: flex;
  }

  .column-copy.desktop-6.tablet-12 {
    width: 90%;
  }

  .column-copy.desktop-8.tablet-12 {
    width: 95%;
  }

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

  .column-3 {
    padding-left: 10px;
  }

  .collection-list-3-col, .collection-list {
    grid-template-columns: 1fr;
  }

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

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

  .dropdown-2 {
    display: inline-block;
    position: static;
    overflow: visible;
  }

  .dropdown-list.w--open {
    padding-top: 0;
    overflow: scroll;
  }

  .language-dropdown {
    display: none;
  }

  .dropdown-toggle {
    display: inline-block;
  }

  .dropdown-toggle-2 {
    display: block;
  }

  .collection-item {
    padding-top: 0;
  }

  .collection-item.top-padding {
    padding-top: 4px;
  }

  .flating-menu-options {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .language-dropdown-in-menu {
    display: block;
  }

  .form-3 {
    flex-wrap: nowrap;
    align-content: flex-start;
  }

  .collection-list-3 {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .column-6 {
    padding-top: 20px;
    padding-left: 20px;
  }

  .section-2 {
    height: 80vh;
  }

  .div-block-21.image-background {
    max-width: 90%;
  }

  .heading-6 {
    font-size: 34px;
  }

  .borderline.borderline2 {
    background-image: linear-gradient(280deg, #3252db, #4f69da 20%, #0e1a1f 39%);
    width: 100%;
    height: 2px;
    top: auto;
    bottom: 0;
    right: 0;
  }

  .section-3 {
    height: 60vh;
  }

  .heading-7 {
    font-size: 21px;
  }
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de7611d5-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de7611d6-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de7611d8-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de7611dc-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de7611df-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de7611e2-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de7611e6-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de7611e9-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de7611ec-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de7611f0-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de7611f3-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de7611f6-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de7611fa-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de7611fd-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de761200-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de761204-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de761207-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de76120a-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de76120e-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de761211-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de761214-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de761218-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ee9dedc9-89c7-eb24-c311-fc53de76121b-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de76121e-de7611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78c9-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78ca-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78cc-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78d0-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78d3-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78d5-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78d8-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78db-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78dd-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78e0-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78e3-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78e5-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78e8-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78eb-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78ed-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78f0-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78f3-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78f5-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78f8-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78fb-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78fd-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f7900-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f7903-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f7905-8a8f78c5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f7f3-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f7f4-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f7f7-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f7fa-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f7fe-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f803-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f806-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f809-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f80d-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f812-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f815-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f818-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f81c-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f821-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f824-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f827-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f82b-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f830-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f833-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f836-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f83a-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f83f-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f842-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f845-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f849-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f84e-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f851-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f854-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f858-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f85d-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f860-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f863-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f867-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f86c-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f86f-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f872-97d2f7ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c273607895c7-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c273607895c8-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895cb-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895ce-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c273607895d2-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c273607895d7-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895d9-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895db-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c273607895de-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c273607895e3-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895e5-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895e7-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c273607895ea-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c273607895ef-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895f1-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895f3-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c273607895f6-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c273607895fb-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895fd-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895ff-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c27360789602-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c27360789607-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c27360789609-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c2736078960b-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c2736078960e-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c27360789613-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c27360789615-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c27360789617-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c2736078961a-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c2736078961f-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c27360789621-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c27360789623-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c27360789626-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_001ed6b3-fb4c-f9b9-d480-c2736078962b-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c2736078962d-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c2736078962f-607895c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_1173d78c-b5e4-9386-055b-489b63a19f6f-63a19f65, #w-node-_1173d78c-b5e4-9386-055b-489b63a19f70-63a19f65, #w-node-_1173d78c-b5e4-9386-055b-489b63a19f71-63a19f65, #w-node-_1173d78c-b5e4-9386-055b-489b63a19f72-63a19f65, #w-node-_1173d78c-b5e4-9386-055b-489b63a19f73-63a19f65, #w-node-_1173d78c-b5e4-9386-055b-489b63a19f74-63a19f65, #w-node-_1173d78c-b5e4-9386-055b-489b63a19f75-63a19f65, #w-node-_1173d78c-b5e4-9386-055b-489b63a19f76-63a19f65, #w-node-_1173d78c-b5e4-9386-055b-489b63a19f77-63a19f65, #w-node-fe41287c-e6a1-4e85-cf38-4c53518c36ff-518c36f8, #w-node-fe41287c-e6a1-4e85-cf38-4c53518c3700-518c36f8, #w-node-fe41287c-e6a1-4e85-cf38-4c53518c3701-518c36f8, #w-node-fe41287c-e6a1-4e85-cf38-4c53518c3702-518c36f8, #w-node-fe41287c-e6a1-4e85-cf38-4c53518c3703-518c36f8, #w-node-fe41287c-e6a1-4e85-cf38-4c53518c3704-518c36f8, #w-node-fe41287c-e6a1-4e85-cf38-4c53518c3705-518c36f8, #w-node-fe41287c-e6a1-4e85-cf38-4c53518c3706-518c36f8, #w-node-fe41287c-e6a1-4e85-cf38-4c53518c3707-518c36f8, #w-node-fe41287c-e6a1-4e85-cf38-4c53518c3708-518c36f8, #w-node-cb15bc3a-3bb1-2ecc-7fb9-837b2d66591b-2d665918, #w-node-cb15bc3a-3bb1-2ecc-7fb9-837b2d66591c-2d665918, #w-node-cb15bc3a-3bb1-2ecc-7fb9-837b2d66591d-2d665918, #w-node-cb15bc3a-3bb1-2ecc-7fb9-837b2d66591e-2d665918, #w-node-cb15bc3a-3bb1-2ecc-7fb9-837b2d66591f-2d665918, #w-node-_3a1b338b-3692-01e8-5bed-9ffbe55a8ae4-e55a8ad9, #w-node-_3a1b338b-3692-01e8-5bed-9ffbe55a8ae9-e55a8ad9, #w-node-_3a1b338b-3692-01e8-5bed-9ffbe55a8aee-e55a8ad9, #w-node-_3a1b338b-3692-01e8-5bed-9ffbe55a8af3-e55a8ad9, #w-node-a5b3c6f8-f264-3e4c-a3e5-4d234593dc17-4593dc13, #w-node-a5b3c6f8-f264-3e4c-a3e5-4d234593dc1e-4593dc13, #w-node-a5b3c6f8-f264-3e4c-a3e5-4d234593dc25-4593dc13, #w-node-a5b3c6f8-f264-3e4c-a3e5-4d234593dc2c-4593dc13, #w-node-e8692644-335e-c0c4-c33d-839891804830-91804828, #w-node-e8692644-335e-c0c4-c33d-839891804835-91804828, #w-node-e8692644-335e-c0c4-c33d-83989180483a-91804828, #w-node-_1528f3ff-65c9-0274-9f21-47406f361d92-7a7ed17b, #w-node-_1528f3ff-65c9-0274-9f21-47406f361d93-7a7ed17b, #w-node-_1a240755-53ab-71aa-8cce-088bdfefacec-7a7ed17b, #w-node-_202472be-e8b6-36c0-f735-cbdfec82e8f0-7a7ed17b, #w-node-be35b9f7-b7e5-5202-2e77-7d6daf3fd81b-7a7ed17b, #w-node-_427aa087-a1e8-d003-bce1-be2b69eebe0e-7a7ed17b, #w-node-ac91e998-853e-89d8-8585-c8a95d08a646-7a7ed17b, #w-node-_60ff9ac3-2f7d-f982-1694-7475ab4b65d4-7a7ed17b, #w-node-_427aa087-a1e8-d003-bce1-be2b69eebe0f-7a7ed17b, #w-node-_76789c92-9eb6-b7d1-69b5-c3989e1834fc-7a7ed17b, #w-node-a16c8fa3-8e26-e5da-5b85-6ae881396c42-7a7ed17b, #w-node-e90e62ab-fbf1-5d37-4d68-a359ddf92d49-7a7ed17b, #w-node-_76789c92-9eb6-b7d1-69b5-c3989e1834fd-7a7ed17b, #w-node-_76789c92-9eb6-b7d1-69b5-c3989e1834fe-7a7ed17b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-ee9dedc9-89c7-eb24-c311-fc53de7611d5-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de7611dc-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de7611e6-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de7611f0-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de7611fa-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de761204-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de76120e-de7611c6, #w-node-ee9dedc9-89c7-eb24-c311-fc53de761218-de7611c6, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78c9-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78d0-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78d8-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78e0-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78e8-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78f0-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f78f8-8a8f78c5, #w-node-e90c0e9b-ce2d-242b-140e-f23d8a8f7900-8a8f78c5 {
    grid-column: span 2 / span 2;
  }

  #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f7f3-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f7fe-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f80d-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f81c-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f82b-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f83a-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f849-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f858-97d2f7ef, #w-node-b3a7a8c3-acc7-dbfd-cd37-9d6997d2f867-97d2f7ef, #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895c7-607895c3 {
    grid-column: span 3 / span 3;
  }

  #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895d2-607895c3 {
    grid-column: span 3 / span 3;
    align-self: center;
  }

  #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895de-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895ea-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c273607895f6-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c27360789602-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c2736078960e-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c2736078961a-607895c3, #w-node-_001ed6b3-fb4c-f9b9-d480-c27360789626-607895c3 {
    grid-column: span 3 / span 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b6766f8a-0f02-a1a5-dd2f-8a707ff232e9-c97ed15f {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


