:root {
  --white: white;
  --spark-library--background--interactive: #c4e583;
  --spark-library--black: #1a1f1f;
  --spark-library--white: white;
  --spark-library--foreground-interactive-hover: black;
  --spark-library--foreground-interactive: #3aaf9f;
  --spark-library--foreground-secondary: #1a1f1f;
  --spark-library--foreground-disabled: #98a1b3;
  --spark-library--border-default: rgba(0, 0, 0, 0.16);
  --black: #f0f4f3;
}

.grid-separator {
  display: grid;
  padding: 1vw 1vw;
  gap: 1vw;
  grid-template-columns: repeat(4, 1fr); /* Start with 4 columns on mobile */
}

/* Adjust for larger screens as needed */
@media (min-width: 600px) {
  .grid-separator {
    grid-template-columns: repeat(
      8,
      1fr
    ); /* Example: 5 columns for screens wider than 600px */
  }
}

.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;
}

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 0.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 {
  margin-left: 30px;
  margin-right: 30px;
}

.section.cc-cta {
  background-color: #3aaf9f;
  max-width: none;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.section.cc-store-home-wrap {
  color: #000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.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: 0.6;
  color: #fff;
}

.paragraph-bigger.cc-bigger-white-light {
  opacity: 0.6;
  color: #616565;
  -webkit-text-stroke-color: #000;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #3aaf9f;
  border-radius: 0;
  padding: 12px 25px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
  transition: background-color 0.4s, opacity 0.4s, color 0.4s;
}

.button:hover {
  color: #fff;
  background-color: #c4e583;
}

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

.button.cc-jumbo-button {
  color: #000;
  background-color: #fff;
  padding: 16px 35px;
  font-size: 14px;
  font-weight: 600;
  line-height: 26px;
}

.button.cc-jumbo-button:hover {
  background-color: #c4e583;
}

.button.cc-jumbo-button.cc-jumbo-white {
  color: var(--white);
  background-color: #3aaf9f;
}

.button.cc-jumbo-button.cc-jumbo-white:hover {
  background-color: #c4e583;
}

.button.cc-jumbo-button.cc-jumbo-white:active {
  background-color: #e1e1e1;
}

.button.cc-contact-us {
  z-index: 5;
  background-color: #3aaf9f;
  border: 1px solid #3aaf9f;
  position: relative;
}

.button.cc-contact-us:hover {
  background-color: #c4e583;
  border-width: 0;
}

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

.button.cc-white-button:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.button.cc-white-button:active {
  background-color: rgba(255, 255, 255, 0.9);
}

.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: 0.6;
  color: #616565;
}

.label.cc-blog-date {
  opacity: 0.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: 0.6;
  margin-top: 15px;
  margin-bottom: 25px;
}

.rich-text figcaption {
  opacity: 0.6;
}

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

.paragraph-light {
  opacity: 0.6;
}

.heading-jumbo {
  color: #616565;
  text-indent: 0;
  text-transform: none;
  word-break: normal;
  flex-flow: column;
  margin: 10px auto;
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  display: flex;
  position: static;
}

.heading-jumbo-small {
  color: #fff;
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 28px;
  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: 0.8;
}

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

.menu {
  z-index: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.navigation {
  background-color: rgba(0, 0, 0, 0);
  align-items: center;
  padding: 30px 50px;
  display: flex;
}

.navigation-item {
  opacity: 0.6;
  color: #616565;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding-top: 9px;
  padding-bottom: 9px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

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

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

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

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

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

.logo-image {
  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: 0.5;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.4s;
  display: flex;
}

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

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

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

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

.cta-wrap {
  text-align: center;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 120px;
  display: flex;
}

.intro-header {
  color: #000;
  text-align: center;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 1300px;
  height: 620px;
  margin-bottom: 100px;
  display: flex;
}

.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 {
  flex-direction: row;
  justify-content: flex-start;
  align-self: center;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: 0;
  display: flex;
}

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

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

.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-top: 80px;
  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: 0 solid #eee;
  max-width: 1000px;
  margin: 100px auto;
  padding: 45px 50px 50px;
  display: block;
}

.contact-form-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template:
    ". ."
    / 2.5fr;
  align-items: start;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
}

.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 0.4s;
}

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

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

.text-field::placeholder {
  color: rgba(50, 52, 58, 0.4);
}

.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 {
  color: #616565;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
}

.map {
  height: 460px;
  margin-bottom: 100px;
  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;
  margin-bottom: 120px;
}

