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

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

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

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

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

:root {
  --text-primary: white;
  --text-secondary: #b5b5b5;
  --bg-light: white;
  --bg-dark: #0b0b0b;
  --accent-orangen: #ff6a00;
  --0: ;
}

body {
  color: #333;
  background-color: #151515;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 97px;
}

h2 {
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 65px;
}

h3 {
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-family: Rubik, sans-serif;
  font-size: 16px;
  line-height: 150%;
}

.container {
  background-color: #0000;
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
}

.nav-last-link {
  z-index: 1;
  color: #fff;
  background-image: url('../images/right-arrow.svg');
  background-position: 95% 60%;
  background-repeat: no-repeat;
  background-size: auto;
  padding-right: 30px;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-decoration: none;
  transition: background-position .3s;
  position: relative;
}

.nav-last-link:hover {
  background-position: 100% 60%;
}

.navbar {
  z-index: 99;
  background-color: var(--bg-dark);
  padding-top: 0;
  padding-bottom: 0;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-link {
  color: var(--bg-light);
  text-align: left;
  -webkit-text-stroke-color: var(--text-secondary);
  text-overflow: clip;
  white-space: nowrap;
  word-break: normal;
  padding: 5px;
  font-family: Rubik, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  transition: color .3s;
}

.nav-link:hover {
  color: var(--accent-orangen);
  text-decoration: none;
}

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

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

.logo {
  padding-left: 0;
}

.logo.w--current {
  z-index: 2;
  position: relative;
  left: 0;
  right: 50px;
  transform: translate(0%);
}

.nav-link-inner {
  grid-column-gap: 45px;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-section {
  background-color: var(--bg-dark);
  background-image: url('../images/square-lines-ng.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 40px;
  padding-bottom: 133px;
  overflow: hidden;
}

.navbar-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr .5fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center;
  display: grid;
  position: relative;
}

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

.hero-image-wrap {
  align-items: center;
  width: 100%;
  max-width: 600px;
  height: 533px;
  display: flex;
  position: absolute;
  right: 0;
}

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

.sub-heading {
  color: var(--accent-orangen);
  margin-top: 10px;
  margin-bottom: 0;
  font-family: Rubik, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.hero-title {
  color: var(--text-primary);
  width: 70%;
  max-width: 90%;
  margin-bottom: 40px;
}

.green-text {
  color: var(--accent-orangen);
}

.hero-text {
  color: var(--text-primary);
  margin-bottom: 50px;
  font-size: 18px;
}

.primary-button {
  background-color: var(--accent-orangen);
  color: var(--text-secondary);
  text-transform: capitalize;
  background-image: url('../images/button-right-arrow.svg');
  background-position: 80% 51%;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 21px 82px 21px 45px;
  font-family: Satoshi, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  transition: background-color .3s, background-position .3s;
}

.primary-button:hover {
  border: 1px solid var(--bg-dark);
  background-color: var(--text-secondary);
  color: var(--bg-dark);
  background-position: 85% 51%;
}

.primary-button:active {
  color: var(--bg-dark);
}

.hero-green-circle {
  background-color: var(--accent-orangen);
  border-radius: 100%;
  width: 500px;
  height: 500px;
  margin-top: auto;
  margin-bottom: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0%;
  transform: translate(18%);
}

.card-image {
  perspective: 1980px;
  perspective-origin: 50% 0;
  transform-origin: 50%;
  margin-left: auto;
  position: relative;
  right: 100px;
  transform: none;
}

.card-one {
  z-index: 4;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  perspective: 314px;
  transform-style: preserve-3d;
  border-radius: 30px;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 70px;
  transform: rotateX(65deg)rotateY(0)rotateZ(-46deg);
}

.card-two {
  z-index: 2;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  transform-style: preserve-3d;
  border-radius: 30px;
  width: 100%;
  height: auto;
  position: relative;
  top: 70px;
  transform: rotateX(65deg)rotateY(0)rotateZ(-46deg);
}

.logo-section {
  background-color: var(--bg-light);
  padding-top: 83px;
  padding-bottom: 83px;
}

.logo-grid {
  grid-column-gap: 100px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.servies-section {
  padding-top: 150px;
}

.services-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  display: flex;
  position: relative;
}

.services-heading-block {
  z-index: 1;
  width: 100%;
  max-width: 500px;
  position: absolute;
  left: 0;
}

.services-heading {
  color: var(--bg-light);
  -webkit-text-stroke-color: var(--bg-light);
  margin-top: 40px;
  margin-bottom: 30px;
}

.services-card {
  border: 1px solid var(--bg-light);
  background-color: var(--bg-dark);
  opacity: 1;
  width: 100%;
  max-width: 352px;
  padding: 60px 40px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.services-card:hover {
  opacity: 100;
  color: var(--accent-orangen);
  -webkit-text-stroke-color: var(--accent-orangen);
  mix-blend-mode: normal;
}

.services-card.left {
  border-left-color: #0000;
}

.services-card.left-top {
  border-top-color: #0000;
  border-left-color: #0000;
}

.service-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  justify-items: end;
  display: flex;
}

.divider {
  background-color: var(--text-primary);
  width: 100%;
  max-width: 40px;
  height: 2px;
  margin-bottom: 36px;
}

.services-title {
  margin-bottom: 24px;
}

.service-text {
  margin-bottom: 70px;
}

.arrow-icon {
  float: right;
  clear: none;
  background-color: var(--text-primary);
  width: 53px;
  height: 53px;
  margin-left: auto;
  padding: 16px;
  position: static;
}

.blank-box {
  width: 100%;
  max-width: 352px;
}

.benifits-section {
  padding-top: 150px;
}

.benifits-wrapper {
  grid-column-gap: 118px;
  justify-content: space-between;
  display: flex;
}

.benifits-content {
  width: 100%;
  max-width: 41%;
}

.map-image-wrap {
  width: 100%;
  max-width: 49.16%;
}

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

.stat-wrapper {
  grid-column-gap: 89px;
  grid-row-gap: 89px;
  justify-content: flex-start;
  margin-top: 80px;
  display: flex;
}

.number {
  color: var(--text-primary);
  text-transform: uppercase;
  width: 150%;
  margin-bottom: 20px;
  font-family: Satoshi, sans-serif;
  font-size: 28px;
  font-weight: 900;
  line-height: 100%;
}

.body-small {
  font-size: 14px;
  line-height: 100%;
}

.services-content-text {
  margin-bottom: 50px;
}

.green-circle {
  float: right;
  background-color: var(--accent-orangen);
  border-radius: 100%;
  width: 100%;
  max-width: 476px;
  height: 476px;
  position: absolute;
}

.card-image-sevice {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  width: 100%;
  max-width: 476px;
  margin-right: auto;
  position: relative;
}

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

.service-wrapper {
  grid-column-gap: 118px;
  justify-content: space-between;
  display: flex;
}

.services-content {
  width: 100%;
  max-width: 100%;
}

.card-image-wrap {
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 49.16%;
  display: flex;
  position: relative;
}

.services-block {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  border: 1px solid var(--bg-light);
  background-color: var(--bg-light);
  margin-top: 150px;
  display: flex;
}

.block {
  background-color: var(--bg-dark);
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 50px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.icon-box {
  background-color: var(--text-primary);
  margin-bottom: 22px;
  padding: 16px;
  display: inline-block;
}

.learn-more-link {
  grid-column-gap: 10px;
  color: #fff;
  align-self: flex-start;
  padding-right: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-decoration: none;
  transition: background-position .3s;
  display: flex;
}

.learn-more-link:hover {
  background-position: 100% 60%;
}

.service-box-title {
  margin-bottom: 22px;
  font-size: 32px;
  font-weight: 700;
  line-height: 110%;
}

.services-box-text {
  margin-bottom: 17px;
}

.review-section {
  background-color: var(--accent-orangen);
  background-image: url('../images/black-squares.svg');
  background-position: 50%;
  background-size: auto;
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}

.review-wrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 55px;
  display: flex;
}

.black-text {
  color: var(--bg-dark);
}

.review-heading {
  color: var(--bg-dark);
  text-align: left;
  width: 100%;
  max-width: 638px;
  font-size: 72px;
  line-height: 100%;
}

.review-slider {
  background-color: #0000;
  width: 1200px;
  height: auto;
  margin-top: 55px;
  margin-left: auto;
  margin-right: auto;
}

.review-mask {
  width: 100%;
  max-width: 363px;
  left: -681px;
  overflow: visible;
}

.review-slide {
  height: auto;
  margin-left: 15px;
  margin-right: 15px;
}

.hide {
  display: none;
}

.review-block {
  background-color: var(--bg-dark);
  padding: 50px;
}

.review-text {
  color: var(--text-primary);
  margin-bottom: 26px;
  font-size: 14px;
  font-weight: 400;
  line-height: 214%;
}

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

.person-image {
  object-fit: cover;
  border-radius: 100%;
  width: 100%;
  max-width: 48px;
  height: 100%;
  max-height: 48px;
}

.client-name {
  color: var(--text-primary);
  margin-bottom: 4px;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
}

.client-position {
  color: #ffffffb3;
  margin-bottom: 4px;
  font-family: Satoshi, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.left-arrow {
  color: var(--bg-dark);
  border: 3px solid #000;
  border-radius: 100%;
  width: 56px;
  height: 56px;
  font-family: Satoshi, sans-serif;
  font-size: 28px;
  transition: color .3s, background-color .3s;
  inset: 0% 70px auto auto;
}

.left-arrow:hover {
  background-color: var(--bg-dark);
  color: var(--text-primary);
}

.right-arrow {
  color: var(--bg-dark);
  border: 3px solid #000;
  border-radius: 100%;
  width: 56px;
  height: 56px;
  font-family: Satoshi, sans-serif;
  font-size: 28px;
  transition: color .3s, background-color .3s;
  inset: 0% 0% auto auto;
}

.right-arrow:hover {
  background-color: var(--bg-dark);
  color: var(--text-primary);
}

.cta-section {
  padding-top: 150px;
  padding-bottom: 150px;
}

.cta-wrapper {
  background-color: var(--accent-orangen);
  text-align: center;
  padding: 58px 180px 58px 185px;
}

.cta-heading {
  color: var(--bg-dark);
  letter-spacing: -.84px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  font-family: Satoshi, sans-serif;
  font-size: 72px;
  font-weight: 700;
  line-height: 123%;
}

.secondary-button {
  background-color: var(--bg-dark);
  color: var(--accent-orangen);
  text-transform: capitalize;
  padding: 21px 45px;
  font-family: Satoshi, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  transition: color .3s, background-color .3s, background-position .3s;
}

.secondary-button:hover {
  background-color: var(--text-primary);
  color: var(--bg-dark);
  background-image: none;
}

.footer {
  background-image: linear-gradient(#151515cc, #151515cc), url('../images/footer-bg.svg');
  background-position: 0 0, 50%;
  background-size: auto, auto;
  margin-top: 10px;
}

.footer-section {
  margin-bottom: 59px;
}

.copyright-section {
  text-align: center;
  border-top: 2px solid #ffffffb3;
  padding-top: 42px;
  padding-bottom: 42px;
}

.footer-inner {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1.55fr .7fr .75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.copyright-text {
  letter-spacing: -.02em;
  font-family: Satoshi, sans-serif;
  font-weight: 500;
}

.column {
  margin-left: 0;
  margin-right: 0;
}

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

.footer-logo {
  width: 100%;
  margin-bottom: 18px;
}

.social-icon {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  margin-top: 39px;
  display: flex;
}

.linkdin {
  background-image: url('../images/linkdin.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  transition: background-position .3s;
}

.linkdin:hover {
  background-image: url('../images/green-linkdin.svg');
}

.messenger {
  background-image: url('../images/messenger.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  transition: background-position .3s;
}

.messenger:hover {
  background-image: url('../images/gree-messenger.svg');
}

.twitter {
  background-image: url('../images/twitter.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  transition: background-position .3s;
}

.twitter:hover {
  background-image: url('../images/green-twitter.svg');
}

.twoo {
  background-image: url('../images/twoo.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  transition: background-position .3s;
}

.twoo:hover {
  background-image: url('../images/green-twoo.svg');
}

.footer-links-inner {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-direction: column;
  margin-top: 24px;
  display: flex;
}

.footer-link {
  color: #ffffffb3;
  font-family: Rubik, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  transition: color .3s;
}

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

.footer-heading {
  color: var(--bg-light);
  font-size: 22px;
  font-weight: 700;
  line-height: 109%;
}

.new-letter-form {
  margin-top: 24px;
  margin-bottom: 21px;
}

.news-letter-form {
  align-items: stretch;
  height: 52px;
  display: flex;
}

.text-field {
  color: #151515;
  letter-spacing: -.02em;
  background-color: #ffffffb3;
  height: auto;
  margin-bottom: 0;
  padding: 13px 18px;
  font-family: Rubik, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.text-field:focus {
  border: 1px solid #0000;
}

.text-field::placeholder {
  color: #151515b3;
  font-weight: 400;
}

.submit-button {
  background-color: var(--accent-orangen);
  color: var(--bg-dark);
  letter-spacing: -.02em;
  padding: 13px 34px 13px 43px;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 162%;
  transition: background-color .3s;
}

.submit-button:hover {
  background-color: var(--text-primary);
}

.form-text {
  letter-spacing: -.02em;
  margin-top: 20px;
  font-size: 23px;
  font-weight: 500;
  line-height: 162%;
  text-decoration: underline;
}

.success-message {
  border: 1px solid var(--text-primary);
  color: #ffffffb3;
  background-color: #0000;
  border-radius: 20px;
  padding: 10px;
  font-family: Rubik, sans-serif;
  font-size: 16px;
}

.error-message {
  border: 1px solid var(--0);
  color: var(--0);
  background-color: #0000;
  font-family: Rubik, sans-serif;
  font-size: 16px;
  line-height: 150%;
}

.right-arrow-link {
  margin-top: 2px;
}

.card-content {
  z-index: 2;
  opacity: 1;
  position: relative;
}

.card-content:hover {
  opacity: 100;
  outline-offset: 0px;
  outline: 3px #ff6a00;
}

.card-content:focus {
  color: var(--bg-dark);
}

.card-hover {
  opacity: 1;
  color: var(--accent-orangen);
  mix-blend-mode: lighten;
  background-color: #0000;
  border-radius: 100%;
  width: 6vw;
  height: 6vw;
  display: none;
  position: absolute;
  inset: -10vw -10vw auto auto;
}

.icon-card-content {
  z-index: 2;
  position: relative;
}

.client-logo {
  padding-left: 0;
}

.client-logo.big {
  object-fit: contain;
  width: 160px;
  max-width: 160px;
}

.image {
  width: 400px;
}

.div-block {
  z-index: 1;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  -webkit-text-stroke-color: var(--bg-light);
  justify-content: flex-start;
  align-items: center;
  max-width: 40%;
  display: flex;
  position: relative;
}

.body {
  background-color: var(--bg-dark);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}

.text-block {
  color: var(--text-primary);
  -webkit-text-decoration-color: var(--bg-dark);
  text-decoration-color: var(--bg-dark);
}

.text-block:hover {
  color: var(--bg-dark);
}

.text-block-2, .paragraph, .text-block-3 {
  color: var(--text-primary);
}

.text-block-3:hover {
  color: var(--bg-dark);
}

.bold-text {
  color: var(--bg-light);
}

.image-2 {
  margin-left: -14px;
}

.logos-mask {
  height: 160px;
  position: relative;
  overflow: hidden;
}

.logos-track {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  width: 100%;
  height: 150px;
  display: flex;
  position: absolute;
}

.menu-2 {
  display: flex;
}

.top-line-2, .middle-line-2, .bottom-line-2 {
  display: none;
}

.navbar-logo-center {
  z-index: 10;
  background-color: var(--bg-dark);
  color: var(--bg-light);
  object-fit: fill;
  position: sticky;
  inset: 0;
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container.shadow-three {
  color: var(--bg-light);
  width: 100%;
  max-width: 1140px;
}

.container-2 {
  color: var(--bg-light);
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-three {
  color: var(--bg-light);
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.nav-menu-wrapper-three {
  color: var(--bg-light);
  width: 100%;
}

.nav-menu-three {
  color: var(--bg-light);
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-menu-block {
  color: var(--bg-light);
  text-align: left;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  margin-left: -44px;
  padding-left: 0;
  display: flex;
}

.nav-link-2 {
  color: var(--accent-orangen);
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-2:hover {
  color: var(--bg-light);
}

.nav-link-2:focus-visible, .nav-link-2[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: .25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.text-block-4 {
  color: var(--accent-orangen);
}

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

@media screen and (max-width: 991px) {
  h1 {
    font-size: 38px;
    line-height: 60px;
  }

  h2 {
    font-size: 38px;
    line-height: 45px;
  }

  .nav-last-link {
    background-color: var(--bg-light);
    color: var(--bg-dark);
    text-align: right;
    -webkit-text-fill-color: transparent;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    -webkit-background-clip: text;
    background-clip: text;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 20px 20px 0;
    font-family: Rubik, sans-serif;
    font-weight: 400;
    line-height: 24px;
    display: block;
  }

  .nav-last-link:hover {
    background-color: var(--accent-orangen);
  }

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

  .nav-link {
    pointer-events: auto;
    color: var(--bg-light);
    text-align: center;
    text-decoration: none;
    -webkit-text-decoration-color: var(--bg-light);
    text-decoration-color: var(--bg-light);
    border: 1px solid #0000;
    flex: 0 auto;
    width: 100%;
    padding: 15px 0;
    font-size: 12px;
    display: block;
  }

  .nav-link:hover {
    background-color: var(--0);
    color: var(--bg-light);
    text-decoration: none;
  }

  .nav-link:focus {
    aspect-ratio: auto;
  }

  .nav-link.w--current {
    background-color: var(--accent-orangen);
    color: var(--bg-dark);
  }

  .middle-line {
    background-color: var(--accent-orangen);
    border-radius: 20px;
    width: 24px;
    height: 1px;
    padding: 0;
  }

  .menu {
    padding: 0;
    display: block;
  }

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

  .nav-link-wrap {
    background-color: #fff;
  }

  .logo.w--current {
    margin-left: 0;
    margin-right: 40px;
    padding-left: 0;
  }

  .top-line {
    background-color: var(--accent-orangen);
    border-radius: 20px;
    width: 24px;
    height: 1px;
    margin-bottom: 6px;
    padding: 0;
  }

  .nav-link-inner {
    text-align: left;
    flex-direction: column;
  }

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

  .navbar-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: minmax(0, 1fr);
    grid-template-columns: .25fr auto .5fr;
  }

  .bottom-line {
    background-color: var(--accent-orangen);
    border-radius: 20px;
    width: 24px;
    height: 1px;
    margin-top: 6px;
    padding: 0;
  }

  .hero-image-wrap {
    max-width: 300px;
  }

  .hero-data {
    max-width: 100%;
    margin-top: 40px;
  }

  .sub-heading {
    font-size: 18px;
  }

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

  .hero-text {
    font-size: 16px;
  }

  .hero-green-circle {
    width: 300px;
    height: 300px;
  }

  .card-image {
    right: 40px;
  }

  .card-one {
    bottom: 40px;
  }

  .card-two {
    top: 40px;
  }

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

  .logo-grid {
    grid-column-gap: 50px;
  }

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

  .services-heading-block {
    max-width: 100%;
    position: relative;
  }

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

  .services-card.left-top {
    border-color: var(--bg-light);
  }

  .service-grid {
    justify-content: flex-start;
    margin-top: 40px;
  }

  .blank-box {
    display: none;
  }

  .benifits-section {
    max-height: 100vh;
    padding-top: 60px;
  }

  .map-image-wrap {
    object-fit: cover;
    position: relative;
  }

  .map {
    height: 70%;
    margin-left: -21px;
    overflow: clip;
  }

  .stat-wrapper {
    grid-column-gap: 73px;
    grid-row-gap: 73px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    place-items: stretch center;
    width: 100%;
    max-width: 500px;
    margin-left: 20px;
    margin-right: auto;
    display: flex;
    position: relative;
  }

  .services-content-text {
    margin-bottom: 40px;
  }

  .green-circle {
    max-width: 280px;
    height: 280px;
  }

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

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

  .services-content {
    max-width: 100%;
  }

  .card-image-wrap {
    max-width: 50%;
  }

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

  .block {
    padding: 25px;
  }

  .service-box-title {
    font-size: 25px;
  }

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

  .cta-wrapper {
    padding: 50px;
  }

  .cta-heading {
    font-size: 50px;
  }

  .column {
    margin-top: 10px;
  }

  .footer-heading {
    font-size: 18px;
  }

  .form-text {
    font-size: 20px;
  }

  .image {
    width: 300px;
  }

  .div-block {
    border: 1px none var(--accent-orangen);
    color: #3330;
    align-items: center;
    display: flex;
  }

  .div-block:hover {
    border-color: var(--0);
  }

  .logos-mask {
    height: 150px;
    overflow: visible;
  }

  .div-block-2, .div-block-3, .div-block-4 {
    width: 180px;
  }

  .menu-2 {
    padding: 0;
  }

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

  .top-line-2 {
    background-color: #ff6a00;
    border-radius: 20px;
    width: 24px;
    height: 1px;
    margin-bottom: 6px;
    padding: 0;
  }

  .middle-line-2 {
    background-color: #ff6a00;
    border-radius: 20px;
    width: 24px;
    height: 1px;
    padding: 0;
  }

  .bottom-line-2 {
    background-color: #ff6a00;
    border-radius: 20px;
    width: 24px;
    height: 1px;
    margin-top: 6px;
    padding: 0;
  }

  .navbar-logo-center {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 0;
    display: flex;
  }

  .navbar-logo-center-container.shadow-three {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .container-2 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    justify-content: center;
    align-items: center;
    max-width: 728px;
    display: flex;
  }

  .navbar-wrapper-three {
    border-radius: 0;
    justify-content: space-between;
    position: absolute;
    top: 100%;
  }

  .navbar-brand-three {
    position: relative;
  }

  .navbar-brand-three.w--current {
    margin-left: 0;
    position: static;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    margin-top: 50px;
    top: 70px;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    position: absolute;
    top: 100%;
    overflow: auto;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-menu-block {
    margin-left: 0;
  }

  .nav-link-2 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .menu-button {
    text-align: left;
    margin-left: 350px;
    padding: 12px;
    position: static;
  }

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

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

  .container {
    overflow-wrap: normal;
  }

  .navbar {
    background-size: cover;
  }

  .nav-link {
    box-sizing: border-box;
    flex-flow: row;
    display: flex;
  }

  .logo {
    width: 30%;
  }

  .logo.big {
    width: 8%;
  }

  .hero-section {
    background-position: 50% 0;
    background-size: auto 80vh;
  }

  .hero-wrap {
    flex-direction: column;
    align-items: flex-end;
  }

  .hero-image-wrap {
    max-width: 80%;
    height: 300px;
    position: relative;
  }

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

  .primary-button {
    padding: 15px 72px 15px 35px;
  }

  .logo-grid {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: row;
    justify-content: center;
    display: flex;
  }

  .services-heading {
    margin-top: 10px;
  }

  .services-card {
    max-width: 100%;
    padding: 20px 20px 10px;
  }

  .services-card.left {
    border-bottom-color: #0000;
    border-left-color: var(--bg-light);
  }

  .services-card.left-top {
    border-left-color: var(--bg-light);
  }

  .arrow-icon {
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .benifits-wrapper {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-direction: column;
  }

  .benifits-content {
    max-width: 100%;
  }

  .map-image-wrap {
    object-fit: cover;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    height: 467.607px;
    margin-top: -24px;
    display: flex;
    overflow: hidden;
  }

  .map {
    object-fit: cover;
    height: 111%;
    margin-top: 0;
    margin-left: 0;
  }

  .stat-wrapper {
    grid-column-gap: 51px;
    grid-row-gap: 51px;
    justify-content: space-between;
    margin-top: 20px;
  }

  .number {
    font-size: 25px;
  }

  .service-section {
    margin-top: 220px;
  }

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

  .services-content, .card-image-wrap {
    max-width: 100%;
  }

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

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

  .review-heading {
    font-size: 36px;
  }

  .review-block {
    padding: 30px;
  }

  .left-arrow {
    width: 40px;
    height: 40px;
    margin-top: 40px;
    font-size: 22px;
    inset: auto 50px auto 0;
  }

  .right-arrow {
    width: 40px;
    height: 40px;
    margin-top: 40px;
    font-size: 22px;
    top: auto;
    left: 50px;
    right: 0%;
  }

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

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

  .cta-heading {
    font-size: 40px;
  }

  .footer-section {
    margin-bottom: 40px;
  }

  .copyright-section {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer-inner {
    flex-flow: wrap;
    display: flex;
  }

  .column {
    flex: 0 auto;
    width: 100%;
    margin-top: -27px;
  }

  .column.half {
    max-width: 40%;
    margin-top: -24px;
  }

  .footer-logo {
    padding-left: 0;
  }

  .form-text {
    margin-left: 44px;
  }

  .client-logo {
    width: 20%;
  }

  .client-logo.big {
    width: 100px;
  }

  .body {
    overflow: hidden;
  }

  .logos-track {
    overflow-wrap: normal;
    width: auto;
    display: flex;
    position: relative;
  }

  .div-block-2 {
    flex-flow: column;
    display: flex;
  }

  .menu-2.w--open {
    flex-flow: row;
    display: flex;
  }

  .top-line-2, .middle-line-2, .bottom-line-2 {
    display: block;
  }

  .div-block-5 {
    flex-flow: row;
    display: flex;
  }

  .navbar-logo-center-container.shadow-three {
    background-color: var(--bg-dark);
    padding-top: 0;
  }

  .container-2 {
    background-color: var(--bg-dark);
  }

  .navbar-wrapper-three {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: var(--bg-dark);
    justify-content: space-between;
    padding-bottom: 20px;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .navbar-brand-three.w--current {
    width: 100%;
  }

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-menu-block {
    flex-direction: column;
  }

  .nav-link-2 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .menu-button {
    margin-left: 180px;
  }

  .image-3 {
    max-width: 100%;
  }

  .link-block {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 479px) {
  .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .navbar {
    background-position: 0 0;
    background-size: auto;
  }

  .logo {
    text-align: left;
  }

  .hero-section {
    width: 100%;
    padding-top: 40px;
  }

  .hero-image-wrap {
    max-width: 75%;
  }

  .hero-data {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
  }

  .sub-heading {
    padding-left: 0;
    font-size: 15px;
  }

  .hero-title {
    width: 100%;
    max-width: 100%;
    margin-top: 10px;
    font-size: 30px;
    line-height: 40px;
  }

  .hero-text {
    font-size: 12px;
  }

  .primary-button {
    text-align: center;
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    width: 50%;
  }

  .hero-green-circle {
    width: 200px;
    height: 200px;
  }

  .logo-section {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
  }

  .logo-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: row;
    flex: none;
    align-content: stretch;
    display: flex;
    overflow: visible;
  }

  .servies-section {
    padding-left: 0;
  }

  .services-heading-block {
    padding-left: 20px;
    padding-right: 0;
  }

  .services-heading {
    padding-left: 0;
    font-size: 28px;
    line-height: 40px;
  }

  .services-title {
    margin-top: 3px;
    margin-bottom: 6px;
    font-size: 20px;
  }

  .service-text {
    margin-bottom: 33px;
    font-size: 12px;
  }

  .benifits-section {
    padding-top: 22px;
  }

  .map-image-wrap {
    object-fit: contain;
    width: 100%;
    height: 200px;
    margin-top: -9px;
    overflow: hidden;
  }

  .stat-wrapper {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    flex-flow: column;
    margin-left: 8px;
  }

  .number {
    font-size: 10px;
  }

  .body-small.green-text {
    margin-top: -9px;
    font-size: 9px;
  }

  .services-content-text {
    font-size: 12px;
  }

  .green-circle {
    max-width: 200px;
    height: 200px;
  }

  .service-section {
    margin-top: 0;
  }

  .service-box-title {
    font-size: 20px;
  }

  .services-box-text {
    font-size: 12px;
  }

  .review-mask {
    max-width: none;
  }

  .review-slide {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .review-block {
    padding: 18px;
  }

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

  .footer-inner {
    grid-column-gap: 20px;
    grid-row-gap: 50px;
  }

  .column.half {
    max-width: 45%;
  }

  .new-letter-form {
    flex-direction: column;
    display: flex;
  }

  .news-letter-form {
    flex-direction: column;
    height: auto;
    display: flex;
  }

  .form-text {
    margin-left: 0;
    font-size: 15px;
  }

  .client-logo {
    text-align: left;
  }

  .client-logo.big {
    flex: 0 auto;
    width: 110px;
  }

  .body {
    overflow: visible;
  }

  .text-block {
    text-align: left;
    margin-left: -11px;
    padding-right: 0;
    font-size: 15px;
    line-height: 19px;
  }

  .text-block-2, .text-block-3 {
    margin-left: -11px;
    font-size: 15px;
    line-height: 19px;
  }

  .logos-mask {
    width: 100%;
    overflow: hidden;
  }

  .logos-track {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    width: auto;
  }

  .div-block-2 {
    margin-right: -17px;
  }

  .container-2 {
    max-width: none;
  }

  .navbar-brand-three.w--current {
    margin-left: 10px;
  }

  .nav-menu-three {
    flex-direction: column;
  }

  .menu-button {
    margin-left: 0;
  }

  .image-3 {
    max-width: 80%;
  }

  .paragraph-2 {
    font-size: 12px;
  }
}

#w-node-e1448024-8bcc-4d80-0c16-80128847a058-a8ea21e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_2fcccc1f-7242-c164-a851-8639df34fdbd-a8ea21e2, #w-node-_24d628f9-6269-0de5-857e-f5ac4effd2c2-a8ea21e2, #w-node-_68a9b5c1-21b8-e6a6-5161-3bac1f970e26-a8ea21e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1da0bc95-4e2d-e4af-e48f-72f06e928df1-a8ea21e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-c913e4cd-fb61-38bb-0e8e-17946316c515-a8ea21e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-c913e4cd-fb61-38bb-0e8e-17946316c516-a8ea21e2, #w-node-c913e4cd-fb61-38bb-0e8e-17946316c517-a8ea21e2, #w-node-c913e4cd-fb61-38bb-0e8e-17946316c518-a8ea21e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c913e4cd-fb61-38bb-0e8e-17946316c519-a8ea21e2 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_118a8405-6f6f-9475-e8e2-69cba7c66a2c-a7c66a28, #w-node-_118a8405-6f6f-9475-e8e2-69cba7c66a36-a7c66a28 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_118a8405-6f6f-9475-e8e2-69cba7c66a4e-a7c66a28 {
  order: 9999;
  grid-area: 1 / 3 / 2 / 4;
  place-self: stretch end;
}

@media screen and (max-width: 991px) {
  #w-node-a977356f-1eb2-00f4-4cbe-4789ae0fc936-a8ea21e2 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


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