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

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

@font-face {
  font-family: "Fa Brands 400 (6.4.2)";
  src: url('../fonts/fa-brands-400.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #1a1a19;
  --paragraph-gray: #585858;
  --primary: #6ba84e;
  --light-gray: #fafafa;
  --white: white;
  --primary-dark: #56863e;
  --secondary-orange: #f5e197;
  --gray: #ebebeb;
  --secondary-yellow: #ffff7e;
  --white-20: #fff3;
  --white-60: #fff9;
  --secondary-red: #eecbaa;
}

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

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

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

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

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

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

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

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

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

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

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

body {
  color: var(--black);
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 1.2em;
}

h1 {
  color: var(--black);
  letter-spacing: -1.28px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1em;
}

h2 {
  color: var(--black);
  letter-spacing: -.8px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2em;
}

h3 {
  letter-spacing: -.56px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2em;
}

h4 {
  color: var(--black);
  letter-spacing: -.52px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3em;
}

h5 {
  color: var(--black);
  letter-spacing: -.4px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2em;
}

h6 {
  color: var(--black);
  letter-spacing: -.48px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
}

p {
  color: var(--paragraph-gray);
  letter-spacing: -.32px;
  margin-bottom: 0;
  line-height: 1.5em;
}

a {
  color: var(--primary);
  letter-spacing: -.32px;
  align-items: center;
  font-weight: 500;
  line-height: 1.2em;
  text-decoration: none;
  transition: all .35s;
}

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

ul {
  grid-row-gap: 15px;
  background-color: var(--paragraph-gray);
  color: var(--primary);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  display: flex;
}

li {
  align-items: center;
  line-height: 1.4em;
}

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

label {
  margin-bottom: 10px;
  display: block;
}

strong {
  font-weight: bold;
}

blockquote {
  text-align: center;
  letter-spacing: -.56px;
  background-image: url('../images/“-5.svg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: auto;
  border-left: 1px #000;
  max-width: 900px;
  margin: 20px auto;
  padding: 30px 20px 10px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

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

.section.without-space {
  padding-top: 0;
  padding-bottom: 0;
}

.section.overflow-visible {
  overflow: visible;
}

.section.gray-bg {
  background-color: var(--light-gray);
}

.base-container {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.base-container.full-width {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.spacing-system-column {
  padding-right: 20px;
}

.color-wrapper {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  display: flex;
}

.headings-typography-wrapper {
  flex-flow: wrap;
  width: 47%;
  display: flex;
}

.primary-button {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  letter-spacing: -.32px;
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  transition: background-color .35s cubic-bezier(.645, .045, .355, 1);
  display: inline-block;
}

.primary-button:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.primary-button.full-width-mobile {
  display: block;
}

.primary-button.full-width-mobile:hover {
  color: var(--black);
}

.primary-button.search-button {
  background-color: var(--primary);
  transition-property: all;
}

.primary-button.search-button:hover {
  background-color: var(--secondary-orange);
  color: var(--black);
}

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

.primary-button.submit-button:hover {
  color: var(--black);
}

.nav-menu {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

.nav-link {
  color: var(--white);
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2em;
  transition-property: none;
}

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

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

.nav-dropdown-toggle {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: var(--white);
  letter-spacing: -.48px;
  margin-left: 0;
  margin-right: 0;
  padding: 8px 20px;
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
}

.nav-dropdown-list {
  background-color: #fff;
  border: 1px solid #0000002e;
  border-radius: 10px;
  width: 200px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  border-style: none;
  width: 220px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 10px #0000000a;
}

.nav-dropdown-link-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-link {
  color: var(--black);
  width: 100%;
  margin-left: -20px;
  padding: 8px 8px 8px 0;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s;
  display: flex;
}

.nav-dropdown-link:hover {
  color: var(--primary);
  margin-left: 0;
}

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

.nav-item-title {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.nav-item-title.line {
  text-underline-offset: 5px;
  text-decoration: underline;
}

.licensing-title-wrapper {
  border-bottom: 1px #5e5e5e80;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.licensing-images-wrapper {
  border-top: 1px solid var(--gray);
  width: 100%;
  padding-top: 40px;
}

.licensing-image {
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 320px;
}

.licensing-image-link {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.licensing-paragraph {
  width: 50%;
  margin-right: 40px;
}

.utility-page-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 85vh;
  margin-bottom: 40px;
  padding-top: 40px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 280px;
  display: flex;
}

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

.password-image {
  width: 140px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.password-input {
  border: 1px solid var(--gray);
  color: var(--black);
  border-radius: 4px;
  min-width: 280px;
  height: auto;
  min-height: 48px;
  margin-bottom: 20px;
  padding: 14px 20px;
  font-size: 16px;
  line-height: 1.2em;
}

.password-input:focus {
  border: 1px solid var(--primary);
}

.password-input::placeholder {
  color: var(--paragraph-gray);
}

.password-title-wrapper {
  margin-bottom: 40px;
}

._404-paragraph {
  text-align: center;
  margin-top: 12px;
  margin-bottom: 40px;
}

._404-logo-wrapper {
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 40px 0% auto;
}

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

._404-content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 700px;
  display: flex;
}

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

.footer {
  background-color: var(--light-gray);
  text-align: center;
  align-items: flex-start;
  padding-top: 70px;
  padding-bottom: 30px;
}

.footer-bottom-wrapper {
  grid-row-gap: 5px;
  border-top: 1px solid #0000001a;
  justify-content: space-between;
  width: 100%;
  padding-top: 30px;
  display: flex;
}

.footer-copyright {
  grid-column-gap: 5px;
  grid-row-gap: 0px;
  text-align: center;
  letter-spacing: -.28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2em;
  display: flex;
}

.team-card {
  flex-flow: column;
  justify-content: center;
}

.style-guide-button-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 40%;
  display: flex;
}

.banner-title-wrapper {
  text-align: center;
  flex-flow: column;
  align-items: center;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.section-title-description {
  text-align: center;
  margin-top: 20px;
}

.accordion-toggle {
  white-space: normal;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  display: flex;
}

.accordion-list {
  background-color: #0000;
  width: 100%;
  display: block;
  position: static;
  overflow: hidden;
}

.accordion-list.w--open {
  background-color: #0000;
  padding-top: 0;
  padding-bottom: 20px;
  display: block;
}

.accordion-wrapper {
  width: 100%;
  display: flex;
}

.accordion-item {
  background-color: var(--white);
  border-radius: 10px;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 30px;
  position: static;
}

.accordion-icon {
  height: 24px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 20px;
}

.accordion-wrap {
  width: 50%;
  margin-right: 20px;
}

.accordion-wrap.last-child {
  margin-right: 0;
}

.accordion-list-content {
  margin-top: 0;
  margin-bottom: 10px;
}

.contacts-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.contacts-wrapper.align-top {
  align-items: flex-start;
}

.contacts-wrapper.align-top.align-center {
  justify-content: center;
}

.contacts-content-wrapper {
  width: 50%;
  padding-right: 40px;
}

.contacts-form-wrapper {
  background-color: var(--white);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 45%;
  min-height: 484px;
  margin-left: 40px;
  padding: 40px;
  display: flex;
}

.contacts-form-wrapper.full-width {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  width: 100%;
  margin-left: 0;
}

.contacts-divider {
  background-color: var(--gray);
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.contacts-detail {
  justify-content: flex-start;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 4px;
  display: flex;
}

.contacts-icon {
  color: var(--primary);
  width: 16px;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  font-family: "Fa solid 900", sans-serif;
}

.contacts-icon.height {
  height: 16px;
}

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

.contacts-textarea {
  border: 1px solid var(--light-gray);
  background-color: var(--light-gray);
  color: var(--black);
  letter-spacing: -.32px;
  border-radius: 4px;
  min-width: 100%;
  max-width: 100%;
  min-height: 200px;
  max-height: 100%;
  margin-bottom: 30px;
  padding: 16px 18px;
}

.contacts-textarea:focus {
  border: 1px solid var(--primary);
}

.contacts-textarea::placeholder {
  color: var(--paragraph-gray);
  font-size: 16px;
}

.contacts-input {
  border: 1px solid var(--light-gray);
  background-color: var(--light-gray);
  color: var(--black);
  letter-spacing: -.32px;
  border-radius: 4px;
  height: auto;
  padding: 16px 18px;
  line-height: 1.2em;
  transition: all .2s;
}

.contacts-input:focus {
  border: 1px solid var(--primary);
}

.contacts-input:focus-visible, .contacts-input[data-wf-focus-visible] {
  border-color: var(--primary);
}

.contacts-input::placeholder {
  color: var(--paragraph-gray);
  font-size: 16px;
}

.contacts-title {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 24px;
  display: flex;
}

.footer-link {
  color: var(--paragraph-gray);
  text-align: left;
  letter-spacing: -.48px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-weight: 500;
  line-height: 1.5em;
  transition: all .3s;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-wrapper {
  justify-content: space-between;
  width: 100%;
  margin-bottom: 40px;
  display: flex;
}

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

.footer-brand {
  color: #fff;
  height: 80px;
  margin-bottom: 10px;
}

.footer-brand.w--current {
  color: #fff;
  padding-left: 0;
}

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

.footer-logo {
  object-fit: contain;
  height: 100%;
}

.search-result-item {
  margin-bottom: 30px;
}

.search-link {
  margin-bottom: 10px;
  font-size: 18px;
  transition: all .3s;
  display: inline-block;
}

.search-link:hover {
  color: var(--black);
}

.search-input {
  border: 1px solid var(--light-gray);
  color: var(--black);
  border-radius: 10px;
  height: auto;
  margin-bottom: 0;
  padding: 16px 22px;
  font-size: 16px;
  line-height: 1em;
}

.search-input:focus {
  border-color: var(--secondary-yellow);
}

.search-input::placeholder {
  color: var(--paragraph-gray);
}

.search-result-wrapper {
  max-width: 1200px;
  margin-top: 80px;
  margin-left: 15px;
  margin-right: 15px;
}

.footer-logo-wrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-top: 10px;
  display: flex;
}

.service-list-item {
  position: relative;
}

.slide-3 {
  max-height: 580px;
}

.about-3-tab-link {
  color: var(--white);
  background-color: #0000;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  margin-bottom: -12px;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 19px;
  line-height: 32px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.about-3-tab-link.w--current {
  color: var(--white);
  background-color: #0000;
  padding-top: 20px;
  padding-bottom: 4px;
  font-size: 24px;
}

.portfolio-grid-collection-item {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px #00000014;
}

.portfolio-masonry-image-wrapper {
  position: relative;
}

.landing-feature-icon {
  color: var(--white);
  background-color: #fff3;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  font-family: "Fa solid 900", sans-serif;
  font-size: 20px;
  display: flex;
}

.landing-inner-page-item {
  background-color: var(--primary);
  text-align: center;
  border-radius: 10px;
  width: 100%;
  padding: 6px;
  transition-property: none;
}

.landing-inner-page-image-wrapper {
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.navbar-absolute {
  background-color: #ddd0;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  position: fixed;
  inset: 0% 0% auto;
}

.testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}

.blog-section-title {
  text-align: center;
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
}

.map-wrapper {
  position: relative;
}

.map-wrapper.home-page {
  width: 100%;
  margin-bottom: 60px;
}

.contacts-wrapper-grid {
  grid-column-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  padding-left: 30px;
  padding-right: 30px;
}

.section-title-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 780px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.courses-collection {
  width: 100%;
}

.home-4-testimonials-wrapper, .testimonials-wrapper-2 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  align-items: stretch;
  width: 100%;
  margin-top: 10px;
  display: flex;
}

.top-banner-button-wrapper {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  margin-top: 38px;
  display: flex;
  position: relative;
}

.about-img {
  object-fit: cover;
  position: absolute;
}

.about-img._1 {
  z-index: 2;
  width: 350px;
  inset: 0% 0% auto 12%;
}

.about-img._5 {
  z-index: 4;
  width: 350px;
  inset: 60% 0% auto 24%;
}

.about-img._3 {
  z-index: 1;
  width: 300px;
  inset: 19% 4% 0% auto;
}

.about-img._4 {
  z-index: 5;
  width: 220px;
  inset: 47% 30% 0% 50%;
}

.about-img._2 {
  z-index: 3;
  width: 300px;
  inset: 31% auto 0% 2%;
}

.subtitle {
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.our-services-wrap {
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: center;
  width: 33.33%;
  display: flex;
}

.central-alignment-heaading {
  text-align: center;
  margin-bottom: 75px;
}

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

.content-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 190px;
  display: flex;
}

.content {
  border-radius: 5px;
  margin-bottom: 30px;
  margin-left: 15px;
  margin-right: 15px;
}

.industries-block-wrapper {
  background-color: #0000;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-around;
  width: 100%;
  max-width: 35vw;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.industries-block-wrapper:hover {
  box-shadow: 0 10px 20px #14173326;
}

.home-9-team-item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 31%;
  position: relative;
}

.about-4-team-slide {
  width: 23%;
  margin-right: 30px;
}

.about-6-projects-item {
  text-align: center;
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 370px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-with-blue-bg {
  background-color: var(--primary);
  justify-content: center;
  display: flex;
}

.nav-dropdown-link-line {
  background-color: var(--primary);
  width: 16px;
  height: 2px;
  margin-right: 15px;
  display: inline-block;
}

.search {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  width: 100%;
  margin-top: 20px;
  display: flex;
}

.subtitle-2 {
  color: #fc8e44;
  border-bottom: 2px solid #80808026;
  margin-bottom: 30px;
  margin-right: 0;
  padding-bottom: 4px;
  display: inline-block;
}

.dropdown-nav-link {
  color: #999;
  margin-left: -20px;
  padding: 5px 0;
  font-family: Poppins, sans-serif;
  transition: color .2s;
  display: flex;
}

.dropdown-nav-link:hover, .dropdown-nav-link.w--current {
  color: #004ae2;
}

.gallery-image-link {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-19-gallery-img-link {
  justify-content: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu-wrap {
  align-items: center;
  display: flex;
}

.service-rich {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.service-rich h2 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.service-rich h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-rich h4 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.service-rich h5, .service-rich h6 {
  margin-top: 20px;
}

.service-rich ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

.service-rich img {
  border-radius: 10px;
  margin-top: 40px;
  margin-bottom: 10px;
}

.service-rich p {
  margin-bottom: 10px;
}

.service-rich strong {
  color: var(--black);
}

.home-banner-left-arrow {
  align-items: center;
  height: 40px;
  display: flex;
  inset: 0% auto 0% 2%;
}

.team-item {
  width: 33%;
}

.center-title {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.brand-tablet {
  display: none;
}

.brand {
  height: 42px;
}

.success-message {
  text-align: center;
  background-color: #ddd0;
  font-weight: 500;
}

.error-message {
  color: var(--primary-dark);
  text-align: center;
  background-color: #0000;
  margin-top: 40px;
  padding: 0;
}

.form-contacts {
  flex-flow: column;
  width: 100%;
  height: 100%;
  display: flex;
}

.form-block-contacts {
  width: 100%;
  margin-bottom: 0;
}

.footer-licensing-link {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.footer-licensing-link:hover {
  color: var(--primary-dark);
}

.home {
  position: relative;
}

.home-1-banner {
  z-index: 1;
  flex-flow: column;
  padding-top: 300px;
  padding-bottom: 30px;
  display: flex;
  position: relative;
}

.home-1-banner.mobile {
  padding-top: 220px;
  padding-bottom: 0;
}

.home-1-banner-top-wrapper {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  border-bottom: 1px solid #ffffff1a;
  justify-content: space-between;
  padding-bottom: 56px;
  display: flex;
}

.home-1-banner-top-wrapper.mobile {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
}

.home-1-banner-labels-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  display: flex;
}

.label {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.label.margin-top-4 {
  margin-top: 4px;
}

.image-2 {
  transform: rotate(90deg);
}

.logo {
  height: 100%;
}

.header-button-wrapper.tablet {
  margin-top: 20px;
  display: none;
}

.section-label {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  border: 1px solid var(--gray);
  background-color: var(--white);
  letter-spacing: -.32px;
  border-radius: 50px;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
}

.heading-wrap {
  margin-top: 20px;
}

.large-text {
  color: var(--black);
  letter-spacing: -1.4px;
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1em;
}

.large-text.text-white {
  color: var(--white);
  font-size: 50px;
  font-weight: 500;
}

.home-1-service-section-title-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 60px;
  display: flex;
}

.home-1-services-text-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  margin-top: 20px;
  display: flex;
}

.home-1-services {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  display: flex;
}

.bg-rectangle {
  background-color: var(--light-gray);
  border-radius: 10px;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding: 60px 15px;
  display: flex;
  position: relative;
}

.services-card {
  z-index: 0;
  background-color: #0003;
  position: absolute;
  inset: 0%;
}

.gray-card {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  background-color: var(--light-gray);
  border-radius: 10px;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  display: flex;
}

.gray-card-text-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  max-width: 426px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 20px;
  display: flex;
}

.home-1-gray-card-image {
  object-fit: cover;
  border-radius: 4px;
  width: 45%;
  max-width: 530px;
  position: relative;
  overflow: hidden;
}

.solutions-list {
  flex-flow: column;
  margin-top: 32px;
  display: flex;
}

.solution-list-item {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  border-bottom: 1px solid var(--gray);
  flex-flow: column;
  margin-bottom: 20px;
  padding-bottom: 20px;
  display: flex;
}

.without-space {
  margin-top: 0;
  margin-bottom: 0;
}

.small-paragraph {
  letter-spacing: -.28px;
  font-size: 14px;
}

.solution-button-wrapper {
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 42px;
  display: flex;
}

.footer-text {
  text-align: left;
  letter-spacing: -.4px;
  max-width: 210px;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3em;
}

.social-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-top: 40px;
  display: flex;
}

.social-link-block {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  border: 1px solid var(--gray);
  color: var(--black);
  text-align: left;
  letter-spacing: -.32px;
  border-radius: 50px;
  padding: 4px 12px;
  font-weight: 500;
  line-height: 1.5em;
  transition-property: none;
  display: flex;
}

.footer-links-wrap {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  display: flex;
}

.clip {
  position: relative;
  overflow: hidden;
}

.button-text-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
  overflow: hidden;
}

.button-text-wrap.bottom-wrap, .button-text-wrap.bottom-wrap-white {
  position: absolute;
  bottom: -100%;
}

.button-text-wrap.dark {
  color: var(--black);
  justify-content: flex-start;
  align-items: center;
}

.home-2-number-cell {
  grid-column-gap: 90px;
  grid-row-gap: 90px;
  background-color: var(--white);
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px;
  display: flex;
}

.why-choose-us-label-wrap {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.why-choose-us-title-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  display: flex;
}

.why-choose-us-title-wrap.home-3 {
  max-width: 517px;
  margin-bottom: 20px;
}

.why-choose-us-light-gray-card {
  z-index: 1;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: var(--light-gray);
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  display: flex;
  position: relative;
}

.why-choose-us-black-card {
  z-index: 0;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: var(--black);
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  padding: 20px;
  display: flex;
}

.why-choose-us-primary-card {
  z-index: 0;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: var(--primary);
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  padding: 20px;
  display: flex;
  position: relative;
}

.why-choose-us-text-wrap {
  min-height: 100px;
}

.home-2-cta {
  background-image: url('../images/pakettiauto-mainoskyltti.avif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  padding-top: 60px;
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.home-2-cta-wrap {
  z-index: 2;
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 573px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.home-2-cta-text-wrap {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.home-2-cta-button-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
  display: flex;
}

.home-3-about {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

.home-3-about-text-wrapper {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  flex-flow: column;
  width: 70%;
  max-width: 599px;
  display: flex;
}

.home-3-about-title-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.gray-span {
  opacity: .6;
  color: var(--paragraph-gray);
}

.home-about-video-wrapper {
  background-image: linear-gradient(#00000080, #00000080);
  border-radius: 10px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 550px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-3-about-paragraph-wrap {
  grid-column-gap: 56px;
  grid-row-gap: 56px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 460px;
  display: flex;
}

.about-photo-text-grid {
  z-index: 2;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-items: end;
  width: 100%;
  height: 100%;
  padding-bottom: 20px;
  padding-left: 30px;
  padding-right: 30px;
  display: grid;
  position: absolute;
  inset: 0%;
}

.home-3-why-choose-us-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1.5fr 1.5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.why-choose-us-card-grid {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.white-section-label {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--white);
  letter-spacing: -.32px;
  background-color: #ffffff1a;
  border-radius: 50px;
  justify-content: flex-start;
  align-items: center;
  padding: 4px 12px;
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
}

.inner-banner-image {
  object-fit: cover;
  object-position: 50% 0%;
  width: 38%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.inner-banner-image.faq-page {
  object-position: 50% 50%;
}

.photo-bg-inner-section {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.photo-inner-banner-text-wrap {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  display: flex;
  position: relative;
}

.service-details-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: -20px;
  display: grid;
}

.service-details-wrapper.with-form {
  grid-template-columns: 1.7fr 1fr;
}

.service-page-contacts {
  position: sticky;
  inset: 140px 0% auto auto;
}

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

.lightbox-link {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 350px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.plus-image {
  filter: invert();
  height: 40px;
}

.gallery-photo-overlay {
  background-color: var(--white-20);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.testimonial-page-card {
  background-color: var(--light-gray);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  padding: 30px 35px 30px 30px;
}

._404-text {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 60px;
  font-weight: 500;
  line-height: 1em;
}

.field-label {
  font-weight: 400;
}

.password-button-wrapper {
  flex-flow: column;
  display: flex;
}

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

.search-page-banner {
  background-color: var(--primary-dark);
  padding-top: 140px;
  padding-bottom: 55px;
}

.search-wrap {
  flex-flow: column;
  max-width: 1200px;
  margin-left: 15px;
  margin-right: 15px;
  display: flex;
}

.text-block-3 {
  margin-bottom: 10px;
}

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

.home-1-banner-overlay-2 {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.scroll-link-block-2 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  color: #fff;
  letter-spacing: -.32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  display: flex;
}

.scroll-link-block-2:hover {
  color: #fff;
}

.home-1-banner-text-2 {
  color: #fff;
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2em;
}

.home-1-banner-left-wrapper-2 {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  max-width: 420px;
  display: flex;
}

.home-1-h1-wrapper-2 {
  max-width: 460px;
}

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

.text-white-2.without-space {
  margin-top: 0;
  margin-bottom: 0;
}

.text-white-2.without-space.style-h6 {
  letter-spacing: -.48px;
  font-size: 16px;
  line-height: 1.5em;
}

.home-1-banner-bottom-wrapper-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
}

.blur-fade {
  padding-top: 100px;
}

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

.service-item {
  grid-column-gap: 120px;
  grid-row-gap: 120px;
  border: 1px solid #eee;
  border-radius: 10px;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  padding-top: 40%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.blur-image-2 {
  z-index: auto;
  filter: blur(24px);
  width: 100%;
  height: 40%;
  position: absolute;
  inset: auto 0% 0%;
}

.service-card-text-wrap-2 {
  z-index: 1;
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 148px;
  padding: 27px 10px 20px;
  display: flex;
  position: relative;
}

.card-link-text-2 {
  color: #fff;
  letter-spacing: -.4px;
  font-size: 20px;
  font-weight: 600;
}

.solution-card-paragraph-2 {
  color: #fff;
  letter-spacing: -.28px;
  font-size: 14px;
}

.service-image {
  z-index: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.footer-title {
  color: var(--black);
  height: 24px;
  font-weight: 600;
}

.subpage-image {
  z-index: -2;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.subpage-overlay {
  z-index: -1;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.social-link {
  width: 24px;
  height: 24px;
  transition-duration: .2s;
}

.social-link:hover {
  color: var(--primary);
  transform: scale(1.2);
}

.social-embed {
  width: 24px;
  height: 24px;
}

.splide__list {
  display: flex;
}

.splide__slide {
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 10vw;
  padding-left: 2.5em;
  padding-right: 2.5em;
  display: flex;
}

.logo-carousel {
  margin-top: 3em;
  overflow: hidden;
}

.logo-carousel.splide {
  margin-top: 0;
  margin-bottom: 4rem;
}

.splide__track {
  grid-column-gap: 4vw;
  grid-row-gap: 4vw;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.background-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.space {
  height: 10px;
}

.cta-overlay {
  z-index: 0;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #6ba84eb3;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.image-4 {
  width: 64px;
}

.live-chat-close-icon---brix {
  z-index: -1;
  position: absolute;
}

.live-chat-bubble-subtext---brix {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
}

.live-chat-bubble-subtext---brix.whatsapp {
  color: #7f8d8a;
}

.live-chat-button---brix {
  color: #fff;
  transform-style: preserve-3d;
  background-color: #4a3aff;
  border-radius: 60px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  box-shadow: 0 6px 18px #0e0d6a24;
}

.live-chat-button---brix:hover {
  background-color: #170f49;
  transform: scale3d(.94, .94, 1.01);
}

.live-chat-button---brix.whatsapp {
  background-color: #25d366;
  box-shadow: 0 6px 18px #112d2d24;
}

.live-chat-message {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 36px 36px 36px 3px;
  margin-bottom: 14px;
  padding: 38px 38px 34px;
  box-shadow: 0 4px 16px #170f4912;
}

.live-chat-message.whatsapp {
  box-shadow: 0 4px 16px #14282b14;
}

.live-chat-bubble-title {
  color: #170f49;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 18px;
}

.live-chat-bubble-title.whatsapp {
  color: #142b26;
}

.live-chat-wrapper {
  z-index: 2;
  flex-direction: column;
  align-items: flex-end;
  max-width: 380px;
  display: flex;
  position: fixed;
  bottom: 48px;
  right: 32px;
}

.live-chat-wrapper.preview-page {
  position: fixed;
}

.live-chat-bubbble---brix {
  z-index: 1;
  cursor: pointer;
  transform-style: preserve-3d;
  background-color: #4a3aff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-top: 14px;
  transition: transform .3s;
  display: flex;
  box-shadow: 0 4px 8px #4a3aff14;
}

.live-chat-bubbble---brix:hover {
  transform: scale3d(.92, .92, 1.01);
}

.live-chat-bubbble---brix.whatsapp {
  background-color: #075e54;
  box-shadow: 0 4px 8px #128c6033;
}

.live-chat-content {
  align-items: flex-end;
  display: flex;
}

.live-chat-avatar {
  background-color: var(--white);
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.live-chat-avatar-wrapper {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  overflow: hidden;
  box-shadow: 0 4px 14px #170f491a;
}

.live-chat-content-left {
  margin-right: 18px;
}

.team-grid-large {
  grid-column-gap: 20px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.team-grid-large.smaller {
  grid-column-gap: 40px;
  margin-top: 2rem;
}

.team-member-photo {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}

.team-member-info {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  padding-top: 10px;
  display: flex;
}

.founder-text {
  color: #fff;
  letter-spacing: -.28px;
  font-size: 14px;
  line-height: 1.5em;
}

.founder-text.gray-text {
  color: #585858;
}

.heading {
  margin-bottom: 2rem;
}

.field-label-2 {
  font-size: 14px;
}

.checkbox-field {
  margin-top: 4px;
  margin-bottom: 8px;
  font-size: 14px;
}

.div-block-3 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  margin-bottom: 4px;
  display: flex;
}

.logo-2 {
  aspect-ratio: auto;
  object-fit: contain;
  height: 34px;
}

@media screen and (min-width: 1280px) {
  h1 {
    letter-spacing: -1.4px;
    font-size: 70px;
  }

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

  .spacing-system-column {
    padding-right: 30px;
  }

  .headings-typography-wrapper {
    width: 48%;
  }

  .footer {
    padding-top: 110px;
  }

  .footer-bottom-wrapper {
    margin-top: 30px;
  }

  .banner-title-wrapper {
    max-width: 600px;
  }

  .accordion-item {
    border-radius: 10px;
  }

  .contacts-content-wrapper {
    width: 40%;
  }

  .contacts-form-wrapper {
    width: 45%;
  }

  .search-result-wrapper {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .testimonials {
    padding-top: 130px;
    padding-bottom: 130px;
  }

  .blog-section-title {
    margin-bottom: 70px;
  }

  .map-wrapper {
    padding-right: 70px;
  }

  .section-title-center {
    margin-bottom: 70px;
  }

  .about-img._3 {
    width: 340px;
  }

  .about-img._4 {
    width: 280px;
  }

  .about-img._2 {
    width: 340px;
  }

  .industries-block-wrapper {
    position: relative;
  }

  .section-with-blue-bg {
    padding-left: 40px;
    padding-right: 40px;
  }

  .center-title {
    padding-right: 140px;
  }

  .home-1-banner {
    padding-top: 350px;
  }

  .home-1-banner.mobile {
    padding-top: 260px;
  }

  .large-text {
    font-size: 70px;
  }

  .large-text.text-white {
    font-size: 64px;
  }

  .home-1-service-section-title-wrapper {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
    width: 25%;
    max-width: 330px;
    margin-left: 0;
    margin-right: 0;
    padding-top: 60px;
  }

  .home-1-services {
    grid-column-gap: 200px;
    grid-row-gap: 200px;
    flex-flow: row;
  }

  .gray-card {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .gray-card-text-wrapper {
    padding-left: 40px;
  }

  .footer-links-wrap {
    grid-column-gap: 70px;
    grid-row-gap: 70px;
  }

  .why-choose-us-text-wrap {
    min-height: 140px;
  }

  .home-3-about {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .home-3-why-choose-us-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .inner-banner-image {
    width: 40%;
  }

  .photo-bg-inner-section {
    padding-top: 160px;
    padding-bottom: 120px;
  }

  .rich-text-wrapper {
    max-width: 650px;
  }

  .search-wrap {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .home-1-banner-text-2 {
    font-size: 28px;
  }

  .home-1-banner-left-wrapper-2 {
    max-width: 490px;
  }

  .home-1-h1-wrapper-2.mobile {
    max-width: 550px;
  }

  .service-card-text-wrap-2 {
    min-height: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .subpage-overlay {
    background-image: linear-gradient(#0000000d, #0000000d);
  }

  .space {
    height: 10px;
  }
}

@media screen and (min-width: 1440px) {
  h1, h3, h4, h5, h6 {
    margin-bottom: 10px;
  }

  .base-container {
    max-width: 1300px;
  }

  .licensing-paragraph {
    width: 45%;
  }

  .search-result-wrapper {
    max-width: 1300px;
  }

  .about-img._1 {
    width: 380px;
  }

  .about-img._3 {
    width: 400px;
  }

  .about-img._4 {
    width: 300px;
  }

  .about-img._2 {
    width: 390px;
  }

  .our-services-wrap {
    align-items: center;
  }

  .section-with-blue-bg {
    padding-left: 100px;
    padding-right: 100px;
  }

  .large-text.text-white {
    font-size: 70px;
  }

  .home-3-about {
    grid-column-gap: 150px;
    grid-row-gap: 150px;
  }

  .home-3-about-text-wrapper {
    grid-column-gap: 262px;
    grid-row-gap: 262px;
  }

  .about-photo-text-grid {
    grid-column-gap: 76px;
    grid-row-gap: 76px;
  }

  .inner-banner-image {
    width: 45%;
  }

  .rich-text-wrapper {
    max-width: 700px;
  }

  .service-details-wrapper {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .search-wrap {
    max-width: 1300px;
  }

  .service-item {
    grid-column-gap: 160px;
    grid-row-gap: 160px;
    min-width: 300px;
  }

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

@media screen and (min-width: 1920px) {
  .base-container {
    max-width: 1440px;
  }

  .licensing-paragraph {
    width: 40%;
  }

  .style-guide-button-wrapper {
    width: 30%;
  }

  .contacts-content-wrapper {
    width: 35%;
  }

  .search-result-wrapper {
    max-width: 1440px;
  }

  .about-img._1 {
    width: 420px;
    left: 16%;
  }

  .about-img._3 {
    width: 430px;
    top: 20%;
    left: 54%;
  }

  .about-img._4 {
    left: 48%;
  }

  .section-with-blue-bg {
    padding-left: 180px;
    padding-right: 180px;
  }

  .home-1-banner {
    padding-top: 500px;
  }

  .home-1-banner-top-wrapper.mobile {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .home-1-gray-card-image {
    width: auto;
    max-width: 650px;
  }

  .footer-links-wrap {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

  .inner-banner-image {
    width: 47%;
  }

  .service-details-wrapper {
    grid-column-gap: 110px;
    grid-row-gap: 110px;
  }

  .search-wrap {
    max-width: 1440px;
  }

  .service-item {
    grid-column-gap: 200px;
    grid-row-gap: 200px;
    min-width: 380px;
  }

  .blur-image-2 {
    filter: blur(10px);
  }
}

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

  h2 {
    font-size: 36px;
  }

  .primary-button {
    display: block;
  }

  .nav-menu {
    background-color: var(--white);
    flex-direction: column;
    width: 320px;
    inset: 0% auto 0% 0%;
  }

  .menu-button {
    background-color: var(--primary);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    text-align: right;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 50.3516px;
    height: 50.3516px;
    padding: 13px;
    display: flex;
  }

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

  .nav-link {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 0;
    display: flex;
  }

  .nav-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    transition: opacity .5s;
    display: flex;
    overflow: hidden;
  }

  .nav-dropdown-toggle {
    color: var(--black);
    align-items: center;
    padding: 10px 0;
    display: flex;
  }

  .nav-dropdown-list {
    border-style: none;
    flex-direction: column;
    width: auto;
    padding: 0 40px 0 20px;
    display: flex;
    position: static;
  }

  .nav-dropdown-list.w--open {
    box-shadow: none;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    position: static;
  }

  .nav-dropdown-link-wrapper {
    flex-flow: wrap;
    padding-right: 0;
  }

  .nav-dropdown-link-wrapper:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-dropdown-link {
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .close-menu-button, .close-menu-button.w--open {
    background-color: #0000;
    padding: 0 20px 0 0;
  }

  .nav-close-icon {
    z-index: 15;
    align-self: stretch;
    margin-bottom: 2px;
  }

  .nav-item-title {
    color: var(--black);
  }

  .licensing-image {
    height: 340px;
  }

  .licensing-paragraph {
    width: 100%;
  }

  .contacts-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    align-items: flex-start;
  }

  .contacts-content-wrapper {
    width: 100%;
    padding-right: 0;
  }

  .contacts-form-wrapper {
    width: 100%;
    margin-left: 0;
    padding: 30px;
  }

  .contacts-form-wrapper.full-width {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .contacts-title {
    max-width: 500px;
  }

  .footer-wrapper {
    flex-wrap: wrap;
  }

  .footer-brand-wrapper {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 50px;
  }

  .search-input:focus {
    border: 1px solid var(--primary);
  }

  .testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .blog-section-title {
    margin-bottom: 60px;
  }

  .contacts-wrapper-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-title-center {
    margin-bottom: 60px;
  }

  .home-4-testimonials-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .testimonials-wrapper-2 {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-wrap: wrap;
    width: 80%;
    margin-top: 20px;
  }

  .about-img._1 {
    top: 7%;
    left: 15px;
  }

  .about-img._5 {
    top: 58%;
    bottom: 0;
    left: 60px;
  }

  .about-img._3 {
    width: 360px;
    top: 0%;
    right: 15px;
  }

  .about-img._4 {
    width: 240px;
    top: 57%;
    left: auto;
    right: 15px;
  }

  .about-img._2 {
    z-index: 5;
    top: 30%;
    left: 35%;
  }

  .subtitle {
    margin-bottom: 30px;
  }

  .content {
    margin-bottom: 0;
  }

  .industries-block-wrapper {
    max-width: 45vw;
  }

  .about-4-team-slide {
    width: 100%;
  }

  .nav-dropdown-link-line {
    display: none;
  }

  .subtitle-2 {
    margin-bottom: 30px;
  }

  .dropdown-nav-link {
    color: #222;
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: Lato, sans-serif;
    font-weight: 700;
  }

  .dropdown-nav-link.w--current {
    color: #004ae2;
  }

  .menu-wrap {
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .home-banner-left-arrow {
    inset: 20% auto auto 4%;
  }

  .tablet-menu {
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    display: flex;
  }

  .image-burger {
    margin-bottom: 2px;
  }

  .image-burger.white {
    filter: invert();
    margin-bottom: 0;
  }

  .brand-tablet {
    height: 31px;
    display: block;
  }

  .brand-tablet.w--current {
    height: 31px;
  }

  .home-1-banner {
    padding-top: 220px;
  }

  .home-1-banner.mobile {
    padding-top: 60px;
  }

  .home-1-banner-top-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
  }

  .home-1-banner-top-wrapper.mobile {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    place-items: start stretch;
    display: grid;
  }

  .header-button-wrapper {
    display: none;
  }

  .header-button-wrapper.tablet {
    display: block;
  }

  .large-text {
    margin-top: 0;
    font-size: 52px;
  }

  .home-1-service-section-title-wrapper {
    width: 58%;
    padding-bottom: 40px;
  }

  .footer-links-wrap {
    justify-content: space-between;
    width: 100%;
  }

  .clip.nav {
    width: 100%;
  }

  .button-text-wrap.nav {
    justify-content: space-between;
    width: 100%;
  }

  .nav-arrow {
    filter: invert();
  }

  .home-2-number-cell {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    padding: 20px;
  }

  .why-choose-us-title-wrap.home-3 {
    max-width: none;
  }

  .home-2-cta-wrap {
    max-width: 550px;
  }

  .home-3-about {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
  }

  .home-3-about-text-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    width: 100%;
    max-width: none;
  }

  .home-3-about-title-wrapper {
    width: 100%;
    max-width: none;
  }

  .home-about-video-wrapper {
    width: 100%;
    height: 450px;
  }

  .home-3-about-paragraph-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .about-photo-text-grid {
    grid-template-columns: .65fr auto;
  }

  .home-3-why-choose-us-grid {
    flex-flow: column;
    display: flex;
  }

  .photo-bg-inner-section {
    padding-top: 100px;
  }

  .rich-text-wrapper {
    max-width: 650px;
  }

  .service-details-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .service-details-wrapper.with-form {
    grid-template-columns: 1.7fr;
  }

  .service-page-contacts {
    width: 100%;
    position: static;
    top: 0;
  }

  .lightbox-link {
    height: 300px;
  }

  .contacts-paragraph {
    max-width: 420px;
  }

  .search-page-banner {
    padding-top: 100px;
  }

  .home-1-banner-overlay-2 {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .home-1-banner-left-wrapper-2 {
    max-width: 350px;
  }

  .home-1-banner-left-wrapper-2.mobile {
    max-width: 450px;
  }

  .home-1-h1-wrapper-2.mobile {
    text-align: left;
    max-width: 500px;
  }

  .blur-fade {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .service-item {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
  }

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

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

  h2, h3 {
    font-size: 32px;
  }

  blockquote {
    font-size: 24px;
  }

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

  .spacing-system-column {
    margin-top: 20px;
  }

  .headings-typography-wrapper, .primary-button.full-width-mobile, .primary-button.search-button {
    width: 100%;
  }

  .nav-link {
    margin-left: 0;
  }

  .licensing-title-wrapper {
    margin-bottom: 20px;
  }

  .licensing-images-wrapper {
    padding-top: 30px;
  }

  .licensing-paragraph {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

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

  .password-image {
    width: 100px;
  }

  .password-input {
    min-width: auto;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .style-guide-button-wrapper {
    width: 100%;
  }

  .banner-title-wrapper {
    max-width: 420px;
  }

  .accordion-wrapper {
    flex-wrap: wrap;
  }

  .accordion-wrap {
    width: 100%;
    margin-right: 0;
  }

  .contacts-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-wrap: wrap;
  }

  .contacts-content-wrapper {
    width: 100%;
    padding-right: 0;
  }

  .contacts-form-wrapper {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .contacts-title {
    margin-bottom: 20px;
  }

  .footer-wrapper {
    grid-column-gap: 50px;
    justify-content: center;
  }

  .footer-brand-wrapper {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .footer-brand {
    padding-left: 0;
  }

  .search-result-item {
    margin-bottom: 20px;
  }

  .search-result-wrapper {
    margin-top: 60px;
  }

  .footer-logo-wrapper {
    width: auto;
  }

  .about-3-tab-link.w--current {
    font-size: 20px;
  }

  .testimonials {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .blog-section-title {
    margin-bottom: 40px;
  }

  .contacts-wrapper-grid {
    grid-column-gap: 20px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .section-title-center {
    margin-bottom: 40px;
  }

  .home-4-testimonials-wrapper {
    grid-row-gap: 30px;
    width: 100%;
  }

  .testimonials-wrapper-2 {
    width: 100%;
  }

  .about-img {
    width: 100%;
    max-height: 420px;
  }

  .about-img._1, .about-img._5, .about-img._3, .about-img._4, .about-img._2 {
    width: 100%;
    position: static;
  }

  .subtitle {
    line-height: 16px;
  }

  .our-services-wrap {
    grid-row-gap: 10px;
    width: 100%;
  }

  .content-wrapper {
    flex-wrap: wrap;
    width: auto;
  }

  .industries-block-wrapper {
    max-width: none;
  }

  .home-9-team-item {
    width: 48%;
  }

  .search {
    flex-direction: column;
    margin-top: 20px;
  }

  .subtitle-2 {
    line-height: 16px;
  }

  .home-banner-left-arrow {
    top: 6%;
  }

  .team-item {
    width: 70%;
  }

  .brand-tablet {
    justify-content: flex-start;
    padding-left: 0;
  }

  .brand {
    padding-left: 0;
  }

  .home-1-banner {
    padding-top: 160px;
  }

  .home-1-banner-top-wrapper {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .home-1-service-section-title-wrapper {
    width: 100%;
  }

  .bg-rectangle {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .gray-card {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .gray-card-text-wrapper {
    max-width: none;
    padding-bottom: 0;
    padding-right: 20px;
  }

  .home-1-gray-card-image {
    width: 100%;
    max-width: none;
    height: 350px;
  }

  .solution-button-wrapper {
    margin-top: 12px;
  }

  .footer-links-wrap {
    grid-column-gap: 50px;
    grid-row-gap: 20px;
    flex-flow: wrap;
  }

  .why-choose-us-title-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .why-choose-us-light-gray-card {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: row;
    grid-template-rows: auto;
    grid-template-columns: 90px 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding-top: 10px;
    display: grid;
  }

  .why-choose-us-black-card, .why-choose-us-primary-card {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding-top: 10px;
    transform: none;
  }

  .home-2-cta-text-wrap {
    padding-left: 40px;
    padding-right: 40px;
  }

  .home-3-about-title-wrapper {
    width: 100%;
  }

  .why-choose-us-card-grid {
    flex-flow: column;
    display: flex;
  }

  .inner-banner-image {
    width: 100%;
    height: 500px;
    position: relative;
    inset: auto 0% 0%;
  }

  .photo-bg-inner-section {
    padding-bottom: 60px;
  }

  .rich-text-wrapper {
    max-width: none;
  }

  .service-details-wrapper {
    grid-template-columns: 2fr;
  }

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

  .search-page-banner {
    padding-bottom: 45px;
  }

  .home-1-banner-overlay-2 {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
  }

  .home-1-banner-left-wrapper-2 {
    max-width: none;
  }

  .home-1-h1-wrapper-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: left;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

  .services-collection-list-2 {
    flex-flow: column;
    display: flex;
  }

  .service-item {
    grid-column-gap: 140px;
    grid-row-gap: 140px;
  }

  .service-card-text-wrap-2 {
    justify-content: flex-end;
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 160px;
  }

  .live-chat-wrapper {
    bottom: 24px;
    right: 24px;
  }

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

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  .primary-button.full-width-mobile {
    width: 100%;
  }

  .nav-link {
    width: 99%;
  }

  .licensing-title-wrapper {
    grid-column-gap: 20px;
    flex-wrap: wrap;
  }

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

  .footer {
    text-align: left;
  }

  .footer-bottom-wrapper {
    margin-top: 0;
  }

  .footer-copyright {
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .accordion-item {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    grid-row-gap: 30px;
    margin-top: 0;
  }

  .footer-brand-wrapper {
    flex-direction: column;
    margin-bottom: 10px;
  }

  .footer-brand {
    height: auto;
  }

  .footer-logo {
    width: 80px;
  }

  .about-3-tab-link {
    font-size: 16px;
  }

  .about-3-tab-link.w--current {
    font-size: 18px;
  }

  .landing-feature-icon {
    margin-bottom: 10px;
  }

  .section-title-center {
    margin-bottom: 20px;
  }

  .our-services-wrap, .home-9-team-item, .team-item {
    width: 100%;
  }

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

  .brand-tablet {
    padding-left: 0;
  }

  .footer-licensing-link {
    text-align: center;
    justify-content: center;
    line-height: 1.6em;
  }

  .home-1-banner.mobile {
    padding-top: 120px;
  }

  .home-1-banner-labels-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .home-1-banner-labels-wrap.home-2-cta-wrapper {
    grid-row-gap: 0px;
    flex-flow: wrap;
    justify-content: center;
    align-items: flex-start;
    margin-left: 10px;
    margin-right: 10px;
  }

  .large-text {
    font-size: 42px;
  }

  .large-text.text-white {
    font-size: 40px;
  }

  .gray-card {
    padding-left: 15px;
    padding-right: 15px;
  }

  .gray-card-text-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .social-wrapper {
    flex-flow: wrap;
  }

  .footer-links-wrap {
    grid-column-gap: 80px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .why-choose-us-light-gray-card {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
    display: flex;
  }

  .why-choose-us-black-card, .why-choose-us-primary-card {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
  }

  .home-2-cta-text-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-photo-text-grid {
    flex-flow: column;
    grid-template-columns: .65fr;
    place-items: start;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .inner-banner-image {
    height: 400px;
  }

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

  .testimonial-page-card {
    padding-left: 15px;
    padding-right: 15px;
  }

  ._404-text {
    font-size: 140px;
  }

  .form-inputs-grid {
    grid-template-columns: 1fr;
  }

  .home-1-banner-overlay-2 {
    background-image: linear-gradient(#0000001a, #0000001a);
  }

  .home-1-banner-bottom-wrapper-2 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .service-item {
    padding-top: 75%;
  }

  .service-card-text-wrap-2 {
    padding-right: 20px;
  }

  .live-chat-button---brix {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .live-chat-message {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    padding: 34px 24px 30px;
  }

  .live-chat-wrapper {
    max-width: 100%;
    left: 24px;
  }

  .live-chat-bubbble---brix {
    width: 56px;
    height: 56px;
  }

  .live-chat-content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .live-chat-avatar, .live-chat-avatar-wrapper {
    width: 42px;
    height: 42px;
  }

  .live-chat-content-left {
    margin-right: 0;
  }
}

#w-node-_9a6774da-672a-f76b-ccfe-e3867b25558d-7b25558c, #w-node-_9a6774da-672a-f76b-ccfe-e3867b255598-7b25558c, #w-node-_9a6774da-672a-f76b-ccfe-e3867b2555a4-7b25558c, #w-node-_0d90bba0-aed8-6199-b89b-1e3a62732ad7-7b25558c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_27c82427-093f-de72-4a99-c6739b124144-22d637e1, #w-node-_27c82427-093f-de72-4a99-c6739b124149-22d637e1, #w-node-_27c82427-093f-de72-4a99-c6739b12414f-22d637e1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_27c82427-093f-de72-4a99-c6739b124150-22d637e1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_27c82427-093f-de72-4a99-c6739b124157-22d637e1 {
  order: 9999;
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_27c82427-093f-de72-4a99-c6739b12415e-22d637e1, #w-node-_27c82427-093f-de72-4a99-c6739b124166-22d637e1, #w-node-f8f6ce6b-85d6-5941-b69c-0da47ae21962-22d637e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a88ba655-94a7-b535-8a52-5208e1206fcb-22d637e2, #w-node-_6368bb7b-a805-b53a-5c9c-1b3050bee052-22d637e2, #w-node-_98aa48cd-3752-0b88-1df2-b2def79e366c-22d637e2, #w-node-ecacca68-9616-2284-153b-63b51eb2daaf-22d637e2, #w-node-e5ead3e8-065f-fe49-b0f7-6ed928c9bf3a-22d637e2, #w-node-_73082984-d639-d6ec-cf4f-2a9611fbfb20-22d637e2, #w-node-_9e8b4f3d-30ed-1813-486b-e15d35438ef3-22d637e2, #w-node-_7b74d12b-3797-ae30-5085-46053ba02422-22d637e2, #w-node-_078278e5-8759-6472-7402-324772e47a34-22d637e2, #w-node-_12fd5254-61ef-ac5e-3346-de0f55429587-22d637e2, #w-node-_3f0c2554-abd8-b15e-13b0-bdb42aa4451f-22d637e2 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (min-width: 1280px) {
  #w-node-_27c82427-093f-de72-4a99-c6739b124150-22d637e1, #w-node-_27c82427-093f-de72-4a99-c6739b124157-22d637e1, #w-node-_27c82427-093f-de72-4a99-c6739b12415e-22d637e1, #w-node-_27c82427-093f-de72-4a99-c6739b124166-22d637e1 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 991px) {
  #w-node-f146fa2c-61b3-7ae7-6885-ce48a0f86d29-22d637d4 {
    order: -9999;
  }

  #w-node-_27c82427-093f-de72-4a99-c6739b124144-22d637e1 {
    grid-column: span 1 / span 1;
  }

  #w-node-_27c82427-093f-de72-4a99-c6739b124149-22d637e1 {
    grid-column: span 3 / span 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f146fa2c-61b3-7ae7-6885-ce48a0f86d29-22d637d4 {
    order: -9999;
  }

  #w-node-a88ba655-94a7-b535-8a52-5208e1206fcb-22d637e2 {
    grid-column: span 1 / span 1;
  }

  #w-node-_21a3621b-4c8a-93fc-afa9-87b4fd8403cc-22d637e2 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_98aa48cd-3752-0b88-1df2-b2def79e366c-22d637e2, #w-node-e5ead3e8-065f-fe49-b0f7-6ed928c9bf3a-22d637e2, #w-node-_73082984-d639-d6ec-cf4f-2a9611fbfb20-22d637e2, #w-node-_9e8b4f3d-30ed-1813-486b-e15d35438ef3-22d637e2, #w-node-_7b74d12b-3797-ae30-5085-46053ba02422-22d637e2, #w-node-_078278e5-8759-6472-7402-324772e47a34-22d637e2, #w-node-_12fd5254-61ef-ac5e-3346-de0f55429587-22d637e2, #w-node-_3f0c2554-abd8-b15e-13b0-bdb42aa4451f-22d637e2 {
    grid-column: span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_21a3621b-4c8a-93fc-afa9-87b4fd8403cc-22d637e2 {
    grid-column: span 1 / span 1;
  }
}


@font-face {
  font-family: 'Fa solid 900';
  src: url('../fonts/fa-solid-900.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Brands 400 (6.4.2)';
  src: url('../fonts/fa-brands-400.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}