.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:
    ". . ."
    ". . .";
  margin-bottom: 60px;
}

.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;
  margin-bottom: 60px;
}

.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: 0.8;
}

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

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

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

.project-cover-link:active {
  opacity: 0.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;
  margin-bottom: 100px;
  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;
  margin-top: 100px;
  margin-bottom: 100px;
}

.project-pics {
  margin-bottom: 120px;
}

.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 0.6s;
  display: block;
}

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

.blog-preview-image:active {
  opacity: 0.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: 0.8;
}

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

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

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

.contact-email-link:active {
  opacity: 0.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;
  margin-bottom: 40px;
}

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

.section-heading {
  color: #1a1f1f;
  margin-top: 10px;
  margin-bottom: 20px;
  margin-right: 20px;
  font-size: 28px;
  font-weight: 400;
}

.about-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template:
    ". ."
    / 1fr 2fr;
  align-items: center;
  margin-bottom: 60px;
}

.about-grid.cc-about-2 {
  grid-column-gap: 60px;
  grid-template-columns: 2fr 1fr;
  grid-template-areas: ". .";
  margin-top: 40px;
  margin-bottom: 60px;
  margin-right: auto;
}

.intro-text {
  text-align: left;
  flex-flow: column;
  flex: 1;
  width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

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

.work-heading {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 400;
}

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

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

.collection-list-wrapper {
  margin-bottom: 120px;
}

.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: 0.8;
}

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

._w-lightbox-caption {
  background-color: rgba(0, 0, 0, 0.6);
}

.dropdown-toggle {
  width: auto;
  max-width: none;
  margin-right: 0;
}

.dropdown {
  width: 100%;
  max-width: none;
  margin-left: 30px;
  margin-right: 30px;
}

.dropdown-list {
  object-fit: fill;
  margin-left: auto;
  margin-right: 30px;
}

.paragraph {
  margin-right: 30px;
}

.testimonial-slider-small {
  background-color: #fff;
  border-bottom: 0 solid #e4ebf3;
  margin-top: 100px;
  margin-bottom: 40px;
  padding: 80px 30px;
  position: relative;
}

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

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

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

