:root {
  --black: #020202;
  --paragraph-grey: #737574;
  --navbar-height: 110px;
  --primary: #be242f;
  --white: white;
  --nav-logo-width: 90px;
  --nav-logo-width-mobile: 90px;
  --grey: #868987;
  --dark-green: #a4baa9;
}

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

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

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

body {
  color: var(--black);
  font-family: Figtree, sans-serif;
  font-size: 16px;
  line-height: 150%;
}

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

h2 {
  margin-top: 20px;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

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

p {
  color: var(--paragraph-grey);
  text-align: left;
  margin-bottom: 10px;
}

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

li {
  margin-bottom: 4px;
}

strong {
  color: var(--black);
  font-weight: 600;
}

.hero-arrow {
  border: 1px solid #fff3;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  min-width: 70px;
  max-width: 70px;
  min-height: 70px;
  max-height: 70px;
  transition: background-color .3s;
  display: flex;
}

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

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

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

.divider {
  height: var(--navbar-height);
  background-color: #0000001a;
  width: 1px;
  margin-left: 10px;
  margin-right: 35px;
}

.divider.white {
  height: var(--navbar-height);
  background-color: #fff3;
}

.primary-btn {
  grid-column-gap: 8px;
  color: #000;
  background-color: #0000;
  border: 1px solid #0003;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: background-color .3s, color .3s;
  display: flex;
}

.primary-btn:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #fff;
}

.primary-btn.white {
  color: #fff;
  border-color: #fff3;
}

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

.hero {
  margin-bottom: 150px;
  position: relative;
}

.home-hero-btn {
  grid-column-gap: 10px;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  background-image: url('../images/puhelin-valkoinen.svg');
  background-position: 24px;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 14px 24px 14px 48px;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: color .3s, background-color .3s;
  display: flex;
}

.home-hero-btn:hover {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: #0000;
  background-image: url('../images/puhelin.svg');
}

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

.header-btn-tablet {
  grid-column-gap: 10px;
  color: #fff;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: color .3s, background-color .3s;
  display: none;
}

.header-btn-tablet:hover {
  color: #000;
  background-color: #0000;
}

.header-btn-tablet.mobile {
  display: none;
}

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

.hero-title {
  color: #fff;
  border-top: 1px solid #fff3;
  margin-bottom: 0;
  padding-top: 30px;
  font-size: 45px;
  font-weight: 400;
  line-height: 130%;
}

.nav-link {
  color: #000;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14px;
  line-height: 100%;
  text-decoration: none;
  display: flex;
}

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

.navbar {
  height: var(--navbar-height);
  background-color: #0000;
  border-bottom: 1px solid #0000001a;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar.home {
  border-bottom-color: #fff3;
}

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

.container.height-100 {
  height: 100%;
}

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

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

.hero-btn-wrap {
  margin-top: 40px;
  display: flex;
}

.brand {
  width: var(--nav-logo-width);
}

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

.nav-right {
  align-items: center;
  display: flex;
}

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

.btn-line {
  background-color: #000;
  width: 15px;
  height: 1px;
}

.btn-line.white {
  background-color: #fff;
}

.hero-wrap {
  grid-row-gap: 50px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 800px;
  padding-bottom: 72px;
  display: flex;
}

.label-wrap {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  display: flex;
}

.section-img {
  background-color: #ebf0f3;
  width: 100%;
  max-width: 50%;
}

.success-message {
  color: #fff;
  background-color: #012b43;
  border: 1px solid #fff3;
}

.form-btn {
  grid-column-gap: 8px;
  color: #012b43;
  background-color: #0000;
  border: 1px solid #012b43;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 18px 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: background-color .3s, color .3s;
  display: flex;
}

.form-btn:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #fff;
}

.exellence-list {
  grid-column-gap: 10px;
  color: #999;
  text-align: justify;
  align-items: center;
  display: flex;
}

.consultation {
  background-color: #f7f7f7;
  margin-bottom: 0;
  position: relative;
}

