:root {
  --text: #173238;
  --primary: #4d9a7b;
  --white: white;
  --light-bg: #e2edf3;
  --secondary: #cf0a75;
  --second-background: aliceblue;
  --neutral: rgba(47, 58, 68, .16);
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: var(--text);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 1.7em;
}

h1 {
  letter-spacing: -1px;
  margin-top: 12px;
  margin-bottom: 20px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.125em;
}

h2 {
  letter-spacing: -1px;
  margin-top: 12px;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3em;
}

h3 {
  letter-spacing: -1px;
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3em;
}

h4 {
  letter-spacing: -.5px;
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3em;
}

h5 {
  letter-spacing: -.75px;
  margin-top: 8px;
  margin-bottom: 14px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3em;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3em;
}

p {
  margin-bottom: 20px;
}

a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
  transition: opacity .2s;
}

a:hover {
  opacity: .7;
}

blockquote {
  border-left: 5px solid var(--primary);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 22px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
  font-size: .75rem;
  line-height: 1.3em;
}

.image {
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  max-height: 400px;
}

.image.license {
  max-width: 250px;
}

.pretitle {
  color: var(--primary);
  letter-spacing: 1.25px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: .75rem;
  font-weight: 600;
  line-height: 1em;
}

.pretitle.white-text {
  color: var(--white);
}

.container {
  z-index: 1;
  text-align: left;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 80px;
  padding-right: 80px;
  position: relative;
}

.container.static {
  position: static;
}

.button-divider {
  width: 20px;
  height: 20px;
}

.button {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  object-fit: fill;
  border-radius: 100px;
  flex: 1;
  padding: 16px 36px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.5em;
  transition: background-color .2s;
  position: static;
}

.button:hover {
  background-color: rgba(26, 152, 192, .7);
}

.button.border {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: rgba(0, 0, 0, 0);
  transition: color .2s, box-shadow .2s, background-color .2s;
}

.button.border:hover {
  color: rgba(26, 152, 192, .7);
  box-shadow: 0 0 3px rgba(26, 152, 192, .5);
}

.margin-top-80 {
  margin-top: 80px;
}

.white-background {
  background-color: #fff;
}

.small-body {
  margin-bottom: 8px;
  font-size: .875rem;
  line-height: 1.5em;
}

.light-background {
  background-color: var(--light-bg);
}

.small {
  flex: 0 auto;
  max-width: 413px;
}

.content {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}

.content.spacer {
  max-width: 108px;
}

.button-wrapper {
  flex-direction: row;
  justify-content: space-between;
  margin-top: 40px;
  display: flex;
}

.button-wrapper.centered {
  justify-content: center;
  align-items: center;
  display: flex;
}

.button-wrapper.half-margin-wrapper {
  margin-top: 20px;
}

.content-row {
  justify-content: flex-start;
  width: 100%;
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.content-row.wrap-early {
  flex-wrap: wrap;
  justify-content: center;
}

.content-row.wrap-early.justify-left {
  justify-content: flex-start;
}

.content-row.center {
  justify-content: center;
}

.content-row.service-cards {
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  margin-top: 80px;
  position: relative;
}

.label {
  margin-bottom: 16px;
  font-weight: 600;
}

.label.v2 {
  color: rgba(47, 58, 68, .7);
  margin-bottom: 0;
  font-size: .875rem;
  line-height: 1.5em;
}

.secondary {
  background-color: var(--secondary);
}

.tiny {
  flex: 0 auto;
  max-width: 213px;
}

.color-block {
  border: 1px solid rgba(0, 0, 0, .1);
  height: 80px;
}

.large-body {
  font-size: 1.125rem;
}

.large {
  flex: none;
  max-width: 630px;
}

.card {
  background-color: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .1);
}

.card.empty {
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
}

.card.product-small {
  color: var(--text);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 115px;
  min-height: 100px;
  padding-top: 20px;
  padding-bottom: 4px;
  text-decoration: none;
  transition-property: none;
  display: flex;
}

.card.product-small:hover {
  opacity: 1;
}

.card.product-large {
  background-color: var(--light-bg);
  color: var(--primary);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 229.156px;
  min-height: 180px;
  font-weight: 400;
  transition-property: none;
  display: flex;
  position: relative;
}

.card.product-large:hover {
  opacity: 1;
}

.card.cta {
  text-align: center;
  padding-top: 70px;
  padding-bottom: 70px;
}

.card.text-center {
  text-align: center;
  margin-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
}

.card.featured-plan {
  background-color: var(--primary);
  color: var(--white);
  position: relative;
  top: -20px;
}

.card.contact-card {
  border: 1px solid rgba(0, 0, 0, 0);
  padding-top: 22px;
  transition: color .2s, border-color .2s;
}

