@font-face {
  font-family: Cabinetgrotesk;
  src: url('../fonts/CabinetGrotesk-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Cabinetgrotesk;
  src: url('../fonts/CabinetGrotesk-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Cabinetgrotesk;
  src: url('../fonts/CabinetGrotesk-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #080808;
  --color: #fafafa;
  --dark: #242424;
  --primary: white;
  --secondary: white;
  --white: white;
}

.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 {
  background-color: var(--black);
  color: var(--color);
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 1.5em;
}

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

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Cabinetgrotesk, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Cabinetgrotesk, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
}

p {
  margin-bottom: 16px;
}

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

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

strong {
  font-weight: bold;
}

.nav-dropdown-toggle {
  letter-spacing: .5px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 15px;
  transition: opacity .3s;
}

.nav-dropdown-toggle:hover {
  opacity: .7;
}

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

.secondary-button {
  background-color: var(--dark);
  color: var(--primary);
  text-align: center;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  transition-property: all;
  display: flex;
}

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

.nav-item-title {
  color: #fff;
  text-transform: capitalize;
  margin-bottom: 0;
  transition: color .3s;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.nav-dropdown-link {
  color: var(--white);
  width: 100%;
  padding: 8px 8px 8px 0;
  transition: all .15s;
  display: flex;
}

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

.nav-dropdown-link.w--current {
  color: var(--secondary);
  font-weight: 400;
}

.brand-tablet {
  display: none;
}

.nav-link {
  color: #fff;
  letter-spacing: .5px;
  text-transform: capitalize;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 15px;
  transition-property: opacity;
}

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

.nav-link.w--current {
  color: #fff;
}

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

.nav-dropdown-link-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-dropdown-list {
  box-shadow: none;
  background-color: #fff;
  border: 1px solid #687a774d;
  border-radius: 12px;
  width: 200px;
  padding: 15px 20px;
}

.nav-dropdown-list.w--open {
  background-color: var(--dark);
  border-style: none;
  width: auto;
  margin-top: -5px;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 0 10px #0000000a;
}

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

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

.navbar {
  z-index: 4;
  background-color: #0000;
  width: 100%;
  padding-top: 18px;
  padding-bottom: 18px;
  position: fixed;
  inset: 0% 0% auto;
}

.container {
  flex-direction: column;
  flex: 1;
  align-items: center;
  max-width: 1248px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.container.justify {
  justify-content: center;
}

.description-left-banner-block {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.subtitle-label {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  text-transform: uppercase;
  background-color: #ffffff1a;
  border-radius: 50px;
  align-items: center;
  margin-bottom: 10px;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5em;
  display: flex;
}

.primary-button {
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--black);
  text-align: center;
  border-radius: 8px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 20px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  transition-property: all;
  display: flex;
}

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

.button-wrapper-home-2 {
  grid-column-gap: 30px;
  display: flex;
}

.hero-heading {
  color: #fff;
  max-width: 620px;
  font-weight: 700;
}

.white-text-weight-400 {
  color: #fff;
  align-items: center;
  display: flex;
}

.white-text-weight-400.home-2 {
  max-width: 470px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.section-hero {
  background-image: linear-gradient(#0009, #0009);
  justify-content: center;
  align-items: center;
  height: 720px;
  padding-top: 90px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.banner-content-block {
  width: 100%;
}

.dot {
  margin-top: -3px;
  margin-right: 10px;
  font-size: 20px;
  line-height: 0;
}

.link-with-border {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.block-horizontal {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 50px;
  display: grid;
}

.service-paragraph {
  margin-top: 20px;
  margin-bottom: 24px;
}

.service-wrapper {
  background-color: var(--dark);
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 48px 30px;
  display: flex;
}

.line-bottom {
  background-color: var(--primary);
  width: 100%;
  height: 1px;
}

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

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

.section.legal-banner {
  background-color: var(--dark);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 170px;
  display: flex;
}

.service-title {
  font-family: Cabinetgrotesk, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2em;
}

.primary-bg {
  z-index: 10;
  background-color: var(--primary);
  width: 100%;
  height: 0%;
  position: absolute;
  inset: 0% 0% auto;
}

.primary-bg.z-index {
  z-index: 1;
}

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

.image-cover.height-550 {
  border-radius: 10px;
  height: 550px;
}

.image-full-block {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.heading-project-wrapper {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.description-right-wrapper {
  grid-row-gap: 0px;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.description-right-wrapper.no-margins {
  grid-row-gap: 0px;
}

.services-wrapper {
  width: 100%;
}

.block-content-wrapper {
  grid-column-gap: 50px;
  width: 100%;
  display: flex;
}

.block-content-wrapper.two-columns {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

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

.footer-link {
  color: var(--color);
  transition: all .3s;
}

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

.footer-copyright {
  color: var(--color);
  width: 100%;
  font-size: 16px;
  display: inline;
}

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

.footer {
  text-align: center;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 50px;
}

.footer-wrapper {
  border-bottom: 1px solid #272727;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 50px;
  padding-bottom: 50px;
  display: flex;
}

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

.footer-bottom-wrapper {
  grid-row-gap: 5px;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.cta-block {
  background-color: var(--dark);
  color: var(--black);
  background-image: linear-gradient(#242424cc, #242424cc), url('../images/pinnan-pinnoitus.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 70px 40px 80px;
  display: flex;
}

.white-text {
  color: #fff;
}

.white-text.services {
  max-width: 550px;
}

.white-text.maxw-main {
  max-width: 650px;
}

.cta-paragraph {
  color: var(--white);
  text-align: center;
  max-width: 616px;
  margin-top: 20px;
  margin-bottom: 50px;
}

.brand-image {
  object-fit: contain;
  height: 75px;
}

.space {
  height: 24px;
}

.space._100 {
  height: 100px;
}

.bgr-projects {
  background-image: linear-gradient(#00000080, #00000080);
  border-radius: 10px;
  position: absolute;
  inset: 0%;
}

.bgr-projects.kylpyhuoneen-nanopinnoitus {
  background-image: linear-gradient(#00000080, #00000080), url('../images/nanopinnoitus.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.bgr-projects.silikonisaumojen-vaihto-kylpyhuoneeseen {
  background-image: linear-gradient(#00000080, #00000080), url('../images/silikonisaumojen-vaihto.jpg');
  background-position: 0 0, 50% 25%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.bgr-projects.nanopinnoitus-muihin-tiloihin {
  background-image: linear-gradient(#00000080, #00000080), url('../images/pinnoitus-kuva.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.bgr-projects.tehokas-ja-ekologinen-syv-puhdistus-kodin-m-rk-tiloihin {
  background-image: linear-gradient(#00000080, #00000080), url('../images/nanopinnoitus.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.section-with-height {
  background-image: linear-gradient(#1178654d, #1178654d), linear-gradient(#000000b3, #000000b3);
  justify-content: center;
  align-items: center;
  padding-top: 170px;
  padding-bottom: 80px;
  display: flex;
  position: relative;
}

.section-with-height.services-details {
  background-color: var(--dark);
  background-image: none;
  padding-bottom: 120px;
  position: relative;
}

.section-with-height.default {
  background-image: linear-gradient(#000000b3, #000000b3), url('../images/pinnoitus-kuva.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
}

.banner-title-wrapper {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.accordion-item {
  background-color: #fff;
  border-radius: 12px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  position: static;
}

.legal-rich-text-block {
  max-width: 675px;
  margin-bottom: 80px;
}

.legal-rich-text-block h2 {
  margin-top: 32px;
  margin-bottom: 24px;
  font-size: 20px;
}

.bg-primary {
  z-index: 10;
  background-color: var(--primary);
  width: 100%;
  height: 0%;
  position: absolute;
  inset: 0% 0% auto;
}

.form-block {
  border-radius: 10px;
}

.input-wrapper {
  grid-column-gap: 20px;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

.success-message {
  background-color: #0000;
  border-radius: 10px;
  font-weight: 500;
}

.contacts-input {
  background-color: var(--black);
  color: var(--white);
  border: 1px solid #0000;
  border-radius: 12px;
  height: auto;
  margin-bottom: 0;
  padding: 16px 18px;
  font-size: 16px;
  transition: all .2s;
}

.contacts-input:focus {
  color: #fff;
  border: 1px solid #005450;
  font-size: 18px;
}

.contacts-input::placeholder {
  color: #aaa;
  font-size: 16px;
}

.contacts-form-wrapper {
  background-color: var(--dark);
  border-radius: 10px;
  flex: none;
  padding: 30px;
}

.contacts-textarea {
  background-color: var(--black);
  color: var(--color);
  border: 1px solid #0000;
  border-radius: 12px;
  min-width: 100%;
  max-width: 100%;
  min-height: 120px;
  max-height: 100%;
  margin-bottom: 30px;
  padding: 16px 18px;
  font-size: 16px;
}

.contacts-textarea:focus {
  color: #005450;
  border: 1px solid #005450;
  font-size: 16px;
}

.contacts-textarea::placeholder {
  color: #aaa;
  font-size: 16px;
}

.form-contact-us {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.error-message {
  text-align: center;
  background-color: #0000;
  flex: none;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 14px;
}

.paragraph-large {
  font-size: 18px;
  line-height: 1.5em;
}

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

.paragraph-large.contact-margins.more-margin {
  margin-bottom: 20px;
}

.contacts-form-title {
  color: var(--color);
  text-align: center;
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 38px;
}

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

.h4-styling {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 46px;
}

.service-wrapper-default {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2.2fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.sidebar {
  flex: none;
}

.other-services {
  margin-bottom: 64px;
}

.service-line {
  background-color: var(--secondary);
  height: 2px;
  margin-bottom: 24px;
}

.div-block-2 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.category-link {
  color: var(--white);
  margin-bottom: 3px;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  transition: all .14s;
}

.category-link:hover {
  transform: translate(5px);
}

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

.main-service {
  flex: 0 auto;
}

.service-rich-text h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 34px;
}

.service-rich-text h3 {
  font-size: 28px;
}

.sidebar-heading {
  margin-bottom: 14px;
  font-family: Cabinetgrotesk, sans-serif;
  font-size: 28px;
  font-weight: 700;
}

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

.footer-image {
  width: 150px;
  margin-bottom: 60px;
}

.cta-text {
  color: var(--white);
  text-align: center;
  font-size: 48px;
}

.two-column-grid {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  display: grid;
}

.logos-image {
  object-fit: contain;
  width: 120px;
  height: 64px;
}

.live-chat-text {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

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

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

.live-chat-top-text {
  color: var(--black);
  letter-spacing: 0;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  position: static;
}

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

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

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

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

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

.live-chat-bottom-text {
  color: #333;
  font-size: 10px;
  line-height: 1.5;
}

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

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

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

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

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

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

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

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

.live-icon-chat {
  background-color: var(--white);
  object-fit: contain;
  object-position: 50% 50%;
  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;
}

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

.contact-image {
  width: 200px;
  margin-bottom: 42px;
}

@media screen and (min-width: 1280px) {
  h2 {
    margin-top: 0;
  }

  .nav-dropdown-toggle {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-container {
    padding-left: 50px;
    padding-right: 50px;
  }

  .nav-link.last {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .section.legal-banner {
    padding-top: 220px;
  }

  .block-content-wrapper {
    grid-column-gap: 80px;
  }

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

  .white-text.services {
    max-width: 850px;
  }

  .white-text.maxw-main {
    max-width: 750px;
  }

  .section-with-height {
    min-height: 570px;
    padding-top: 220px;
    padding-bottom: 130px;
  }

  .two-column-grid {
    grid-column-gap: 100px;
    grid-row-gap: 100px;
    grid-template-rows: auto;
  }
}

@media screen and (min-width: 1920px) {
  .nav-container {
    padding-left: 100px;
    padding-right: 100px;
  }

  .section-hero {
    min-height: 100vh;
  }

  .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) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 30px;
  }

  .nav-dropdown-toggle {
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    display: flex;
  }

  .nav-close-icon {
    z-index: 15;
    align-self: stretch;
    max-width: 60%;
  }

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

  .secondary-button.nav-margins {
    margin-top: 28px;
  }

  .nav-container {
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .image-burger {
    filter: invert();
    margin-bottom: 4px;
  }

  .brand-tablet {
    display: block;
  }

  .menu-button {
    text-align: right;
    background-color: #0000;
    padding: 0;
  }

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

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

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

  .close-menu-button {
    background-color: #0000;
    padding: 0 10px 0 0;
  }

  .close-menu-button.w--open {
    filter: invert();
    background-color: #0000;
    padding: 0 10px 0 0;
  }

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

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

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

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

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

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

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

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

  .description-left-banner-block {
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .primary-button {
    display: block;
  }

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

  .block-horizontal {
    flex-wrap: wrap;
    justify-content: center;
    display: flex;
  }

  .service-wrapper {
    width: 47.9%;
  }

  .section.legal-banner {
    padding-top: 150px;
  }

  .image-full-block {
    width: 100%;
    height: 450px;
  }

  .description-right-wrapper {
    grid-row-gap: 10px;
    text-align: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
  }

  .description-right-wrapper.no-margins {
    margin-top: 0;
  }

  .block-content-wrapper {
    flex-direction: column;
  }

  .footer-links-wrapper {
    justify-content: center;
    width: 100%;
  }

  .footer-logo-wrapper {
    align-items: center;
    width: 100%;
  }

  .footer-wrapper {
    grid-row-gap: 30px;
    flex-direction: column;
    align-items: center;
  }

  .footer-brand-wrapper {
    align-items: center;
    width: 100%;
  }

  .footer-bottom-wrapper {
    align-items: flex-start;
  }

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

  .section-with-height {
    padding-top: 155px;
  }

  .banner-title-wrapper {
    text-align: center;
    align-items: center;
  }

  .contacts-form-wrapper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .contacts-content-wrapper {
    text-align: center;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }

  .contacts-form-title {
    font-size: 28px;
  }

  .h4-styling {
    font-size: 36px;
  }

  .service-wrapper-default {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-direction: column;
  }

  .sidebar {
    width: auto;
  }

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

@media screen and (max-width: 767px) {
  h2 {
    margin-bottom: 16px;
    font-size: 36px;
  }

  .secondary-button.nav-margins {
    margin-top: 28px;
  }

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

  .brand {
    padding-left: 0;
  }

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

  .subtitle-label {
    line-height: 1.2em;
  }

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

  .service-wrapper {
    width: 100%;
  }

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

  .section.without-top-spacing {
    padding-top: 0;
  }

  .section.legal-banner {
    padding-top: 120px;
  }

  .image-cover.height-550 {
    height: 350px;
  }

  .image-full-block {
    width: 100%;
    height: 400px;
  }

  .services-wrapper {
    margin-top: 60px;
  }

  .block-content-wrapper.two-columns {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

  .footer-links-wrapper {
    grid-column-gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-bottom-wrapper {
    grid-row-gap: 30px;
    flex-direction: column-reverse;
    align-items: center;
  }

  .cta-block {
    padding: 50px 30px;
  }

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

  .contacts-form-wrapper, .contacts-content-wrapper {
    width: 100%;
  }

  .contacts-title {
    max-width: 100%;
  }

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

  .other-services {
    margin-bottom: 32px;
  }

  .main-service {
    margin-bottom: 0;
  }

  .service-rich-text {
    margin-right: 0;
  }

  .service-rich-text h2 {
    font-size: 28px;
  }

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

  .logos-image {
    width: 90px;
    height: 48px;
  }

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

@media screen and (max-width: 479px) {
  .secondary-button.nav-margins {
    margin-top: 28px;
  }

  .nav-dropdown-link {
    font-size: 15px;
  }

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

  .nav-link {
    width: 99%;
  }

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

  .button-wrapper-home-2 {
    grid-row-gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-heading {
    font-size: 42px;
    line-height: 1.15em;
  }

  .section-hero {
    background-image: linear-gradient(#000000ad, #000000ad);
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    padding-top: 160px;
  }

  .block-horizontal {
    margin-top: 30px;
  }

  .service-wrapper {
    text-align: center;
    align-items: center;
  }

  .image-full-block {
    height: 350px;
  }

  .heading-project-wrapper {
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .block-content-wrapper.two-columns {
    grid-template-columns: 1fr;
  }

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

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

  .footer-copyright {
    text-align: center;
    justify-content: center;
    width: 100%;
    line-height: 1.6em;
  }

  .footer {
    text-align: left;
  }

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

  .footer-brand-wrapper {
    flex-direction: column;
  }

  .white-text.services {
    font-size: 34px;
  }

  .white-text.maxw-main {
    font-size: 42px;
  }

  .brand-image {
    height: 65px;
  }

  .section-with-height.services-details {
    height: 50vh;
  }

  .banner-title-wrapper {
    text-align: center;
    align-items: center;
  }

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

  .sidebar {
    width: 100%;
  }

  .footer-image {
    margin-bottom: 60px;
  }

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

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

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

  .whatsapp-icon {
    width: 24px;
  }

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

@media screen and (max-width: 767px) {
  #w-node-_68852b6d-a311-c782-f2c8-fc45340aa852-014f2ae8, #w-node-_68c5d8cf-f0cb-128d-330d-ec6f836ba115-014f2afb, #w-node-_116a65ed-2051-7a56-6916-dae81f3c5699-014f2b08 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-feee0c69-f10d-5d5b-1cc8-40421a5cd0a4-014f2b0b {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_68c5d8cf-f0cb-128d-330d-ec6f836ba115-4843c6a8 {
    grid-area: 1 / 1 / 2 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_68852b6d-a311-c782-f2c8-fc45340aa852-014f2ae8 {
    grid-area: 1 / 1 / 3 / 2;
  }
}


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