@font-face {
  font-family: AlteHaasGrotesk;
  src: url('../fonts/AlteHaasGroteskRegular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: AlteHaasGrotesk;
  src: url('../fonts/AlteHaasGroteskBold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: white;
  --black: black;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

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

@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: #1a1b1f;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

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

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

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

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

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

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

p {
  margin-bottom: 10px;
}

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

a:hover {
  color: #32343a;
}

a:active {
  color: #43464d;
}

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

li {
  margin-bottom: 10px;
}

img {
  display: block;
}

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

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

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

.divider {
  background-color: #eee;
  height: 1px;
}

.styleguide-content-wrap {
  text-align: center;
}

.section {
  -webkit-text-fill-color: inherit;
  background-color: #fbf5ed;
  background-clip: border-box;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.section.cc-cta {
  background-color: #bcc6d9;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-left: 80px;
  padding-right: 80px;
}

.section.cc-home-wrap {
  padding-top: 0;
  padding-bottom: 0;
}

.section.cc-store-home-wrap {
  width: 100%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.styleguide-block {
  text-align: left;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 80px;
  display: block;
}

.container {
  background-color: #bcc6d9;
  width: auto;
  max-width: none;
  margin: 0 auto;
  padding-bottom: 0;
}

.paragraph-tiny {
  font-size: 12px;
  line-height: 20px;
}

.paragraph-bigger {
  opacity: 1;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.paragraph-bigger.cc-bigger-light {
  opacity: .6;
  margin-bottom: 100px;
}

.paragraph-bigger.cc-bigger-white-light {
  opacity: .6;
}

.primary-button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  border-radius: 20px;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .4s, opacity .4s, color .4s;
}

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

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

.primary-button.cc-jumbo-button {
  padding: 16px 35px;
  font-size: 14px;
  line-height: 26px;
}

.primary-button.cc-contact-us {
  z-index: 5;
  display: none;
  position: relative;
}

.primary-button.cc-white-button {
  color: #202020;
  background-color: #fff;
  padding: 16px 35px;
  font-size: 14px;
  line-height: 26px;
}

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

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

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

.label.cc-styleguide-label {
  margin-bottom: 25px;
}

.label.cc-light {
  opacity: .6;
  margin-bottom: 1em;
  padding-top: 0;
}

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

.heading-jumbo-tiny {
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.rich-text {
  width: 70%;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

.rich-text p {
  opacity: .6;
  margin-top: 15px;
  margin-bottom: 25px;
}

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

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

.paragraph-light {
  opacity: .6;
  margin-bottom: 220px;
  padding-top: 20px;
}

.heading-jumbo {
  color: #000;
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 64px;
  line-height: 80px;
}

.heading-jumbo-small {
  text-transform: none;
  margin-top: 18px;
  margin-bottom: 20px;
  padding-top: 10px;
  font-size: 36px;
  font-weight: 600;
  line-height: 50px;
}

.styleguide-button-wrap {
  margin-top: 10px;
  margin-bottom: 10px;
}

.styleguide-header-wrap {
  color: #fff;
  text-align: center;
  background-color: #1a1b1f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 460px;
  padding: 30px;
  display: flex;
}

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

.logo-link {
  z-index: 1;
}

.logo-link:hover {
  opacity: .8;
}

.logo-link:active {
  opacity: .7;
}

.logo-link.w--current {
  overflow: hidden;
}

.menu {
  z-index: 0;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.navigation-wrap {
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.navigation {
  opacity: 1;
  color: #000;
  background-color: #bcc6d9;
  border-radius: 0;
  align-items: center;
  padding: 30px 50px;
  display: flex;
}

.navigation-item {
  color: #000;
  letter-spacing: 0;
  text-transform: capitalize;
  overflow-wrap: normal;
  padding-top: 9px;
  padding-bottom: 9px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
}

.navigation-item:hover {
  opacity: .5;
}

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

.navigation-item.w--current {
  opacity: 1;
  color: #1a1b1f;
  font-weight: 600;
}

.navigation-item.w--current:hover {
  opacity: .8;
  color: #32343a;
}

.navigation-item.w--current:active {
  opacity: .7;
  color: #32343a;
}

.logo-image {
  padding-left: 0;
  display: block;
}

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

.footer-wrap {
  justify-content: center;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.webflow-link {
  opacity: .5;
  align-items: center;
  text-decoration: none;
  transition: opacity .4s;
  display: flex;
}

.webflow-link:hover {
  opacity: 1;
}

.webflow-link:active {
  opacity: .8;
}

.webflow-logo-tiny {
  margin-top: -2px;
  margin-right: 8px;
}

.cta-text {
  width: 70%;
  margin: 60px auto 35px;
}

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

.intro-header {
  box-sizing: border-box;
  aspect-ratio: auto;
  color: #fff;
  object-fit: fill;
  background-color: #f4f4f4;
  background-image: url('../images/Banner.jpg');
  background-position: 0 0;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 620px;
  margin-bottom: 100px;
  font-family: AlteHaasGrotesk, Tahoma, sans-serif;
  display: flex;
  position: static;
}

.intro-header.cc-subpage {
  color: #fff;
  background-color: #000;
  background-image: none;
  height: 480px;
}

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

.intro-content.cc-homepage {
  margin-bottom: 20px;
}

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

.about-story-wrap {
  text-align: center;
  width: 80%;
  margin: 80px auto;
}

.our-services-grid {
  grid-column-gap: 80px;
  grid-row-gap: 60px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: ". . ."
                       ". . .";
  margin-bottom: 120px;
}

.section-heading-wrap {
  text-align: center;
  margin-bottom: 80px;
}

.service-icon {
  margin-bottom: 30px;
}

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

.status-message.cc-success-message {
  background-color: #12b878;
}

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

.status-message.cc-no-data {
  width: 70%;
  margin: 100px auto;
  display: block;
}

.contact-form-wrap {
  border: 1px solid #eee;
  padding: 45px 50px 50px;
}

.contact-form-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 2.5fr 1fr;
  align-items: start;
}

.details-wrap {
  margin-bottom: 30px;
}

.get-in-touch-form {
  flex-direction: column;
  display: flex;
}

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

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

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

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

.text-field.cc-contact-field {
  margin-bottom: 25px;
}

.text-field.cc-textarea {
  height: 200px;
  padding-top: 12px;
}

.contact-form {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.contact-form-heading-wrap {
  margin-bottom: 40px;
}

.contact-heading {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 400;
}

.map {
  height: 460px;
  line-height: 20px;
}

.contact-team-name-wrap {
  margin-bottom: 30px;
}

.our-contacts {
  grid-column-gap: 80px;
  grid-row-gap: 60px;
  text-align: center;
  grid-template: ". . ."
  / 1fr 1fr 1fr;
}

.contact-team-details-wrap {
  margin-top: 30px;
}

.contact-team-pic {
  background-color: #f4f4f4;
  height: 150px;
  margin-bottom: 30px;
}

.team-pic {
  background-color: #f4f4f4;
  width: 100%;
  height: 420px;
  margin-bottom: 40px;
}

.team-members {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: ". . ."
                       ". . .";
}

.team-member-title-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.team-member-name {
  opacity: 1;
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.projects-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template: "."
                 "."
                 "."
                 / 1fr;
}

.project-name-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
}

.project-name-link {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
  text-decoration: none;
}

.project-name-link:hover {
  opacity: .8;
}

.project-name-link:active {
  opacity: .7;
}

.project-cover-link {
  margin-bottom: 40px;
}

.project-cover-link:hover {
  opacity: .8;
}

.project-cover-link:active {
  opacity: .7;
}

.project-overview-header {
  color: #fff;
  background-color: #f4f4f4;
  background-image: url('../images/portfolio-1---wide.svg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: 620px;
  display: flex;
}

.project-overview-header.cc-project-2-header {
  background-image: url('../images/portfolio-2---wide.svg');
  background-position: 50%;
}

.project-overview-header.cc-project-3-header {
  background-image: url('../images/portfolio-3---wide.svg');
  background-size: cover;
}

.project-details-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 1fr 2fr;
  align-items: start;
}

.detail-image {
  width: 100%;
  margin-bottom: 30px;
}

.blog-detail-header-wrap {
  width: 70%;
  margin: 60px auto;
}

.detail-header-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  height: 620px;
  margin-bottom: 60px;
  display: block;
}

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

.blog-list-wrap {
  margin-bottom: 100px;
}

.blog-item {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.blog-preview-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  width: 100%;
  height: 620px;
  margin-bottom: 45px;
  transition: opacity .6s;
  display: block;
}

.blog-preview-image:hover {
  opacity: .8;
}

.blog-preview-image:active {
  opacity: .7;
}

.blog-summary-wrap {
  text-align: left;
  width: 70%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.blog-heading-link {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
  text-decoration: none;
}

.blog-heading-link:hover {
  opacity: .8;
}

.blog-heading-link:active {
  opacity: .7;
}

.contact-email-link {
  opacity: .6;
  margin-bottom: 5px;
}

.contact-email-link:hover {
  opacity: 1;
}

.contact-email-link:active {
  opacity: .8;
}

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

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

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

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

._404-wrap {
  background-color: #1a1b1f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
}

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

.home-content-wrap {
  margin-top: 80px;
}

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

.section-heading {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;
  font-size: 43px;
  font-weight: 600;
  line-height: 45px;
}

.about-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  background-color: #fff;
  grid-template: ". ."
  / 1fr 1fr;
  align-items: center;
  margin-bottom: 80px;
  padding-top: 20px;
}

.about-grid.cc-about-2 {
  background-color: #bcc6d9;
  grid-template: ". ." 136%
  / 2fr 2.25fr;
  grid-auto-columns: 1.75fr;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

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

.collection-wrap {
  flex-wrap: wrap;
  place-content: flex-start center;
  align-items: flex-start;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.work-heading {
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 10px;
  font-size: 43px;
  font-weight: 600;
}

.blog-heading {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 60px;
}

.blog-preview-wrap {
  width: 33.33%;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 45px;
}

.business-article-heading {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
  text-decoration: none;
}

.business-article-heading:hover {
  opacity: .8;
}

.business-article-heading:active {
  opacity: .7;
}

.secondary-button {
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #fff;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
}

.secondary-button.cc-jumbo-button {
  padding: 16px 35px;
  font-size: 14px;
  line-height: 26px;
}

.text-block {
  text-transform: capitalize;
}

.icon-top {
  width: 12px;
  margin-bottom: 2px;
  transform: rotate(-90deg);
}

.main-heading {
  color: #c69e62;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  width: 60%;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 94px;
  font-weight: 600;
  line-height: 96px;
}

.container-2 {
  max-width: 1400px;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

.nav-text {
  color: #fff;
  text-transform: uppercase;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: color .2s;
}

.nav-text:hover {
  color: #c69e62;
}

.navigation-2 {
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  height: 132px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.bigger-paragraph {
  font-size: 24px;
  line-height: 32px;
}

.bigger-paragraph.home {
  color: #fff;
  width: 60%;
  margin-top: 40px;
  margin-bottom: 320px;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
}

.nav-open-wrapper {
  z-index: 100;
  display: none;
  position: fixed;
  inset: 0%;
}

.nav-wrapper {
  z-index: 99;
  position: relative;
}

.menu-wrapper {
  grid-column-gap: 80px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.nav-divider {
  background-color: #ffffff1a;
  width: 100%;
  height: 1px;
  margin-bottom: 180px;
}

.close {
  width: 100%;
  transform: rotate(45deg);
}

.nav-open-text {
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  transition: color .2s;
}

.nav-open-text:hover {
  color: #c69e62;
}

.text-top {
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 12px;
}

.background-image {
  opacity: 1;
  mix-blend-mode: normal;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  inset: 0%;
}

.hamburger-wrapper {
  border: 1px solid #c69e62;
  flex-direction: column;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding-left: 14px;
  padding-right: 14px;
  display: none;
}

.back-to-top {
  position: absolute;
  inset: 0% 0% auto;
}

.back-to-top-wrapper {
  z-index: 98;
  background-color: #0000001a;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  padding-top: 2px;
  transition: background-color .2s;
  display: flex;
  position: fixed;
  inset: auto 20px 20px auto;
}

.back-to-top-wrapper:hover {
  background-color: #000;
}

.main-heading-animation-mask {
  overflow: hidden;
}

.logo {
  width: 172px;
}

.hamburger-line {
  background-color: #fff;
  width: 100%;
  height: 2px;
  margin-top: 3px;
  margin-bottom: 3px;
}

.hamburger-line.bottom {
  width: 60%;
}

.section-2 {
  position: relative;
  overflow: hidden;
}

.section-2.black-background {
  opacity: .31;
  background-color: #000;
  font-family: Times New Roman, TimesNewRoman, Times, Baskerville, Georgia, serif;
  position: relative;
}

.team-circles {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

.centered-heading {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
  grid-column-gap: 64px;
  grid-row-gap: 56px;
  grid-template-rows: auto minmax(auto, 1fr);
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.team-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  line-height: 22px;
  display: flex;
}

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

.team-member-name-2 {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.team-member-position {
  margin-bottom: 24px;
}

.grid-layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-auto-columns: 1fr;
  display: grid;
}

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

.grid-layout.desktop-4-column.tablet-2-column.mobile-portrait-1-column {
  background-color: #fff;
}

.grid-layout.desktop-4-column.tablet-2-column.mobile-portrait-1-column.grid-gap-s {
  grid-template-rows: 340px;
  margin-top: -147px;
}

.grid-layout.grid-gap-s {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
}

.grid-layout.x-center {
  justify-items: center;
}

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

.utility-padding-all-2rem {
  padding: 2rem;
}

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

.tab-menu-link.utility-width-100---mobile-landscape.utility-text-align-center.w--current {
  background-color: #146ef5;
}

.flex-layout {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  display: flex;
}

.flex-layout.x-center {
  justify-content: center;
}

.flex-layout.flex-vertical.x-center {
  align-items: center;
}

.utility-margin-bottom-2rem {
  margin-bottom: 2rem;
}

.pricing-4-tabs-menu.utility-margin-bottom-2rem {
  justify-content: flex-start;
  position: relative;
}

.avatar {
  background-color: #f0f0f0;
  border-radius: 100rem;
  width: 4rem;
  height: 4rem;
  position: relative;
  overflow: hidden;
}

.avatar.large-avatar {
  width: 5rem;
  height: 5rem;
}

.utility-image-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  inset: 0%;
}

.utility-image-cover.position-relative {
  position: relative;
}

.paragraph-s, .utility-margin-bottom-1rem {
  margin-bottom: 1rem;
}

.icon-small {
  width: 1.25rem;
  height: 1.25rem;
}

.utility-screen-reader-visible-only {
  white-space: nowrap;
  border: 0 solid #0000;
  width: 1px;
  height: 1px;
  margin-top: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.image {
  float: right;
  text-align: left;
  width: 30%;
}

.team-slider {
  text-align: left;
  background-color: #fbf5ed;
  border-bottom: 1px solid #e4ebf3;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 0 100px;
  position: relative;
}

.container-4 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading-2 {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 16px;
  font-weight: 600;
}

.centered-subheading-2 {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-wrapper {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper {
  width: 30%;
  margin-right: 6%;
}

.team-block {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two {
  margin-bottom: 18px;
}

.team-block-info {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text {
  margin-bottom: 20px;
}

.text-link-arrow {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow {
  display: none;
}

.team-slider-nav {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.image-2 {
  border-bottom: 1px solid #000;
  border-radius: 20px;
  margin-top: 40px;
  padding-top: 0;
  padding-bottom: 0;
}

.text-block-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  margin-bottom: 0;
  padding-top: 157px;
  padding-bottom: 0;
  text-decoration: none;
  display: block;
}

.column {
  padding-bottom: 19%;
  padding-left: 100px;
}

.team-slider-2 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

.centered-heading-3 {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading-3 {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-wrapper-2 {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper-2 {
  width: 30%;
  margin-right: 5%;
}

.team-block-2 {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two-2 {
  margin-bottom: 18px;
}

.team-block-info-2 {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two-2 {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text-2 {
  margin-bottom: 20px;
}

.text-link-arrow-2 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-2 {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow-2 {
  display: none;
}

.team-slider-nav-2 {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.text-block-3 {
  text-align: center;
  flex: 0 auto;
  margin-top: 0%;
  margin-bottom: 0;
  text-decoration: none;
}

.cell {
  background-color: #bcc6d9;
  flex-flow: column;
}

.cell-2 {
  background-color: #30d9c4;
}

.cell-3 {
  background-color: #ffce00;
}

.cell-4 {
  background-color: #f18070;
}

.quick-stack {
  text-align: left;
  border: 1px solid #000;
  border-radius: 20px;
  margin-top: 100px;
  padding-top: 20px;
  text-decoration: none;
}

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

.container-6 {
  max-width: 65%;
  margin-top: 0;
}

.text-block-5 {
  background-color: #0000;
}

.quick-stack-2 {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  text-align: left;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 20px;
}

.text-block-6 {
  background-color: #fff;
}

.cell-5 {
  background-color: #ffce00;
}

.cell-6 {
  background-color: #f18070;
}

.cell-7 {
  background-color: #30d9c4;
}

.cell-8, .cell-9 {
  background-color: #f5f7fa;
}

.utility-overflow-hidden, .slider-mask.utility-overflow-hidden {
  overflow: hidden;
}

.utility-width-125 {
  width: 125%;
}

.utility-width-125.centered {
  transform: translate(-10%);
}

.utility-rotate--4-5 {
  transform: rotate(-4.5deg);
}

.utility-aspect-2x3 {
  aspect-ratio: 2 / 3;
  position: relative;
}

.utility-image-contain {
  object-fit: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.utility-rotate-4-5 {
  transform: rotate(4.5deg);
}

.desktop-3-column-parent.desktop-3-column.grid-gap-m {
  justify-content: end;
}

.grid-gap-m-parent.grid-gap-m {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.utility-position-sticky {
  position: sticky;
  top: 0;
}

.utility-position-sticky.top-120px {
  top: 120px;
}

.inline-figure-0, .inline-figure-1, .inline-figure-2, .inline-figure-3, .inline-figure-4, .inline-figure-5 {
  max-width: 1280pxpx;
}

.grid-gap-l-parent.grid-gap-l {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
}

.utility-margin-bottom-4rem {
  margin-bottom: 4rem;
}

.tab-menu-link-1.w--current {
  background-color: #146ef5;
}

.utility-margin-top-4rem {
  margin-top: 4rem;
}

.section-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 8rem;
  position: relative;
}

.utility-aspect-3x2 {
  aspect-ratio: 3 / 2;
}

.eyebrow {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1rem;
}

.eyebrow.utility-margin-bottom-0 {
  margin-bottom: 0;
}

.paragraph-l {
  margin-bottom: 1rem;
}

.utility-margin-bottom-3rem {
  margin-bottom: 3rem;
}

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

.icon-large {
  width: 3rem;
  height: 3rem;
}

.heading-5 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.heading-5.utility-margin-bottom-0, .paragraph-xxl.utility-margin-bottom-0 {
  margin-bottom: 0;
}

.text-link {
  text-decoration: underline;
  display: inline;
}

.footer-dark {
  background-color: #bcc6d9;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 20px;
  position: relative;
}

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

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-brand {
  padding-left: 0;
  padding-right: 100px;
  overflow: visible;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template: ". . . . Areadfd"
  / auto auto 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.title-small {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-decoration: none;
}

.title-small.footer-link {
  display: block;
}

.footer-link {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #1a1b1fbf;
}

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

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

.footer-divider {
  background-color: #e4ebf3;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  text-align: center;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 14px;
  line-height: 16px;
}

.cell-10, .text-block-7, .cell-11, .cell-12, .cell-13, .cell-14, .cell-15, .cell-16, .cell-17, .cell-18 {
  background-color: #bcc6d9;
}

.div-block {
  background-color: #bcc6d9;
  padding-top: 60px;
  padding-bottom: 60px;
}

.code-embed {
  display: flex;
}

.image-3 {
  border: 0 #000;
  border-radius: 20px;
  margin-top: 0;
  display: block;
  position: static;
  overflow: visible;
}

.heading-6 {
  margin-top: 140px;
  font-size: 43px;
  font-weight: 600;
}

.div-block-2 {
  background-color: #bcc6d9;
  margin-left: auto;
  margin-right: auto;
}

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

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

.div-block-3 {
  opacity: 1;
  outline-offset: 0px;
  -webkit-text-fill-color: inherit;
  background-color: #bcc6d9;
  background-clip: border-box;
  border-radius: 0;
  outline: 3px #1a1b1f;
  margin-top: 0;
}

.grid {
  margin-top: 100px;
}

.div-block-4 {
  background-color: #bcc6d9;
  padding-bottom: 140px;
}

.image-5 {
  overflow: visible;
}

.heading-7, .heading-8, .heading-9, .heading-10 {
  font-size: 25px;
  line-height: 30px;
}

.pricing-overview {
  background-color: #fff;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

.centered-heading-4 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 16px;
  padding-top: 10px;
  font-weight: 600;
}

.pricing-description {
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid {
  grid-column-gap: 64px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.pricing-card-three {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.pricing-image {
  object-fit: cover;
  background-color: #04c2e0;
  border-radius: 20px;
  flex: 0 auto;
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
}

.pricing-card-text {
  margin-bottom: 20px;
}

.text-link-arrow-3 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-3 {
  margin-left: 2px;
  display: flex;
}

.section-3 {
  background-color: var(--white);
  border: 0 #bcc6d9;
  flex-flow: row;
  display: flex;
}

.image-6 {
  min-width: 1439px;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.section-4 {
  background-color: var(--white);
  outline-offset: 0px;
  outline: 3px #555;
  display: block;
}

.image-7 {
  background-color: #bcc6d9;
  overflow: visible;
}

.image-8 {
  flex: 0 auto;
}

.image-9, .image-10 {
  border-radius: 20px;
}

.image-11 {
  background-color: var(--white);
  border: 0 #000;
  border-radius: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  text-decoration: underline;
  position: static;
  overflow: visible;
}

.image-12 {
  text-align: right;
  width: 20vw;
  margin-top: 35px;
}

.link-block, .link-block-2, .link-block-3, .link-block-4 {
  text-decoration: none;
}

.section-5 {
  margin-top: 100px;
}

.team-slider-3 {
  background-color: #bcc6d9;
  border-bottom: 1px solid #e4ebf3;
  padding: 40px 0 80px;
  position: relative;
  transform: translate(0);
}

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

.centered-heading-5 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 16px;
  padding-top: 10px;
  font-weight: 600;
}

.centered-subheading-4 {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-wrapper-3 {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper-3 {
  border-radius: 10px;
  width: 30%;
  margin-right: 5%;
  overflow: hidden;
}

.team-block-3 {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two-3 {
  margin-bottom: 18px;
}

.team-block-info-3 {
  flex-direction: column;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two-3 {
  margin-bottom: 20px;
  padding-bottom: 0;
  font-weight: 600;
}

.team-member-text-3 {
  margin-bottom: 20px;
}

.text-link-arrow-4 {
  color: #1a1b1f;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-color: #ffffff8a;
  background-clip: content-box;
  border: 1px solid #e1dbdb;
  border-radius: 6px;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  transition-property: none;
  display: flex;
}

.text-link-arrow-4:hover {
  -webkit-text-fill-color: inherit;
  mix-blend-mode: multiply;
  background-color: #e2dddd63;
  background-clip: padding-box;
  border: 0 solid #a9a9a9;
  margin-right: 0;
  padding: 5px 10px;
  position: static;
  overflow: visible;
  transform: translate(0, -4px);
}

.arrow-embed-4 {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow-3 {
  display: none;
}

.team-slider-nav-3 {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.team-slider-4 {
  background-color: #f5f7fa;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

.centered-heading-6 {
  text-align: center;
  margin-bottom: 16px;
}

.centered-subheading-5 {
  text-align: center;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}

.team-slider-wrapper-4 {
  background-color: #0000;
  height: auto;
  margin-top: 50px;
}

.team-slide-wrapper-4 {
  width: 30%;
  margin-right: 5%;
}

.team-block-4 {
  background-color: #fff;
  padding-bottom: 24px;
}

.team-member-image-two-4 {
  margin-bottom: 18px;
}

.team-block-info-4 {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.team-member-name-two-4 {
  margin-bottom: 12px;
  font-weight: 600;
}

.team-member-text-4 {
  margin-bottom: 20px;
}

.text-link-arrow-5 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-5 {
  margin-left: 2px;
  display: flex;
}

.team-slider-arrow-4 {
  display: none;
}

.team-slider-nav-4 {
  margin-top: 24px;
  font-size: 10px;
  position: static;
  bottom: -60px;
}

.text-block-8 {
  opacity: .59;
  text-align: center;
  border: 1px solid #000;
  border-radius: 20px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  margin-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}

.section-6 {
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-bottom: 0;
  display: flex;
}

.columns {
  margin-left: 40px;
  margin-right: 40px;
}

.section-7 {
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  display: flex;
}

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

.div-block-5 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 30em;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.pricing-comparison {
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

.container-11 {
  width: auto;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  padding-left: 70px;
  padding-right: 70px;
}

.pricing-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  text-align: center;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1.5fr 1.5fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  place-items: start stretch;
  width: 1300px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  display: grid;
}

.pricing-card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  opacity: 1;
  outline-offset: 3px;
  mix-blend-mode: normal;
  background-color: #fff;
  border: 1px solid #f7f0f0;
  border-radius: 20px;
  outline: 2px solid #97998324;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 32px 24px;
  transition: background-color .2s;
  display: flex;
  position: relative;
  box-shadow: 0 10px 13px -8px #8b9aaf;
}

.pricing-card.featured-pricing {
  z-index: 2;
  box-shadow: 0 4px 130px #96a3b54d;
}

.pricing-image-2 {
  object-fit: cover;
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

.pricing-title {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
}

.pricing-subtitle {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 20px;
}

.pricing-price {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

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

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

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

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

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

.button-primary.outline-button {
  color: #1a1b1f;
  background-color: #0000;
  box-shadow: inset 0 0 0 1px #1a1b1f;
}

.button-primary.outline-button:hover {
  color: #fff;
  background-color: #1a1b1f;
}

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

.pricing-feature-list {
  align-self: stretch;
}

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

.pricing-tag {
  color: #3a4554;
  background-color: #fff;
  border-radius: 24px;
  padding: 7px 16px;
  position: absolute;
  top: -19px;
  box-shadow: 0 3px 10px #96a3b533;
}

.heading-11, .heading-12, .heading-13 {
  text-align: center;
  font-weight: 600;
}

.button-icon {
  color: #e3af5a;
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
  font-size: 14px;
  position: relative;
  top: 0;
  left: -4px;
  transform: rotate(90deg);
}

.flex {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.flex.align-center-justify-center {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  justify-content: center;
  align-items: center;
}

.flex.align-center-justify-center.gap-16px {
  grid-column-gap: 16px;
  text-transform: none;
}

.button-text {
  z-index: 2;
  color: #807676;
  letter-spacing: 2px;
  text-transform: none;
  margin-top: -1px;
  text-decoration: none;
  position: relative;
}

.button-icon-wrapper {
  z-index: 2;
  justify-content: center;
  align-items: center;
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-with-icon-overlay {
  z-index: 1;
  background-color: #252525;
  max-width: 100%;
  position: absolute;
  inset: 0% 0% 0% -100%;
}

.button-with-icon-overlay:hover {
  border-color: #0000;
}

.button-with-icon {
  color: #fcfbf9ed;
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px #695a4c;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.42857;
  text-decoration: none;
  transition-property: none;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px -10px #7c6f6f33;
}

.button-image {
  object-fit: cover;
  min-width: 32px;
  max-width: 32px;
  min-height: 32px;
  max-height: 32px;
  position: absolute;
}

.link-block-5 {
  border: 1px solid #000;
  border-radius: 20px;
}

.column-2 {
  margin-top: 60px;
}

.column-3 {
  margin-top: 220px;
  padding-left: 40px;
}

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

.grid-2 {
  grid-template-rows: auto;
  margin-top: 140px;
}

.section-9 {
  margin-top: 140px;
}

.pricing-overview-2 {
  background-color: #fbf5ed;
  border-bottom: 1px solid #e4ebf3;
  padding: 80px 30px;
  position: relative;
}

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

.centered-heading-7 {
  text-align: center;
  margin-bottom: 16px;
  font-weight: 600;
}

.pricing-description-2 {
  text-align: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-grid-2 {
  grid-column-gap: 64px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1.5fr 1.5fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.pricing-card-three-2 {
  background-color: var(--white);
  outline-offset: 3px;
  text-align: center;
  border-radius: 20px;
  outline: 2px solid #97998324;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  box-shadow: 0 2px 5px #97998324;
}

.pricing-image-3 {
  object-fit: cover;
  width: 200px;
  height: 200px;
  margin-top: 10px;
}

.pricing-card-text-2 {
  text-align: left;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

.text-link-arrow-6 {
  color: #1a1b1f;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
  display: flex;
}

.arrow-embed-6 {
  margin-left: 2px;
  display: flex;
}

.hero-heading-right {
  background-color: #bcc6d9;
  border: 1px solid #bcc6d9;
  padding: 80px 30px;
  position: relative;
}

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

.hero-split {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 46%;
  display: flex;
}

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

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

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

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

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

.heading-14 {
  font-weight: 600;
}

.footer-dark-2 {
  background-color: #bcc6d9;
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 15px;
  position: relative;
}

.footer-wrapper-2 {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

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

.title-small-2 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-decoration: none;
}

.footer-link-2 {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

.footer-link-2:hover {
  color: #1a1b1fbf;
}

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

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

.footer-divider-2 {
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 0;
}

.footer-copyright-center-2 {
  text-align: center;
  padding-top: 10px;
  font-size: 14px;
  line-height: 16px;
}

.link-block-6 {
  opacity: 1;
  text-decoration: none;
}

.link-block-7, .link-block-8, .link-block-9, .link-block-10 {
  text-decoration: none;
}

.column-4 {
  padding-right: 100px;
}

.text-block-9 {
  text-transform: none;
  font-family: Montserrat, sans-serif;
}

.image-14 {
  width: 14vw;
}

.image-15 {
  width: 20vw;
}

.image-16, .image-17, .image-18 {
  width: 14vw;
}

.image-19 {
  height: 15vh;
}

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

.icon48 {
  background-color: #04c2e0;
  border-radius: 20px;
  width: 48px;
  padding: 5px;
}

@media screen and (min-width: 1440px) {
  .navigation-item {
    opacity: 1;
    color: #000;
    overflow-wrap: normal;
    transition: none;
    display: block;
  }

  .navigation-item:hover {
    opacity: .5;
  }

  .team-member-image {
    width: 270px;
    height: 270px;
    max-height: none;
  }

  .column {
    text-align: right;
  }

  .section-4 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .image-7 {
    overflow: clip;
  }

  .image-8 {
    display: none;
  }

  .image-12 {
    width: 20vw;
  }

  .team-slide-wrapper-3 {
    border-radius: 10px;
    overflow: hidden;
  }

  .team-block-info-3 {
    align-items: center;
  }

  .button-with-icon {
    box-shadow: none;
    text-transform: none;
  }

  .pricing-image-3 {
    width: 200px;
    height: 200px;
  }

  .pricing-card-text-2 {
    margin-right: 10px;
    padding-left: 10px;
  }

  .image-14 {
    width: 14vw;
  }

  .image-15 {
    width: 20vw;
  }

  .image-16, .image-17, .image-18 {
    width: 14vw;
  }

  .image-19 {
    height: 14vh;
  }

  .div-block-6 {
    justify-content: center;
    margin-top: 86px;
    display: flex;
  }

  .image-20 {
    background-color: #04c2e0;
    border-radius: 10px;
    width: 48px;
  }

  .icon48 {
    background-color: #04c2e0;
    border-radius: 20px;
    width: 48px;
    padding: 5px;
  }

  .paragraph-5 {
    line-height: 28px;
  }
}

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

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

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

  .primary-button.cc-contact-us {
    display: none;
  }

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

  .logo-link.w--current {
    background-color: #bcc6d9;
    flex: 1;
  }

  .menu-icon {
    display: block;
  }

  .menu {
    margin-left: 30px;
    position: static;
  }

  .navigation-wrap {
    background-color: #bcc6d9;
  }

  .navigation {
    padding: 25px 30px;
  }

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

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

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

  .menu-button {
    padding: 0;
  }

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

  .navigation-items {
    background-color: #fff;
  }

  .cta-text {
    width: auto;
  }

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

  .our-services-grid {
    text-align: center;
    grid-template: ". ."
                   ". ."
                   ". ."
                   / 1fr 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .service-icon {
    display: inline-block;
  }

  .contact-form-grid {
    grid-row-gap: 50px;
    text-align: center;
    grid-template: "."
                   "."
                   / 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .get-in-touch-form {
    text-align: left;
  }

  .our-contacts {
    grid-template: "."
                   "."
                   "."
                   / 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .team-members {
    grid-template: ". ."
                   ". ."
                   ". ."
                   / 1fr 1fr;
  }

  .team-member-title-wrap {
    margin-bottom: 30px;
  }

  .project-details-grid {
    grid-row-gap: 50px;
    text-align: center;
    grid-template: "."
                   "."
                   / 1fr;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-detail-header-wrap {
    width: 70%;
  }

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

  .blog-item {
    width: 80%;
  }

  .blog-preview-image {
    height: 460px;
  }

  .blog-summary-wrap {
    width: 100%;
  }

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

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

  .intro-text {
    width: auto;
  }

  .collection-wrap {
    flex-flow: column;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
  }

  .blog-preview-wrap {
    text-align: center;
    width: 80%;
    padding-right: 15px;
  }

  .main-heading {
    width: auto;
  }

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

  .navigation-2 {
    margin-left: 30px;
    margin-right: 30px;
  }

  .bigger-paragraph.home {
    width: auto;
  }

  .nav-open-wrapper {
    z-index: 100;
    background-color: #000;
    height: 0;
    display: block;
    position: fixed;
    inset: 0%;
    overflow: hidden;
  }

  .menu-wrapper {
    display: none;
  }

  .nav-open-link {
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .nav-divider.open {
    margin-bottom: 46px;
  }

  .nav-open-text {
    font-size: 68px;
    font-weight: 700;
    line-height: 62px;
  }

  .hamburger-wrapper {
    border: 1px solid #c69e62;
    display: flex;
  }

  .hamburger-wrapper.open {
    align-items: center;
  }

  .hamburger-line {
    background-color: #fff;
  }

  .hamburger-line.bottom {
    background-color: #c69e62;
  }

  .hamburger-line.top {
    background-color: #c69e62;
    width: 80%;
  }

  .menu-open-wrapper {
    flex-direction: column;
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
  }

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

  .team-grid {
    grid-column-gap: 40px;
  }

  .team-member-image {
    width: 190px;
    height: 190px;
  }

  .grid-layout.tablet-2-column {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

  .team-slide-wrapper-2 {
    width: 47%;
    margin-right: 6%;
  }

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

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

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

  .footer-content {
    grid-column-gap: 60px;
  }

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

  .pricing-grid {
    grid-column-gap: 30px;
  }

  .image-12 {
    width: 30vw;
  }

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

  .team-slide-wrapper-3 {
    width: 47%;
    margin-right: 6%;
  }

  .team-member-text-3 {
    line-height: 15px;
  }

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

  .team-slide-wrapper-4 {
    width: 47%;
    margin-right: 6%;
  }

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

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

  .pricing-card {
    width: 350px;
  }

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

  .pricing-grid-2 {
    grid-column-gap: 30px;
  }

  .hero-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: -40px;
  }

  .hero-split {
    align-items: center;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .footer-content-2 {
    grid-column-gap: 60px;
  }

  .image-19 {
    height: 14vh;
  }

  .icon48 {
    background-color: #04c2e0;
    border-radius: 20px;
    width: 48px;
  }

  .paragraph-4, .paragraph-4-copy, .paragraph-6 {
    line-height: 20px;
  }
}

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

  .section.cc-cta {
    padding: 15px;
  }

  .section.cc-home-wrap, .section.cc-store-home-wrap {
    margin-left: 15px;
    margin-right: 15px;
  }

  .container {
    text-align: center;
  }

  .paragraph-bigger {
    font-size: 16px;
    line-height: 28px;
  }

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

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

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

  .logo-link {
    padding-left: 0;
  }

  .navigation {
    padding: 20px 30px;
  }

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

  .intro-content {
    width: 80%;
  }

  .our-services-grid {
    grid-row-gap: 60px;
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
  }

  .status-message.cc-no-data {
    width: 80%;
    max-width: 470px;
  }

  .contact-form-wrap {
    padding: 30px;
  }

  .text-field.cc-contact-field, .text-field.cc-textarea {
    text-align: left;
  }

  .team-pic {
    height: 300px;
    margin-bottom: 30px;
  }

  .team-member-name {
    font-size: 16px;
    line-height: 28px;
  }

  .project-name-wrap {
    margin-bottom: 30px;
  }

  .project-name-link {
    font-size: 16px;
    line-height: 28px;
  }

  .detail-image {
    margin-bottom: 15px;
  }

  .blog-detail-header-wrap {
    text-align: left;
    width: 90%;
    max-width: 470px;
  }

  .blog-item {
    width: 90%;
    max-width: 470px;
  }

  .blog-summary-wrap {
    text-align: center;
  }

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

  ._404-wrap {
    padding: 30px;
  }

  .main-heading {
    font-size: 58px;
    line-height: 66px;
  }

  .container-2 {
    padding: 60px 16px;
  }

  .navigation-2 {
    height: 62px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .bigger-paragraph {
    font-size: 18px;
    line-height: 28px;
  }

  .bigger-paragraph.home, .nav-divider, .nav-divider.open {
    margin-bottom: 80px;
  }

  .nav-open-text {
    font-size: 12.6vw;
    line-height: 14vw;
  }

  .hamburger-wrapper {
    width: 38px;
    height: 38px;
    padding-left: 9px;
    padding-right: 9px;
  }

  .logo {
    width: 126px;
  }

  .team-circles {
    padding: 60px 15px;
  }

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

  .grid-layout.grid-gap-s {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .grid-layout.mobile-landscape-1-column {
    grid-template-columns: 1fr;
  }

  .utility-padding-all-2rem {
    padding: 1rem;
  }

  .utility-margin-bottom-2rem {
    margin-bottom: 1rem;
  }

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

  .grid-gap-m-parent.grid-gap-m {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .utility-position-sticky {
    position: static;
  }

  .grid-gap-l-parent.grid-gap-l {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .utility-margin-bottom-4rem {
    margin-bottom: 2rem;
  }

  .utility-margin-top-4rem {
    margin-top: 2rem;
  }

  .masonry-layout.mobile-landscape-1-column {
    column-count: 1;
  }

  .utility-margin-bottom-3rem {
    margin-bottom: 1.5rem;
  }

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

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

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block {
    align-items: center;
  }

  .footer-link:hover {
    color: #1a1b1fbf;
  }

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

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

  .footer-divider {
    margin-top: 60px;
  }

  .pricing-overview, .team-slider-3 {
    padding: 60px 15px;
  }

  .team-member-text-3 {
    line-height: 25px;
  }

  .team-slider-4, .pricing-comparison {
    padding: 60px 15px;
  }

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

  .pricing-card {
    width: auto;
  }

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

  .pricing-overview-2, .hero-heading-right {
    padding: 60px 15px;
  }

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

  .footer-wrapper-2 {
    flex-direction: column;
    align-items: center;
  }

  .footer-content-2 {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .footer-block-2 {
    align-items: center;
  }

  .footer-link-2:hover {
    color: #1a1b1fbf;
  }

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

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

  .footer-divider-2 {
    margin-top: 60px;
  }

  .image-19 {
    height: 12vh;
  }

  .icon48 {
    background-color: #04c2e0;
    border-radius: 20px;
    width: 48px;
  }

  .paragraph {
    line-height: 0;
  }

  .paragraph-2 {
    line-height: 15px;
  }

  .paragraph-4, .paragraph-4-copy {
    line-height: 29px;
  }

  .paragraph-6 {
    line-height: 28px;
  }
}

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

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

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

  .menu {
    margin-left: 15px;
  }

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

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

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

  .status-message.cc-no-data, .contact-form-grid {
    width: 100%;
  }

  .our-contacts {
    width: 90%;
  }

  .team-members {
    grid-template: "."
                   "."
                   "."
                   "."
                   "."
                   "."
                   / 1fr;
  }

  .project-details-grid {
    width: 100%;
  }

  .blog-detail-header-wrap, .blog-item {
    width: 100%;
    max-width: none;
  }

  .home-section-wrap {
    margin-bottom: 0;
  }

  .section-heading {
    display: block;
  }

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

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

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

  .grid-layout.desktop-5-column.tablet-2-column {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .grid-layout.mobile-portrait-1-column {
    grid-template-columns: 1fr;
  }

  .avatar {
    margin-bottom: 16px;
  }

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

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

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

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

  .column {
    background-color: #db1818;
  }

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

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

  .team-slide-wrapper-2 {
    width: 100%;
    margin-right: 0%;
  }

  .mobile-landscape-1-column-parent.mobile-landscape-1-column {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .image-12 {
    width: 80vw;
    margin-left: auto;
    margin-right: auto;
    overflow: clip;
  }

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

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

  .team-slide-wrapper-3 {
    width: 100%;
    margin-right: 0%;
  }

  .team-block-info-3 {
    align-items: center;
  }

  .team-member-text-3 {
    line-height: 15px;
  }

  .text-link-arrow-4 {
    border: 1px solid #000;
  }

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

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

  .team-slide-wrapper-4 {
    width: 100%;
    margin-right: 0%;
  }

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

  .flex {
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .flex.align-center-justify-center {
    grid-row-gap: 3px;
    margin-top: 0;
    padding-bottom: 0;
  }

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

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

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

  .footer-dark-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding-bottom: 40px;
    display: block;
  }

  .footer-divider-2 {
    background-color: #bcc6d9;
    margin-top: 60px;
  }

  .footer-copyright-center-2 {
    font-size: 10px;
  }

  .column-4 {
    flex-flow: column;
    display: flex;
  }

  .image-14, .image-15, .image-16, .image-17, .image-18 {
    width: 50vw;
  }

  .link-block-11 {
    width: 100%;
  }

  .div-block-6 {
    flex-flow: column;
    align-items: center;
  }

  .icon48 {
    background-color: #04c2e0;
    border-radius: 20px;
    width: 48px;
  }

  .paragraph-3 {
    line-height: 15px;
  }

  .paragraph-5, .paragraph-6 {
    line-height: 20px;
  }
}

#w-node-_401044a7-68a3-efd2-e205-342ea8f2c9bd-ad63b566.w-node-_5b86a943-96c3-fc3f-e703-eeb0072bc14d-7428f9c7, #w-node-_401044a7-68a3-efd2-e205-342ea8f2c9ce-ad63b566.w-node-_5b86a943-96c3-fc3f-e703-eeb0072bc15c-7428f9c7, #w-node-_401044a7-68a3-efd2-e205-342ea8f2c9df-ad63b566.w-node-_5b86a943-96c3-fc3f-e703-eeb0072bc16b-7428f9c7, #w-node-_401044a7-68a3-efd2-e205-342ea8f2c9f0-ad63b566.w-node-_5b86a943-96c3-fc3f-e703-eeb0072bc17a-7428f9c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db20188c-8060-6d12-39bc-2021b307767b-7428f9c7 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-db20188c-8060-6d12-39bc-2021b3077685-7428f9c7 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: start center;
}

#w-node-b21739e2-41fe-61e6-01c6-f6bb22250dbd-7428f9c7 {
  grid-area: 1 / 1 / 2 / 2;
  place-self: start center;
}

#w-node-e0f00bca-b5bb-c1f2-a37e-1f132b625064-7428f9c7 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-e0f00bca-b5bb-c1f2-a37e-1f132b62509d-7428f9c7 {
  grid-area: 1 / 2 / 2 / 3;
  place-self: center;
}

#w-node-_221ddbef-b40f-e4c5-55cd-0ef43790d178-7428f9c7, #w-node-_221ddbef-b40f-e4c5-55cd-0ef43790d182-7428f9c7, #w-node-_221ddbef-b40f-e4c5-55cd-0ef43790d18c-7428f9c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f5f96c74-a9d9-b582-351f-329550d31bb7-7428f9c7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
}

#w-node-_12e535d0-918d-6c05-41d0-5038ac8a2f94-7428f9c7, #w-node-f5f96c74-a9d9-b582-351f-329550d31bd7-7428f9c7, #w-node-f5f96c74-a9d9-b582-351f-329550d31bff-7428f9c7, #w-node-_30b69c1e-35b0-d224-4c9c-11613c3b80ae-7428f9c7, #w-node-b37fdb77-e38d-851c-ab58-8e874e9e1c0b-7428f9c7, #w-node-_5263bf4a-03d3-2062-48bf-69fc23946081-7428f9c7, #w-node-_12d53010-5286-9b4d-bc7e-4a4de04844bb-7428f9c7, #w-node-_5263bf4a-03d3-2062-48bf-69fc23946077-7428f9c7, #w-node-_5263bf4a-03d3-2062-48bf-69fc2394606d-7428f9c7, #w-node-afea3ae2-acbf-e96f-d95e-178896839d7b-7428f9c7, #w-node-afea3ae2-acbf-e96f-d95e-178896839d84-7428f9c7, #w-node-afea3ae2-acbf-e96f-d95e-178896839d8f-7428f9c7, #w-node-_8b6f3f29-0f8b-01ae-9a25-604cbca36d1e-7428f9c7, #w-node-a170ef12-3efb-6ba2-03a9-5f269d8c918a-7428f9c7, #w-node-_8cbd11b5-bc42-24ee-90fd-078b8cb3b79f-51e627e8, #w-node-_8cbd11b5-bc42-24ee-90fd-078b8cb3b7a8-51e627e8, #w-node-a71cfbc2-ac28-3151-c3f8-20f00b5eb805-51e627e8, #w-node-_8cbd11b5-bc42-24ee-90fd-078b8cb3b7b3-51e627e8, #w-node-f9dce2fd-65db-a87c-3ca5-28359e94cd8f-51e627e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ca1212d8-4247-8b87-bc90-543393b118e6-7428f9ca {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-ca1212d8-4247-8b87-bc90-543393b118ec-7428f9ca {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-ca1212d8-4247-8b87-bc90-543393b118f2-7428f9ca {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-ca1212d8-4247-8b87-bc90-543393b118f8-7428f9ca {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-ca1212d8-4247-8b87-bc90-543393b118fe-7428f9ca {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-ca1212d8-4247-8b87-bc90-543393b11905-7428f9ca {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-c28cc763-f708-1e61-f196-6bd9fce9803c-7428f9cb {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c28cc763-f708-1e61-f196-6bd9fce98043-7428f9cb {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-c28cc763-f708-1e61-f196-6bd9fce9804a-7428f9cb {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-c28cc763-f708-1e61-f196-6bd9fce98051-7428f9cb {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-c28cc763-f708-1e61-f196-6bd9fce98058-7428f9cb {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-c28cc763-f708-1e61-f196-6bd9fce9805f-7428f9cb {
  grid-area: 2 / 3 / 3 / 4;
}

#w-node-_3f61509a-fac7-b0d5-3763-509be705858e-7428f9cc {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_3f61509a-fac7-b0d5-3763-509be70585a6-7428f9cc {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-cb4222c2-e34c-f4e1-7796-79bb93a2fb08-7428f9cc {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-cb4222c2-e34c-f4e1-7796-79bb93a2fb15-7428f9cc {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-cb4222c2-e34c-f4e1-7796-79bb93a2fb22-7428f9cc {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387918-7428f9cd {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387928-7428f9cd {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387918-7428f9cf {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387928-7428f9cf {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_2878ffd7-26fe-9471-3c4e-7763e2d38cdc-7428f9d0 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_2878ffd7-26fe-9471-3c4e-7763e2d38ce3-7428f9d0 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_2878ffd7-26fe-9471-3c4e-7763e2d38cea-7428f9d0 {
  grid-area: 3 / 1 / 4 / 2;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387918-7428f9d1 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_421df62a-c217-12af-eee8-27f88a387928-7428f9d1 {
  grid-area: 1 / 2 / 2 / 3;
}

@media screen and (max-width: 991px) {
  #w-node-db20188c-8060-6d12-39bc-2021b307767b-7428f9c7 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-db20188c-8060-6d12-39bc-2021b3077685-7428f9c7, #w-node-b21739e2-41fe-61e6-01c6-f6bb22250dbd-7428f9c7 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-e0f00bca-b5bb-c1f2-a37e-1f132b625064-7428f9c7 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-e0f00bca-b5bb-c1f2-a37e-1f132b62509d-7428f9c7 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b118f2-7428f9ca {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b118f8-7428f9ca {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b118fe-7428f9ca {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b11905-7428f9ca {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce9804a-7428f9cb {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce98051-7428f9cb {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce98058-7428f9cb {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce9805f-7428f9cb {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_3f61509a-fac7-b0d5-3763-509be70585a6-7428f9cc, #w-node-cb4222c2-e34c-f4e1-7796-79bb93a2fb15-7428f9cc {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-cb4222c2-e34c-f4e1-7796-79bb93a2fb22-7428f9cc {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_421df62a-c217-12af-eee8-27f88a387928-7428f9cd, #w-node-_421df62a-c217-12af-eee8-27f88a387928-7428f9cf, #w-node-_421df62a-c217-12af-eee8-27f88a387928-7428f9d1 {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ca1212d8-4247-8b87-bc90-543393b118ec-7428f9ca {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b118f2-7428f9ca {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b118f8-7428f9ca {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b118fe-7428f9ca {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-ca1212d8-4247-8b87-bc90-543393b11905-7428f9ca {
    grid-area: 5 / 1 / 6 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-c28cc763-f708-1e61-f196-6bd9fce98043-7428f9cb {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce9804a-7428f9cb {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce98051-7428f9cb {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce98058-7428f9cb {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-c28cc763-f708-1e61-f196-6bd9fce9805f-7428f9cb {
    grid-area: 6 / 1 / 7 / 2;
  }
}


@font-face {
  font-family: 'AlteHaasGrotesk';
  src: url('../fonts/AlteHaasGroteskRegular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'AlteHaasGrotesk';
  src: url('../fonts/AlteHaasGroteskBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}