.card.contact-card:hover {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.card.benefits {
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
  padding-right: 0;
}

.section-header {
  margin-bottom: 40px;
  margin-left: -10px;
  margin-right: -10px;
}

.section-header.center {
  text-align: center;
  justify-content: center;
  display: flex;
}

.section-header.double {
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
}

.medium {
  flex-flow: column;
  flex: 0 auto;
  align-items: stretch;
  max-width: 620px;
  display: flex;
}

.second-background {
  background-color: var(--second-background);
}

.align-vertical-center {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
}

.super-large {
  flex: none;
  max-width: 1064px;
}

.light-text {
  color: #a8a8a8;
}

.section {
  padding-top: 80px;
  padding-bottom: 10px;
  display: block;
  position: relative;
}

.section.no-bottom-padding {
  padding-bottom: 0;
}

.section.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.section.hero-section {
  padding-top: 20px;
}

.section.no-top-padding {
  padding-top: 0;
}

.section.full-page {
  align-items: center;
  height: 100vh;
  display: flex;
}

.super-small {
  flex: 0 auto;
  max-width: 305px;
}

.accent-text {
  color: var(--primary);
}

.align-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.primary {
  background-color: var(--primary);
}

.bordered-box {
  border: 2px dashed var(--primary);
  background-color: var(--second-background);
  min-height: 80px;
  margin-bottom: 20px;
  padding: 12px 12px 12px 18px;
}

.bordered-box.row {
  border-color: var(--secondary);
  background-color: rgba(0, 0, 0, 0);
}

.image-wrapper {
  position: relative;
}

.icon {
  height: 32px;
}

.icon.in-dropdown {
  height: 24px;
  margin-right: 8px;
}

.small-product-wrapper {
  max-width: 800px;
  position: absolute;
  bottom: -60px;
  left: 80px;
  right: 0;
}

.bottom-strip {
  background-color: var(--second-background);
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.texture-a {
  z-index: -1;
  background-color: var(--secondary);
  opacity: .5;
  border-radius: 16px;
  width: 148px;
  height: 96px;
  position: absolute;
  top: -16px;
  left: -16px;
}

.texture-b {
  background-color: var(--secondary);
  opacity: .6;
  border-radius: 12px;
  width: 68px;
  height: 68px;
  position: absolute;
  bottom: -32px;
  right: -32px;
}

.awards-strip-wrapper {
  padding: 60px 24px;
}

.awards-strip-grid {
  grid-column-gap: 120px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 700px;
}

.awards-strip-grid.about-us {
  grid-column-gap: 40px;
  max-width: 480px;
}

.title {
  font-size: 3rem;
  line-height: 1.125em;
}

.card-group {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  max-width: 600px;
  height: 394px;
  margin-top: -197px;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  display: grid;
}

.texture-c {
  background-color: var(--secondary);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 20%;
  height: 192px;
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
}

.testimonial-slider {
  background-color: rgba(0, 0, 0, 0);
  max-width: 305px;
  height: 100%;
  padding-top: 80px;
  overflow: visible;
}

.no-overflow-wrapper {
  overflow: hidden;
}

.testimonial-mask {
  height: 100%;
  overflow: visible;
}

.testimonial-slide {
  max-width: 305px;
  height: 100%;
  margin-right: 20px;
}

.left-arrow {
  color: rgba(47, 58, 68, .5);
  background-color: #fff;
  border-radius: 100%;
  width: 42px;
  height: 42px;
  font-size: 20px;
  font-weight: 700;
  transition: box-shadow .2s, color .2s;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
  box-shadow: 0 0 4px rgba(0, 0, 0, .05);
}

.left-arrow:hover {
  color: #2f3a44;
  box-shadow: 2px 0 4px rgba(0, 0, 0, .1);
}

.right-arrow {
  color: rgba(47, 58, 68, .5);
  background-color: #fff;
  border-radius: 100%;
  width: 42px;
  height: 42px;
  font-size: 20px;
  transition: box-shadow .2s, color .2s;
  top: 0%;
  bottom: auto;
  left: 50px;
  right: auto;
  box-shadow: 0 0 4px rgba(0, 0, 0, .05);
}

.right-arrow:hover {
  color: #2f3a44;
  box-shadow: 2px 0 4px rgba(0, 0, 0, .1);
}

.testimonial-image {
  object-fit: scale-down;
  border-radius: 100%;
  width: 24px;
  height: 24px;
}

.testimonial-occupation {
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-top: -5px;
  margin-bottom: 16px;
  font-size: .8rem;
  line-height: 1em;
}

.testimonial-slider-wrapper {
  width: 150%;
  max-width: 1440px;
  min-height: 400px;
  overflow: hidden;
}

.hide {
  display: none;
}

.top-strip {
  background-color: var(--light-bg);
  width: 100%;
  height: 80px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.benefit-list-wrapper {
  justify-content: flex-end;
  margin-bottom: 40px;
  padding-left: 40px;
  display: flex;
  position: relative;
}

.benefit-list-wrapper.right {
  justify-content: flex-start;
}

.benefit-list-wrapper.v2 {
  justify-content: flex-start;
  margin-bottom: 10px;
  padding-left: 0;
}

.dot {
  background-color: var(--primary);
  border-radius: 50px;
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: 18px;
  margin-right: 20px;
}

.navbar {
  z-index: 999;
  background-color: var(--white);
  color: var(--text);
  align-items: center;
  position: relative;
}

.nav-wrapper {
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
}

.nav-link {
  padding: 16px 12px;
  font-size: .85rem;
  font-weight: 400;
  line-height: 1em;
  transition: opacity .2s;
}

.nav-link:hover {
  opacity: .7;
}

.nav-link.w--current {
  color: var(--primary);
  font-weight: 700;
}

.nav-button {
  border: 1px solid var(--neutral);
  color: var(--primary);
  text-transform: uppercase;
  border-radius: 100px;
  margin-left: 20px;
  padding: 6px 24px;
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow .2s, border-color .2s, color .2s;
}

.nav-button:hover {
  color: rgba(26, 152, 192, .8);
  border-color: rgba(26, 152, 192, .5);
  box-shadow: inset 0 0 2px rgba(26, 152, 192, .5);
}

.nav-menu {
  align-items: center;
  display: flex;
}

.neutral {
  background-color: var(--neutral);
}

.gradient-fill {
  background-image: linear-gradient(#fff, #e2edf3);
  margin-top: 0;
}

.half-secondary-background {
  background-color: var(--secondary);
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
}

.spaced-between {
  justify-content: space-between;
  display: flex;
}

.dark-link {
  opacity: .8;
  color: var(--text);
  transition: opacity .2s;
}

.dark-link:hover {
  opacity: 1;
}

.top-margin-10 {
  margin-top: 10px;
}

.small-map {
  border-radius: 16px;
  width: 300px;
  height: 147px;
}

.footer {
  text-align: center;
  align-items: flex-start;
  padding: 80px 0 0;
}

.footer-flex-container {
  text-align: left;
  justify-content: space-between;
  margin-bottom: 40px;
  display: flex;
}

.footer-logo-link {
  flex: 0 auto;
  min-width: 60px;
  max-height: 60px;
}

.footer-image {
  object-fit: contain;
  object-position: 0% 50%;
  margin-bottom: 24px;
}

.footer-heading {
  color: var(--primary);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-nav-wrapper {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.footer-van-content {
  width: 100%;
  max-width: 196px;
  margin-right: 20px;
}

.footer-link {
  color: rgba(47, 58, 68, .7);
  letter-spacing: -.03em;
  margin-bottom: 6px;
  padding-bottom: 4px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.08em;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.footer-link-hover {
  background-color: var(--primary);
  height: 1px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.footer-link-hover.light-line {
  background-color: var(--white);
}

.social-links-wrapper {
  margin-top: 40px;
  display: flex;
}

.social-links-wrapper.no-margin-top {
  margin-top: 0;
}

.social-link {
  margin-right: 24px;
  transition: opacity .2s;
}

.social-link:hover {
  opacity: .7;
}

.social-icon {
  height: 16px;
}

.footer-content-bottom {
  background-color: var(--primary);
  color: var(--white);
  padding-top: 18px;
  padding-bottom: 18px;
}

.footer-divider {
  height: 1px;
  margin-top: 100px;
}

.footer-bottom-link {
  color: var(--white);
  padding-right: 12px;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.5em;
  transition: opacity .2s;
}

.footer-bottom-link:hover {
  opacity: .7;
}

.copyrights-text {
  margin-bottom: 0;
  font-size: .75rem;
  line-height: 1.5em;
}

.white-link {
  color: var(--white);
  transition: opacity .2s;
}

.white-link:hover {
  opacity: .7;
}

.copyrights-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.grid-2-col {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

.home-hero-content {
  margin-top: -60px;
  margin-bottom: 20px;
  margin-right: 20px;
  padding: 20px;
}

.brand {
  padding: 0;
  transition: opacity .2s;
}

.brand:hover {
  opacity: .7;
}

.blog-card {
  color: var(--text);
}

.nav-dropdown {
  z-index: 3;
  line-height: 1em;
  position: relative;
}

.nav-dropdown-toggle {
  align-items: center;
  padding: 16px 12px;
  font-size: .85rem;
  transition: opacity .2s;
  display: flex;
}

.nav-dropdown-toggle:hover {
  opacity: .7;
}

.nav-dropdown-toggle.w--open {
  position: relative;
}

.nav-dropdown-icon-wrapper {
  margin-top: -2px;
  margin-left: 8px;
  display: flex;
}

.dropdown-icon-left {
  background-color: var(--text);
  transform-origin: 0%;
  min-width: 6px;
  max-width: 6px;
  min-height: 2px;
  max-height: 2px;
  transform: rotate(45deg);
}

.dropdown-icon-right {
  background-color: var(--text);
  transform-origin: 100%;
  min-width: 6px;
  max-width: 6px;
  min-height: 2px;
  max-height: 2px;
  transform: translate(-4px)rotate(-45deg);
}

.nav-dropdown-list.w--open {
  background-color: var(--white);
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .1);
}

.form-section {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 32px;
  display: grid;
}

.field-label {
  width: auto;
  margin-bottom: 8px;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.5em;
}

.text-field {
  border: 1px #000;
  border-bottom: 1px solid #c4c4c4;
  height: 50px;
  padding: 12px 24px;
  transition: box-shadow .2s, color .2s, border-color .2s;
}

.text-field:hover {
  border-bottom-color: #2f3a44;
}

.text-field:focus {
  border-bottom-color: var(--primary);
  color: var(--primary);
  border-radius: 0;
  box-shadow: 0 4px 0 -2px rgba(26, 152, 192, .2);
}

.text-field.area {
  min-height: 200px;
}

.breadcrumbs-wrapper {
  z-index: 2;
  background-color: var(--primary);
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
}

.breadcrumb {
  color: var(--white);
  margin-right: 16px;
  font-size: .75rem;
  font-weight: 400;
  display: inline-block;
}

.breadcrumb.current {
  font-weight: 700;
}

.breadcrumb-arrow {
  margin-right: 16px;
}

.radio-group {
  width: auto;
  margin-bottom: 20px;
}

.radio-button {
  margin-top: 0;
  margin-right: 24px;
  transition: box-shadow .2s, border .2s;
}

.radio-button:hover {
  box-shadow: 0 0 5px rgba(26, 152, 192, .2);
}

.radio-button.w--redirected-checked {
  border-width: 2px;
  border-color: var(--primary);
  box-shadow: 0 0 2px rgba(26, 152, 192, .1);
}

.radio-button-label {
  margin-bottom: 0;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1em;
}

.radio-button-field {
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: color .2s;
  display: flex;
}

.radio-button-field:hover {
  color: var(--primary);
}

.checkbox-field {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  display: flex;
}

.checkbox-label {
  margin-bottom: 0;
  font-size: .9rem;
  line-height: 1em;
}

.checkbox {
  margin-top: 8px;
  margin-right: 24px;
}

.checkbox.w--redirected-checked {
  border-color: var(--primary);
  background-color: var(--primary);
}

.checkbox.w--redirected-focus {
  box-shadow: 0 0 3px 1px rgba(26, 152, 192, .1);
}

.select-field {
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  border-bottom: 1px solid #c4c4c4;
  height: 50px;
  padding: 12px 24px;
  transition: border-color .2s;
}

.select-field:hover {
  border-bottom-color: #2f3a44;
}

.success-message {
  background-color: var(--secondary);
  border-radius: 16px;
}

.error-message {
  border-radius: 16px;
  margin-top: 20px;
  padding: 20px;
}

.top-margin-40 {
  margin-top: 40px;
}

.top-margin-60 {
  margin-top: 60px;
}

.about-bg-image {
  z-index: 1;
  object-fit: cover;
  border-radius: 16px;
  width: 55%;
  min-height: 100%;
  max-height: 100%;
  position: absolute;
  top: -50px;
  bottom: 0;
  right: -20px;
}

.about-us-content {
  padding-top: 80px;
  position: relative;
}

.about-seperator {
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
}

.texture-e {
  background-color: var(--secondary);
  opacity: .3;
  border-radius: 16px;
  width: 88px;
  height: 88px;
}

.texture-f {
  z-index: 2;
  background-color: var(--secondary);
  opacity: .6;
  border-radius: 8px;
  width: 56px;
  height: 56px;
  margin-left: 9px;
  position: relative;
  top: 33px;
}

.texture-g {
  z-index: 1;
  background-color: var(--secondary);
  opacity: .15;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  position: relative;
  top: -55px;
  left: -19px;
}

.half-background-image {
  z-index: -1;
  object-fit: cover;
  width: 55%;
  height: 100%;
  max-height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.half-background-image.rounded {
  z-index: 1;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.half-white-background {
  background-color: var(--white);
  width: 100%;
  height: 40%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.plan-list {
  padding-left: 0;
  list-style-type: none;
}

.plan-list-item {
  align-items: center;
  display: flex;
}

.plan-icon {
  margin-bottom: 8px;
  margin-right: 12px;
}

.texture-h {
  background-color: var(--secondary);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 20%;
  height: 192px;
  position: absolute;
  top: 20px;
  bottom: auto;
  left: 0;
  right: auto;
}

.relative {
  position: relative;
}

.texture-set-product-right {
  justify-content: center;
  align-items: center;
  width: 300px;
  display: flex;
  position: absolute;
  top: 65px;
  right: 0;
}

.texture-set-products-left {
  justify-content: center;
  align-items: center;
  width: 300px;
  display: flex;
  position: absolute;
  top: 30%;
  left: 0;
}

.texture-i {
  background-color: rgba(240, 194, 96, .3);
  border-radius: 16px;
  width: 58px;
  height: 58px;
}

.texture-j {
  background-color: rgba(240, 194, 96, .6);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  position: relative;
  top: 18px;
  right: -23px;
}

.texture-k {
  background-color: rgba(240, 194, 96, .15);
  border-radius: 4px;
  width: 24px;
  height: 24px;
  position: relative;
  top: -75px;
  right: 14px;
}

.faq-content-trigger {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: opacity .2s;
  display: flex;
}

.faq-content-trigger:hover {
  opacity: .7;
}

.faq-content {
  overflow: hidden;
}

.faq-trigger-wrapper {
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: 24px;
  padding: 0 32px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .1);
}

.faq-plus-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 16px;
  height: 16px;
  display: flex;
  position: relative;
}

.faq-plus-line-hor {
  background-color: var(--primary);
  width: 100%;
  height: 2px;
}

.faq-plus-line-ver {
  background-color: var(--primary);
  transform-origin: 50%;
  width: 100%;
  height: 2px;
  position: absolute;
  transform: rotate(90deg);
}

.contacts-grid {
  z-index: 2;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
  position: relative;
}

.top-margin-80 {
  margin-top: 80px;
}

.contact-map {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  height: 100%;
}

.contact-map-wrapper {
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.texture-l {
  background-color: var(--secondary);
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 25%;
  height: 192px;
  position: absolute;
  top: auto;
  bottom: 33%;
  left: auto;
  right: 0;
}

.texture-set-about-left {
  z-index: -1;
  justify-content: center;
  align-items: center;
  width: 300px;
  display: flex;
  position: absolute;
  top: 56px;
  left: 14%;
}

.claims-seperator {
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 150px;
  display: flex;
}

.dropdown-link-wrapper {
  border-bottom: 1px solid var(--second-background);
  color: var(--text);
  min-width: 200px;
  margin-bottom: 12px;
  padding-bottom: 4px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: .85rem;
  font-weight: 400;
  transition: color .2s;
  display: flex;
}

.dropdown-link-wrapper:hover, .dropdown-link-wrapper.w--current {
  color: var(--primary);
}

.dropdown-link-wrapper.v2 {
  align-items: center;
}

.dropdown-subtext {
  font-size: .75rem;
}

.dropdown-main-text {
  margin-bottom: 4px;
  font-weight: 700;
}

.texture-set-about-right {
  justify-content: center;
  align-items: center;
  width: 300px;
  display: flex;
  position: absolute;
  top: 45%;
  left: auto;
  right: 0;
}

.license-row {
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
}

.license-col {
  padding-left: 10px;
  padding-right: 10px;
}

.size-6 {
  letter-spacing: normal;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3em;
}

.size-5 {
  letter-spacing: -.75px;
  margin-top: 8px;
  margin-bottom: 14px;
  font-size: 1.25rem;
  line-height: 1.3em;
}

.size-4 {
  letter-spacing: -.5px;
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  line-height: 1.3em;
}

.page-wrapper {
  overflow: hidden;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
}

.utility-page-wrap.password {
  height: 100vh;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.empty-state {
  background-color: var(--secondary);
  border-radius: 8px;
}

.blog-collection-list {
  flex-wrap: wrap;
  display: flex;
}

.blog-item {
  flex-direction: column;
  margin-top: 40px;
  display: flex;
}

.blog-thumbnail-wrapper {
  cursor: pointer;
  border: 1px #000;
  border-radius: 16px;
  margin-bottom: 20px;
  transition-property: none;
  overflow: hidden;
}

.blog-thumbnail-wrapper:hover {
  opacity: 1;
}

.blog-card-link {
  color: var(--text);
}

.texture-m {
  background-color: var(--secondary);
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  width: 25%;
  height: 192px;
  position: absolute;
  top: 210px;
  bottom: auto;
  left: auto;
  right: 0;
}

.full-bg-image {
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.blog-categories-wrapper {
  max-width: 800px;
  margin-top: 40px;
  position: static;
  bottom: -60px;
  left: 80px;
  right: 0;
}

.white-bottom-strip {
  background-color: var(--white);
  height: 85px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.blog-hero-content {
  position: relative;
  top: -60px;
}

.texture-n {
  background-color: var(--secondary);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 20%;
  height: 157px;
  position: absolute;
  top: -152px;
  bottom: auto;
  left: 0;
  right: auto;
}

.blog-card-summary {
  font-size: .85rem;
  font-weight: 300;
}

.blog-card-content {
  flex-direction: column;
  display: flex;
}

.texture-set-blog-right {
  justify-content: center;
  align-items: center;
  width: 300px;
  display: flex;
  position: absolute;
  top: 45px;
  left: auto;
  right: 15%;
}

.texture-o {
  background-color: var(--secondary);
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  width: 25%;
  height: 192px;
  position: absolute;
  top: 210px;
  bottom: auto;
  left: 0;
  right: auto;
}

.blog-category-wrapper {
  display: flex;
}

.top-margin-20 {
  margin-top: 20px;
}

.blog-category-image {
  width: 100%;
  max-width: 520px;
}

.blog-post-hero {
  height: 40vh;
  position: relative;
  overflow: hidden;
}

.post-category-wrapper {
  display: flex;
}

.adjacent-to-text {
  margin-left: 8px;
}

.post-category-list {
  display: flex;
}

.div-block {
  min-height: 180px;
}

.interactportletspace {
  max-height: 250px;
  position: relative;
}

.first-step-grid---quote {
  grid-column-gap: 28px;
  grid-row-gap: 44px;
}

.first-step-grid---quote.uniform-space---quote {
  grid-row-gap: 28px;
  overflow: visible;
}

.multi-step-form-radio-trigger---brix {
  color: #170f49;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 16px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 66px;
  padding-right: 32px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: border-width .2s, border-color .2s;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 2px 6px 2px rgba(19, 18, 66, .07);
}

.multi-step-form-radio-trigger---brix:hover {
  border-color: #bfbaff;
}

.checkbox-form {
  z-index: 5;
  opacity: 1;
  cursor: pointer;
  border-width: 2px;
  border-color: rgba(0, 0, 0, 0);
  border-radius: 16px;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  transition: border-color .35s, all .35s;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: visible;
  box-shadow: 0 2px 6px 1px rgba(19, 18, 66, .07);
}

.checkbox-form:hover {
  border-color: #bfbaff;
}

.checkbox-form.w--redirected-checked {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  border-width: 2px;
  border-color: #4a3aff;
}

.checkbox-form.w--redirected-focus {
  border-width: 2px;
  border-color: #4a3aff;
  box-shadow: 0 4px 10px rgba(31, 37, 89, .07);
}

.slider---quote {
  background-color: rgba(0, 0, 0, 0);
  max-width: 750px;
  height: 100%;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.step-title-wrap---quote {
  margin-bottom: 40px;
}

.slide---quote {
  margin-right: 80px;
}

.step-title---quote {
  margin-bottom: 8px;
  font-weight: 700;
}

.multi-step-form-error-message---brix {
  border-radius: 16px;
  margin-top: 140px;
  padding: 24px;
}

.title-container {
  text-align: center;
  max-width: 518px;
}

.mask---quote {
  width: 100%;
  padding-left: 8px;
  padding-right: 8px;
  overflow: hidden;
}

.form-step-progress-bar-mobile---quote {
  background-color: #eff0f6;
  border-radius: 50px;
  width: 100%;
  min-height: 6px;
  display: none;
}

.submit-content-wrapper---brix {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: auto;
  display: flex;
}

.form-step-number---quote {
  color: #6f6c90;
  background-color: #eff0f6;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  margin-left: 18px;
  margin-right: 18px;
  font-size: 16px;
  display: flex;
}

.form-step-number---quote.completed---quote {
  color: #fff;
  background-color: #4a3aff;
  font-weight: 700;
}

.steps-bar---quote {
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
}

.display-none {
  display: none;
}

.cloneable-container-default {
  background-color: #f7f7fb;
  border-radius: 20px;
  min-height: 624px;
  padding-top: 75px;
  padding-bottom: 200px;
  transform: translate(0);
}

.multi-step-form-wrapper {
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.select-item-icon---brix {
  margin-right: 12px;
}

.form-content {
  border-top: 1px solid #d9dbe9;
  padding-top: 64px;
  padding-bottom: 80px;
  overflow: visible;
}

.multi-step-form-grid-item---brix {
  overflow: visible;
}

.step-paragraph---brix {
  margin-bottom: 0;
}

.completed-form-illustrations---brix {
  margin-bottom: 18px;
}

.multi-step-form-button---quote {
  color: #4a3aff;
  background-color: #fff;
  border-radius: 500px;
  width: auto;
  padding: 20px 40px;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: transform .2s;
  display: inline-block;
  top: 682px;
  bottom: auto;
  left: auto;
  right: auto;
}

.multi-step-form-button---quote:hover {
  transform: translate(0, -2px);
}

.multi-step-form-button---quote.left---brix {
  border: 1px solid #4a3aff;
  left: -40px;
}

.multi-step-form-button---quote.right---brix {
  color: #fff;
  background-color: #4a3aff;
  font-weight: 700;
  right: -40px;
}

.multi-step-foirm---success-message---brix {
  background-color: #fff;
  border-radius: 16px;
  min-height: 44vh;
  padding-top: 70px;
  padding-bottom: 70px;
  box-shadow: 38px 38px 34px rgba(74, 58, 255, .01), 0 1px 26px rgba(20, 20, 43, .02), 0 16px 26px rgba(19, 18, 66, .02);
}

.multi-step-form-text-field---brix {
  color: #170f49;
  background-color: #fff;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: auto;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 500px;
  min-height: 66px;
  margin-bottom: 0;
  padding: 20px 60px 20px 20px;
  font-size: 18px;
  transition: color .4s, border-color .4s, all .4s;
  box-shadow: 0 2px 6px rgba(19, 18, 66, .07);
}

.multi-step-form-text-field---brix:hover {
  border-color: #4a3aff;
  box-shadow: 0 4px 10px rgba(19, 18, 66, .12);
}

.multi-step-form-text-field---brix:focus {
  color: #4a3aff;
  border: 2px solid #4a3aff;
}

.multi-step-form-text-field---brix::placeholder {
  color: #6f6c90;
  font-size: 18px;
}

.multi-step-form-text-field---brix.company-icon---brix {
  background-image: url('../images/icon-4-input-multi-step-form-webflow-cloneable-template-brix-templates.svg');
}

.multi-step-form-text-field---brix.company-icon---brix:hover, .multi-step-form-text-field---brix.company-icon---brix:focus {
  background-image: url('../images/icon-4-on-input-multi-step-form-webflow-cloneable-template-brix-templates.svg');
}

.multi-step-form-text-field---brix.email-icon---brix {
  background-image: url('../images/icon-2-input-multi-step-form-webflow-cloneable-template-brix-templates.svg');
}

.multi-step-form-text-field---brix.email-icon---brix:hover, .multi-step-form-text-field---brix.email-icon---brix:focus {
  background-image: url('../images/icon-2-on-input-multi-step-form-webflow-cloneable-template-brix-templates.svg');
}

.multi-step-form-text-field---brix.phone-icon---brix {
  background-image: url('../images/icon-3-input-multi-step-form-webflow-cloneable-template-brix-templates.svg');
}

.multi-step-form-text-field---brix.phone-icon---brix:hover, .multi-step-form-text-field---brix.phone-icon---brix:focus {
  background-image: url('../images/icon-3-on-input-multi-step-form-webflow-cloneable-template-brix-templates.svg');
}

.multi-step-form-text-field---brix.name-icon---brix {
  background-image: url('../images/icon-1-input-multi-step-form-webflow-cloneable-template-brix-templates.svg');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: auto;
}

.multi-step-form-text-field---brix.name-icon---brix:hover, .multi-step-form-text-field---brix.name-icon---brix:focus {
  background-image: url('../images/icon-1-on-input-multi-step-form-webflow-cloneable-template-brix-templates.svg');
}

.submit-button---brix {
  background-color: #4a3aff;
  border-radius: 500px;
  padding: 20px 40px 21px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: all .2s;
  box-shadow: 0 3px 12px rgba(74, 58, 255, .18);
}

.submit-button---brix:hover {
  transform: translate(0, -2px);
  box-shadow: 0 4px 10px rgba(74, 58, 255, .3);
}

.multi-step-form-label {
  color: #170f49;
  border-radius: 16px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.multi-step-form-label.no-margin {
  z-index: 40;
  margin-bottom: 0;
  position: relative;
}

.checkbox-item--brix {
  color: #170f49;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 16px;
  align-items: center;
  min-height: 114px;
  max-height: 114px;
  margin-bottom: 0;
  padding: 25px;
  display: flex;
  position: relative;
  overflow: visible;
}

.multi-step-form-block---brix {
  width: 100%;
  min-height: 44vw;
  margin-top: 20px;
  margin-bottom: 0;
}

.radio-button-field-2 {
  align-items: center;
  min-height: 114px;
  max-height: 114px;
  margin-bottom: 0;
  padding: 48px 32px;
  display: flex;
  position: relative;
}

.multi-step-form {
  background-color: #fff;
  border-radius: 34px;
  padding-left: 40px;
  padding-right: 40px;
  box-shadow: 0 54px 34px rgba(74, 58, 255, .02), 0 1px 26px rgba(20, 20, 43, .02), 0 16px 26px rgba(19, 18, 66, .02);
}

.radio-button-2 {
  cursor: pointer;
  border: 1.2px solid #d9dbe9;
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 12px;
  transition: all .2s;
  overflow: hidden;
  box-shadow: inset 0 0 7px rgba(20, 20, 43, .08);
}

.radio-button-2.w--redirected-checked {
  border-width: 7px;
  border-color: #4a3aff;
}

.radio-button-2.w--redirected-focus {
  box-shadow: 0 0 3px 1px rgba(74, 58, 255, .2);
}

.form-step-progress-bar---quote {
  background-color: #eff0f6;
  border-radius: 50px;
  width: 100%;
  min-height: 6px;
}

.form-step-progress-bar---quote.current-step---brix {
  background-color: #4a3aff;
  width: 50%;
}

.form-step-progress-bar---quote.complete-step---brix {
  background-color: #4a3aff;
}

.text-field-done {
  opacity: 0;
  background-color: rgba(127, 88, 226, .2);
  background-image: url('../images/done-violet.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 11px;
  border: 2px solid #7f58e2;
  border-radius: 50%;
  width: 1px;
  height: 1px;
  margin-left: 20px;
  margin-right: 20px;
  transition: height .3s cubic-bezier(.25, .46, .45, .94), width .3s cubic-bezier(.25, .46, .45, .94);
  position: absolute;
  top: 50%;
  bottom: auto;
  left: auto;
  right: 0%;
  transform: translate(0, -50%);
}

.text-field-done.area-done {
  width: 10px;
  height: 10px;
  position: absolute;
  top: 30px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.checkbox-field-2 {
  align-items: flex-start;
  margin-bottom: 20px;
  padding-right: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  transition: color .3s;
  display: flex;
}

.checkbox-field-2:hover {
  color: #7f58e2;
}

.radio-button-field-3 {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 48%;
  height: 100px;
  display: flex;
  position: relative;
}

.area-label {
  z-index: 1;
  color: rgba(0, 0, 0, .3);
  background-color: #fff;
  margin-left: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: font-size .3s, color .3s, top .3s cubic-bezier(.25, .46, .45, .94);
  display: inline-block;
  position: absolute;
  top: 10px;
}

.hero-img-wrap {
  width: 40%;
  margin-top: -60px;
}

.form {
  text-align: left;
  flex-flow: wrap;
  justify-content: space-between;
}

.success-message-2 {
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
}

.form-next {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #7f58e2;
  border-radius: 10px;
  flex: 1;
  width: 48%;
  min-height: 60px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  transition: letter-spacing .3s, box-shadow .4s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
  position: static;
}

.form-next:hover {
  letter-spacing: 3px;
  background-color: #9775ee;
  box-shadow: 0 20px 30px -11px rgba(127, 88, 226, .6);
}

.form-next:active {
  border: 1px #000;
}

.text-field-wrapper {
  text-align: left;
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-bottom: 20px;
  padding-left: 2px;
  padding-right: 2px;
  display: flex;
  position: relative;
}

.text-field-wrapper.half {
  width: 48%;
}

.text-field-wrapper.third {
  width: 31%;
}

.radiobutton-field {
  align-items: flex-start;
  margin-bottom: 20px;
  padding-right: 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  transition: color .3s;
  display: flex;
}

.radiobutton-field:hover {
  color: #7f58e2;
}

.radiobutton {
  border: 2px solid rgba(0, 0, 0, .05);
  border-radius: 50%;
  flex: none;
  width: 30px;
  height: 30px;
  margin-top: 0;
  margin-bottom: 5px;
  margin-right: 15px;
  transition: border-width .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s;
}

.radiobutton:hover {
  border-color: rgba(0, 0, 0, .15);
}

.radiobutton.w--redirected-checked {
  background-color: rgba(127, 88, 226, .3);
  border-width: 9px;
  border-color: rgba(127, 88, 226, .5);
}

.radiobutton.w--redirected-focus {
  box-shadow: none;
  border-color: rgba(127, 88, 226, .5);
}

.form-block {
  background-color: #fff;
  border-radius: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 80px 70px;
  box-shadow: 0 20px 50px -50px rgba(32, 45, 73, .2);
}

.text-area-wrapper {
  text-align: left;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  min-height: 120px;
  margin-bottom: 20px;
  padding-left: 2px;
  padding-right: 2px;
  display: flex;
  position: relative;
}

.success-subtitle {
  margin-top: -20px;
  margin-bottom: 30px;
}

.hero-block {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 140px;
  display: flex;
  position: relative;
}

.fields-group {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.hero-content {
  width: 50%;
}

.checkbox-2 {
  border-width: 2px;
  border-color: rgba(0, 0, 0, .05);
  border-radius: 7px;
  flex: none;
  width: 30px;
  height: 30px;
  margin-top: 0;
  margin-right: 15px;
  transition: background-color .3s cubic-bezier(.25, .46, .45, .94), border-color .3s;
}

.checkbox-2:hover {
  border-color: rgba(0, 0, 0, .15);
}

.checkbox-2.w--redirected-checked {
  background-color: rgba(127, 88, 226, .3);
  background-image: url('../images/done-violet.svg');
  background-size: 16px;
  border-color: rgba(127, 88, 226, .5);
}

.checkbox-2.w--redirected-focus {
  box-shadow: none;
  border-color: rgba(127, 88, 226, .5);
}

.form-back {
  color: #7f58e2;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: rgba(127, 88, 226, .1);
  border: 2px solid #7f58e2;
  border-radius: 10px;
  flex: 1;
  width: 48%;
  min-height: 60px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 13px 30px;
  font-size: 16px;
  font-weight: 700;
  transition: letter-spacing .3s, box-shadow .4s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
  position: static;
}

.form-back:hover {
  letter-spacing: 3px;
  box-shadow: 0 20px 30px -11px rgba(127, 88, 226, .3);
}

.form-back:active {
  box-shadow: 0 11px 20px -11px rgba(127, 88, 226, .6);
}

.slide-nav {
  display: none;
}

.radio-buttons {
  flex: none;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.step-number {
  color: rgba(127, 88, 226, .5);
  width: 100%;
  font-size: 16px;
  font-weight: 900;
}

.form-label {
  width: 100%;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.note-heading {
  font-size: 40px;
  font-weight: 900;
}

.text-area {
  color: #7f58e2;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid rgba(0, 0, 0, .05);
  border-radius: 10px;
  min-height: 240px;
  padding-top: 12px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  font-weight: 700;
  transition: border-color .3s;
}

.text-area:hover {
  border-color: rgba(0, 0, 0, .15);
  display: block;
}

.text-area:focus {
  border-color: rgba(127, 88, 226, .5);
}

.subtitle {
  color: #7c89a5;
  max-width: 900px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
}

.note {
  color: #c5387a;
  text-align: center;
  background-color: rgba(197, 56, 122, .1);
  border: 3px solid rgba(197, 56, 122, .4);
  border-radius: 20px;
  margin-top: 60px;
  padding: 60px;
  font-size: 24px;
}

.form-step {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  margin-bottom: 20px;
  display: flex;
}

.form-step.last-step {
  margin-bottom: 0;
  padding-bottom: 70px;
}

.note-link {
  color: #c5387a;
  background-color: rgba(197, 56, 122, .2);
  border: 2px dashed rgba(197, 56, 122, .4);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  display: flex;
}

.note-link:hover {
  background-color: rgba(197, 56, 122, .3);
}

.form-slide {
  flex: none;
  width: 100%;
  margin-right: 40px;
}

.button-2 {
  color: #7f58e2;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid #7f58e2;
  border-radius: 10px;
  flex: 1;
  min-height: 60px;
  padding: 15px 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: letter-spacing .3s, box-shadow .4s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
  display: inline-block;
  position: static;
}

.button-2:hover {
  letter-spacing: 3px;
}

.button-2:active {
  border: 1px #000;
}

.radio-button-label-2 {
  display: none;
}

.form-button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #7f58e2;
  border-radius: 10px;
  width: 100%;
  min-height: 70px;
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 700;
  transition: letter-spacing .3s, box-shadow .4s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
  position: absolute;
  top: auto;
  bottom: 20px;
  left: 0%;
  right: 0%;
}

.form-button:hover {
  letter-spacing: 3px;
  background-color: #9775ee;
  box-shadow: 0 20px 30px -11px rgba(127, 88, 226, .6);
}

.form-button:active, .form-button:focus {
  border: 1px #000;
}

.form-slider {
  background-color: rgba(0, 0, 0, 0);
  flex-flow: wrap;
  justify-content: space-between;
  height: auto;
  display: flex;
}

.field-label-2 {
  z-index: 1;
  color: rgba(0, 0, 0, .3);
  align-self: flex-start;
  margin-left: 10px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  transition: background-color .3s, font-size .3s, color .3s, top .3s cubic-bezier(.25, .46, .45, .94);
  display: inline-block;
  position: absolute;
  top: 19px;
}

.container-2 {
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.text-field-2 {
  color: #7f58e2;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid rgba(0, 0, 0, .05);
  border-radius: 10px;
  height: 60px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
  font-weight: 700;
  transition: border-color .3s;
  position: static;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.text-field-2:hover {
  border-color: rgba(0, 0, 0, .15);
  display: block;
}

.text-field-2:focus {
  border-color: rgba(127, 88, 226, .5);
}

.form-mask {
  height: auto;
  margin-bottom: -40px;
  margin-left: -40px;
  margin-right: -40px;
  padding-bottom: 40px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.form-heading {
  width: 100%;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: 900;
}

.radio-button-3 {
  cursor: pointer;
  background-color: #fcfcfc;
  border: 2px solid #fcfcfc;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.radio-button-3:hover {
  background-color: rgba(127, 88, 226, .2);
}

.radio-button-3.w--redirected-checked {
  background-color: rgba(127, 88, 226, .3);
  border: 2px solid rgba(127, 88, 226, .5);
  transition: border-color .3s, background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.radio-button-3.gender {
  background-image: url('../images/genders-02.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto 50%;
  transition: border-color .3s cubic-bezier(.25, .46, .45, .94), background-color .3s cubic-bezier(.25, .46, .45, .94);
}

.radio-button-3.gender:hover {
  border-color: rgba(127, 88, 226, .2);
}

.radio-button-3.gender.w--redirected-focus {
  box-shadow: none;
}

.radio-button-3.gender.male {
  background-image: url('../images/genders-01.svg');
}

.radio-button-3.gender.male.w--redirected-focus {
  box-shadow: none;
}

.msf-slider {
  background-color: rgba(0, 0, 0, 0);
  height: auto;
}

.msf-hidden {
  display: none;
}

.nav-button-2 {
  color: #4d9a7b;
  text-transform: uppercase;
  border: 1px solid rgba(47, 58, 68, .16);
  border-radius: 100px;
  margin-left: 20px;
  padding: 6px 24px;
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow .2s, border-color .2s, color .2s;
}

.nav-button-2:hover {
  color: rgba(26, 152, 192, .8);
  border-color: rgba(26, 152, 192, .5);
  box-shadow: inset 0 0 2px rgba(26, 152, 192, .5);
}

.accent-text-2 {
  color: #4d9a7b;
}

.dropdown-icon-left-2 {
  transform-origin: 0%;
  background-color: #173238;
  min-width: 6px;
  max-width: 6px;
  min-height: 2px;
  max-height: 2px;
  transform: rotate(45deg);
}

.top-margin-81 {
  margin-top: 10px;
}

.dark-link-2 {
  opacity: .8;
  color: #173238;
  transition: opacity .2s;
}

.dark-link-2:hover {
  opacity: 1;
}

.dropdown-link-wrapper-2 {
  color: #173238;
  border-bottom: 1px solid #f0f8ff;
  min-width: 200px;
  margin-bottom: 12px;
  padding-bottom: 4px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: .85rem;
  font-weight: 400;
  transition: color .2s;
  display: flex;
}

.dropdown-link-wrapper-2:hover, .dropdown-link-wrapper-2.w--current {
  color: #4d9a7b;
}

.dropdown-link-wrapper-2.v2 {
  align-items: center;
}

.navbar-2 {
  z-index: 999;
  color: #173238;
  background-color: #fff;
  align-items: center;
  position: relative;
}

.size-7 {
  letter-spacing: normal;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3em;
}

.footer-content-bottom-2 {
  color: #fff;
  background-color: #4d9a7b;
  padding-top: 18px;
  padding-bottom: 18px;
}

.size-8 {
  letter-spacing: -.5px;
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 1.5rem;
  line-height: 1.3em;
}

.white-link-2 {
  color: #fff;
  transition: opacity .2s;
}

.white-link-2:hover {
  opacity: .7;
}

.dropdown-icon-right-2 {
  transform-origin: 100%;
  background-color: #173238;
  min-width: 6px;
  max-width: 6px;
  min-height: 2px;
  max-height: 2px;
  transform: translate(-4px)rotate(-45deg);
}

.radio-button-4 {
  margin-top: 0;
  margin-right: 24px;
  transition: box-shadow .2s, border .2s;
}

.radio-button-4:hover {
  box-shadow: 0 0 5px rgba(26, 152, 192, .2);
}

.radio-button-4.w--redirected-checked {
  border-width: 2px;
  border-color: #4d9a7b;
  box-shadow: 0 0 2px rgba(26, 152, 192, .1);
}

.breadcrumbs-wrapper-2 {
  z-index: 2;
  background-color: #4d9a7b;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
}

.nav-menu-2 {
  align-items: center;
  display: flex;
}

.nav-link-2 {
  padding: 16px 12px;
  font-size: .85rem;
  font-weight: 400;
  line-height: 1em;
  transition: opacity .2s;
}

.nav-link-2:hover {
  opacity: .7;
}

.nav-link-2.w--current {
  color: #4d9a7b;
  font-weight: 700;
}

.checkbox-3 {
  margin-top: 8px;
  margin-right: 24px;
}

.checkbox-3.w--redirected-checked {
  background-color: #4d9a7b;
  border-color: #4d9a7b;
}

.checkbox-3.w--redirected-focus {
  box-shadow: 0 0 3px 1px rgba(26, 152, 192, .1);
}

.success-message-3 {
  background-color: #cf0a75;
  border-radius: 16px;
}

.nav-dropdown-list-2.w--open {
  background-color: #fff;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 0 4px rgba(0, 0, 0, .1);
}

.footer-link-hover-2 {
  background-color: #4d9a7b;
  height: 1px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.footer-link-hover-2.light-line {
  background-color: #fff;
}

.half-secondary-background-2 {
  background-color: #cf0a75;
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
}

.footer-heading-2 {
  color: #4d9a7b;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.5;
}

.button-3 {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  object-fit: fill;
  background-color: #4d9a7b;
  border-radius: 100px;
  flex: 1;
  padding: 16px 36px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.5em;
  transition: background-color .2s;
  position: static;
}

.button-3:hover {
  background-color: rgba(26, 152, 192, .7);
}

.button-3.border {
  color: #4d9a7b;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #4d9a7b;
  transition: color .2s, box-shadow .2s, background-color .2s;
}

.button-3.border:hover {
  color: rgba(26, 152, 192, .7);
  box-shadow: 0 0 3px rgba(26, 152, 192, .5);
}

.breadcrumb-2 {
  color: #fff;
  margin-right: 16px;
  font-size: .75rem;
  font-weight: 400;
  display: inline-block;
}

.breadcrumb-2.current {
  font-weight: 700;
}

.text-field-3 {
  border: 1px #000;
  border-bottom: 1px solid #c4c4c4;
  height: 50px;
  padding: 12px 24px;
  transition: box-shadow .2s, color .2s, border-color .2s;
}

.text-field-3:hover {
  border-bottom-color: #2f3a44;
}

.text-field-3:focus {
  color: #4d9a7b;
  border-bottom-color: #4d9a7b;
  border-radius: 0;
  box-shadow: 0 4px 0 -2px rgba(26, 152, 192, .2);
}

.footer-bottom-link-2 {
  color: #fff;
  padding-right: 12px;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.5em;
  transition: opacity .2s;
}

.footer-bottom-link-2:hover {
  opacity: .7;
}

.radio-button-field-4 {
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  transition: color .2s;
  display: flex;
}

.radio-button-field-4:hover {
  color: #4d9a7b;
}

.cloneable-header {
  background-color: #fff;
  border-radius: 18px;
  margin-bottom: 44px;
  padding: 24px 32px;
  box-shadow: 0 3px 14px rgba(74, 58, 255, .03), 0 -2px 4px rgba(20, 20, 43, .02), 0 12px 24px rgba(20, 20, 43, .01);
}

.cloneable-header-grid {
  grid-column-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1.6fr 1fr;
  align-items: center;
}

.title-container---brix {
  text-align: center;
  max-width: 518px;
}

.button-secondary {
  color: #4a3aff;
  text-align: center;
  background-color: #f3f1ff;
  border-radius: 80px;
  padding: 15px 48px;
  line-height: 20px;
  transition: color .3s, background-color .3s;
}

.button-secondary:hover {
  color: #fff;
  background-color: #4a3aff;
}

.button-secondary.cloneable-header-button {
  padding-left: 22px;
  padding-right: 22px;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
}

.container-default {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.heading-size-3 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 28px;
}

.multi-step-form-wrapper---brix {
  flex-direction: column;
  align-items: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.radio-button-field-5 {
  align-items: center;
  min-height: 114px;
  max-height: 114px;
  margin-bottom: 0;
  padding: 48px 32px;
  display: flex;
  position: relative;
}

.multi-step-form---brix {
  background-color: #fff;
  border-radius: 34px;
  padding-left: 40px;
  padding-right: 40px;
  box-shadow: 0 54px 34px rgba(74, 58, 255, .02), 0 1px 26px rgba(20, 20, 43, .02), 0 16px 26px rgba(19, 18, 66, .02);
}

.radio-button-5 {
  cursor: pointer;
  border: 1.2px solid #d9dbe9;
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 12px;
  transition: all .2s;
  overflow: hidden;
  box-shadow: inset 0 0 7px rgba(20, 20, 43, .08);
}

.radio-button-5.w--redirected-checked {
  border-width: 7px;
  border-color: #4a3aff;
}

.radio-button-5.w--redirected-focus {
  box-shadow: 0 0 3px 1px rgba(74, 58, 255, .2);
}

.radio-button-6 {
  cursor: pointer;
  border: 1.2px solid #d9dbe9;
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 12px;
  transition: all .2s;
  overflow: hidden;
  box-shadow: inset 0 0 7px rgba(20, 20, 43, .08);
}

.radio-button-6.w--redirected-checked {
  border-width: 7px;
  border-color: #4a3aff;
}

.radio-button-6.w--redirected-focus {
  box-shadow: 0 0 3px 1px rgba(74, 58, 255, .2);
}

.form-container {
  margin-top: auto;
  margin-bottom: 5vh;
}

.main-heading {
  text-align: center;
  margin-bottom: 20px;
}

.form-label-2 {
  margin-bottom: 0;
  font-weight: 400;
}

.slide-2-heading {
  opacity: 0;
  font-size: 16pt;
  line-height: 16pt;
  display: none;
}

.slide-4-text {
  opacity: 0;
  line-height: 2;
  display: none;
}

.salutation-wrapper {
  width: 10%;
  padding-right: 10px;
  display: inline-block;
}

.slide-3-heading {
  opacity: 0;
  font-size: 16pt;
  line-height: 16pt;
  display: none;
}

.main-button {
  -webkit-text-fill-color: inherit;
  background-color: #4d9a7b;
  background-clip: border-box;
  border-radius: 80px;
  width: 100%;
  transition: all .3s;
}

.main-button:hover {
  background-color: #b80b00;
}

.input-wrapper {
  margin-top: 0;
  padding-bottom: 0;
}

.input-wrapper.half {
  width: 48%;
  padding-right: 5px;
  display: inline-block;
}

.input-wrapper.half.last {
  padding-left: 5px;
  padding-right: 0;
}

.slide-1-text {
  line-height: 2;
}

.slide-1-heading {
  font-size: 16pt;
  line-height: 1.5;
}

.form-row {
  background-color: #fff;
  height: 700px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(129, 129, 129, .22);
}

.navigation-text {
  float: none;
  clear: none;
  text-align: center;
  margin-top: 2px;
  padding-bottom: 0;
  display: inline-block;
  position: static;
}

.form-slider-2 {
  background-color: rgba(0, 0, 0, 0);
  height: 100%;
}

.hr {
  border-bottom: 1px solid #b3b3b3;
  width: 50px;
  height: 1px;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.hr.bottom {
  margin-bottom: 20px;
}

.hr.detaiil {
  margin-bottom: 100px;
}

.logo {
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.input-column {
  height: 100%;
  padding: 10px 40px;
}

.navigation-button {
  float: none;
  width: 35%;
  height: 35px;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  font-size: 14pt;
  display: inline-block;
  position: relative;
}

.navigation-button.next {
  float: right;
  background-color: #4d9a7b;
  border: 1px solid #000;
  border-radius: 100px;
  transition: all .3s;
}

.navigation-button.next:hover {
  background-color: #b80b00;
}

.navigation-button.previous {
  float: left;
  background-color: #b5b3b3;
  border: 1px solid #000;
  border-radius: 100px;
  transition: all .3s;
  position: relative;
}

.navigation-button.previous:hover {
  background-color: #9c9c9c;
}

.slide-3-text {
  opacity: 0;
  line-height: 2;
  display: none;
}

.detail-column {
  text-align: center;
  height: 100%;
  padding: 40px;
  box-shadow: -1px 0 9px rgba(0, 0, 0, .21);
}

.form-radio {
  margin-right: 20px;
  display: inline-block;
}

.slide-4-heading {
  opacity: 0;
  font-size: 16pt;
  line-height: 16pt;
  display: none;
}

.slide-2-text {
  opacity: 0;
  line-height: 2;
  display: none;
}

.bottom-of-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.text {
  line-height: 2;
}

.text.bottom {
  margin-bottom: 40px;
}

.name-input-wrapper {
  width: 40%;
  padding-right: 10px;
  display: inline-block;
}

.name-input-wrapper.last {
  width: 50%;
  padding-right: 0;
}

.slide-5-text-copy {
  line-height: 2;
}

.form-block-2 {
  height: auto;
  min-height: 800px;
}

.form-block-3 {
  height: 16%;
}

.slide {
  height: 13%;
}

.mask {
  height: 600px;
}

.paragraph {
  flex: 0 auto;
}

.heading {
  margin-top: 0;
}

.c-form-progress {
  color: #fff;
  background-color: #219fa3;
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  margin-right: 20px;
  padding: 15px;
  display: flex;
  position: absolute;
  top: 60px;
  bottom: auto;
  left: auto;
  right: 0%;
}

.form-progress {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.5em;
}

.small-percent {
  font-size: .6em;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 2rem;
  }

  .image {
    height: 100%;
  }

  .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .button-wrapper.half-margin-wrapper {
    margin-top: auto;
  }

  .content-row.service-cards, .content-row.home-v1 {
    flex-wrap: wrap;
  }

  .content-row.quote-row {
    flex-direction: column;
  }

  .content-row.wrap-on-tablet {
    flex-wrap: wrap;
  }

  .card.faq-card {
    flex-direction: column;
    display: flex;
  }

  .card.text-center {
    height: auto;
  }

  .small-product-wrapper {
    padding-left: 10px;
    padding-right: 10px;
    left: 24px;
    right: 24px;
  }

  .awards-strip-wrapper {
    padding-top: 30px;
  }

  .benefit-list-wrapper {
    padding-left: 20px;
  }

  .dot {
    flex: none;
  }

  .nav-link {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 0;
  }

  .nav-button {
    width: 100%;
    margin-top: 8px;
    margin-left: 0;
  }

  .nav-menu {
    background-color: var(--white);
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .spaced-between {
    flex-wrap: wrap;
  }

  .small-map {
    width: 100%;
    margin-top: 32px;
  }

  .home-hero-content {
    text-align: center;
    margin-top: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .menu-burger {
    width: 42px;
    height: 42px;
    padding: 0;
    overflow: hidden;
  }

  .menu-burger.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .menu-burger-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .menu-burger-icon {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    width: 24px;
    height: 12px;
    display: flex;
  }

  .burger-top, .burger-mid, .burger-bot {
    background-color: var(--text);
    min-height: 2px;
    max-height: 2px;
    padding: 0;
  }

  .nav-dropdown-toggle {
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 0;
    display: flex;
  }

  .nav-dropdown-icon-wrapper {
    margin-top: -4px;
    margin-left: 12px;
    display: flex;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
  }

  .vertical-spacer {
    height: 40px;
  }

  .half-background-image {
    border-radius: 16px;
    width: 100%;
    height: auto;
    max-height: 303px;
    margin-top: 40px;
    position: static;
  }

  .texture-set-product-right {
    width: 180px;
  }

  .texture-set-products-left {
    width: 132px;
  }

  .license-row {
    flex-wrap: wrap;
  }

  .license-col {
    width: 50%;
    margin-bottom: 10px;
  }

  .blog-categories-wrapper {
    padding-left: 10px;
    padding-right: 10px;
    left: 24px;
    right: 24px;
  }

  .texture-n {
    height: 113px;
    top: -103px;
  }

  .blog-category-wrapper {
    flex-direction: column;
  }

  .blog-category-image {
    max-width: none;
  }

  .multi-step-form-radio-trigger---brix {
    padding-left: 64px;
    padding-right: 24px;
    font-size: 16px;
  }

  .cloneable-container-default {
    padding-left: 32px;
    padding-right: 32px;
  }

  .radio-button-field-2 {
    padding: 40px 24px;
  }

  .hero-img-wrap {
    width: 50%;
    margin-top: 0;
  }

  .nav-button-2 {
    width: 100%;
    margin-top: 8px;
    margin-left: 0;
  }

  .burger-bot-2, .burger-mid-2, .burger-top-2 {
    background-color: #173238;
    min-height: 2px;
    max-height: 2px;
    padding: 0;
  }

  .nav-menu-2 {
    background-color: #fff;
    padding-bottom: 40px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-link-2 {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 0;
  }

  .nav-dropdown-list-2.w--open {
    box-shadow: none;
  }

  .radio-button-field-5 {
    padding: 40px 24px;
  }

  .slide-2-heading, .slide-3-heading {
    line-height: 1.5;
  }

  .form-row {
    height: 750px;
  }

  .form-slider-2 {
    border-radius: 20px;
    transition: opacity .2s;
  }

  .input-column {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .navigation-button.next {
    background-color: #4d9a7b;
    border-radius: 100px;
  }

  .navigation-button.previous {
    border-radius: 20px;
  }

  .slide-4-heading {
    line-height: 1.5pt;
  }

  .slide-nav-2 {
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  .content.first {
    flex: 0 auto;
    order: -1;
  }

  .button-wrapper.half-margin-wrapper {
    margin-top: 20px;
  }

  .content-row {
    flex-direction: column;
  }

  .content-row.wrap-early {
    align-items: center;
  }

  .content-row.small-products-row, .content-row.post-categories-row {
    grid-column-gap: 0px;
    grid-row-gap: 16px;
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-items: center;
    display: grid;
  }

  .card.featured-plan {
    margin-top: 20px;
    margin-bottom: 20px;
    top: auto;
  }

  .small-product-wrapper {
    bottom: -90px;
    left: 24px;
    right: 24px;
  }

  .awards-strip-grid.about-us {
    filter: contrast(200%) invert();
  }

  .title {
    font-size: 2.5rem;
  }

  .card-group {
    grid-template-columns: 1fr;
    justify-items: stretch;
    height: auto;
    margin-top: 0;
  }

  .testimonial-slider {
    margin-top: 40px;
  }

  .benefit-list-wrapper {
    justify-content: flex-start;
    margin-bottom: 20px;
    padding-left: 0;
  }

  .benefit-list-wrapper.right {
    justify-content: flex-start;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-flex-container {
    flex-direction: column;
  }

  .footer-image {
    object-fit: contain;
  }

  .footer-nav-wrapper, .social-links-wrapper {
    margin-top: 20px;
  }

  .footer-divider {
    margin-top: 50px;
  }

  .grid-2-col {
    grid-template-columns: 1fr;
  }

  .about-bg-image {
    width: 100%;
    min-height: 50%;
    max-height: 50%;
    top: auto;
    right: auto;
  }

  .texture-set-product-right {
    top: 339px;
  }

  .texture-set-products-left {
    top: auto;
    bottom: 5%;
  }

  .blog-categories-wrapper {
    bottom: -90px;
    left: 24px;
    right: 24px;
  }

  .first-step-grid---quote {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .first-step-grid---quote.uniform-space---quote {
    grid-row-gap: 24px;
  }

  .slide---quote {
    padding-bottom: 8px;
  }

  .multi-step-form-error-message---brix {
    margin-top: 170px;
  }

  .form-step-progress-bar-mobile---quote {
    border-radius: 500px;
    width: auto;
    max-width: 100%;
    display: flex;
  }

  .form-step-progress-bar-mobile---quote.full-bar---brix {
    background-color: #4a3aff;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .form-step-progress-bar-mobile---quote.step-2---brix {
    background-color: #4a3aff;
    width: 50%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .form-step-progress-bar-mobile---quote.step-1---brix {
    background-color: #4a3aff;
    width: 22%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .form-step-progress-bar-mobile---quote.step-3---brix {
    background-color: #4a3aff;
    width: 80%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .submit-content-wrapper---brix {
    margin-top: 32px;
  }

  .form-step-number---quote {
    margin-left: 10px;
    margin-right: 10px;
  }

  .steps-bar---quote {
    justify-content: space-between;
    padding-bottom: 24px;
  }

  .cloneable-container-default {
    padding-left: 24px;
    padding-right: 24px;
  }

  .form-content {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .multi-step-form-button---quote {
    top: 990px;
  }

  .multi-step-form-button---quote.left---brix {
    left: -32px;
  }

  .multi-step-form-button---quote.left---brix.preview-page {
    top: 960px;
  }

  .multi-step-form-button---quote.right---brix {
    right: -32px;
  }

  .multi-step-form-button---quote.right---brix.preview-page {
    top: 960px;
  }

  .multi-step-form-block---brix {
    min-height: auto;
  }

  .multi-step-form {
    padding-bottom: 48px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .steps-bar-wrapper--quote {
    flex-direction: column;
    padding-bottom: 32px;
    display: flex;
  }

  .form-step-progress-bar---quote {
    display: none;
  }

  .hero-img-wrap {
    width: 80%;
    max-width: 400px;
    margin-bottom: 40px;
  }

  .form-next {
    min-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .form-block {
    padding: 40px 40px 50px;
  }

  .hero-block {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-bottom: 60px;
  }

  .hero-content {
    width: 100%;
  }

  .form-back {
    min-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .radio-buttons {
    flex-direction: column;
  }

  .radio-buttons.genders {
    flex-direction: row;
  }

  .note-heading {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .subtitle {
    font-size: 20px;
  }

  .note {
    padding: 40px;
    font-size: 20px;
  }

  .form-step {
    height: 100%;
  }

  .form-slide {
    flex: none;
    width: 100%;
  }

  .button-2 {
    min-height: 50px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
  }

  .form-heading {
    font-size: 24px;
  }

  .cloneable-header-grid {
    grid-template-columns: 1fr;
  }

  .multi-step-form---brix {
    padding-bottom: 48px;
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .button {
    text-align: center;
    width: 100%;
  }

  .button-wrapper {
    flex-direction: column;
    margin-top: 20px;
  }

  .button-wrapper.centered {
    flex-direction: column;
  }

  .content-row.service-cards {
    align-items: center;
    margin-top: 40px;
  }

  .content-row.small-products-row {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: grid;
  }

  .content-row.post-categories-row {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: grid;
  }

  .card {
    padding: 17px;
  }

  .card.product-small {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .card.cta {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .section-header.center {
    margin-bottom: 20px;
  }

  .section-header.double {
    margin-left: 0;
    margin-right: 0;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section.hero-section {
    padding-bottom: 0;
  }

  .small-product-wrapper {
    margin-top: -20px;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    bottom: auto;
    left: 0;
    right: 0;
  }

  .texture-b {
    width: 34px;
    height: 34px;
    bottom: -15px;
    right: -15px;
  }

  .awards-strip-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .awards-strip-grid {
    grid-column-gap: 20px;
  }

  .title {
    font-size: 2rem;
  }

  .title.cta {
    font-size: 1.4rem;
  }

  .texture-c {
    height: 96px;
  }

  .testimonial-slider {
    max-width: 282px;
  }

  .testimonial-slide {
    max-width: 280px;
    padding-right: 10px;
  }

  .nav-wrapper {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav-menu {
    padding-bottom: 20px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer {
    text-align: left;
  }

  .footer-flex-container {
    flex-direction: column;
  }

  .footer-logo-link {
    height: 60px;
  }

  .footer-heading {
    margin-top: 20px;
  }

  .footer-nav-wrapper, .copyrights-wrapper {
    flex-direction: column;
  }

  .home-hero-content {
    text-align: left;
    padding-top: 0;
  }

  .form-section {
    grid-template-columns: 1fr;
  }

  .breadcrumb, .breadcrumb-arrow {
    margin-right: 8px;
  }

  .faq-trigger-wrapper {
    padding: 17px;
  }

  .texture-l {
    height: 96px;
  }

  .license-col {
    width: 100%;
  }

  .texture-m {
    height: 96px;
  }

  .blog-categories-wrapper {
    margin-top: -20px;
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    bottom: auto;
    left: 0;
    right: 0;
  }

  .blog-hero-content {
    top: auto;
  }

  .texture-n, .texture-o {
    height: 96px;
  }

  .first-step-grid---quote {
    margin-bottom: 32px;
  }

  .first-step-grid---quote.uniform-space---quote {
    grid-row-gap: 16px;
  }

  .multi-step-form-radio-trigger---brix {
    text-align: left;
    white-space: nowrap;
    padding-left: 60px;
    padding-right: 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .multi-step-form-error-message---brix {
    margin-top: 32px;
  }

  .form-step-progress-bar-mobile---quote {
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .form-step-progress-bar-mobile---quote.full-bar---brix {
    width: 100%;
  }

  .form-step-progress-bar-mobile---quote.step-1---brix {
    width: 25%;
  }

  .form-step-progress-bar-mobile---quote.step-3---brix {
    width: 78%;
  }

  .steps-bar---quote {
    justify-content: space-between;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .cloneable-container-default {
    padding-left: 16px;
    padding-right: 16px;
  }

  .select-item-icon---brix {
    max-width: 24%;
  }

  .multi-step-form-button---quote {
    font-size: 16px;
  }

  .multi-step-form-button---quote.left---brix {
    margin-bottom: 12px;
    display: block;
    position: static;
    left: auto;
  }

  .multi-step-form-button---quote.right---brix {
    display: block;
    position: static;
    right: auto;
  }

  .multi-step-form-label {
    font-size: 16px;
  }

  .radio-button-field-2 {
    padding: 40px 20px;
  }

  .multi-step-form {
    padding-bottom: 12px;
    padding-left: 0;
    padding-right: 0;
  }

  .form-step-progress-bar---quote {
    display: none;
  }

  .area-label {
    font-size: 14px;
  }

  .form-next {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .text-field-wrapper.half, .text-field-wrapper.third {
    width: 100%;
  }

  .form-block {
    border-radius: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .form-back {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .note-heading {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .subtitle {
    font-size: 18px;
  }

  .note {
    padding: 30px 20px 20px;
    font-size: 18px;
  }

  .button-2 {
    flex: none;
    width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-menu-2 {
    padding-bottom: 20px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-heading-2 {
    margin-top: 20px;
  }

  .button-3 {
    text-align: center;
    width: 100%;
  }

  .breadcrumb-2 {
    margin-right: 8px;
  }

  .container-default {
    padding-left: 16px;
    padding-right: 16px;
  }

  .radio-button-field-5 {
    padding: 40px 20px;
  }

  .multi-step-form---brix {
    padding-bottom: 12px;
    padding-left: 0;
    padding-right: 0;
  }

  .salutation-wrapper {
    margin-right: 10px;
  }

  .form-row {
    height: 750px;
  }

  .name-input-wrapper {
    width: 85%;
    padding-right: 0;
  }

  .name-input-wrapper.last {
    width: 100%;
  }

  .c-form-progress {
    float: right;
    text-align: right;
    border-radius: 10px;
    width: auto;
    height: auto;
    margin-left: 20px;
    margin-right: 20px;
    padding: 10px;
    font-size: 1em;
    line-height: 1em;
    display: inline-block;
    position: relative;
    top: auto;
    right: auto;
  }

  .form-progress {
    font-size: 1em;
    line-height: 1em;
  }
}

#w-node-eea6b66b-d295-8927-d098-35a655268a6a-55268a67, #w-node-eea6b66b-d295-8927-d098-35a655268a73-55268a67 {
  justify-self: stretch;
}

#w-node-c408e030-0b11-27fc-4267-073bd108cf5b-f7dc9276 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 479px) {
  #w-node-c408e030-0b11-27fc-4267-073bd108cf5b-f7dc9276 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


