:root {
  --body: #333;
  --title: black;
  --desktop-space: 150px;
  --tablet-space: 100px;
  --landscape-mobile-space: 100px;
  --portrait-mobile-space: 100px;
  --accent: #155c97;
  --white: white;
  --bg: #f3f3f3;
  --border-color: #00000026;
  --black: black;
}

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

@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(--body);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  color: var(--title);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

h4 {
  color: var(--title);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

p {
  margin-bottom: 16px;
}

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

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

strong {
  color: var(--title);
  font-weight: 500;
}

.nav-right {
  grid-column-gap: 15px;
  align-items: center;
  display: flex;
  position: relative;
}

.humburg-menu {
  margin-left: 10px;
}

.humburg-menu.w--open {
  background-color: #0000;
  padding-left: 0;
}

.middle-line {
  background-color: #000;
  width: 24px;
  height: 1px;
}

.bottom-line {
  background-color: #000;
  width: 24px;
  height: 1px;
  margin-top: 6px;
}

.navbar {
  background-color: #0000;
  border-bottom: 1px solid #0000001a;
  padding-top: 24px;
  padding-bottom: 24px;
}

.container {
  width: 100%;
  max-width: 1336px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.top-line {
  background-color: #000;
  width: 24px;
  height: 1px;
  margin-bottom: 6px;
}

.nav-link {
  color: #000;
  text-align: center;
  text-transform: uppercase;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 12px;
  font-weight: 500;
  line-height: 120%;
  text-decoration: none;
  display: flex;
}

.nav-phone {
  color: #000;
  font-size: 12px;
  line-height: 120%;
  text-decoration: none;
}

.brand {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  width: 130px;
  display: flex;
}

.nav-menu {
  align-items: center;
  display: flex;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

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

.hero {
  margin-bottom: var(--desktop-space);
  height: 90vh;
  position: relative;
}

.hero-title {
  color: #fff;
  margin-bottom: 40px;
  font-size: 64px;
  font-weight: 600;
}

.hero-data {
  width: 100%;
  max-width: 800px;
}

.hero-btn-wrap {
  grid-column-gap: 40px;
  align-items: center;
  display: flex;
}

.hero-text {
  color: #fff;
  width: 100%;
  max-width: 50%;
  margin-bottom: 0;
  font-size: 16px;
}

.hero-btn {
  grid-column-gap: 10px;
  background-color: var(--accent);
  color: #fff;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 14px 26px 14px 24px;
  font-size: 14px;
  line-height: 120%;
  text-decoration: none;
  transition: background-color .3s, color .3s;
  display: flex;
}

.hero-btn:hover {
  color: #000;
  background-color: #fff;
}

.hero-btn.cta {
  position: absolute;
  inset: 12px 12px 12px auto;
}

.hero-btn.cta:hover {
  background-color: var(--accent);
  color: var(--white);
}

.overlay {
  background-image: linear-gradient(#0000004d, #0000004d);
  position: absolute;
  inset: 0%;
}

.overlay._50 {
  background-image: linear-gradient(90deg, #00000059, #0000), linear-gradient(#00000073, #00000073);
}

.arrow {
  width: 16px;
  height: 16px;
}

.hero-data-wrap {
  padding-top: 260px;
  position: absolute;
  inset: 0%;
}

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

.about-title {
  width: 100%;
  max-width: 80%;
  margin-bottom: 60px;
}

.subtitle-element {
  color: var(--accent);
  line-height: 130%;
}

.about-top-img {
  background-color: #f3f3f3;
  border-radius: 6px;
  width: 100%;
  max-width: 80%;
  position: relative;
  overflow: hidden;
}

.about-img {
  background-color: #f3f3f3;
  border-radius: 6px;
  width: 100%;
  max-width: 55%;
  position: relative;
  overflow: hidden;
}

.about-wrap {
  grid-column-gap: 40px;
  align-items: flex-start;
  display: flex;
}

.primary-btn {
  grid-column-gap: 10px;
  color: #000;
  background-color: #0000;
  border: 1px solid #000;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 14px 26px 14px 24px;
  font-size: 14px;
  line-height: 120%;
  text-decoration: none;
  transition: background-color .3s, color .3s;
  display: flex;
}

.primary-btn:hover {
  color: #fff;
  background-color: #000;
}

.subtitle {
  grid-column-gap: 5px;
  color: #000;
  text-transform: uppercase;
  align-items: center;
  padding-bottom: 4px;
  font-size: 14px;
  display: flex;
}

.about-right {
  grid-row-gap: 40px;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 35%;
  display: flex;
}

.about-data-wrap {
  grid-column-gap: 40px;
  align-items: center;
  display: flex;
}

.on-scroll {
  background-color: #f3f3f3;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.about-image1 {
  object-fit: cover;
  width: 100%;
  min-height: 440px;
  max-height: 440px;
}

.about-image1.custom-cover {
  object-position: 20% 50%;
}

.about-btm-img {
  background-color: #f3f3f3;
  border-radius: 6px;
  width: 100%;
  max-width: 44%;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}

.about-data {
  width: 100%;
  max-width: 45%;
}

.button-wrapper {
  margin-top: 40px;
  display: flex;
}

.about-left {
  width: 100%;
  max-width: 65%;
}

.title {
  margin-bottom: 0;
}

.about-image2 {
  object-fit: cover;
  width: 100%;
  min-height: 220px;
  max-height: 220px;
}

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

.section-title {
  margin-bottom: 48px;
}

.single-text {
  margin-bottom: 0;
}

.section-wrap {
  grid-column-gap: 80px;
  align-items: center;
  display: flex;
}

.section-data {
  width: 100%;
  max-width: 48%;
}

.section-img {
  background-color: #f3f3f3;
  border-radius: 6px;
  width: 100%;
  max-width: 52%;
  overflow: hidden;
}

.section-img.no-radius {
  border-radius: 0;
}

.section-img.no-radius.relative-image {
  height: 550px;
  position: relative;
}

.address {
  color: #999;
  width: 100%;
  max-width: 220px;
  font-size: 14px;
  font-weight: 500;
}

.footer-link-wrap {
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.ftr-link {
  color: #999;
  font-size: 14px;
  font-weight: 500;
}

.footer-left {
  grid-row-gap: 10px;
  flex-direction: column;
  display: flex;
}

.footer-link {
  color: var(--white);
  font-size: 34px;
  font-weight: 300;
  line-height: 120%;
  text-decoration: none;
  transition: color .3s;
}

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

.footer-btm {
  border-top: 1px solid #68686833;
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer-btm-text {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-wrap {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 80px;
  padding-bottom: 140px;
  display: grid;
}

.footer {
  background-color: #000;
  position: relative;
}

.footer-right {
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  display: flex;
}

.footer-center {
  grid-column-gap: 100px;
  color: #999;
  align-items: flex-start;
  display: flex;
}

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

.plain-link:hover {
  text-decoration: underline;
}

.link-label {
  color: #000;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
}

.error-message {
  text-align: center;
  border-radius: 6px;
  padding: 20px;
}

.input {
  background-color: #0000;
  border: 0 solid #000;
  border-bottom-width: 1px;
  border-radius: 0;
  height: auto;
  margin-bottom: 0;
  padding: 0 0 12px;
}

.input:focus {
  border-bottom-color: #000;
}

.input::placeholder {
  color: #666;
}

.get-in-wrap {
  grid-column-gap: 80px;
  align-items: flex-start;
  display: flex;
}

.success-message {
  background-color: #f3f3f3;
  border: 1px solid #0000001a;
  border-radius: 6px;
}

.textarea {
  background-color: #0000;
  border: 0 solid #000;
  border-bottom-width: 1px;
  border-radius: 0;
  height: auto;
  min-height: 120px;
  margin-bottom: 0;
  padding: 0 0 12px;
}

.textarea:focus {
  border-bottom-color: #000;
}

.textarea::placeholder {
  color: #666;
}

.get-block {
  grid-column-gap: 14px;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.get-in-data {
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
  display: flex;
}

.field-label {
  text-align: left;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}

.get-in-right {
  background-color: #fff;
  border-radius: 6px;
  width: 100%;
  max-width: 45%;
  padding: 50px;
}

.get-in-right.bg {
  background-color: var(--bg);
}

.discuss-form {
  width: 100%;
  max-width: 55%;
  margin-bottom: 0;
}

.form-btn {
  justify-content: flex-end;
  display: flex;
}

.field-wrap {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 40px;
  display: grid;
}

.submit-btn {
  grid-column-gap: 10px;
  color: #000;
  background-color: #0000;
  background-image: url('../images/Nuoli-ylos.svg');
  background-position: 83px;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #000;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 14px 52px 14px 24px;
  font-size: 14px;
  line-height: 120%;
  text-decoration: none;
  transition: background-color .3s, color .3s;
  display: flex;
}

.submit-btn:hover {
  color: #fff;
  background-color: #000;
  background-image: url('../images/Valkoinen-nuoli-ylos.svg');
}

.section {
  margin-bottom: var(--desktop-space);
}

.section.cta {
  margin-bottom: 100px;
}

.service-list {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.service-link {
  grid-row-gap: 42px;
  border: 1px solid #0000001a;
  border-radius: 6px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 40px 35px;
  text-decoration: none;
  transition: border-color .3s;
  display: flex;
}

.service-link.hover {
  grid-row-gap: 68px;
}

.service-link.hover:hover {
  border-color: var(--title);
}

.service-icon {
  width: 54px;
  height: 54px;
}

.service-icon.round {
  object-fit: cover;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.page-title {
  padding-top: 60px;
  padding-bottom: 60px;
}

.subtitle-element-3 {
  color: var(--accent);
  line-height: 130%;
}

.main-title {
  color: var(--title);
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 52px;
  font-weight: 400;
}

.space {
  height: 10px;
}

.space._24 {
  height: 24px;
}

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

.footer-legal {
  color: #999;
  font-size: 14px;
  font-weight: 400;
}

.input-2 {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 100px;
  min-height: 70px;
  margin-bottom: 0;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 20px;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 7px #14142b14;
}

.input-2:hover {
  border-color: #4dc96c;
  box-shadow: 0 2px 12px #14142b1a;
}

.input-2:focus {
  color: #211f54;
  border-color: #4dc96c;
}

.input-2::placeholder {
  color: #6e7191;
  font-size: 18px;
}

.input-2.large {
  min-height: 76px;
}

.input-2.large.button-inside {
  color: var(--title);
  font-size: 16px;
}

.input-2.large.button-inside::placeholder {
  color: #999;
  font-size: 16px;
}

.success-message-2 {
  color: #4dc96c;
  background-color: #f7f6ff;
  border-radius: 24px;
  padding: 28px 28px 32px;
}

.success-message-2.white-message {
  color: #4dc96c;
  background-color: #fff;
}

.position-relative {
  position: relative;
}

.mg-bottom-32px {
  margin-bottom: 32px;
}

.cta-heading {
  color: #fff;
  margin-bottom: 16px;
}

.grid-2-columns {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.error-message-2 {
  color: #ff5a65;
  text-align: center;
  background-color: #ffeff0;
  border-radius: 16px;
  margin-top: 20px;
  padding: 20px 24px;
}

.cta-card {
  background-color: var(--accent);
  color: var(--white);
  padding: 110px 60px;
  position: relative;
}

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

.z-index-1 {
  z-index: 1;
  position: relative;
}

.cta-paragraph {
  width: 100%;
  max-width: 400px;
}

.service-details {
  margin-bottom: 60px;
}

.service-details h3 {
  color: var(--title);
  margin-bottom: 16px;
  font-family: Manrope, sans-serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
}

.service-details img {
  margin-top: 24px;
  margin-bottom: 24px;
}

.service-details a {
  color: var(--accent);
}

.service-image {
  object-fit: cover;
  width: 100%;
  min-height: 600px;
  max-height: 600px;
}

.service-img {
  background-color: #f3f3f3;
  border-radius: 6px;
  margin-bottom: 40px;
  overflow: hidden;
}

.service-details-wrapper {
  padding-left: 80px;
  padding-right: 80px;
}

.service-details-wrapper.no-padding {
  padding-left: 0;
  padding-right: 0;
}

.dropdown-toggle {
  text-transform: uppercase;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 12px;
  font-weight: 500;
}

.dropdown-list {
  background-color: #000;
}

.dropdown-list.w--open {
  background-color: #fff;
  border: 1px solid #00000012;
  flex-flow: column;
  align-items: flex-start;
  width: 157px;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.dropdown-link {
  width: 170px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 24px;
  padding-right: 24px;
}

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

.dropdown-main-link {
  text-decoration: none;
}

.icon {
  display: none;
}

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

.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: #000;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
}

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

.contact-paragraph {
  margin-bottom: 10px;
}

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

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

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

.h2-utility {
  margin-bottom: 16px;
}

.service-heading {
  color: var(--title);
  margin-bottom: 10px;
  font-family: Manrope, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
}

.service-section {
  margin-bottom: 100px;
}

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

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

.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 3px 3px auto;
}

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

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

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

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

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

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

.live-chat-top-text.block {
  color: #b0b0b0;
  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;
}

.social-wrap {
  grid-column-gap: 8px;
  align-items: center;
  display: flex;
}

.social-link {
  background-color: #0000;
  border: 1px solid #ffffff1a;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background-color .3s, border-color .3s;
  display: flex;
}

.social-link:hover {
  background-color: #ffffff1a;
}

.social-link:focus {
  background-color: #ffffff0a;
  border-color: #fff3;
}

.footer-social-icon {
  width: 17px;
}

.nav-brand-text {
  color: var(--title);
  font-size: 18px;
  font-weight: 500;
}

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

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

.about-badge {
  width: 160px;
  margin-top: 10px;
}

.machines-wrapper {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.machines-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.image-full-width {
  object-fit: contain;
  object-position: 0% 50%;
  width: 100%;
  height: 100%;
  max-height: 350px;
}

.machines-images-grid {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.machines-images-grid.two-columns {
  grid-template-columns: 1fr 1fr;
}

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

.personnel {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 32px;
  margin-bottom: 42px;
  display: flex;
}

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

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

.image-cover.flex-center {
  z-index: 2;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.play-image {
  width: 100px;
  height: 100px;
  transition: all .3s cubic-bezier(.23, 1, .32, 1);
}

.play-image:hover {
  transform: scale(1.05);
}

.projects-row {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr .5fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.projects-cell {
  border-top: 1px solid var(--border-color);
  border-left: 1px solid var(--border-color);
  justify-content: flex-start;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  display: flex;
}

.projects-cell.border-right {
  border-right: 1px solid var(--border-color);
}

.projects-cell.heading-cell {
  font-weight: 700;
}

.projects-table {
  flex-flow: column;
  display: flex;
}

.projects-table-underline {
  background-color: var(--border-color);
  width: 100%;
  height: 1px;
}

.h2-small {
  font-size: 32px;
}

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

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

.flag {
  object-fit: cover;
  width: 23px;
  height: 13px;
}

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

.drodpdown-list.homepages-list.w--open {
  border-style: none;
  border-radius: 0;
  padding: 18px;
}

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

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

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

@media screen and (min-width: 1280px) {
  .image-full-width {
    max-height: 400px;
  }
}

@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) {
  .humburg-menu {
    grid-row-gap: 4px;
    margin-left: 0;
    padding: 0;
  }

  .middle-line, .bottom-line {
    width: 26px;
  }

  .navbar {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .container {
    max-width: 100%;
  }

  .top-line {
    width: 26px;
  }

  .nav-link {
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    padding: 14px 0;
  }

  .nav-menu {
    background-color: #fff;
    border-bottom: 1px solid #0000001a;
    justify-content: center;
    padding: 20px;
    left: 0;
    transform: translate(0);
  }

  .nav-wrap {
    position: static;
  }

  .hero {
    margin-bottom: var(--tablet-space);
    height: 100vh;
  }

  .hero-data {
    max-width: 100%;
  }

  .hero-data-wrap {
    padding-top: 140px;
  }

  .about-title {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .about-img {
    max-width: 35%;
  }

  .about-wrap {
    grid-column-gap: 30px;
  }

  .about-right {
    grid-row-gap: 30px;
    max-width: 25%;
    display: none;
  }

  .about-data-wrap {
    grid-column-gap: 30px;
  }

  .about-image1 {
    min-height: auto;
    max-height: none;
  }

  .about-data {
    max-width: 65%;
  }

  .about-left {
    max-width: 100%;
  }

  .about-image2 {
    min-height: auto;
    max-height: none;
  }

  .section-image {
    height: 450px;
  }

  .section-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: flex-start;
  }

  .section-wrap.reverse {
    flex-direction: column-reverse;
  }

  .section-data, .section-img {
    max-width: 100%;
  }

  .section-img.no-radius.relative-image {
    height: 450px;
  }

  .footer-link {
    font-size: 30px;
  }

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

  .footer {
    background-size: contain;
  }

  .footer-right {
    max-width: 30%;
  }

  .footer-center {
    grid-column-gap: 0px;
    grid-row-gap: 25px;
    flex-direction: column;
  }

  .get-in-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .get-in-right, .discuss-form {
    max-width: 100%;
  }

  .section, .section.cta {
    margin-bottom: var(--tablet-space);
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
  }

  .service-link {
    grid-row-gap: 70px;
    padding: 30px;
  }

  .page-title {
    padding-top: 50px;
    padding-bottom: 50px;
  }

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

  .cta-card {
    padding: 72px 54px;
  }

  .service-image {
    min-height: 450px;
    max-height: 450px;
  }

  .service-details-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .dropdown-toggle {
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
    padding: 14px 0;
    display: flex;
  }

  .dropdown-list.w--open {
    left: -100px;
  }

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

  .image-cover {
    height: 450px;
  }

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

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

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

@media screen and (max-width: 767px) {
  .humburg-menu {
    position: relative;
  }

  .humburg-menu.w--open {
    z-index: 10;
  }

  .brand {
    padding-left: 0;
  }

  .hero {
    margin-bottom: var(--landscape-mobile-space);
  }

  .hero-title {
    margin-bottom: 20px;
    font-size: 56px;
  }

  .hero-btn-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .hero-text, .about-img {
    max-width: 100%;
  }

  .about-data-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-data {
    max-width: 100%;
  }

  .section-image {
    height: 350px;
  }

  .section-wrap {
    grid-row-gap: 20px;
  }

  .section-img.no-radius.relative-image {
    height: 350px;
  }

  .address {
    max-width: 200px;
  }

  .footer-btm-text {
    grid-column-gap: 40px;
  }

  .footer-wrap {
    grid-row-gap: 40px;
    flex-wrap: wrap;
    grid-template-columns: 1fr 1fr;
  }

  .footer-right {
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    display: flex;
  }

  .footer-center {
    grid-row-gap: 20px;
  }

  .get-in-right {
    padding: 30px;
  }

  .field-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .section, .section.cta {
    margin-bottom: var(--landscape-mobile-space);
  }

  .service-list {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
  }

  .service-link {
    grid-row-gap: 40px;
    padding: 20px;
  }

  .service-icon {
    min-width: 60px;
    max-width: 60px;
    min-height: 60px;
    max-height: 60px;
  }

  .page-title {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .main-title {
    font-size: 48px;
    display: block;
  }

  .input-2 {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .input-2.large.button-inside {
    min-height: 68px;
  }

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

  .cta-card {
    padding-left: 24px;
    padding-right: 24px;
  }

  .service-image {
    min-height: 350px;
    max-height: 350px;
  }

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

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

  .service-section {
    margin-bottom: 80px;
  }

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

  .image-cover, .image-cover.flex-center {
    height: 350px;
  }

  .projects-cell {
    padding: 6px 12px;
  }
}

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

  .nav-right {
    grid-column-gap: 26px;
  }

  .nav-phone {
    font-size: 11px;
    display: none;
  }

  .hero {
    margin-bottom: var(--portrait-mobile-space);
    height: 90vh;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.2;
  }

  .hero-btn-wrap {
    grid-row-gap: 36px;
    margin-top: 24px;
  }

  .hero-btn.cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-data-wrap {
    padding-top: 170px;
  }

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

  .about-img.mobile-height-325px {
    height: 325px;
  }

  .about-image1.custom-cover {
    height: 100%;
  }

  .section-image {
    height: 300px;
  }

  .section-wrap {
    grid-row-gap: 54px;
  }

  .section-img.no-radius.relative-image {
    height: 270px;
  }

  .address {
    max-width: 150px;
  }

  .footer-link {
    font-size: 24px;
  }

  .footer-btm-text {
    grid-column-gap: 0px;
    grid-row-gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-wrap {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer {
    background-size: contain;
  }

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

  .get-in-data {
    grid-column-gap: 0px;
    grid-row-gap: 30px;
    flex-direction: column;
    padding-bottom: 40px;
  }

  .get-in-right {
    padding: 20px;
    font-size: 14px;
  }

  .field-wrap {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }

  .section, .section.cta {
    margin-bottom: var(--portrait-mobile-space);
  }

  .service-list {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
  }

  .main-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .input-2 {
    font-size: 16px;
    line-height: 18px;
  }

  .input-2::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .input-2.large.button-inside {
    min-height: 64px;
    font-size: 14px;
  }

  .input-2.large.button-inside::placeholder {
    font-size: 14px;
  }

  .cta-heading {
    margin-bottom: 20px;
    font-size: 32px;
  }

  .flex-horizontal.success-message-horizontal {
    flex-direction: column;
  }

  .service-image {
    min-height: 220px;
    max-height: 220px;
  }

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

  .dropdown-list.w--open {
    width: 320px;
  }

  .dropdown-link {
    width: 142px;
    font-size: 14px;
  }

  .service-section {
    margin-bottom: 60px;
  }

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

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

  .live-icon {
    width: 12px;
    height: 12px;
  }

  .whatsapp-icon {
    width: 24px;
  }

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

  .section-heading {
    margin-bottom: 10px;
  }

  .about-badge {
    width: 200px;
  }

  .machines-images-grid, .machines-images-grid.two-columns, .personnel-grid {
    grid-template-columns: 1fr;
  }

  .image-cover.flex-center {
    height: 275px;
  }

  .play-image {
    width: 90px;
    height: 90px;
  }

  .projects-row {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .projects-cell {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 12px;
    line-height: 1.4;
  }

  .h2-small {
    font-size: 26px;
  }

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

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

#w-node-_29c9de55-12cd-e77a-2a19-ee3543eb6c1c-43eb6c15 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e0649f6-68ed-cc65-f1c7-533f577cfb75-df10ff62 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_663fd736-f3be-389a-0766-a16e64e2d3a0-64e2d39b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e0649f6-68ed-cc65-f1c7-533f577cfb75-2cd4d9cc {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 479px) {
  #w-node-_3e0649f6-68ed-cc65-f1c7-533f577cfb75-df10ff62, #w-node-_3e0649f6-68ed-cc65-f1c7-533f577cfb75-2cd4d9cc {
    grid-column: span 1 / span 1;
  }
}