.textarea {
  color: #333;
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1px solid #0003;
  border-radius: 0;
  height: auto;
  min-height: 100px;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

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

.textarea::placeholder {
  color: #333;
  font-size: 14px;
  line-height: 150%;
}

.our-service {
  margin-bottom: 150px;
}

.facts {
  margin-bottom: 150px;
  padding-top: 80px;
  padding-bottom: 80px;
}

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

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

.fact-wrap {
  grid-column-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.fact-text {
  color: var(--black);
  font-size: 60px;
  font-weight: 400;
  line-height: 100%;
}

.fact-text.smaller {
  font-size: 42px;
}

.text-block {
  text-transform: uppercase;
}

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

.consult-left {
  width: 100%;
  max-width: 40%;
  padding-top: 45px;
  padding-bottom: 45px;
  padding-right: 72px;
}

.exellence-block {
  grid-row-gap: 15px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.title {
  margin-bottom: 0;
}

.section-image {
  width: 100%;
  max-width: none;
}

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

.consult-data {
  background-image: linear-gradient(#020202cc, #020202cc), url('../images/rakennus.jpg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 58%;
  padding-left: 80px;
  padding-right: 80px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  right: 0%;
}

.faq {
  z-index: 1;
  border-bottom: 1px solid #0000001a;
  width: 100%;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 24px;
}

.sub-title {
  grid-column-gap: 12px;
  color: var(--black);
  text-transform: uppercase;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  display: flex;
}

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

.post-item {
  display: flex;
}

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

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

.section-heading.white {
  color: #fff;
}

.fact-icon {
  width: 45px;
  height: 45px;
  overflow: hidden;
}

.consult-form-title {
  margin-bottom: 34px;
  font-size: 24px;
  line-height: 30px;
}

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

.consult-wrap {
  min-height: 400px;
  display: flex;
}

.consult-title {
  color: #fff;
  font-size: 24px;
  line-height: 30px;
}

.consult-form-wrap {
  grid-row-gap: 38px;
  flex-direction: column;
  margin-bottom: 35px;
  display: flex;
}

.about-us {
  margin-bottom: 150px;
}

.input {
  color: #333;
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1px solid #0000001a;
  border-radius: 0;
  height: auto;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

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

.input::placeholder {
  color: #333;
  font-size: 14px;
  line-height: 150%;
}

.fact-title {
  color: var(--black);
  padding-bottom: 8px;
  font-size: 18px;
}

.section-title {
  grid-row-gap: 4px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 60px;
  display: flex;
}

.button-wrap {
  grid-column-gap: 20px;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.button-wrap.utility {
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.fact-block {
  grid-row-gap: 180px;
  border-left: 1px solid #0000001a;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 40px;
  display: flex;
}

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

.fact-data {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.exellence {
  background-color: var(--black);
  margin-bottom: 150px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.ftr-menu-wrap {
  grid-column-gap: 120px;
  align-items: flex-start;
  display: flex;
}

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

.footer-link:hover {
  color: #fff;
}

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

.footer-link-wrap {
  grid-column-gap: 12px;
  align-items: center;
  display: flex;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.footer-btn {
  grid-column-gap: 60px;
  color: var(--white);
  justify-content: space-between;
  align-items: flex-end;
  font-size: 14px;
  line-height: 150%;
  display: flex;
  position: relative;
}

.footer-info {
  grid-row-gap: 16px;
  color: var(--white);
  text-align: right;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  max-width: 350px;
  font-size: 14px;
  line-height: 150%;
  display: flex;
}

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

.social-img {
  width: 16px;
  height: 16px;
}

.social-link {
  background-color: #0000;
  border: 1px solid #ffffff29;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  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-data {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.footer-wrap {
  grid-row-gap: 180px;
  flex-direction: column;
  padding-top: 60px;
  padding-bottom: 32px;
  display: flex;
}

.footer {
  background-color: var(--black);
}

.navbar-logo {
  width: var(--nav-logo-width);
  max-width: none;
}

.footer-logo {
  width: 120px;
}

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

.hero-background-overlay {
  z-index: -1;
  opacity: .5;
  background-color: #333;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

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

.about-hero {
  margin-bottom: 150px;
}

.about-images {
  grid-column-gap: 15px;
  margin-bottom: 20px;
  display: flex;
}

.about-big-img {
  background-color: #ebf0f3;
  width: 100%;
  max-width: 68%;
  position: relative;
  overflow: hidden;
}

.about-checklist {
  grid-column-gap: 10px;
  color: #000;
  align-items: center;
  margin-bottom: 8px;
  display: flex;
}

.image-animation {
  background-color: #ebf0f3;
  width: 100%;
  max-width: 32%;
  position: relative;
  overflow: hidden;
}

.image-animation.relative {
  max-width: none;
  padding-top: 100%;
}

.image-animation.relative.contact, .image-animation.relative.process {
  padding-top: 150%;
}

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

.about-fact {
  color: #000;
  padding-bottom: 2px;
  font-size: 42px;
  font-weight: 300;
  line-height: 120%;
}

.about-fact.smaller {
  font-size: 22px;
}

.review-item {
  display: flex;
}

.work-process {
  margin-bottom: 150px;
}

.process-wrap {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

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

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

.about-image.absolute-image {
  position: absolute;
  inset: 0%;
}

.about-block {
  background-color: #fff;
  flex-direction: column;
  align-items: center;
  padding: 20px 22px;
  font-size: 12px;
  line-height: 150%;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.process-data {
  grid-row-gap: 25px;
  flex-direction: column;
  width: 100%;
  display: flex;
}

.about {
  margin-bottom: 150px;
}

.process-block {
  border-bottom: 1px solid #0003;
  padding-bottom: 25px;
}

.section {
  margin-bottom: 150px;
}

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

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

.services-item {
  width: 100%;
  height: 100%;
  display: flex;
}

.services-title-wrap {
  grid-column-gap: 4px;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.services-title {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 29px;
}

.services-data {
  grid-column-gap: 58px;
  align-items: center;
  display: flex;
}

.services-icon {
  width: 64px;
  height: 64px;
}

.services-icon.padding {
  padding: 3px;
}

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

.submit-btn {
  grid-column-gap: 8px;
  color: #000;
  background-color: #0000;
  background-image: url('../images/line.svg');
  background-position: 115px;
  background-repeat: no-repeat;
  background-size: auto;
  border: 1px solid #0003;
  justify-content: center;
  align-items: center;
  padding: 18px 50px 18px 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: background-color .3s, color .3s;
  display: flex;
}

.submit-btn:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #fff;
  background-image: url('../images/line-white.svg');
}

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

.field-label {
  color: #333;
  text-align: left;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.contact-left {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.input-2 {
  color: #333;
  background-color: #0000;
  border: 0 solid #000;
  border-bottom: 1px solid #0003;
  border-radius: 0;
  height: auto;
  margin-bottom: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

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

.input-2::placeholder {
  color: #333;
  font-size: 14px;
  line-height: 150%;
}

.contact-phone {
  color: var(--primary);
  font-size: 18px;
  text-decoration: none;
}

.contact-phone:hover {
  text-decoration: underline;
}

.contact-wrap {
  grid-column-gap: 60px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-info-flex {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  align-items: center;
  display: flex;
}

.service-main {
  margin-bottom: 150px;
}

.service-img {
  background-color: #ebf0f3;
  margin-bottom: 60px;
}

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

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

.h3-small {
  font-size: 22px;
  line-height: 1.2;
}

.legal-rich-text-block h2 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.excellence-check-image {
  width: 20px;
  max-width: none;
  height: 20px;
}

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

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

.service-details {
  width: 100%;
  max-width: 900px;
}

.service-details h2 {
  font-size: 28px;
  line-height: 1.3;
}

.service-details li {
  font-weight: 500;
}

.whatsapp-image {
  display: none;
}

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

.link-dropdown {
  grid-column-gap: 12px;
  color: #020302;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

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

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

.language-flex {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  align-items: center;
  margin-right: 36px;
  display: flex;
}

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

.service-grid-link-2:hover {
  border-color: #00000080;
}

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

.service-grid-link-3:hover {
  border-color: #00000080;
}

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

.service-grid-link-4:hover {
  border-color: #00000080;
}

.large-margins {
  margin-top: 80px;
  margin-bottom: 42px;
}

@media screen and (min-width: 1280px) {
  .ftr-menu-wrap {
    grid-column-gap: 200px;
  }

  .image-animation.relative.contact, .image-animation.relative.process {
    padding-top: 100%;
  }
}

@media screen and (min-width: 1920px) {
  .image-animation.relative {
    padding-top: 75%;
  }
}

@media screen and (max-width: 991px) {
  .hero-arrow {
    min-width: 60px;
    max-width: 60px;
    min-height: 60px;
    max-height: 60px;
  }

  .nav-menu {
    background-color: #fff;
    border-bottom: 1px solid #00000026;
    padding: 20px;
  }

  .nav-wrap {
    height: 100%;
  }

  .divider {
    display: none;
  }

  .hero {
    margin-bottom: 100px;
  }

  .home-hero-btn {
    display: none;
  }

  .bottom-line {
    width: 26px;
  }

  .bottom-line.white {
    background-color: #fff;
  }

  .header-btn-tablet {
    border-color: var(--primary);
    background-color: var(--primary);
    color: var(--black);
    display: flex;
  }

  .header-btn-tablet:hover {
    color: var(--primary);
  }

  .header-btn-tablet.mobile {
    margin-top: 6px;
    display: flex;
  }

  .middle-line {
    width: 26px;
  }

  .middle-line.white {
    background-color: #fff;
  }

  .hero-title {
    font-size: 34px;
  }

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

  .nav-link.white {
    color: #000;
  }

  .container {
    max-width: 100%;
  }

  .humburg-menu {
    grid-row-gap: 4px;
    margin-left: 0;
    padding: 0;
  }

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

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

  .top-line {
    width: 26px;
  }

  .top-line.white {
    background-color: #fff;
  }

  .hero-wrap {
    grid-row-gap: 30px;
    min-height: 580px;
    padding-bottom: 40px;
  }

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

  .consultation {
    background-color: #0000;
    margin-bottom: 100px;
  }

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

  .facts {
    margin-bottom: 100px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fact-wrap {
    grid-column-gap: 20px;
  }

  .fact-text {
    font-size: 40px;
  }

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

  .consult-left {
    background-color: var(--primary);
    max-width: 100%;
    padding-left: 45px;
    padding-right: 45px;
  }

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

  .consult-data {
    max-width: 100%;
    padding: 60px 40px;
    position: static;
  }

  .faq {
    padding-top: 22px;
    padding-bottom: 22px;
  }

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

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

  .consult-wrap {
    flex-direction: column;
    align-items: flex-start;
    min-height: 0;
  }

  .about-us {
    margin-bottom: 100px;
  }

  .fact-block {
    grid-row-gap: 60px;
    padding-left: 20px;
  }

  .exellence {
    margin-bottom: 100px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .ftr-menu-wrap {
    grid-column-gap: 80px;
  }

  .footer-link-wrap {
    position: static;
    transform: none;
  }

  .footer-btn {
    grid-row-gap: 20px;
    flex-wrap: wrap;
    position: static;
  }

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

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

  .about-hero {
    margin-bottom: 100px;
  }

  .image-animation.relative.contact {
    padding-top: 100%;
  }

  .about-data {
    grid-row-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .work-process {
    margin-bottom: 100px;
  }

  .process-wrap {
    flex-direction: column;
  }

  .process-data {
    grid-row-gap: 20px;
    max-width: 100%;
  }

  .about {
    margin-bottom: 100px;
  }

  .process-block {
    padding-bottom: 20px;
  }

  .section {
    margin-bottom: 100px;
  }

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

  .services-data {
    grid-column-gap: 0px;
    grid-row-gap: 15px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .services-icon {
    max-width: 80px;
    min-height: 80px;
    max-height: 80px;
  }

  .contact-left {
    grid-row-gap: 40px;
    max-width: 100%;
  }

  .contact-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

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

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

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

  .service-details {
    max-width: 100%;
  }

  .service-grid-link-2, .service-grid-link-3, .service-grid-link-4 {
    grid-row-gap: 60px;
    padding: 30px;
  }
}

@media screen and (max-width: 767px) {
  .hero-arrow {
    display: none;
  }

  .hero {
    margin-bottom: 80px;
  }

  .hero-title {
    border-top-width: 0;
    padding-top: 0;
  }

  .navbar {
    max-width: 100%;
  }

  .humburg-menu {
    position: relative;
  }

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

  .brand {
    padding-left: 0;
  }

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

  .hero-wrap {
    grid-row-gap: 10px;
    min-height: 520px;
  }

  .consultation, .our-service, .facts {
    margin-bottom: 80px;
  }

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

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

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

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

  .about-us, .exellence {
    margin-bottom: 80px;
  }

  .ftr-menu-wrap {
    justify-content: space-between;
    width: 100%;
  }

  .footer-btn {
    flex-direction: column;
  }

  .footer-info {
    align-items: center;
  }

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

  .footer-wrap {
    grid-row-gap: 60px;
  }

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

  .about-hero {
    margin-bottom: 80px;
  }

  .about-images {
    grid-column-gap: 0px;
    grid-row-gap: 15px;
    flex-direction: column;
  }

  .about-big-img, .image-animation {
    max-width: 100%;
  }

  .image-animation.relative.process {
    padding-top: 100%;
  }

  .image-animation.relative.hide-mobile, .image-animation.hide-mobile {
    display: none;
  }

  .about-fact {
    font-size: 30px;
  }

  .work-process {
    margin-bottom: 80px;
  }

  .process-wrap {
    grid-template-columns: 1fr;
  }

  .about-block {
    padding: 15px;
  }

  .about, .section {
    margin-bottom: 80px;
  }

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

  .services-data {
    grid-column-gap: 40px;
    grid-row-gap: 0px;
    flex-direction: row;
    align-items: center;
  }

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

  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

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

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

@media screen and (max-width: 479px) {
  .hero-arrow {
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
  }

  .primary-btn {
    padding: 16px 24px;
  }

  .hero {
    margin-bottom: 60px;
  }

  .hero-title {
    font-size: 30px;
    line-height: 125%;
  }

  .hero-btn-wrap {
    margin-top: 25px;
  }

  .brand {
    width: var(--nav-logo-width-mobile);
  }

  .hero-wrap {
    min-height: 450px;
  }

  .form-btn {
    padding: 16px 24px;
  }

  .consultation, .our-service {
    margin-bottom: 60px;
  }

  .facts {
    margin-bottom: 60px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .fact-wrap {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

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

  .consult-left {
    padding: 30px;
  }

  .section-image.mobile-size {
    object-fit: cover;
    height: 300px;
  }

  .consult-data {
    padding-left: 30px;
    padding-right: 30px;
  }

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

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

  .section-heading {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .about-us {
    margin-bottom: 60px;
  }

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

  .fact-block {
    grid-row-gap: 40px;
    border-bottom: 1px solid #fff3;
    border-left-width: 0;
    flex-flow: column-reverse;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .exellence {
    margin-bottom: 60px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .ftr-menu-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
  }

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

  .footer-info {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-data {
    grid-row-gap: 80px;
  }

  .footer-wrap {
    padding-top: 40px;
  }

  .navbar-logo {
    width: var(--nav-logo-width-mobile);
  }

  .about-hero {
    margin-bottom: 60px;
  }

  .about-data {
    grid-column-gap: 0px;
    grid-template-columns: 1fr;
  }

  .work-process {
    margin-bottom: 60px;
  }

  .process-data {
    grid-row-gap: 15px;
  }

  .about {
    margin-bottom: 60px;
  }

  .process-block {
    padding-bottom: 15px;
  }

  .section {
    margin-bottom: 60px;
  }

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

  .services-title-wrap {
    margin-bottom: 15px;
  }

  .services-data {
    grid-column-gap: 0px;
    grid-row-gap: 10px;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .services-info {
    margin-bottom: 12px;
  }

  .services-icon {
    max-width: 72px;
    min-height: 72px;
    max-height: 72px;
  }

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

  .submit-btn {
    padding: 16px 48px 16px 24px;
  }

  .contact-info-flex {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

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

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

  .flag {
    max-width: none;
  }

  .language-flex {
    margin-right: 24px;
  }

  .service-grid-link-2, .service-grid-link-3, .service-grid-link-4 {
    grid-row-gap: 40px;
  }
}

#w-node-_60968490-d7d5-fc0d-c542-998379a17770-c5f4b6c6, #w-node-_60968490-d7d5-fc0d-c542-998379a17770-987535e8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 479px) {
  #w-node-_7ea3479c-5c83-6dde-d298-42ad67eb55f6-67eb55f1 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_60968490-d7d5-fc0d-c542-998379a17770-c5f4b6c6 {
    grid-column: span 1 / span 1;
  }

  #w-node-_8fc6fc44-e93a-abcc-5f3b-ba818cb77283-8cb7727e {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_60968490-d7d5-fc0d-c542-998379a17770-987535e8 {
    grid-column: span 1 / span 1;
  }
}


