:root {
  --paragraph: #5d696f;
  --primary: #61a2c2;
  --secondary: #d4e6ee;
  --smoke: #f0f6f9;
}
.baseline-2 {
    pointer-events: none;
}
.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

@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(--paragraph);
  font-family: Outfit, sans-serif;
  font-size: 16px;
  line-height: 130%;
}

h1 {
  color: var(--primary);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Outfit, sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 100%;
}

h2 {
  color: var(--primary);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 55px;
  font-weight: 700;
  line-height: 100%;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Outfit, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Outfit, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Outfit, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Outfit, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
}

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

strong {
  font-weight: 700;
}

.row {
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  display: flex;
}

.row.row-align-center {
  align-items: center;
}

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

.col {
  flex: none;
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.col.col-12 {
  max-width: 100%;
}

.col.col-6 {
  max-width: 50%;
}

.col.col-3 {
  max-width: 25%;
}

.col.col-9 {
  max-width: 75%;
}

.col.col-4 {
  max-width: 33.33%;
}

.col.col-8 {
  max-width: 66.66%;
}

.color-block {
  border: 1px solid #000;
  width: 60px;
  height: 60px;
  margin-bottom: 5px;
  margin-right: 5px;
  display: inline-block;
}

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

.color-block.secondary {
  background-color: var(--secondary);
}

.col-dummy {
  background-color: var(--smoke);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
}

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

.section.hero {
  background-color: var(--paragraph);
  justify-content: center;
  align-items: center;
  min-height: 80dvh;
  display: flex;
}

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

.section.footer {
  border-top: 4px solid var(--smoke);
  padding-bottom: 0;
}

.section.numbers {
  background-color: var(--smoke);
}

.contain {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.contain.fullwiosth {
  max-width: 100%;
}

.cta {
  background-color: var(--primary);
  border-radius: 30px;
  padding: 12px 24px;
}

.center {
  text-align: center;
}

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

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

.heading {
  font-family: Outfit, sans-serif;
}

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

.intro {
  font-size: 24px;
  line-height: 130%;
}

.smoke {
  color: var(--smoke);
}

.div-block {
  z-index: 3;
  color: #fff;
  background-color: rgba(97, 162, 194, .27);
  border-top-right-radius: 40px;
  max-width: 900px;
  padding: 40px 44px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.baseline {
  text-align: left;
  border-left: 2px solid rgba(255, 255, 255, .2);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 21px;
  line-height: 130%;
}

.div-block-2 {
  background-color: var(--primary);
  border-bottom-left-radius: 40px;
  width: 10%;
  height: 80px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.flex-block {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}

.logo-holder {
  justify-content: center;
  align-items: center;
  max-width: 300px;
  height: 150px;
  padding: 10px 20px;
  display: flex;
}

.bg-text-wrap {
  width: 100%;
  height: 250px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: auto;
  overflow: hidden;
}

.bg-text {
  opacity: .5;
  color: var(--smoke);
  text-align: right;
  font-size: 200px;
  font-weight: 700;
  line-height: 100%;
  display: inline-block;
  position: relative;
  right: 6%;
}

.bg-text.left {
  text-align: left;
  left: 6%;
  right: auto;
}

.title {
  margin-bottom: 80px;
}

.flex-block-2 {
  justify-content: center;
  align-items: flex-start;
}

.div-block-3 {
  cursor: pointer;
  width: 33.33%;
  padding: 10px;
}

.div-block-4 {
  background-color: var(--primary);
  text-align: left;
  height: 540px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  overflow: hidden;
}

.div-block-4.imebio {
  background-color: #003a78;
  border-bottom-left-radius: 40px;
}

.div-block-4.climatic {
  background-color: #e78d5a;
  border-top-right-radius: 40px;
}

.div-block-4.wecontrl {
  background-color: #5ac2e7;
}

.div-block-5 {
  background-color: #e78d5a;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.div-block-5.imebio {
  background-color: #003a78;
}

.div-block-5.wecontrl {
  background-color: #5ac2e7;
}

.div-block-6 {
  flex-direction: column;
  align-items: flex-start;
  font-size: 14px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 32px;
  right: 28px;
}

.div-block-7 {
  color: #fff;
  padding-top: 0;
  overflow: hidden;
}

.h3-company {
  color: #fff;
  margin-bottom: 20px;
}

.image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-8 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 80px;
  display: flex;
}

.comp-desc {
  max-height: 330px;
  padding-bottom: 20px;
  overflow: auto;
}

.link-company {
  color: #fff;
  margin-bottom: 0;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

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

.card-gradient {
  opacity: .29;
  background-image: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
  width: 100%;
  height: 120px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-2 {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 28px;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.div-block-10 {
  background-color: var(--smoke);
  border-bottom-left-radius: 40px;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 30%;
  right: 0;
}

.slider {
  background-color: rgba(0, 0, 0, 0);
  height: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.hide {
  display: none;
}

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

.section-2 {
  z-index: 50;
  padding-left: 0;
  padding-right: 0;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.navbar {
  background-color: rgba(0, 0, 0, 0);
}

.nav-menu {
  background-color: #fff;
  border-bottom-left-radius: 40px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: flex-end;
  margin-right: -20px;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  overflow: hidden;
}

.div-block-11 {
  background-color: var(--smoke);
  margin-top: 80px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.cell, .cell-2 {
  justify-content: center;
  align-items: center;
}

.h3-footer {
  color: var(--primary);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 100%;
}

.cell-3 {
  justify-content: center;
  align-items: center;
}

.meta {
  color: var(--primary);
  text-transform: none;
  font-weight: 600;
  text-decoration: none;
}

.nav-link {
  line-height: 100%;
}

.nav-link:hover, .nav-link.w--current {
  color: var(--primary);
}

.nav-link.contact {
  background-color: var(--primary);
  color: #fff;
  border-radius: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
}

.hero-overlay {
  z-index: 1;
  background-color: rgba(51, 54, 55, .6);
  background-image: radial-gradient(circle farthest-side at 100% 0, rgba(49, 78, 88, 0), rgba(49, 78, 88, .5));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.logo-clent {
  z-index: 1;
  margin-top: 250px;
  margin-bottom: 250px;
  position: relative;
}

.blue {
  color: var(--primary);
}

.map-clent {
  width: 100%;
}

.flex-block-3 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.n-numbers {
  color: var(--primary);
  font-size: 81px;
  font-weight: 600;
  line-height: 72px;
}

.n-sub {
  height: 23px;
  font-size: 21px;
  font-weight: 500;
}

.n-wrapper {
  max-width: 250px;
}

.flex-block-4 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}

.flex-block-5 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  text-align: left;
  font-size: 14px;
  line-height: 100%;
}

.text-block-4 {
  color: var(--primary);
  font-weight: 600;
}

.circle {
  background-color: var(--primary);
  border-radius: 12px;
  flex: none;
  width: 12px;
  height: 12px;
  margin-top: 1px;
}

.circle.orange {
  background-color: #d6893c;
}

.baseline-2 {
  z-index: 50;
  color: #fff;
  letter-spacing: 1px;
  flex: 1;
  padding-top: 12px;
  font-size: 14px;
  line-height: 16px;
  transition: opacity .375s;
  position: relative;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.baseline-2.scrolled {
  opacity: 0;
}

.div-block-13 {
  justify-content: flex-end;
  display: flex;
}

.baseline-top {
  text-transform: uppercase;
  padding-right: 20px;
}

.lang-switcher {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  text-transform: uppercase;
  padding-top: 8px;
  padding-bottom: 0;
  padding-right: 20px;
  font-size: 12px;
  line-height: 12px;
  display: flex;
  position: relative;
}

.div-block-15 {
  align-items: center;
  display: flex;
}

.comp-links {
  flex-direction: column;
  margin-bottom: 20px;
  padding-top: 10px;
  display: flex;
}

.lang-link {
  opacity: .5;
  color: var(--paragraph);
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.lang-link:hover, .lang-link.w--current {
  opacity: 1;
  color: var(--primary);
}

.ico {
  color: var(--primary);
  font-family: Fa, sans-serif;
}

.footer-links {
  color: var(--paragraph);
  text-decoration: none;
  transition: all .2s;
}

.footer-links:hover {
  color: var(--primary);
}

.bold {
  font-weight: 600;
}

.rtf-clent {
  text-align: left;
}

.rtf-clent h2 {
  font-size: 40px;
  font-weight: 500;
}

.rtf-clent strong {
  color: var(--paragraph);
  font-weight: 500;
}

.rtf-clent h3 {
  color: var(--primary);
  font-weight: 500;
}

.rtf-clent h1, .heading-3 {
  font-weight: 500;
}

.last-links {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (max-width: 991px) {
  .col.col-6.col-md-1 {
    max-width: 25%;
  }

  .col.col-6.col-md-2 {
    max-width: 50%;
  }

  .col.col-6.col-md-3 {
    max-width: 75%;
  }

  .col.col-6.col-md-4 {
    max-width: 100%;
  }

  .col.col-md-2 {
    max-width: 50%;
  }

  .col.col-md-3 {
    max-width: 75%;
  }

  .col.col-md-4 {
    max-width: 100%;
  }

  .col.col-md-1 {
    max-width: 25%;
  }

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

  .col-md-4 {
    max-width: 100%;
  }

  .col-md-3 {
    max-width: 75%;
  }

  .col-md-2 {
    max-width: 50%;
  }

  .col-md-1 {
    max-width: 25%;
  }

  .intro, .baseline {
    font-size: 20px;
  }

  .flex-block {
    margin-bottom: 60px;
  }

  .logo-holder {
    max-width: 210px;
    height: 100px;
  }

  .title {
    margin-bottom: 60px;
  }

  .flex-block-2 {
    flex-wrap: wrap;
  }

  .div-block-3 {
    width: 50%;
  }

  .div-block-3.imebio {
    width: 100%;
  }

  .div-block-4.imebio {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 0;
  }

  .div-block-4.climatic {
    border-top-right-radius: 0;
    border-bottom-right-radius: 40px;
  }

  .nav-menu {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    height: 100dvh;
    margin-right: 0;
    padding-top: 112px;
  }

  .div-block-11 {
    margin-top: 60px;
  }

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

  .logo-clent {
    width: 500px;
  }

  .text-block-3 {
    font-size: 14px;
  }

  .image-4 {
    width: 280px;
  }

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

  .menu-button {
    color: #fff;
    background-color: rgba(97, 162, 194, .15);
    position: absolute;
    top: 10px;
    right: 20px;
  }

  .menu-button.w--open {
    z-index: 10;
    background-color: #61a2c2;
  }

  .baseline-2 {
    font-size: 12px;
    line-height: 14px;
  }

  .baseline-top {
    padding-right: 80px;
  }

  .lang-switcher {
    justify-content: center;
    padding-right: 0;
  }

  .div-block-15 {
    flex-direction: column;
  }

  .last-links {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
  }
}

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

  h2 {
    font-size: 40px;
  }

  .col.col-sm-2 {
    max-width: 100%;
  }

  .col.col-sm-1 {
    max-width: 50%;
  }

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

  .intro {
    font-size: 18px;
  }

  .div-block {
    padding: 20px 30px;
  }

  .baseline {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .flex-block {
    margin-bottom: 40px;
  }

  .bg-text {
    font-size: 100px;
    top: 20px;
  }

  .title {
    margin-bottom: 40px;
  }

  .div-block-3 {
    width: 100%;
  }

  .div-block-11 {
    margin-top: 40px;
  }

  .logo-clent {
    width: 350px;
  }

  .flex-block-3 {
    flex-direction: row;
    align-items: center;
  }

  .flex-block-5 {
    width: 200px;
  }

  .circle {
    flex: none;
  }

  .baseline-2 {
    font-size: 10px;
    line-height: 12px;
  }
}

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

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 21px;
    line-height: 110%;
  }

  .col.col-xs-2 {
    max-width: 100%;
  }

  .col.col-xs-1 {
    max-width: 50%;
  }

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

  .intro {
    font-size: 16px;
  }

  .map {
    margin-left: -20px;
    margin-right: -20px;
    padding-bottom: 22px;
    overflow: hidden;
  }

  .div-block {
    padding-left: 20px;
    padding-right: 30px;
  }

  .baseline {
    padding-left: 10px;
    font-size: 16px;
  }

  .title {
    margin-bottom: 30px;
  }

  .div-block-6 {
    left: 20px;
    right: 28px;
  }

  .div-block-11 {
    margin-top: 20px;
  }

  .heading-2 {
    font-size: 32px;
  }

  .map-clent {
    width: 800px;
    max-width: 700px;
  }

  .flex-block-3 {
    flex-direction: column;
  }

  .flex-block-5 {
    max-width: 200px;
  }

  .map-wrapper {
    margin-left: 0;
    margin-right: 0;
    overflow: auto;
  }

  .heading-4 {
    font-size: 30px;
  }
}

#w-node-ad76ff35-0842-273a-0b32-cd81a18494db-e405523c, #w-node-ad76ff35-0842-273a-0b32-cd81a18494db-a1a8b113, #w-node-ad76ff35-0842-273a-0b32-cd81a18494db-f9befb73 {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1.5fr .75fr;
}

@media screen and (max-width: 767px) {
  #w-node-ad76ff35-0842-273a-0b32-cd81a18494db-e405523c, #w-node-ad76ff35-0842-273a-0b32-cd81a18494db-a1a8b113, #w-node-ad76ff35-0842-273a-0b32-cd81a18494db-f9befb73 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


@font-face {
  font-family: 'Fa';
  src: url('../fonts/fa-regular-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}