:root {
  --black: #0b0c0d;
  --text: #414141;
  --accent: #564561;
  --hover: #4f3c5c;
  --white: white;
  --lime-green: #00d563;
}

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

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

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

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

body {
  color: var(--black);
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

p {
  color: var(--text);
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.5;
}

strong {
  font-weight: bold;
}

.body {
  color: var(--black);
  font-family: Inter, sans-serif;
}

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

.icon-dropdown-link {
  width: 40px;
  height: 40px;
  background-color: #f9f9f9;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  padding: 6px;
}

.container-navbar {
  width: 100%;
  height: 100%;
  max-width: 1500px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 100%;
  grid-template-columns: 240px 1fr 240px;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
}

.right-navbar {
  height: 100%;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.master-dropdown-links {
  width: auto;
  grid-row-gap: 21px;
  flex-direction: column;
  display: flex;
}

.drodpdown-list.w--open {
  background-color: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  padding: 16px;
}

.drodpdown-list.homepages-list.w--open {
  min-width: 160px;
}

.drodpdown-list.we-speak-list.w--open {
  min-width: 190px;
}

.dropdown-chevron-nav {
  width: 10px;
  height: 10px;
  margin-left: 8px;
  position: relative;
}

.dropdown-chevron-nav.white-image {
  opacity: 0;
  margin-left: -10px;
}

.dropdown-nav {
  height: 80%;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  font-size: 14px;
  font-weight: 500;
}

.brand-link-nav {
  height: 29px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.link-nav {
  color: #0b0c0d;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.dropdown-toggle-nav {
  height: 100%;
  justify-content: center;
  align-items: center;
  padding-left: 16px;
  padding-right: 12px;
  display: flex;
}

.brand-nav {
  height: 100%;
  max-width: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.brand-nav.white-image {
  opacity: 0;
  display: block;
}

.primary-button {
  height: 52px;
  background-color: var(--accent);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding-left: 26px;
  padding-right: 26px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color .2s;
  display: flex;
}

.primary-button:hover, .primary-button.w--current:hover {
  background-color: var(--hover);
}

.primary-button.nav-menu-cta {
  height: 46px;
  color: #00d563;
  background-color: rgba(0, 213, 99, .1);
  font-size: 16px;
  font-weight: 700;
  transition: color .2s, background-color .2s;
  display: none;
}

.primary-button.nav-menu-cta:hover {
  color: #f9f9f9;
  background-color: #00d563;
}

.primary-button.nav-button {
  height: 46px;
  color: var(--accent);
  background-color: rgba(86, 69, 97, .07);
  font-size: 16px;
  font-weight: 600;
  transition: color .2s, background-color .2s;
}

.primary-button.nav-button:hover {
  background-color: var(--accent);
  color: #f9f9f9;
}

.primary-button.call-request {
  height: 60px;
  min-width: 140px;
}

.primary-button.big {
  height: 60px;
  background-color: var(--accent);
  font-size: 18px;
}

.link-dropdown {
  grid-column-gap: 8px;
  color: #0b0c0d;
  align-items: center;
  font-size: 16px;
  text-decoration: none;
  display: flex;
}

.link-dropdown:hover {
  opacity: .7;
}

.text-drodpdown-link {
  flex: 0 auto;
}

.navbar {
  z-index: 1001;
  height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #efefef;
  flex-direction: column;
  justify-content: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.social-link-footer {
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.two-columns-links-footer {
  width: auto;
  grid-column-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
}

.footer-top-left {
  max-width: 440px;
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.white-link {
  color: #fff;
}

.link-arrow {
  grid-column-gap: 6px;
  color: #0b0c0d;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.link-arrow:hover {
  grid-column-gap: 10px;
}

.link-arrow.white-link-arrow {
  color: #fff;
}

.link-arrow.m24 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.link-arrow.center {
  justify-content: center;
}

.link-arrow.big {
  font-size: 18px;
}

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

.contact-block-footer-bottom {
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.socials-wrap-footer {
  grid-column-gap: 18px;
  justify-content: flex-start;
  align-items: center;
  line-height: 21px;
  display: flex;
}

.space-100 {
  height: 100px;
}

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

.section.footer {
  color: #fff;
  background-color: #1b1c1d;
  padding-top: 0;
  padding-bottom: 0;
}

.section.hero {
  padding-top: 180px;
  padding-bottom: 120px;
  position: relative;
}

.section.hero.hide {
  display: none;
}

.section.light-background {
  background-color: #f9f9f9;
}

.text-field {
  min-height: 60px;
  background-color: #f9f9f9;
  border: 1px solid #f5f5f5;
  border-radius: 8px;
  margin-bottom: 0;
  padding: 16px;
  font-size: 18px;
  line-height: 25px;
}

.text-field:focus {
  color: #0b0c0d;
  border-color: #0b0c0d;
}

.text-field.call-request-field {
  min-width: 320px;
}

.footer-legal {
  opacity: .8;
  font-size: 14px;
}

.footer-top {
  background-color: #0b0c0d;
  padding-top: 120px;
  padding-bottom: 60px;
}

.success-message {
  color: #0b0c0d;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.right-footer-bottom {
  max-width: 400px;
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.brand-link-footer {
  margin-bottom: 10px;
}

.footer-bottom {
  color: rgba(255, 255, 255, .85);
  padding-top: 120px;
  padding-bottom: 32px;
}

.brand-image-footer {
  height: 100px;
}

.footer-link-heading {
  color: var(--white);
  font-size: 20px;
  line-height: 150%;
}

.form-block-call-request {
  width: 100%;
  min-width: 380px;
  margin-top: 24px;
}

.text-heading-3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

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

.footer-link {
  color: rgba(255, 255, 255, .85);
  font-size: 16px;
  line-height: 1.6;
  text-decoration: none;
}

.left-footer-bottom {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-bottom-container {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-top-right {
  max-width: 490px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.social-image-footer {
  width: 100%;
}

.cta {
  height: 52px;
  background-color: var(--accent);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding-left: 26px;
  padding-right: 26px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color .2s;
  display: flex;
}

.cta:hover {
  background-color: var(--hover);
}

.cta.newsletter-cta {
  height: 60px;
  min-width: 140px;
}

.cta.big {
  height: 60px;
  font-size: 18px;
}

.cta.big.white---black {
  color: #0b0c0d;
  background-color: #fff;
}

.cta.big.white---black:hover {
  background-color: #faf7f7;
}

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

.form-call-request {
  grid-column-gap: 8px;
  display: flex;
}

.tag {
  height: 36px;
  color: #fff;
  background-color: #0b0c0d;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  display: flex;
}

.h1-mega-title {
  font-size: 72px;
  font-weight: 600;
  line-height: 86px;
}

.h1-mega-title.hide-mobile.white-text {
  color: #fff;
}

.h1-mega-title.hide-mobile.service-mega-title {
  font-size: 58px;
  line-height: 1;
}

.h1-mega-title.show-mobile {
  display: none;
}

.flex-cta-left {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.section-2.hero-home-c {
  padding-top: 160px;
}

.section-2.light-background {
  background-color: #f9f9f9;
}

.section-2.hero-home-b {
  padding-top: 140px;
}

.section-2.services-slider-section {
  padding-bottom: 120px;
  overflow: hidden;
}

.section-2.hero-product {
  padding-top: 140px;
}

.section-2.background {
  background-color: #f9f9f9;
}

.section-2.hero-service {
  padding-top: 180px;
}

.main-container {
  max-width: 1348px;
  padding-left: 24px;
  padding-right: 24px;
}

.space-24 {
  height: 24px;
}

.limit-1080 {
  max-width: 1080px;
}

.subtitle {
  font-size: 24px;
  line-height: 40px;
}

.subtitle.w70 {
  width: 70%;
}

.subtitle.w70.white-text {
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}

.master-tag-and-text {
  grid-column-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.statistic-text-block {
  color: var(--accent);
  font-size: 42px;
  line-height: 1;
}

.text-subnumber {
  color: var(--black);
  font-weight: 500;
}

.limit-976 {
  max-width: 976px;
}

.number-tile {
  height: 112px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
}

.number-tile.middle {
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
}

.number-tile.right {
  border-right: 1px solid #dcdcdc;
}

.wrap-numbers {
  width: 100%;
  max-width: 1080px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

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

.space-64 {
  height: 64px;
}

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

.big-text {
  font-size: 42px;
  font-weight: 500;
  line-height: 1.3;
}

.span-accent {
  color: var(--accent);
}

.grid-halves {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

.grid-halves.four-features-grid {
  max-width: 720px;
}

.grid-halves.image-grid {
  grid-column-gap: 80px;
}

.grid-halves.home-a-grid {
  grid-column-gap: 80px;
  grid-template-columns: 1.2fr 1fr;
}

.tile-white {
  background-color: #fff;
  border-radius: 6px;
  padding: 32px;
}

.tile-white.feature-big-tile {
  padding: 44px 40px;
}

.tile-white.feature-big-tile.black-highlighted {
  color: #fff;
  background-color: #0b0c0d;
}

.wrap-content-text-and-features {
  max-width: 540px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.wrap-tile-feature-texts {
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.grid-text-and-features {
  grid-column-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1.4fr;
}

.values-icon {
  width: 48px;
  height: 48px;
}

.values-icon.small {
  width: 44px;
  height: 44px;
}

.text-heading-4 {
  font-size: 24px;
  font-weight: 500;
}

.paragraph-big {
  font-size: 18px;
  line-height: 1.4;
}

.h2-title {
  font-weight: 600;
  line-height: 1.3;
}

.h2-title.no-bottom-margin {
  margin-bottom: 0;
}

.h2-title.more-bottom-margin {
  margin-bottom: 20px;
}

.limit-1010 {
  max-width: 1010px;
}

.wrap-trusted-home-b {
  width: 100%;
  max-width: 932px;
  margin-left: auto;
  margin-right: auto;
}

.service-h1 {
  font-size: 64px;
  line-height: 1.1;
}

.service-h1.show-mobile {
  display: none;
}

.logo-image {
  height: 30px;
}

.subtitle-2 {
  font-size: 24px;
  line-height: 40px;
}

.space-101 {
  height: 64px;
}

.background-video {
  height: 100%;
  min-height: 640px;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.icon-play {
  transition: transform .2s;
}

.icon-play:hover {
  transform: scale(1.08);
}

.lightbox-home-b {
  width: 100%;
}

.logos-master {
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.link-contact-tile {
  grid-column-gap: 24px;
  color: #0b0c0d;
  background-color: #f9f9f9;
  border-radius: 8px;
  align-items: flex-start;
  padding: 48px;
  text-decoration: none;
  display: flex;
}

.form-block {
  margin-bottom: 0;
}

.contact-icon {
  width: 42px;
  height: 42px;
}

.contact-form-wrap-version-two {
  width: 100%;
  padding-right: 48px;
}

.limit-580 {
  max-width: 580px;
}

.contact-detail-heading {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 700;
}

.text-field-2 {
  min-height: 60px;
  background-color: #f9f9f9;
  border: 1px solid #f5f5f5;
  border-radius: 8px;
  margin-bottom: 0;
  padding: 16px;
  font-size: 18px;
  line-height: 25px;
}

.text-field-2:focus {
  color: #0b0c0d;
  border-color: #0b0c0d;
}

.text-field-2.text-area-size {
  min-height: 140px;
}

.success-message-2 {
  color: #0b0c0d;
  background-color: #f9f9f9;
  border-radius: 8px;
}

.submit-wrap {
  flex-direction: column;
  display: flex;
}

.master-contact-tiles {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: center;
  padding-left: 48px;
  display: flex;
}

.form-input-grid {
  grid-column-gap: 12px;
  grid-template-rows: auto;
}

.input-wrap {
  margin-bottom: 24px;
  position: relative;
}

.form-title-wrap {
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 32px;
}

.master-image-halves-grids {
  grid-row-gap: 120px;
  flex-direction: column;
  display: flex;
}

.home-image-wrap {
  height: 423px;
  transform-origin: 0 100%;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.check-list-item {
  grid-column-gap: 16px;
  align-items: center;
  display: flex;
}

.check-list-icon {
  width: 32px;
  height: 32px;
  flex: none;
}

.check-list-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  margin-top: 24px;
  font-weight: 500;
  display: flex;
}

.image-image-section {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title-wrap-home-image-section {
  width: 100%;
}

.drodpdown-list-2.w--open {
  background-color: #fff;
  border: 1px solid #f1f1f1;
  border-radius: 8px;
  padding: 16px;
}

.drodpdown-list-2.we-speak-list.w--open {
  padding: 20px;
}

.drodpdown-list-2.homepages-list.w--open {
  padding: 18px;
}

.services-slide {
  margin-right: 24px;
}

.services-slider {
  width: 70%;
  height: auto;
  max-width: 820px;
  background-color: rgba(221, 221, 221, 0);
  display: none;
}

.services-slider-mask {
  overflow: visible;
}

.service-card {
  width: 775px;
  height: 566px;
  color: #fff;
  border-radius: 18px;
  flex-direction: row;
  flex: none;
  align-items: flex-end;
  padding: 72px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.service-card.branding-card {
  background-image: linear-gradient(to top, #000, rgba(255, 255, 255, 0)), url('../images/Branding_1Branding.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.service-card.security-card {
  width: 775px;
  background-image: linear-gradient(to top, #000, rgba(255, 255, 255, 0)), url('../images/Security_1Security.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.service-card.development-card {
  width: 775px;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(to top, #000, rgba(255, 255, 255, 0));
  position: relative;
}

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

.slider-arrow-image {
  width: 20px;
  height: 20px;
}

.slider-arrow-image.left-arrow {
  margin-right: 2px;
}

.slider-arrow-image.right-arrow {
  margin-left: 2px;
}

.service-slider-link {
  width: 48px;
  height: 48px;
  background-color: #f9f9f9;
  border: 1px solid #f0f0f0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: transform .2s;
  display: flex;
  top: auto;
  bottom: -72px;
  left: 0%;
  right: auto;
}

.service-slider-link:hover {
  transform: scale(1.05);
}

.service-slider-link.right-arrow-link {
  left: 56px;
}

.space-102 {
  height: 64px;
}

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

.service-card-title {
  margin-bottom: 0;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.2;
}

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

.service-marquee-content {
  width: 100%;
  max-width: 500px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.limit-690 {
  width: 100%;
  max-width: 690px;
}

.tab-tile-cursor-circle {
  width: 120px;
  height: 120px;
  color: #131313;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.tile-cursor {
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.service-container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.service-background {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.service-background-image {
  object-fit: cover;
}

.wrap-covered-sticky {
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
  display: flex;
}

.text-big-price {
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
}

.text-covered-item {
  margin-bottom: 0;
}

.wrap-left-product {
  max-width: 600px;
}

.wrap-sticky-product-details {
  grid-row-gap: 16px;
  color: #fff;
  background-color: #0b0c0d;
  border-radius: 8px;
  flex-direction: column;
  align-items: stretch;
  padding: 32px;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
}

.single-pricing-covered {
  grid-column-gap: 9px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-covered-pricing {
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
}

.master-pricing-covered {
  grid-row-gap: 8px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.wrap-great-for {
  grid-column-gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.text-heading-6 {
  font-size: 24px;
  font-weight: 600;
}

.columns-product {
  display: flex;
}

.wrap-price-sticky {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.space-80 {
  height: 80px;
}

.icon-covered {
  width: 20px;
  height: 20px;
}

.left-product {
  padding: 0 40px 0 0;
}

.space-10 {
  height: 10px;
}

.h1-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
}

.h1-title.top-margin-10 {
  margin-top: 10px;
}

.h1-title.top-margin-10.bottom-margin-20 {
  margin-bottom: 20px;
}

.h1-title.show-mobile {
  display: none;
}

.service-background-overlay {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

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

.office-marquee-card {
  width: 750px;
  height: 566px;
  color: #fff;
  border-radius: 18px;
  flex-direction: row;
  flex: none;
  align-items: flex-end;
  display: flex;
  overflow: hidden;
}

.jeothermal-icon {
  width: 52px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.office-marquee-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.limit-980 {
  width: 100%;
  max-width: 690px;
}

.office-marquee-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex: none;
  align-items: stretch;
  display: flex;
}

.h1-title-2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
}

.office-marquee {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  display: flex;
}

.space-103 {
  height: 64px;
}

.limit-978 {
  max-width: 580px;
}

.faq-paragraph {
  margin-bottom: 0;
  padding-top: 8px;
  line-height: 1.6;
}

.expandable-master {
  max-width: 720px;
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.expandable-bottom {
  width: 90%;
  transform-origin: 50% 0;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.expandable-single {
  cursor: pointer;
  background-color: #f9f9f9;
  border-radius: 18px;
  padding: 24px 24px 24px 32px;
}

.plus-line {
  width: 18px;
  height: 2px;
  background-color: #000;
  border-radius: 1px;
}

.plus-line.vertical {
  position: absolute;
  transform: rotate(-90deg);
}

.expandable-top {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.right-faq {
  padding: 0;
}

.h2-title-2 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
}

.faq-h3 {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 24px;
  font-size: 20px;
  font-weight: 600;
}

.left-faq {
  padding: 0 64px 0 0;
}

.plus-expand-master {
  width: 54px;
  height: 54px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.icon-image {
  width: 40px;
}

.space-180 {
  height: 160px;
}

.subtitle-3 {
  margin-top: 20px;
  font-size: 22px;
  line-height: 1.5;
}

.home-image-column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.home-image-column.first-column, .home-image-column.second-column, .home-image-column.last-column {
  flex: 1;
}

.home-image-grid {
  width: 100%;
  height: 652px;
  max-width: 580px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-right: -12px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.column-item {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.content-wrap-hero-home-a {
  padding-top: 100px;
}

.home-image-overflow {
  z-index: 9;
  height: 278px;
  background-image: linear-gradient(#fff, rgba(255, 255, 255, 0));
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.home-image-overflow.bottom {
  background-image: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.button-2 {
  height: 52px;
  background-color: #424bd1;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  padding-left: 26px;
  padding-right: 26px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color .2s;
  display: flex;
}

.button-2:hover {
  background-color: rgba(66, 75, 209, .9);
}

.button-2.big {
  height: 60px;
  background-color: #424bd1;
  font-size: 18px;
}

.button-2.secondary-white {
  color: #00d563;
  background-color: #fff;
}

.button-2.secondary-white.big {
  color: var(--lime-green);
  background-color: rgba(0, 0, 0, 0);
}

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

.limit-1081 {
  max-width: 580px;
}

.column-item-wrap {
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
}

.column {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.column.reverse {
  justify-content: flex-end;
}

.flext-two-horiziontal-buttons {
  grid-column-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.column-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-default {
  height: 36px;
  color: #fff;
  background-color: #0b0c0d;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  display: flex;
}

.tag-default.inversed {
  color: var(--black);
  background-color: #fff;
}

.space-181 {
  height: 24px;
}

.limit-1082 {
  max-width: 1080px;
}

.subtitle-4 {
  font-size: 24px;
  line-height: 40px;
}

.marketing-column {
  grid-row-gap: 13px;
  flex-direction: column;
  display: flex;
}

.marketing-gradient {
  height: 180px;
  background-image: linear-gradient(#f9f9f9, rgba(249, 249, 249, 0));
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.marketing-gradient.bottom-gradient {
  background-image: linear-gradient(rgba(249, 249, 249, 0), #f9f9f9);
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.marketing-logos-wrap {
  width: 100%;
  height: 540px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 18px;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.limit-1083 {
  width: 100%;
  max-width: 690px;
}

.grid-moving-logos-section {
  grid-column-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 460px 1fr;
}

.marketing-logo-wrap {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.marketing-icons-combo {
  width: 100px;
  grid-row-gap: 12px;
  flex-direction: column;
  display: flex;
}

.marketing-logo-image {
  width: 64px;
  height: 64px;
}

.sticky-values-card {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #fff;
  border-radius: 8px;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  display: flex;
}

.sticky-block {
  max-width: 530px;
  flex-direction: column;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.values-content {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
}

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

.sticky-wrap {
  max-width: 610px;
  position: relative;
}

.stick-content-wrap {
  width: 100%;
  max-width: 610px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.space-16 {
  height: 16px;
}

.h3-title {
  font-weight: 600;
}

.space-48 {
  height: 48px;
}

.utility-page-wrap {
  width: 100vw;
  height: 85vh;
  max-height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.utility-image {
  width: 42px;
  margin-left: auto;
  margin-right: auto;
}

.legal-rich-text-block {
  max-width: 800px;
  font-size: 18px;
  line-height: 1.6;
}

.legal-rich-text-block h1 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 600;
}

.legal-rich-text-block strong {
  margin-top: 10px;
  line-height: 2;
  display: block;
}

.legal-rich-text-block p {
  margin-bottom: 16px;
}

.legal-main {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 3%;
  display: flex;
}

.checkbox-field {
  width: 100%;
  align-items: flex-start;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.checkbox {
  width: 16px;
  height: 16px;
  border-width: 3px;
  border-color: #0f1841;
  border-radius: 2px;
  flex: none;
  margin-left: 2px;
  margin-right: 10px;
}

.checkbox.w--redirected-checked {
  background-color: #00d563;
  background-size: auto;
  border-style: solid;
  border-color: #00d563;
}

.limit-1084 {
  width: 100%;
  max-width: 690px;
}

.checkbox-label {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.master-contact-form-three {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.checkbox-wrap {
  align-self: flex-start;
  margin-bottom: 32px;
}

.service-rich-text {
  font-size: 16px;
  line-height: 1.5;
}

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

.hide-mobile.white-text {
  color: #fff;
}

.security-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.security-icon {
  width: 20px;
}

.security-text {
  padding-left: 16px;
}

.link-large {
  color: #171717;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: underline;
}

.link-large.security-link {
  font-weight: 500;
}

.hero-background {
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background-image.hide-mobile, .hero-background-image.show-mobile {
  display: none;
}

.hero-background-overlay {
  background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.space-60 {
  height: 60px;
}

.background-video-2 {
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.about-logo-image {
  height: 100px;
}

.space {
  height: 10px;
}

.space._48 {
  height: 48px;
}

.space._64 {
  height: 64px;
}

.grid-halves-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

.grid-halves-2.image-grid {
  grid-column-gap: 80px;
}

.title-wrap-home-image-section-2 {
  width: 100%;
}

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

.paragraph-2 {
  color: var(--text);
}

.text-white-muted, .text-block {
  color: rgba(255, 255, 255, .9);
}

.container-2 {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
}

.template-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: .25fr .75fr;
}

.template-grid.spacing-small {
  margin-bottom: 42px;
}

.h1-legal {
  color: #1b1b1b;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.h5-styleguide {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
}

.subnav {
  z-index: 1000;
  height: 60px;
  background-color: #fff;
  border-bottom: 1px solid #ececec;
  position: fixed;
  top: 60px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.container-sub-nav {
  width: 100%;
  height: 100%;
  max-width: 1400px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.link-sub-nav {
  color: #0b0c0d;
  border-bottom: 2px solid rgba(66, 75, 209, 0);
  justify-content: center;
  align-items: center;
  padding-top: 2px;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  text-decoration: none;
  display: flex;
}

.link-sub-nav.w--current {
  border-bottom-color: var(--accent);
}

.tag-primary {
  height: 36px;
  background-color: var(--accent);
  color: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  display: flex;
}

.grid-fourths {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.icon-feature {
  width: 48px;
  height: 48px;
}

.space-40 {
  height: 40px;
}

.space-32 {
  height: 32px;
}

.subtitle-5 {
  color: var(--text);
  font-size: 24px;
  line-height: 40px;
}

.text-heading-7 {
  font-size: 24px;
  font-weight: 700;
}

.paragraph-big-2 {
  font-size: 18px;
}

.tile-feature-transparent-fourths {
  grid-row-gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 0;
  display: flex;
}

.wrap-tags {
  grid-column-gap: 6px;
  grid-row-gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.limit-890 {
  width: 100%;
  max-width: 890px;
}

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

.link-dropdown-2 {
  grid-column-gap: 8px;
  color: #0b0c0d;
  align-items: center;
  font-size: 16px;
  text-decoration: none;
  display: block;
}

.link-dropdown-2:hover {
  opacity: .7;
}

.link-dropdown-2.w--current {
  color: #4f7ca2;
}

.div-block {
  width: 10px;
  height: 10px;
  position: relative;
}

.dropdown-nav-2 {
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 16px;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-toggle-nav-2 {
  height: 100%;
  color: #0b0c0d;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  font-size: 16px;
  display: flex;
}

.flag {
  width: 22px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

.dropdown-chevron-nav-2 {
  height: 10px;
  margin-left: 8px;
}

.dropdown-chevron-nav-2.white {
  position: absolute;
}

.dropdown-chevron-nav-2.black {
  height: 9px;
  display: block;
  position: absolute;
}

.master-dropdown-links-2 {
  width: auto;
  grid-row-gap: 21px;
  flex-direction: column;
  display: flex;
}

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

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

.hide-desktop {
  display: none;
}

.slider {
  width: 100%;
  height: 100%;
}

.icon {
  display: none;
}

.slide-nav {
  opacity: .5;
}

.icon-2 {
  display: none;
}

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

  .nav-menu {
    width: 98%;
    height: auto;
    max-height: 90vh;
    background-color: #f9f9f9;
    border-radius: 6px;
    flex-direction: column;
    align-items: stretch;
    margin-top: 8px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px;
    overflow: visible;
  }

  .container-navbar {
    grid-template-columns: 1fr 1fr;
  }

  .right-navbar {
    display: none;
  }

  .wrap-menu-button {
    width: 100%;
    height: 100%;
    grid-row-gap: 7px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    display: flex;
  }

  .drodpdown-list.homepages-list.w--open, .drodpdown-list.we-speak-list.w--open {
    position: static;
  }

  .dropdown-nav {
    width: auto;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 18px;
    display: flex;
  }

  .link-nav {
    width: 100%;
    font-size: 18px;
    line-height: 50px;
    display: block;
  }

  .dropdown-toggle-nav {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .primary-button.nav-menu-cta {
    color: var(--accent);
    background-color: rgba(86, 69, 97, .07);
    margin-top: 16px;
    display: flex;
  }

  .primary-button.nav-menu-cta:hover {
    background-color: var(--accent);
  }

  .menu-button {
    width: 48px;
    height: 48px;
    background-color: #f9f9f9;
    border-radius: 4px;
    padding: 0;
  }

  .menu-button.w--open {
    background-color: var(--accent);
  }

  .line-menu {
    width: 32px;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
    padding: 0;
  }

  .line-menu.second-line {
    width: 20px;
  }

  .two-columns-links-footer {
    grid-column-gap: 0px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-top-content {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }

  .left-footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .h1-mega-title {
    font-size: 72px;
    line-height: 87px;
  }

  .subtitle.w70 {
    width: auto;
  }

  .number-tile {
    min-width: 30%;
  }

  .number-tile.middle {
    border-left-style: none;
    border-right-style: none;
  }

  .number-tile.right {
    border-right-style: none;
  }

  .wrap-numbers {
    grid-row-gap: 32px;
    flex-wrap: wrap;
  }

  .big-text {
    font-size: 34px;
    line-height: 48px;
  }

  .grid-halves.four-features-grid {
    max-width: none;
  }

  .grid-halves.contact-grid-version-two {
    width: 100%;
    max-width: 600px;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .grid-halves.image-grid {
    grid-template-columns: 1fr;
  }

  .grid-halves.home-a-grid {
    grid-row-gap: 80px;
    grid-template-columns: 1fr;
  }

  .tile-white.feature-big-tile {
    padding: 32px;
  }

  .grid-text-and-features {
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
  }

  .service-h1 {
    font-size: 72px;
    line-height: 87px;
  }

  .logo-image {
    width: 12%;
  }

  .background-video {
    min-height: 480px;
  }

  .contact-form-wrap-version-two {
    padding-right: 0;
  }

  .master-contact-tiles {
    padding-left: 0;
  }

  .home-image-wrap {
    width: 100%;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .check-list-item {
    text-align: left;
  }

  .check-list-wrap.hide-tablet {
    display: none;
  }

  .title-wrap-home-image-section {
    max-width: 800px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .drodpdown-list-2.we-speak-list.w--open {
    position: static;
  }

  .drodpdown-list-2.homepages-list {
    top: 55px;
  }

  .drodpdown-list-2.homepages-list.w--open {
    top: 40px;
  }

  .service-card {
    height: 440px;
    padding: 55px;
  }

  .wrap-left-product {
    max-width: none;
  }

  .right-product {
    padding: 0;
  }

  .columns-product {
    flex-direction: column;
  }

  .left-product {
    margin-bottom: 40px;
    padding-right: 0;
  }

  .image-cover {
    object-fit: cover;
  }

  .office-marquee-card {
    width: auto;
    height: 50vw;
  }

  .expandable-master {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .expandable-single {
    padding-right: 4px;
  }

  .home-image-grid {
    margin-right: 0;
  }

  .limit-1083.center-tablet {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .grid-moving-logos-section {
    grid-template-columns: 1fr;
  }

  .legal-rich-text-block {
    width: 80%;
  }

  .title-wrap-home-image-section-2 {
    max-width: 800px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

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

  .dropdown-nav-2 {
    width: auto;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    font-size: 18px;
    display: flex;
  }

  .dropdown-toggle-nav-2 {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .hide-desktop {
    display: flex;
  }
}

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

  h2 {
    font-size: 28px;
  }

  .nav-menu {
    text-align: left;
    align-items: flex-start;
  }

  .container-navbar {
    grid-template-columns: 1fr 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

  .right-navbar {
    display: none;
  }

  .dropdown-nav {
    text-align: left;
    align-items: flex-start;
  }

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

  .two-columns-links-footer {
    grid-row-gap: 80px;
    justify-items: center;
  }

  .footer-top-content {
    grid-row-gap: 40px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

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

  .left-footer-bottom {
    width: 100%;
    grid-row-gap: 64px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer-bottom-container {
    grid-row-gap: 80px;
    flex-direction: column;
    align-items: center;
  }

  .h1-mega-title {
    font-size: 64px;
    line-height: 72px;
  }

  .h1-mega-title.hide-mobile {
    display: none;
  }

  .h1-mega-title.show-mobile {
    display: block;
  }

  .h1-mega-title.show-mobile.white-text {
    color: #fff;
  }

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

  .section-2.hero-home-b, .section-2.hero-service {
    padding-top: 120px;
  }

  .statistic-text-block {
    font-size: 48px;
  }

  .number-tile.middle {
    border-style: none;
    border-top-width: 1px;
    border-top-color: #f0f0f0;
    border-bottom-width: 1px;
    border-bottom-color: #f0f0f0;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .number-tile.right {
    border-bottom: 1px #f0f0f0;
    border-right-style: none;
  }

  .wrap-numbers {
    grid-row-gap: 24px;
    flex-direction: column;
  }

  .grid-halves.sticky-values-grids {
    grid-template-columns: 1fr;
  }

  .wrap-content-text-and-features {
    text-align: center;
    align-items: center;
  }

  .grid-text-and-features {
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
  }

  .service-h1 {
    font-size: 64px;
    line-height: 72px;
  }

  .service-h1.hide-mobile {
    display: none;
  }

  .service-h1.show-mobile {
    font-size: 42px;
    display: block;
  }

  .logo-image {
    width: 22%;
    height: 31px;
  }

  .background-video {
    min-height: 350px;
  }

  .logos-master {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .home-image-wrap {
    height: 66vw;
  }

  .services-slider {
    width: 90%;
  }

  .service-card {
    padding: 24px;
  }

  .service-card-title {
    margin-bottom: 6px;
    font-size: 32px;
  }

  .service-marquee-content {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .space-80.product-space {
    height: 40px;
  }

  .left-faq {
    margin-bottom: 40px;
  }

  .marketing-logos-wrap {
    height: 400px;
    order: 1;
    align-self: center;
  }

  .grid-halves-2.image-grid {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .template-grid.spacing-small {
    grid-template-columns: 1fr;
  }

  .subnav {
    display: none;
  }

  .container-sub-nav {
    justify-content: flex-start;
    align-items: center;
    overflow: scroll;
  }

  .link-sub-nav {
    height: 32px;
    color: #0b0c0d;
    background-color: #f9f9f9;
    border: 1px solid #dcdcdc;
    border-radius: 40px;
    flex: none;
    margin-right: 1vw;
    padding-top: 0;
  }

  .link-sub-nav.w--current {
    color: #f9f9f9;
    background-color: #00d563;
    border-color: #fff;
  }

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

  .tile-feature-transparent-fourths {
    padding-bottom: 2px;
  }

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

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

  .nav-menu {
    width: 96%;
  }

  .brand-link-nav.w--current {
    height: 26px;
  }

  .dropdown-toggle-nav {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 12px;
    line-height: 50px;
  }

  .primary-button.nav-menu-cta {
    color: var(--accent);
    background-color: rgba(86, 69, 97, .1);
  }

  .primary-button.nav-menu-cta:hover {
    background-color: var(--accent);
  }

  .link-dropdown {
    line-height: 40px;
  }

  .menu-button {
    width: 42px;
    height: 42px;
  }

  .menu-button.w--open {
    background-color: var(--accent);
  }

  .line-menu.first-line {
    width: 28px;
  }

  .line-menu.second-line {
    width: 18px;
  }

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

  .two-columns-links-footer {
    grid-row-gap: 16px;
  }

  .footer-top-left, .contact-block-footer-bottom {
    align-items: flex-start;
  }

  .section.hero {
    padding-top: 140px;
  }

  .text-field.call-request-field {
    width: 100%;
    min-width: 0;
  }

  .footer-legal {
    text-align: left;
  }

  .footer-top {
    padding-top: 80px;
    padding-bottom: 60px;
  }

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

  .brand-link-footer {
    width: 90%;
    height: auto;
  }

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

  .form-block-call-request {
    min-width: 0;
  }

  .text-heading-3 {
    font-size: 22px;
    line-height: 28px;
  }

  .paragraph {
    text-align: left;
  }

  .footer-bottom-container {
    text-align: left;
    align-items: flex-start;
  }

  .footer-top-right {
    max-width: none;
    align-items: flex-start;
  }

  .cta.newsletter-cta {
    width: 100%;
    min-width: 0;
  }

  .links-footer {
    align-items: flex-start;
  }

  .form-call-request {
    grid-row-gap: 8px;
    flex-direction: column;
  }

  .h1-mega-title {
    font-size: 12.4vw;
    line-height: 135%;
  }

  .h1-mega-title.hide-mobile {
    display: none;
  }

  .h1-mega-title.show-mobile {
    display: block;
  }

  .h1-mega-title.show-mobile.white-text {
    font-size: 12.8vw;
    line-height: 120%;
  }

  .section-2.hero-home-c {
    padding-top: 120px;
  }

  .section-2.hero-product, .section-2.hero-service {
    padding-top: 100px;
  }

  .main-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .subtitle {
    font-size: 22px;
    line-height: 36px;
  }

  .master-tag-and-text {
    grid-row-gap: 12px;
    flex-wrap: wrap;
  }

  .big-text {
    font-size: 26px;
    font-weight: 600;
    line-height: 38px;
  }

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

  .text-heading-4 {
    font-size: 22px;
    line-height: 28px;
  }

  .h2-title, .h2-title.more-bottom-margin {
    text-align: left;
  }

  .service-h1 {
    font-size: 12.4vw;
    line-height: 135%;
  }

  .logo-image {
    width: 35%;
  }

  .subtitle-2 {
    font-size: 22px;
    line-height: 36px;
  }

  .background-video {
    min-height: 72vw;
  }

  .icon-play {
    width: 80px;
  }

  .link-contact-tile {
    grid-row-gap: 16px;
    flex-direction: column;
    padding: 32px;
  }

  .form-block {
    margin-bottom: 20px;
  }

  .form-input-grid {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .input-wrap {
    margin-bottom: 16px;
  }

  .master-image-halves-grids {
    grid-row-gap: 80px;
  }

  .home-image-wrap {
    height: 78vw;
  }

  .check-list-item {
    font-size: 16px;
  }

  .check-list-wrap {
    grid-row-gap: 12px;
  }

  .check-list-wrap.hide-tablet {
    display: flex;
  }

  .title-wrap-home-image-section, .center-content-2 {
    align-items: flex-start;
  }

  .text-heading-6 {
    font-size: 22px;
    line-height: 28px;
  }

  .space-80.product-space {
    height: 24px;
  }

  .h1-title {
    text-align: left;
  }

  .h1-title.top-margin-10.show-mobile {
    text-align: left;
    font-size: 42px;
  }

  .h1-title.hide-mobile {
    display: none;
  }

  .h1-title.show-mobile {
    display: block;
  }

  .office-marquee-card {
    height: 60vw;
  }

  .expandable-single {
    padding: 24px;
  }

  .subtitle-3 {
    font-size: 22px;
    line-height: 36px;
  }

  .home-image-column.last-column {
    display: none;
  }

  .content-wrap-hero-home-a {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .flext-two-horiziontal-buttons {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .subtitle-4 {
    font-size: 22px;
    line-height: 36px;
  }

  .marketing-logo-wrap {
    width: 24vw;
    height: 24vw;
  }

  .marketing-icons-combo {
    width: auto;
  }

  .marketing-logo-image {
    width: 80%;
    height: 80%;
  }

  .sticky-values-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .sticky-block, .sticky-wrap, .stick-content-wrap {
    max-width: none;
  }

  .utility-page-content {
    align-items: flex-start;
  }

  .utility-image {
    margin-left: 0;
    margin-right: 0;
  }

  .legal-rich-text-block {
    width: auto;
  }

  .legal-main {
    padding-left: 3%;
    padding-right: 3%;
  }

  .hide-mobile {
    display: none;
  }

  .security-wrapper {
    flex-direction: column;
  }

  .security-text {
    width: 90%;
    text-align: center;
    margin-top: 14px;
    padding-left: 0;
  }

  .hero-background-image.hide-mobile, .hero-background-image.show-mobile {
    display: none;
  }

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

  .text-white-muted {
    color: rgba(255, 255, 255, .85);
  }

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

  .subtitle-5 {
    font-size: 22px;
    line-height: 36px;
  }

  .text-heading-7 {
    font-size: 22px;
    line-height: 28px;
  }

  .dropdown-toggle-nav-2 {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .master-dropdown-links-2 {
    text-align: center;
  }
}

#w-node-a51d8938-40ed-f19b-11a5-58d6036e9ccc-8a2d36cb {
  align-self: center;
  justify-self: start;
}

#w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1e5-8a2d36cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1fa-8a2d36cb, #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1fd-8a2d36cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1ff-8a2d36cb, #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a205-8a2d36cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a20a-8a2d36cb, #w-node-a9e9edff-c2fb-9383-15d2-9cfc7cb9c1d2-7cb9c1a5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_167b4fc2-7100-2f58-4ec9-536e4fb2e55e-4fb2e53e {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
  justify-self: stretch;
}

#w-node-_0c1b4d59-1f43-58cc-f140-b60146b52564-46b52561 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_0c1b4d59-1f43-58cc-f140-b60146b5256b-46b52561 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_5cafaa3a-b40a-2f86-0902-a48212653923-12653921 {
  align-self: center;
  justify-self: start;
}

#w-node-_5cafaa3a-b40a-2f86-0902-a48212653925-12653921 {
  align-self: stretch;
  justify-self: center;
}

#w-node-_5cafaa3a-b40a-2f86-0902-a48212653934-12653921, #w-node-d946667c-bb6a-baa7-ed47-16b73c50153d-8a2d36d3, #w-node-d946667c-bb6a-baa7-ed47-16b73c50154b-8a2d36d3, #w-node-d946667c-bb6a-baa7-ed47-16b73c501544-8a2d36d3, #w-node-d946667c-bb6a-baa7-ed47-16b73c501552-8a2d36d3, #w-node-_8d4d97fc-c9d0-7fc5-0fd4-49215e9c4f55-8a2d36d3, #w-node-_308170df-e011-d731-ad73-6ddd7be37798-8a2d36d3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3cb17b6b-315c-61dd-c093-81e94c6e37ef-8a2d36d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_3cb17b6b-315c-61dd-c093-81e94c6e3804-8a2d36d4, #w-node-_2e229887-9664-c94c-5b5d-f5fa6fcd6b96-8a2d36d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2e229887-9664-c94c-5b5d-f5fa6fcd6b8c-8a2d36d4, #w-node-cd3edfa3-dcf7-c6f6-8d1f-281af7f3a5fa-8a2d36d4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-cd3edfa3-dcf7-c6f6-8d1f-281af7f3a5f8-8a2d36d4, #w-node-d946667c-bb6a-baa7-ed47-16b73c50153d-b34a0c16, #w-node-d946667c-bb6a-baa7-ed47-16b73c501544-b34a0c16, #w-node-d946667c-bb6a-baa7-ed47-16b73c50154b-b34a0c16, #w-node-d946667c-bb6a-baa7-ed47-16b73c501552-b34a0c16, #w-node-_8d4d97fc-c9d0-7fc5-0fd4-49215e9c4f55-b34a0c16, #w-node-_308170df-e011-d731-ad73-6ddd7be37798-b34a0c16, #w-node-d946667c-bb6a-baa7-ed47-16b73c50153d-a622428b, #w-node-d946667c-bb6a-baa7-ed47-16b73c501544-a622428b, #w-node-d946667c-bb6a-baa7-ed47-16b73c50154b-a622428b, #w-node-d946667c-bb6a-baa7-ed47-16b73c501552-a622428b, #w-node-_308170df-e011-d731-ad73-6ddd7be37798-a622428b, #w-node-_8d4d97fc-c9d0-7fc5-0fd4-49215e9c4f55-a622428b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a51d8938-40ed-f19b-11a5-58d6036e9ccc-89684bbd {
  align-self: center;
  justify-self: start;
}

#w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1e5-89684bbd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1fa-89684bbd, #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1fd-89684bbd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1ff-89684bbd, #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a205-89684bbd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a20a-89684bbd, #w-node-_64f9bbc9-c3fc-4ada-5482-aa5189faca17-89fac9f4 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b0931896-55be-2b1a-9b00-0cf411246fc5-11246f9d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
  justify-self: stretch;
}

#w-node-b48b0c15-12b8-b905-9b02-e9209f18a1ce-9f18a1cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b48b0c15-12b8-b905-9b02-e9209f18a1d6-9f18a1cb {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-d95e4642-d6c0-cdbd-d0e8-bd75aae7b72a-aae7b728 {
  align-self: center;
  justify-self: start;
}

#w-node-d95e4642-d6c0-cdbd-d0e8-bd75aae7b72d-aae7b728 {
  align-self: stretch;
  justify-self: center;
}

#w-node-d95e4642-d6c0-cdbd-d0e8-bd75aae7b74b-aae7b728, #w-node-d946667c-bb6a-baa7-ed47-16b73c50153d-8c1776ff, #w-node-d946667c-bb6a-baa7-ed47-16b73c50154b-8c1776ff, #w-node-d946667c-bb6a-baa7-ed47-16b73c501544-8c1776ff, #w-node-d946667c-bb6a-baa7-ed47-16b73c501552-8c1776ff, #w-node-_8d4d97fc-c9d0-7fc5-0fd4-49215e9c4f55-8c1776ff, #w-node-_308170df-e011-d731-ad73-6ddd7be37798-8c1776ff, #w-node-d946667c-bb6a-baa7-ed47-16b73c50153d-2d3bace8, #w-node-d946667c-bb6a-baa7-ed47-16b73c501544-2d3bace8, #w-node-d946667c-bb6a-baa7-ed47-16b73c50154b-2d3bace8, #w-node-d946667c-bb6a-baa7-ed47-16b73c501552-2d3bace8, #w-node-_8d4d97fc-c9d0-7fc5-0fd4-49215e9c4f55-2d3bace8, #w-node-_308170df-e011-d731-ad73-6ddd7be37798-2d3bace8, #w-node-d946667c-bb6a-baa7-ed47-16b73c50153d-cd76d982, #w-node-d946667c-bb6a-baa7-ed47-16b73c501544-cd76d982, #w-node-d946667c-bb6a-baa7-ed47-16b73c50154b-cd76d982, #w-node-d946667c-bb6a-baa7-ed47-16b73c501552-cd76d982, #w-node-_308170df-e011-d731-ad73-6ddd7be37798-cd76d982, #w-node-_8d4d97fc-c9d0-7fc5-0fd4-49215e9c4f55-cd76d982 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3cb17b6b-315c-61dd-c093-81e94c6e37ef-5901df5d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-_3cb17b6b-315c-61dd-c093-81e94c6e3804-5901df5d, #w-node-_2e229887-9664-c94c-5b5d-f5fa6fcd6b96-5901df5d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2e229887-9664-c94c-5b5d-f5fa6fcd6b8c-5901df5d, #w-node-cd3edfa3-dcf7-c6f6-8d1f-281af7f3a5fa-5901df5d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-cd3edfa3-dcf7-c6f6-8d1f-281af7f3a5f8-5901df5d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-a51d8938-40ed-f19b-11a5-58d6036e9ccc-8a2d36cb {
    order: -9999;
  }

  #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1e5-8a2d36cb {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1fa-8a2d36cb {
    order: -9999;
  }

  #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1ff-8a2d36cb {
    justify-self: center;
  }

  #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a205-8a2d36cb {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a20a-8a2d36cb {
    order: -9999;
  }

  #w-node-c777b48d-381f-9d72-58e2-c790c6f560b1-12653921 {
    justify-self: end;
  }

  #w-node-_3cb17b6b-315c-61dd-c093-81e94c6e37ef-8a2d36d4 {
    justify-self: center;
  }

  #w-node-_3cb17b6b-315c-61dd-c093-81e94c6e3804-8a2d36d4, #w-node-_2e229887-9664-c94c-5b5d-f5fa6fcd6b96-8a2d36d4 {
    order: -9999;
  }

  #w-node-_2e229887-9664-c94c-5b5d-f5fa6fcd6b8c-8a2d36d4, #w-node-cd3edfa3-dcf7-c6f6-8d1f-281af7f3a5fa-8a2d36d4 {
    justify-self: center;
  }

  #w-node-cd3edfa3-dcf7-c6f6-8d1f-281af7f3a5f8-8a2d36d4, #w-node-a51d8938-40ed-f19b-11a5-58d6036e9ccc-89684bbd {
    order: -9999;
  }

  #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1e5-89684bbd {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1fa-89684bbd {
    order: -9999;
  }

  #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1ff-89684bbd {
    justify-self: center;
  }

  #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a205-89684bbd {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a20a-89684bbd {
    order: -9999;
  }

  #w-node-_81af0899-f4bc-1041-18db-d5411f4eac90-aae7b728 {
    justify-self: end;
  }

  #w-node-_3cb17b6b-315c-61dd-c093-81e94c6e37ef-5901df5d {
    justify-self: center;
  }

  #w-node-_3cb17b6b-315c-61dd-c093-81e94c6e3804-5901df5d, #w-node-_2e229887-9664-c94c-5b5d-f5fa6fcd6b96-5901df5d {
    order: -9999;
  }

  #w-node-_2e229887-9664-c94c-5b5d-f5fa6fcd6b8c-5901df5d, #w-node-cd3edfa3-dcf7-c6f6-8d1f-281af7f3a5fa-5901df5d {
    justify-self: center;
  }

  #w-node-cd3edfa3-dcf7-c6f6-8d1f-281af7f3a5f8-5901df5d {
    order: -9999;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1e5-8a2d36cb, #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a205-8a2d36cb {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c777b48d-381f-9d72-58e2-c790c6f560b1-12653921 {
    justify-self: end;
  }

  #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a1e5-89684bbd, #w-node-_76104bfc-fba1-23fe-c88b-0b8ca8d4a205-89684bbd {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_81af0899-f4bc-1041-18db-d5411f4eac90-aae7b728 {
    justify-self: end;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}