@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --black: #111;
  --text: #c2c2c2;
  --white: #fff;
  --ghost-white: #f2f5ff;
  --primary: #bc1112;
  --hover: #cf3e11;
  --white-smoke: #f8f8f8;
  --dark-grey: #1d1d1d;
  --menu-open: #fc562333;
}

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

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

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
}

h3 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

p {
  color: var(--text);
  margin-bottom: 10px;
}

a {
  color: var(--black);
  text-decoration: underline;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

strong {
  color: var(--ghost-white);
  font-weight: 700;
}

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

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

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

.link-nav {
  color: var(--white);
  padding: 8px 20px;
  font-size: 14px;
  text-decoration: none;
}

.link-nav.last {
  margin-right: 16px;
}

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

.button:hover {
  background-color: #317fffe6;
}

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

.navbar {
  z-index: 1001;
  background-color: var(--black);
  border-bottom: 1px solid #303030;
  flex-direction: column;
  justify-content: center;
  height: 75px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

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

.section.footer {
  color: var(--white-smoke);
  background-color: #161616;
  padding-top: 0;
  padding-bottom: 0;
}

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

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

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

.h2.center-text.utility {
  font-size: 28px;
}

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

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

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

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

.text-footer-legal {
  opacity: .8;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.wrap-footer-bottom {
  padding-top: 120px;
  padding-bottom: 32px;
}

.links-heading-footer {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}

.link-footer {
  color: #e4e4e4;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
}

.left-footer-bottom {
  grid-column-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  display: grid;
}

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

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

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

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

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

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

.button-wrapper {
  justify-content: center;
  margin-top: 20px;
  display: flex;
}

.image-symbol-big {
  height: 52px;
}

.image-symbol-big-2 {
  height: 35px;
}

.tab-block {
  color: #fff;
  cursor: none;
  background-image: linear-gradient(to top, #000000c9, #0000), url('../images/vuokraus.webp');
  background-position: 0 0, 50%;
  background-size: auto, auto;
  border-radius: 18px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 640px;
  padding: 72px 80px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta {
  background-color: var(--primary);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  height: 52px;
  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.cookie {
  height: 48px;
}

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

.link-blog-tile {
  grid-row-gap: 16px;
  color: #0b0c0d;
  flex-direction: column;
  width: 100%;
  text-decoration: none;
  transition: transform .2s;
  display: flex;
  position: relative;
}

.link-blog-tile:hover {
  transform: translate(0, -4px);
}

.service-marquee-card {
  color: #fff;
  background-color: #f9f9f9;
  background-image: linear-gradient(to top, #000, #fff0);
  border-radius: 18px;
  flex-direction: row;
  flex: none;
  align-items: flex-end;
  height: 566px;
  padding: 72px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

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

.nav-logo {
  width: 132px;
}

.logo-footer {
  width: 240px;
  margin-bottom: 10px;
}

.project {
  color: #1c1a17;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 3px;
  width: 100%;
  height: 400px;
  position: relative;
}

.arrow-link-default {
  color: #fff;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

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

.section-2.hero {
  padding-top: 100px;
  padding-bottom: 24px;
}

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

.subtitle {
  color: #fff;
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 500;
  line-height: 160%;
}

.hero-c-container-inner {
  color: #fff;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 955px;
  display: flex;
}

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

.space-16 {
  height: 16px;
}

.mouse-ball {
  background-color: var(--text);
  width: 2px;
  height: 8px;
}

.mega-h1 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 82px;
  line-height: 110%;
}

.mouse-scroll {
  border: 2px solid var(--text);
  border-radius: 99px;
  justify-content: center;
  width: 24px;
  height: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 6px;
  display: flex;
  position: absolute;
  inset: auto auto 16px;
}

.home-c-hero-container {
  background-image: url('../images/bg.svg'), linear-gradient(#00000080, #00000080), url('../images/purkutyo-kuva.webp');
  background-position: 50% 100%, 0 0, 50%;
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: auto 73px, auto, cover;
  border-radius: 30px;
  justify-content: center;
  width: 96%;
  max-width: 1400px;
  height: 648px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta-column {
  align-items: stretch;
  width: 100%;
  max-width: 1348px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.cta-right-column {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  display: flex;
}

.cta-left-column {
  background-color: #fff;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  padding: 24px;
  display: flex;
}

.cta-left-column.gray {
  background-color: var(--dark-grey);
}

.cta-left-inner {
  width: 100%;
  max-width: 480px;
}

.text-bold {
  color: var(--black);
  font-weight: 700;
}

.text-bold.font-18px {
  color: var(--white);
  font-size: 18px;
}

.space-112 {
  height: 16px;
}

.submit-wrap-2 {
  flex-direction: column;
  margin-top: 24px;
  display: flex;
}

.cta-form-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 346px;
  display: flex;
}

.input-wrap-3 {
  margin-bottom: 10px;
}

.icon-regular {
  object-fit: contain;
  width: 20px;
  height: 20px;
}

.icon-regular.large {
  height: 21px;
}

.cta-list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.cta-list.gap-24 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.success-message-2 {
  background-color: #f9f9f9;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
}

.text-field-default {
  border: 1px solid var(--dark-grey);
  background-color: var(--dark-grey);
  color: var(--white);
  border-radius: 8px;
  min-height: 60px;
  margin-bottom: 0;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
}

.text-field-default:focus {
  border-color: #424bd1;
}

.text-field-default::placeholder {
  color: #6e6e6e;
}

.text-field-default.text-area {
  min-height: 120px;
}

.cta-list-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 200%;
  display: flex;
}

.cta-list-item.big-list-item {
  color: var(--black);
  font-size: 18px;
}

.feature-icon-wrap {
  background-color: #313131;
  border: 1px solid #464646;
  border-radius: 18px;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 54px;
  height: 54px;
  display: flex;
}

.paragraph-big {
  margin-bottom: 16px;
}

.space-80 {
  height: 80px;
}

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

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

.feature-card-main {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--dark-grey);
  border-radius: 18px;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 50px;
  text-decoration: none;
  transition: all .15s;
  display: flex;
}

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

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

.small-text-block.larger {
  font-size: 18px;
}

.h3-service {
  color: var(--white);
  line-height: 1.4;
}

.category-link {
  margin-bottom: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
}

.category-link.w--current {
  color: var(--primary);
  font-weight: 700;
}

.service-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1.5fr .5fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.industry-hero-container {
  background-image: url('../images/Scroll-BG.svg'), url('../images/inner-bg.jpeg');
  background-position: 50% 100%, 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 73px, cover;
  border-radius: 30px;
  justify-content: center;
  width: 96%;
  max-width: 1400px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.fs-cc-banner_component {
  z-index: 998;
  border-top: 1px solid var(--dark-grey);
  background-color: var(--black);
  padding: 1.5rem 2rem;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.fs-cc-banner_button {
  border: 2px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: 0;
  min-width: 8.75rem;
  margin-left: 1rem;
  padding: .625rem 1.25rem;
  font-size: 1rem;
}

.fs-cc-banner_button:hover {
  border-color: var(--hover);
  background-color: var(--hover);
}

.fs-cc-banner_button.fs-cc-button-alt {
  color: var(--white);
  background-color: #fff0;
  border-style: none;
  border-color: #ff6b26;
  font-weight: 500;
}

.cookie-link {
  color: var(--white-smoke);
  font-weight: 500;
}

.fs-cc-banner_buttons-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: row;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fs-cc-banner_close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.fs-cc-banner_text {
  color: var(--text);
  margin-right: 1.5rem;
  font-size: 16px;
  line-height: 1.5;
}

.fs-cc-banner_close {
  opacity: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  margin-left: .75rem;
  padding: .625rem;
  display: none;
  box-shadow: 1px 1px 12px #0000001a;
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-banner_container {
  align-items: center;
  width: 100%;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.space-120 {
  height: 120px;
}

.check-html-embed {
  color: var(--primary);
  width: 28px;
  height: 28px;
}

.h2-cta {
  padding-right: 10px;
  font-size: 32px;
}

.industry-hero-container-2 {
  background-image: url('../images/bg.svg'), linear-gradient(#0003, #0003), url('../images/inner-bg.jpeg');
  background-position: 50% 100%, 0 0, 50%;
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: auto 73px, auto, cover;
  border-radius: 30px;
  justify-content: center;
  width: 96%;
  max-width: 1400px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-cta-wrapper {
  margin-top: 32px;
  display: flex;
}

.about-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.about-image-home {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 400px;
}

.about-image-home.first {
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
}

.about-image-home.second {
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}

.whatsapp-block {
  z-index: 30;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  position: fixed;
  inset: auto 30px 30px auto;
}

.profile-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  display: flex;
}

.chat-block {
  background-color: #fff;
  border-radius: 8px;
  width: 80%;
  padding: 15px;
}

.live-chat-text {
  color: #fff;
  text-decoration: none;
}

.profile-image-wrapper-2 {
  position: relative;
}

.live-icon-chat {
  object-fit: contain;
  border-radius: 50%;
  width: 47px;
  height: 47px;
  margin-right: 0;
}

.top-section {
  justify-content: space-between;
  align-items: center;
  height: 25%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.live-icon {
  background-color: #00b94a;
  border-radius: 100%;
  width: 13px;
  height: 13px;
  position: absolute;
  inset: 2px auto auto 2px;
}

.live-icon.profile-live-icon {
  border: 1.5px solid #fff;
  width: 10px;
  height: 10px;
  inset: auto 2px 2px auto;
}

.chat-section {
  background-color: #e6ddd4;
  height: 50%;
  padding: 16px 20px;
}

.close-livechat-icon {
  width: auto;
  height: auto;
}

.whatsapp-icon {
  width: 26px;
  height: auto;
}

.whatsapp-chat {
  background-color: #fff;
  border: 1px solid #00000012;
  border-radius: 20px;
  flex-direction: column;
  width: 300px;
  height: 315px;
  margin-bottom: 16px;
  display: flex;
  overflow: hidden;
}

.live-chat-bottom-text {
  color: #494949;
  font-size: 10px;
}

.live-chat-bottom-text.block {
  margin-bottom: 5px;
  font-size: 12px;
}

.live-chat-top-text {
  color: #333;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 500;
  position: static;
}

.live-chat-top-text.block {
  color: #6b6b6b;
  margin-bottom: 10px;
  font-size: 12px;
}

.livechat-button {
  background-color: #00b94a;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 42px;
  text-decoration: none;
  display: flex;
}

.whatsapp-container {
  z-index: 30;
  cursor: pointer;
  background-color: #000;
  border: 1px solid #fff3;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 57px;
  transition: all .3s cubic-bezier(.45, .182, .111, .989);
  display: flex;
  position: relative;
  inset: auto 0% 0% auto;
}

.whatsapp-container:hover {
  background-color: #383838;
  transform: scale(1.05);
}

.live-chat-link {
  border-radius: 0;
  justify-content: center;
  align-items: center;
  height: 25%;
  text-decoration: none;
  display: flex;
}

.close-live-chat-container {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 10%;
  height: 100%;
  display: flex;
}

.small-whatsapp-icon {
  object-fit: contain;
  width: auto;
  height: auto;
  margin-right: 10px;
}

.footer-link-flex {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: wrap;
  align-items: center;
  display: flex;
}

.footer-text-link {
  opacity: .8;
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
}

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

.text-block {
  color: var(--white-smoke);
  margin-top: 20px;
}

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

.div-block-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

@media screen and (min-width: 1920px) {
  .whatsapp-chat {
    display: none;
  }

  .livechat-button {
    transition: all .2s;
  }

  .livechat-button:hover {
    background-color: #000;
    transform: scale(1.05);
  }
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 32px;
    line-height: 1.3;
  }

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

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

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

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

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

  .line-menu {
    background-color: var(--text);
    border-radius: 4px;
    width: 32px;
    height: 2px;
    padding: 0;
  }

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

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

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

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

  .right-product {
    padding: 0;
  }

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

  .tab-block {
    min-height: 540px;
  }

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

  .project {
    height: 340px;
  }

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

  .hero-c-container-inner {
    padding-top: 0;
  }

  .mega-h1 {
    font-size: 70px;
  }

  .home-c-hero-container {
    max-width: 1000px;
    height: auto;
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .cta-column {
    width: 96%;
    padding-left: 0;
    padding-right: 0;
  }

  .cta-list.gap-24 {
    grid-row-gap: 16px;
  }

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

  .feature-card-main {
    padding: 32px;
  }

  .small-text-block {
    line-height: 140%;
  }

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

  .industry-hero-container {
    width: 96%;
    max-width: 1200px;
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 1rem;
  }

  .fs-cc-banner_text {
    margin-right: 0;
  }

  .fs-cc-banner_close {
    display: block;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .industry-hero-container-2 {
    width: 96%;
    max-width: 1200px;
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .whatsapp-block {
    bottom: 20px;
    right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .navbar-container {
    grid-template-columns: 1fr 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

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

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

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

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

  .left-footer-bottom {
    grid-row-gap: 64px;
    flex-direction: column;
  }

  .service-marquee-card {
    padding: 24px;
  }

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

  .project {
    height: 400px;
  }

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

  .span-accent-1 {
    margin-bottom: 8px;
  }

  .subtitle {
    font-size: 20px;
  }

  .mega-h1 {
    font-size: 54px;
  }

  .cta-column {
    flex-direction: column;
    width: 96%;
  }

  .cta-right-column {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .paragraph-big {
    font-weight: 400;
  }

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

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .whatsapp-block {
    bottom: 15px;
    right: 15px;
  }
}

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

  p {
    font-size: 16px;
  }

  .nav-menu {
    align-items: center;
    width: 96%;
  }

  .navbar-container {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1.5fr 1fr;
  }

  .link-brand-nav {
    padding-left: 0;
  }

  .line-menu {
    background-color: var(--primary);
  }

  .h2 {
    text-align: left;
  }

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

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

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

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

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

  .text-footer-legal {
    font-size: 16px;
  }

  .left-footer-bottom {
    display: flex;
  }

  .links-master-footer {
    justify-content: flex-start;
    align-items: center;
  }

  .expandable-single {
    padding: 24px;
  }

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

  .image-symbol-big {
    height: 46px;
  }

  .tab-block {
    min-height: 420px;
    padding: 24px;
  }

  .legal-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column-reverse;
  }

  .logo-footer {
    width: 240px;
    margin-bottom: 26px;
  }

  .project {
    height: 360px;
  }

  .mega-h1 {
    font-size: 12.5vw;
    line-height: 130%;
  }

  .home-c-hero-container {
    width: 92%;
    padding: 130px 16px;
  }

  .cta-column {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .cta-right-column {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cta-left-inner {
    text-align: center;
  }

  .icon-regular {
    width: 16px;
    height: 16px;
  }

  .icon-regular.large {
    height: 18px;
  }

  .cta-list.gap-24 {
    align-items: center;
  }

  .cta-list-item.big-list-item {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    margin-bottom: 10px;
  }

  .main-title-wrap {
    text-align: center;
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .grid-thirds {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .feature-card-main {
    padding-left: 22px;
    padding-right: 22px;
  }

  .small-text-block {
    text-align: left;
    font-size: 15px;
  }

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

  .industry-hero-container {
    width: 92%;
  }

  .fs-cc-banner_component {
    display: none;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: .5rem;
    margin-left: 0;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .fs-cc-banner_text {
    margin-bottom: 10px;
  }

  .fs-cc-banner_close {
    position: absolute;
    inset: -1.5rem .75rem auto auto;
  }

  .h2-cta {
    margin-bottom: 16px;
    font-size: 29px;
  }

  .industry-hero-container-2 {
    width: 92%;
  }

  .about-grid {
    grid-column-gap: 42px;
    grid-row-gap: 42px;
  }

  .about-image-home {
    margin-top: -1px;
  }

  .whatsapp-block {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    bottom: 0;
    right: 0;
  }

  .whatsapp-icon {
    width: 26px;
  }

  .whatsapp-chat {
    width: 100%;
    height: 40vh;
    position: relative;
  }

  .whatsapp-container {
    width: 60px;
    height: 60px;
    bottom: 10px;
    right: 0;
  }

  .text-block {
    text-align: center;
    margin-top: 24px;
  }
}

#w-node-cae92f20-a3e5-439d-6208-c1460c481d30-43917a11 {
  place-self: center;
}

#w-node-_814ec2d8-e7c1-607b-fe51-ba19a6def40c-8963c2ea {
  justify-self: center;
}

#w-node-_814ec2d8-e7c1-607b-fe51-ba19a6def410-8963c2ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cd59a81a-93c6-4a9a-28c5-008b4997a918-8963c2ea {
  justify-self: end;
}

#w-node-cd59a81a-93c6-4a9a-28c5-008b4997a91c-8963c2ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9c502d83-c2c4-5d07-ca1b-78d270dc0d05-70dc0d02 {
  place-self: center start;
}

#w-node-_9c502d83-c2c4-5d07-ca1b-78d270dc0d08-70dc0d02 {
  place-self: stretch end;
}

@media screen and (max-width: 991px) {
  #w-node-d3872dd7-c91f-8b5e-463d-e0788963c310-8963c2ea {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_814ec2d8-e7c1-607b-fe51-ba19a6def40c-8963c2ea, #w-node-cd59a81a-93c6-4a9a-28c5-008b4997a918-8963c2ea {
    justify-self: start;
  }

  #w-node-_9c502d83-c2c4-5d07-ca1b-78d270dc0d33-70dc0d02 {
    justify-self: end;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_9c502d83-c2c4-5d07-ca1b-78d270dc0d33-70dc0d02 {
    justify-self: end;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@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-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;
}