.testimonial-slider {
  background-color: rgba(0, 0, 0, 0);
  max-width: 800px;
  height: auto;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-slide-wrapper {
  max-width: 48%;
  margin-right: 4%;
}

.testimonial-card {
  background-color: #fff;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  display: flex;
}

.testimonial-info {
  align-self: stretch;
  align-items: center;
  margin-top: 24px;
  display: flex;
}

.testimonial-image {
  object-fit: cover;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin-right: 16px;
}

.testimonial-author {
  margin-bottom: 2px;
}

.tagline {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 16px;
}

.testimonial-icon-wrapper {
  flex: 1;
  justify-content: flex-end;
  display: flex;
}

.testimonial-slider-left {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  left: -70px;
}

.testimonial-slider-left:focus-visible {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.testimonial-slider-left[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.slider-arrow-embed {
  color: #1a1b1f;
}

.testimonial-slider-right {
  justify-content: center;
  align-items: center;
  width: 40px;
  display: flex;
  right: -70px;
}

.testimonial-slider-right:focus-visible {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.testimonial-slider-right[data-wf-focus-visible] {
  outline-offset: 0px;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.testimonial-slide-nav {
  display: none;
}

.image {
  max-width: 200px;
}

.container-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: url("https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg");
  background-position: 0 0;
  background-size: auto;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-2 {
  order: 1;
  align-self: center;
  position: static;
}

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

.footer-dark {
  background-color: #f0f4f3;
  border-bottom: 1px solid #e4ebf3;
  margin-top: 0;
  padding: 50px 30px 15px;
  position: relative;
}

.container-4 {
  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-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-block {
  flex-direction: 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;
}

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

.footer-link:hover {
  color: rgba(26, 27, 31, 0.75);
}

.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;
  font-size: 14px;
  line-height: 16px;
}

.image-3 {
  max-width: 200px;
}

.image-5 {
  width: 500px;
  max-width: none;
}

.image-8 {
  max-height: 600px;
  margin-top: 0;
  margin-right: 0;
}

.spark-dropdown-text {
  transform-origin: 50% 0;
  margin-bottom: 0;
  padding: 32px;
}

.spark-faq-dropdown {
  perspective-origin: 50% 0;
  transform-origin: 50% 0;
  position: relative;
  overflow: hidden;
}

.spark-faq-dropdown.w--open {
  background-color: var(--spark-library--background--interactive);
  border-radius: 0 0 8px 8px;
  width: 100%;
  padding: 0;
  font-size: 1.25rem;
  transition: background-color 0.15s;
  position: relative;
}

.spark-button-text {
  flex: none;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.spark-vertical-line {
  background-color: var(--spark-library--black);
  width: 2px;
  height: 20px;
}

.spark-horizontal-line {
  background-color: var(--spark-library--black);
  width: 20px;
  height: 2px;
  position: absolute;
}

.spark-faq-plus-to-x {
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.spark-faq-button {
  background-color: var(--spark-library--white);
  color: var(--spark-library--black);
  border-radius: 8px;
  width: 100%;
  padding: 18px 24px;
  font-size: 1.5rem;
  font-weight: 500;
  transition: background-color 0.2s, color 0.15s;
}

.spark-faq-button:hover {
  background-color: var(--spark-library--background--interactive);
  color: var(--spark-library--foreground-interactive-hover);
}

.spark-faq-button:focus {
  outline-color: var(--spark-library--foreground-interactive);
  outline-offset: 0px;
  outline-width: 4px;
  outline-style: solid;
}

.spark-faq-button.w--open {
  background-color: var(--spark-library--background--interactive);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  transition-duration: 0.15s, 0.15s;
}

.spark-faq-button.w--open:focus {
  outline-color: var(--spark-library--foreground-interactive);
  outline-offset: 0px;
  outline-width: 1.5px;
  outline-style: none;
}

.spark-faq-expander {
  border: 2px solid var(--spark-library--black);
  border-radius: 8px;
  width: 100%;
  margin-bottom: 2rem;
}

.spark-secondary-paragraph {
  color: var(--spark-library--foreground-secondary);
  margin-bottom: 64px;
}

.spark-900-width {
  width: 952px;
  max-width: 100%;
}

.spark-900-width.spark-margin-bottom-104px {
  margin-bottom: 104px;
}

.spark-container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.spark-section {
  color: #000;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 64px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans,
    sans-serif;
  position: relative;
}

.spark-section h5 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.spark-section h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.spark-section h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
}

.spark-section h2 {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-family: Montserrat, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
}

.spark-section h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.spark-section h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
}

.spark-section p {
  font-family: Montserrat, sans-serif;
}

.spark-section ul {
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding-left: 14px;
}

.spark-section li {
  margin-bottom: 0.5rem;
}

.paragraph-2 {
  color: #1a1f1f;
}

.image-9 {
  margin-left: auto;
  margin-right: auto;
}

.carousel-wrapper {
  width: 200%;
  display: flex;
}

.carousel {
  width: 500px;
}

.section-2 {
  width: 500px;
  overflow: hidden;
}

.image-10 {
  margin-top: 10px;
  margin-bottom: 80px;
}

.image-11 {
  object-fit: fill;
  max-width: none;
  margin-top: 10px;
}

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

.pricing-overview {
  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-2 {
  text-align: center;
  margin-bottom: 16px;
}

.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;
  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;
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
}

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

.text-link-arrow {
  color: #3aaf9f;
  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;
}

.spark-button {
  border: 1px solid var(--spark-library--foreground-interactive);
  background-color: var(--spark-library--foreground-interactive);
  color: var(--spark-library--white);
  border-radius: 8px;
  flex: none;
  padding: 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1em;
  text-decoration: none;
  transition: border-color 0.15s, background-color 0.15s, opacity 0.15s;
}

.spark-button:hover {
  border-color: var(--spark-library--foreground-interactive-hover);
  background-color: var(--spark-library--foreground-interactive-hover);
  opacity: 1;
}

.spark-button.spark-full-width {
  background-color: var(--spark-library--foreground-interactive);
  text-align: center;
  border-width: 0;
  border-radius: 0;
  width: 100%;
  font-family: Montserrat, sans-serif;
  transition: border-color 0.15s, background-color 0.15s, opacity 0.15s;
}

.spark-button.spark-full-width:hover {
  background-color: var(--spark-library--background--interactive);
  color: var(--white);
  border-width: 0;
}

.spark-pricing-bottom {
  grid-row-gap: 8px;
  text-align: center;
  flex-direction: column;
  padding: 16px;
  display: flex;
}

.spark-small-icon {
  flex: none;
  width: 24px;
  height: 24px;
  display: inline-block;
}

.spark-small-icon.spark-primary-color {
  color: var(--spark-library--foreground-interactive);
}

.spark-small-icon.spark-foreground-disabled {
  color: var(--spark-library--foreground-disabled);
}

.spark-checked-item {
  grid-column-gap: 16px;
  color: var(--spark-library--foreground-secondary);
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 296px;
  display: flex;
}

.spark-features-included {
  grid-row-gap: 16px;
  border-bottom: 1px solid var(--spark-library--border-default);
  text-align: left;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px;
  display: flex;
}

.spark-foreground-secondary {
  color: var(--spark-library--foreground-secondary);
}

.spark-foreground-secondary.spark-no-bottom {
  margin-bottom: 0;
}

.spark-foreground-primary {
  color: var(--spark-library--black);
  font-weight: 600;
}

.spark-price-text {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1;
}

.spark-flexed-price {
  justify-content: center;
  align-items: flex-end;
  display: flex;
}

.spark-label {
  font-weight: 500;
  line-height: 1;
}

.spark-centered-primary-bg-content {
  grid-row-gap: 8px;
  color: var(--spark-library--foreground-interactive);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
  display: flex;
}

.spark-pricing-top {
  border-bottom: 1px solid var(--spark-library--border-default);
  text-align: center;
  flex-direction: column;
  padding: 32px 16px;
  display: flex;
}

.spark-pricing-column {
  background-color: var(--spark-library--white);
  border-radius: 8px;
  width: 458px;
  max-width: 100%;
}

.spark-pricing-column.simple-shadow-small {
  border: 0.2px solid #eaeaea;
  border-radius: 0;
  position: relative;
}

.spark-flex-row-pricing {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 100px;
  display: flex;
}

.spark-flex-row-pricing.spark-padded-and-dark-background {
  background-color: var(--black);
  color: #323837;
  border-radius: 0;
  justify-content: center;
  max-width: 1300px;
  padding: 32px;
}

.spark-centered-content {
  text-align: center;
}

.spark-container-2 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.spark-absolute-primary-background {
  background-color: var(--spark-library--foreground-interactive);
  width: 100%;
  height: 50%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.spark-section-2 {
  width: 100%;
  margin-top: 100px;
  padding: 100px 64px 176px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans,
    sans-serif;
  position: relative;
}

.spark-section-2 h5 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.spark-section-2 h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.spark-section-2 h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.1;
}

.spark-section-2 h2 {
  color: #616565;
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-family: Montserrat, sans-serif;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.spark-section-2 h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.spark-section-2 h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
}

.spark-section-2 p {
  color: #616565;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
}

.spark-section-2 ul {
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding-left: 14px;
}

.spark-section-2 li {
  margin-bottom: 0.5rem;
}

.image-13 {
  max-width: none;
  margin-top: 60px;
}

.image-14 {
  margin-top: 60px;
}

.image-15 {
  margin-top: 10px;
}

.image-16 {
  align-self: center;
  width: 100px;
  height: 22px;
}

.link {
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.div-block-2 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 1300px;
  margin-top: 8px;
  display: flex;
}

.slider {
  width: 500px;
  max-width: none;
  height: 586px;
  max-height: none;
}

.slider::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55px;
  /* background-color: red; */
  background-color: #50af9f;
}

.slide {
  background-image: url("../images/1-San-martin-min.jpg");
  background-position: 50%;
  background-size: cover;
}

.slide-2 {
  background-image: url("../images/2-Bolivar-min.jpg");
  background-position: 0 0;
  background-size: cover;
}

.slide-nav,
.right-arrow,
.left-arrow {
  display: none;
}

.slide-3 {
  background-image: url("../images/3-Ohiggins-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.icon,
.icon-2 {
  display: none;
}

.slide-4 {
  background-image: url("../images/4-Napoleon-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-5 {
  background-image: url("../images/5-Alejandro-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-6 {
  background-image: url("../images/6-Belgrano-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-7 {
  background-image: url("../images/7-Yegros-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-8 {
  background-image: url("../images/8-Juana-de-Arco-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-9 {
  background-image: url("../images/9-Artigas-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-1,
.slide-10 {
  background-image: url("../images/10-Cleopatra-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-11 {
  background-image: url("../images/11-Isabel-catolica-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-12 {
  background-image: url("../images/12-Nefertiti-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-13 {
  background-image: url("../images/13-Atahualpa-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-14 {
  background-image: url("../images/14-Reina-Isabel-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-15 {
  background-image: url("../images/15-Tutankamon-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-16 {
  background-image: url("../images/16-Colon-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-17 {
  background-image: url("../images/17-Einstein-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-18 {
  background-image: url("../images/18-Galileo-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-19 {
  background-image: url("../images/19-Marie-Curie-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-20 {
  background-image: url("../images/20-Edison-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-21 {
  background-image: url("../images/21-Gutenberg-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-22 {
  background-image: url("../images/22-DaVinci-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-23 {
  background-image: url("../images/23-Darwin-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-24 {
  background-image: url("../images/24-Newton-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-25 {
  background-image: url("../images/25-Aristoteles-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-26 {
  background-image: url("../images/26-Marx-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-27 {
  background-image: url("../images/27-Platon-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-28 {
  background-image: url("../images/28-Freud-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-29 {
  background-image: url("../images/29-Mozart-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-30 {
  background-image: url("../images/30-Shakespeare-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-31 {
  background-image: url("../images/31-Frida-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-32 {
  background-image: url("../images/32-Edgar-Allan-Poe-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-33 {
  background-image: url("../images/33-Disney-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-34 {
  background-image: url("../images/34-Martin-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-35 {
  background-image: url("../images/35-Miguel-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-36 {
  background-image: url("../images/36-Simone-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-37 {
  background-image: url("../images/37-Madre-teresa-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-38 {
  background-image: url("../images/38-Rosa-Parks-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-39 {
  background-image: url("../images/39-Tereshkova-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-40 {
  background-image: url("../images/40-Ana-Frank-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-41 {
  background-image: url("../images/41-Muhammed-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-42 {
  background-image: url("../images/42-Dalai-Lama-min.jpg");
  background-position: 50% 0;
  background-size: cover;
}

.slide-1,
.slide-2,
.slide-3,
.slide-4,
.slide-5,
.slide-6,
.slide-7,
.slide-8,
.slide-9,
.slide-10,
.slide-11,
.slide-12,
.slide-13,
.slide-14,
.slide-15,
.slide-16,
.slide-17,
.slide-18,
.slide-19,
.slide-20,
.slide-21,
.slide-22,
.slide-23,
.slide-24,
.slide-25,
.slide-26,
.slide-27,
.slide-28,
.slide-29,
.slide-30,
.slide-31,
.slide-32,
.slide-33,
.slide-34,
.slide-35,
.slide-36,
.slide-37,
.slide-38,
.slide-39,
.slide-40,
.slide-41,
.slide-42 {
  background-position: 50% 0;
  background-size: cover;
  flex: 0 0 100%;
  /* height: 588px; */
  height: 100%;
  position: relative;
}

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

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

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

  .button {
    justify-content: center;
  }

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

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

  .logo-link.w--current {
    flex: 1;
  }

  .menu-icon {
    display: block;
  }

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

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

  .navigation {
    padding: 25px 30px;
  }

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

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

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

  .menu-button {
    padding: 0;
  }

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

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

  .cta-text {
    width: auto;
  }

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

  .intro-content.cc-homepage {
    max-width: 700px;
  }

  .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%;
  }

  .section-heading {
    margin-left: 100px;
    margin-right: 100px;
  }

  .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;
    margin-left: 50px;
  }

  .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;
  }

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

  .testimonial-slider-left {
    left: -20px;
  }

  .testimonial-slider-right {
    right: -20px;
  }

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

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

  .image-4 {
    max-width: 500px;
  }

  .image-5 {
    max-width: 280px;
  }

  .image-6,
  .image-7,
  .image-8 {
    max-width: 500px;
  }

  .spark-section {
    padding-top: 104px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .carousel-wrapper {
    max-width: 280px;
  }

  .carousel,
  .section-2 {
    width: 280px;
  }

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

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

  .spark-features-included {
    padding-left: 64px;
    padding-right: 64px;
  }

  .spark-flex-row-pricing {
    flex-wrap: wrap;
    justify-content: center;
  }

  .spark-section-2 {
    padding-top: 104px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .slider {
    width: 300px;
    height: 386px;
  }
}

@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%;
  }

  .intro-content.cc-homepage {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-top: auto;
  }

  .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;
  }

  .intro-text {
    text-align: center;
    align-self: center;
    margin-left: auto;
  }

  .testimonial-slider-small {
    padding: 60px 15px;
  }

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

  .testimonial-card {
    margin-left: 10px;
    margin-right: 10px;
  }

  .testimonial-slider-left {
    left: -10px;
  }

  .testimonial-slider-right {
    right: -10px;
  }

  .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: rgba(26, 27, 31, 0.75);
  }

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

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

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

  .image-5 {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
  }

  .spark-dropdown-text {
    padding: 24px;
  }

  .spark-faq-button {
    padding-left: 24px;
  }

  .spark-secondary-paragraph {
    margin-bottom: 32px;
  }

  .spark-container {
    width: 100%;
  }

  .spark-section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .image-12 {
    margin-top: 300px;
  }

  .pricing-overview {
    padding: 60px 15px;
  }

  .spark-flex-row-pricing {
    flex-direction: column;
  }

  .spark-container-2 {
    width: 100%;
  }

  .spark-section-2 {
    padding-top: 88px;
    padding-bottom: 88px;
  }
}

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

  .container {
    margin-top: 10px;
  }

  .paragraph-bigger.cc-bigger-white-light {
    margin-bottom: 20px;
  }

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

  .heading-jumbo {
    margin-top: 20px;
    margin-bottom: 20px;
    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;
  }

  .intro-header {
    max-width: 300px;
  }

  .intro-content.cc-homepage {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    margin-top: auto;
    margin-bottom: auto;
  }

  .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-content-wrap {
    margin-bottom: 0;
  }

  .intro-text {
    margin-top: 20px;
  }

  .testimonial-slider-small {
    margin-top: 40px;
    margin-bottom: 0;
  }

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

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

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

  .testimonial-card {
    margin-left: 10px;
    margin-right: 10px;
  }

  .testimonial-slider-left {
    left: -10px;
  }

  .testimonial-slider-right {
    right: -10px;
  }

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

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

  .image-4 {
    max-width: 300px;
  }

  .image-5 {
    align-self: center;
    max-width: 300px;
    margin-top: 40px;
    margin-bottom: 220px;
  }

  .image-6,
  .image-7,
  .image-8 {
    max-width: 300px;
  }

  .spark-900-width.spark-margin-bottom-104px {
    margin-bottom: 64px;
  }

  .spark-section {
    padding: 64px 20px;
  }

  .spark-section h1 {
    font-size: 3rem;
  }

  .spark-section h2 {
    font-size: 2.5rem;
  }

  .carousel {
    width: 300px;
  }

  .section-2 {
    width: 300px;
    margin-bottom: 0;
  }

  .image-12 {
    margin-top: 100px;
  }

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

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

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

  .spark-checked-item {
    grid-column-gap: 8px;
  }

  .spark-features-included {
    padding-left: 20px;
    padding-right: 20px;
  }

  .spark-flex-row-pricing {
    align-items: flex-start;
    margin-top: 64px;
  }

  .spark-flex-row-pricing.spark-padded-and-dark-background {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    padding: 16px;
  }

  .spark-section-2 {
    padding: 64px 20px;
  }

  .spark-section-2 h1 {
    font-size: 3rem;
  }

  .spark-section-2 h2 {
    font-size: 2.5rem;
  }

  .slider {
    width: 200px;
    max-width: none;
    height: 286px;
    max-height: none;
  }
}

#w-node-_86e64837-0616-515b-4568-76c147234d34-efa0832e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_86e64837-0616-515b-4568-76c147234d3f-efa0832e,
#w-node-_86e64837-0616-515b-4568-76c147234d41-efa0832e {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_86e64837-0616-515b-4568-76c147234d4c-efa0832e,
#w-node-d5f144ce-0819-fd8b-50bf-7988e5d3265c-efa0832e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-d5f144ce-0819-fd8b-50bf-7988e5d32662-efa0832e,
#w-node-_8a27e2b2-8da3-0c2b-8a9a-7712d35e9b69-efa0832e {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_8a27e2b2-8da3-0c2b-8a9a-7712d35e9b6f-efa0832e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-bb41cd17-87df-ef81-b7e8-bc70e9e2b0ed-efa0832e,
#w-node-bb41cd17-87df-ef81-b7e8-bc70e9e2b101-efa0832e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_86e64837-0616-515b-4568-76c147234d34-efa0832e {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d3f-efa0832e {
    grid-area: 1 / 1 / 2 / 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d41-efa0832e {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_86e64837-0616-515b-4568-76c147234d4c-efa0832e {
    grid-area: 1 / 1 / 2 / 2;
    align-self: center;
    justify-self: center;
  }

  #w-node-d5f144ce-0819-fd8b-50bf-7988e5d3265c-efa0832e {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-d5f144ce-0819-fd8b-50bf-7988e5d32662-efa0832e {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_8a27e2b2-8da3-0c2b-8a9a-7712d35e9b69-efa0832e {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_8a27e2b2-8da3-0c2b-8a9a-7712d35e9b6f-efa0832e {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }
}
