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

@font-face {
  font-family: Generalsans;
  src: url('../fonts/GeneralSans-BoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Generalsans;
  src: url('../fonts/GeneralSans-MediumItalic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Generalsans;
  src: url('../fonts/GeneralSans-Semibold.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: Generalsans;
  src: url('../fonts/GeneralSans-Italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Generalsans;
  src: url('../fonts/GeneralSans-Extralight.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Generalsans;
  src: url('../fonts/GeneralSans-ExtralightItalic.otf') format("opentype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

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

@font-face {
  font-family: Generalsans;
  src: url('../fonts/GeneralSans-SemiboldItalic.otf') format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Generalsans;
  src: url('../fonts/GeneralSans-LightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

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

:root {
  --main-back-light: #e7ecf0;
  --light-grey: #d8e4ec;
  --text-color-light: #011721;
  --primary-brand-color: #023a55;
  --white-color: white;
  --dark-color: #001017;
  --secondary-brand-color: #a4c5db;
  --mid-grey: #69838f;
  --brand-color: #07c;
  --third-blue-color: #82d6ff;
  --main-text: #031546;
  --a: #6b94d4;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  background-color: var(--main-back-light);
  color: var(--light-grey);
  font-family: Generalsans, sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2rem;
}

p {
  color: var(--text-color-light);
  margin-bottom: 10px;
  font-size: 1.5rem;
  line-height: 2rem;
}

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

.section-padding {
  padding-left: 1rem;
  padding-right: 1rem;
}

.container {
  flex: 1;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.style-guide-grid {
  grid-column-gap: 40px;
  grid-row-gap: 41px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  margin-top: 30px;
  margin-bottom: 30px;
  display: grid;
}

.style-guide-category {
  text-transform: uppercase;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 20px;
  padding-bottom: 5px;
  font-weight: 700;
}

.style-guide-edit {
  text-transform: uppercase;
  border-bottom: 1px solid #e6e6e6;
  margin-top: 10px;
  margin-bottom: 10px;
}

.light-text {
  color: var(--white-color);
  font-size: 4rem;
  font-weight: 400;
}

.style-guide-element {
  color: #fff;
  background-color: #3b83f7;
  margin-top: 3px;
  margin-bottom: 3px;
  padding: 3px 5px;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
}

.style-guide-class {
  color: #fff;
  background-color: #3b83f7;
  border-radius: 3px;
  padding: 3px 8px;
  font-size: 14px;
  font-weight: 300;
  display: inline-block;
}

.style-guide-class.tag-class {
  background-color: #cc55b8;
}

.style-guide-edit-wrap {
  opacity: .4;
}

.style-guide-edit-wrap:hover {
  opacity: 1;
}

.small-p {
  color: var(--text-color-light);
  font-size: 1rem;
  line-height: 1.2;
}

.large-p {
  font-size: 1.5rem;
  line-height: 1.3;
}

.large-p.hero {
  width: 80%;
}

.large-p.hero.light-text {
  white-space: pre-wrap;
}

.large-p.light-text.contact {
  text-align: center;
  align-self: center;
}

.style-guide-color-wrap {
  background-color: var(--dark-color);
  justify-content: flex-start;
  align-items: center;
  height: 100px;
  margin-top: 30px;
  padding: 15px 30px;
  display: flex;
}

.style-guide-color-wrap.primary-color-background {
  background-color: var(--primary-brand-color);
}

.style-guide-color-wrap.secondary-color-background {
  background-color: var(--secondary-brand-color);
}

.style-guide-color-wrap.mid-grey-color-background {
  background-color: var(--mid-grey);
}

.style-guide-color-wrap.light-color-background, .style-guide-color-wrap.white-background {
  background-color: var(--white-color);
}

.style-guide-color-wrap.light-grey-color-background {
  background-color: var(--light-grey);
}

.button {
  background-color: var(--white-color);
  color: var(--text-color-light);
  margin-top: 0;
  text-decoration: underline;
  transition: all .4s cubic-bezier(.445, .05, .55, .95);
}

.button:hover {
  color: var(--brand-color);
}

.button.ghost-button {
  border: 2px solid var(--primary-brand-color);
  color: var(--primary-brand-color);
  background-color: #0000;
}

.button.ghost-button.invese-ghost {
  border-color: var(--white-color);
  color: var(--white-color);
}

.button.inverse-button {
  background-color: var(--brand-color);
  color: var(--white-color);
}

.button.form-submit {
  margin-top: 15px;
}

.button.sided {
  padding-left: 0;
  transition: all .4s cubic-bezier(.445, .05, .55, .95);
}

.button.sided:hover {
  color: var(--brand-color);
}

.style-guide-grid-item-wrap {
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: flex-start stretch;
  padding-top: 10px;
  display: grid;
}

.list {
  padding-left: 15px;
}

.form-field.form-select {
  background-color: var(--white-color);
}

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

.form-checkbox {
  width: 20px;
}

.style-guide-layout-demo {
  background-color: #d3d3d3;
  border: 1px solid #d3d3d3;
}

.style-guide-layout-demo.section-padding {
  margin-top: 30px;
}

.style-guide-white-div {
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding: 20px;
}

.popup-background-wrap {
  z-index: 100;
  background-color: var(--dark-color);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.popup-card {
  background-color: var(--white-color);
  text-align: center;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  padding: 30px;
  display: flex;
  position: relative;
}

.style-guide-wrap {
  padding-top: 20px;
}

.close-popup-button {
  color: var(--dark-color);
  padding: 1rem;
  font-size: 1rem;
  text-decoration: none;
  position: absolute;
  inset: 0 0 auto auto;
}

.style-guide-popup-wrap {
  background-color: var(--dark-color);
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 22px;
  display: flex;
}

.site-wrapper {
  background-color: var(--main-back-light);
  width: 100%;
}

.hero-section {
  background-color: var(--white-color);
}

.hero-section.section-padding {
  margin-top: 7rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.text-top-wrap {
  z-index: 5;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 50%;
  margin-top: 2rem;
  margin-left: 2rem;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.hero-text {
  opacity: 1;
  color: var(--white-color);
  text-align: left;
  white-space: pre-wrap;
  flex: 0 auto;
  font-size: 4.2rem;
}

.hero-text.about {
  text-shadow: 0 1px 16px var(--text-color-light);
  font-size: 3rem;
}

.hero-text.about.company {
  font-size: 2rem;
}

.hero-img-wrap {
  z-index: 1;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  max-height: 42rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-img-wrap.about {
  justify-content: center;
  align-items: flex-start;
  max-height: 30rem;
}

.img-wrap {
  z-index: 5;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: 1;
  justify-content: space-between;
  align-self: center;
  align-items: flex-end;
}

.nav-bar {
  background-color: var(--dark-color);
}

.nav-bar.section-padding {
  z-index: 50;
  background-color: var(--white-color);
  position: fixed;
  inset: 0% 0% auto;
  overflow: visible;
}

.nav-link {
  color: var(--dark-color);
  font-size: .875rem;
  transition: all .45s cubic-bezier(.445, .05, .55, .95);
}

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

.nav-link.w--current {
  color: var(--text-color-light);
  font-weight: 500;
  text-decoration: underline;
}

.nav-link.lang {
  border: 1px solid var(--text-color-light);
  border-radius: 8px;
}

.nav-link.lang:hover {
  border-color: var(--brand-color);
}

.nav-link.lang.w--current {
  background-color: var(--text-color-light);
  color: var(--white-color);
  text-decoration: none;
}

.nav-menu {
  display: flex;
}

.nav-wrap {
  justify-content: space-between;
  align-items: center;
  min-height: 5.25rem;
  padding-top: .5rem;
  display: flex;
}

.full-line {
  background-color: var(--mid-grey);
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 1px;
  display: block;
}

.full-line.light {
  background-color: var(--white-color);
}

.full-line.blue {
  background-color: var(--brand-color);
}

.about-section {
  z-index: 1;
}

.about-text-box {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--text-color-light);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  max-width: 64%;
  display: flex;
}

.about-text-wrap {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
}

.section-title {
  color: var(--text-color-light);
  padding-top: 0;
  font-size: 3rem;
  font-weight: 400;
}

.section-title.mid {
  align-self: center;
}

.section-title.mid.light-text {
  color: var(--white-color);
}

.section-title.team {
  font-size: 1.5rem;
}

.contact-section.section-padding {
  padding-top: 1rem;
}

.footer-section.section-padding {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: block;
}

.footer-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  display: flex;
}

.footer-logo {
  flex: 0 auto;
  align-self: stretch;
  min-width: 250px;
}

.info-box-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-start;
  max-width: 60%;
  display: flex;
}

.footer-link {
  color: var(--text-color-light);
  text-transform: none;
  transition: all .4s cubic-bezier(.445, .05, .55, .95);
}

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

.footer-link.page {
  white-space: nowrap;
  text-decoration: none;
}

.footer-link.page:hover, .footer-link.blue {
  color: var(--brand-color);
}

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

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

.links-wrap {
  grid-column-gap: 10rem;
  grid-row-gap: 10rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.loader_number {
  color: var(--light-grey);
  padding-bottom: .14em;
  font-size: 20.42em;
  font-weight: 500;
  line-height: .55;
}

.loader {
  z-index: 1000;
  background-color: var(--dark-color);
  color: #000;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0% 0% auto;
  overflow: hidden;
}

.loader_p {
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 1.82em;
  line-height: 1;
}

.loader_p.is-right {
  text-align: right;
  text-transform: none;
}

.trigger {
  width: 0;
  height: 0;
  padding: 0;
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
}

.loader_progress {
  z-index: 1;
  background-color: var(--light-grey);
  color: var(--primary-brand-color);
  width: 0%;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.loader-container {
  z-index: 2;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 1.3em;
  position: relative;
}

.loader-container.is-loader-top {
  mix-blend-mode: difference;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.loader-container.is-loader-bottom {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.loader_top {
  border-bottom: 2px solid var(--primary-brand-color);
  color: var(--dark-color);
  position: relative;
}

.loader_bottom {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  display: flex;
}

.horizontal-trigger {
  position: absolute;
  inset: 0% 0% auto;
}

.hero-cont-img {
  z-index: 1;
  border-radius: 1rem;
  flex: 1;
  position: relative;
  inset: 0%;
}

.lang-wrap {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  display: flex;
}

.huge-p {
  font-size: 2rem;
  line-height: 1.5;
}

.about-number-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.info-box {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-self: flex-start;
  align-items: flex-start;
  padding: 1rem;
  display: flex;
}

.info-box-title {
  color: var(--text-color-light);
  font-size: 3rem;
  line-height: 1;
}

.info-text {
  font-size: 1.5rem;
}

.mid-img-wrap {
  z-index: 1;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  max-height: 32rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.mid-img-wrap.section-padding {
  margin-bottom: 1rem;
}

.white-box {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: #0000;
  border-radius: 1rem;
  flex-flow: column;
  display: flex;
}

.white-box.white {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--white-color);
  padding: 1rem 1rem 2rem;
}

.page-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  justify-content: center;
  padding: 2rem;
  display: flex;
}

.text-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  display: flex;
}

.page-title {
  color: var(--text-color-light);
}

.contact-box-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--brand-color);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 3rem;
  display: flex;
}

.contact-img-wrap {
  z-index: 1;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 60%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-img, .mid-img {
  z-index: 1;
  border-radius: 1rem;
  position: relative;
  inset: 0%;
}

.footer-links-wrap {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 0;
  display: flex;
}

.about-box-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  justify-content: center;
  padding: 1rem;
  display: flex;
}

.about-box {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--white-color);
  border-radius: .5rem;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  padding: 1rem;
  display: flex;
}

.about-box-title {
  color: var(--text-color-light);
  text-transform: uppercase;
  font-size: 1.5rem;
}

.about-box-title.mid {
  align-self: center;
  font-size: 3rem;
  line-height: 1;
}

.sectors-section {
  margin-top: 1rem;
}

.sectors-box-wrap {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3rem 2rem;
  display: flex;
}

.sectors-box {
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.icon-title-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.sector-title {
  color: var(--text-color-light);
  font-size: 1.5rem;
}

.sector-text-wrap {
  width: 65%;
}

.about-mid-img-wrap {
  z-index: 1;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  max-height: 32rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-mid-img-wrap.section-padding {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.about-mid-img-wrap.section-padding.big {
  max-height: 40rem;
}

.family-img {
  border-radius: .5rem;
}

.about-title-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
}

.info-section {
  margin-top: 1rem;
}

.dark-box-wrap {
  background-color: var(--dark-color);
  border-radius: 1rem;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.shapes-img {
  flex: 0 auto;
  align-self: flex-end;
  margin-top: 2rem;
}

.info-text-wrap {
  z-index: 5;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 60%;
  margin-top: 4rem;
  margin-left: 4rem;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.members-section {
  margin-top: 1rem;
}

.team-box {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.member-box {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  background-color: var(--white-color);
  border-radius: .5rem;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.team-name {
  color: var(--text-color-light);
  white-space: normal;
  margin-bottom: 0;
  font-size: 1.4rem;
}

.sectors-box-copy, .company-box {
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.company-text-wrap {
  width: 65%;
}

.footer-home-link {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  color: var(--text-color-light);
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  max-width: 64%;
  display: flex;
}

.map {
  border-radius: .5rem;
  width: 100%;
  overflow: hidden;
}

.form-wrap {
  border-radius: 1rem;
  min-height: 768px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .small-p {
    font-size: .875rem;
  }

  .large-p.hero.light-text {
    white-space: pre;
    font-size: 1.2rem;
  }

  .hero-text {
    font-size: 2.4rem;
  }

  .nav-bar.section-padding {
    z-index: 10;
  }

  .nav-link {
    background-color: var(--brand-color);
    color: var(--main-back-light);
    text-align: center;
    align-self: center;
  }

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

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

  .nav-menu {
    background-color: var(--white-color);
    flex-flow: column;
    flex: 1;
    justify-content: center;
    align-self: stretch;
    align-items: center;
    padding: 1rem;
  }

  .nav-wrap {
    height: auto;
  }

  .about-text-box {
    max-width: 75%;
  }

  .about-text-wrap {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

  .section-title.team {
    font-size: 1.3rem;
  }

  .footer-wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .links-wrap {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .menu-button {
    border: 1px solid var(--text-color-light);
    color: var(--text-color-light);
    border-radius: .5rem;
  }

  .menu-button.w--open {
    background-color: var(--brand-color);
    color: var(--white-color);
    border-radius: 8px;
  }

  .loader {
    justify-content: center;
    align-items: center;
  }

  .loader-container {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .loader_top {
    border-top: 2px solid #000;
    position: absolute;
    inset: 0% 0% auto;
  }

  .lang-wrap {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    background-color: var(--brand-color);
    border-bottom-right-radius: .5rem;
    border-bottom-left-radius: .5rem;
    justify-content: center;
    align-self: center;
    align-items: center;
  }

  .huge-p.light-text {
    font-size: 1.5rem;
  }

  .contact-img-wrap {
    width: 80%;
  }

  .footer-links-wrap {
    padding-bottom: 1rem;
  }

  .about-box {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .sectors-box-wrap {
    padding-bottom: 1rem;
  }

  .icon-title-wrap {
    max-width: 25%;
  }

  .icon-title-wrap.team {
    width: 70%;
  }

  .shapes-img {
    max-width: 80%;
    margin-top: 4rem;
  }

  .team-box {
    justify-content: flex-start;
    align-items: flex-start;
    margin-left: 1rem;
  }

  .team-name {
    font-size: 1.3rem;
  }

  .company-box {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    justify-content: space-between;
  }

  .footer-home-link {
    max-width: 75%;
  }
}

@media screen and (max-width: 767px) {
  .small-p {
    color: var(--text-color-light);
    font-size: .875rem;
  }

  .large-p.hero.light-text {
    font-size: .875rem;
  }

  .style-guide-color-wrap {
    height: auto;
  }

  .hero-section.section-padding {
    height: 100%;
  }

  .text-top-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    text-align: left;
    flex-flow: column;
    max-width: 100%;
  }

  .hero-text {
    text-align: left;
    order: -1;
    width: 100%;
    font-size: 2rem;
  }

  .hero-img-wrap {
    flex-flow: column;
    margin-top: 1rem;
  }

  .img-wrap {
    order: 1;
  }

  .about-text-box {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    max-width: none;
  }

  .about-text-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    padding-top: 2rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .section-title {
    text-align: left;
    font-size: 2rem;
  }

  .footer-wrap {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .footer-text-wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .links-wrap {
    flex-flow: row;
  }

  .loader_p {
    font-size: 1.5em;
  }

  .hero-cont-img {
    order: -1;
    position: static;
  }

  .huge-p {
    font-size: 1rem;
  }

  .huge-p.light-text {
    font-size: 1.2rem;
  }

  .about-number-wrap {
    background-color: var(--main-back-light);
    flex-flow: column;
  }

  .info-box {
    background-color: var(--white-color);
    border-radius: .5rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .mid-img-wrap {
    flex-flow: column;
    margin-top: 1rem;
  }

  .mid-img-wrap.section-padding {
    min-height: 10rem;
    max-height: none;
  }

  .page-wrap {
    flex-flow: column;
  }

  .text-wrap {
    order: 1;
  }

  .contact-img-wrap {
    flex-flow: column;
    width: 100%;
    margin-top: 1rem;
  }

  .contact-img {
    order: -1;
  }

  .mid-img {
    order: -1;
    position: static;
  }

  .footer-links-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    padding-top: 2rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .about-box-wrap {
    flex-flow: column;
  }

  .about-box {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    padding: .5rem;
  }

  .sectors-box-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    padding-top: 2rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  .sectors-box {
    justify-content: space-between;
    align-items: center;
  }

  .sectors-box.finance, .sectors-box.team {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .icon-title-wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    max-width: none;
  }

  .icon-title-wrap.company {
    max-width: 30%;
  }

  .sector-icon {
    max-width: 25%;
  }

  .sector-title {
    margin-bottom: 0;
    font-size: 1rem;
  }

  .about-mid-img-wrap {
    flex-flow: column;
    margin-top: 1rem;
  }

  .about-mid-img-wrap.section-padding {
    min-height: 10rem;
    max-height: none;
  }

  .dark-box-wrap {
    justify-content: center;
    align-items: flex-end;
  }

  .info-text-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    text-align: left;
    flex-flow: column;
    max-width: 100%;
    margin-top: 2rem;
    margin-left: 2rem;
    margin-right: 1rem;
  }

  .company-logo {
    max-width: 100%;
    overflow: hidden;
  }

  .footer-home-link {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    max-width: none;
  }
}

@media screen and (max-width: 479px) {
  .style-guide-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .small-p {
    font-size: .875rem;
  }

  .large-p {
    font-size: 1rem;
  }

  .large-p.hero.light-text {
    white-space: pre-wrap;
    width: auto;
  }

  .large-p.light-text.contact {
    font-size: 1.2rem;
  }

  .style-guide-grid-item-wrap {
    grid-template-columns: 1fr;
  }

  .text-top-wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    align-self: center;
    margin: 0 .5rem 1rem;
    inset: auto auto 0% 0%;
  }

  .hero-text {
    white-space: pre-wrap;
    width: 100%;
    margin-bottom: 0;
    font-size: 2rem;
  }

  .hero-img-wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    border-radius: .5rem;
    justify-content: center;
    align-items: flex-start;
    max-height: 40vh;
    margin-top: 0;
  }

  .hero-img-wrap.about {
    min-height: 0;
  }

  .img-wrap {
    width: 100%;
    padding-bottom: 1rem;
  }

  .section-title {
    align-self: center;
    font-size: 2rem;
  }

  .section-title.team {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-wrap {
    padding-bottom: 1rem;
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .info-box-wrap {
    max-width: none;
  }

  .footer-link {
    align-self: stretch;
  }

  .footer-text-wrap {
    text-align: center;
    align-self: center;
  }

  .links-wrap {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-self: center;
    align-items: center;
  }

  .loader_number {
    font-size: 40vw;
  }

  .loader_p {
    font-size: 1rem;
  }

  .loader-container.is-loader-top {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .hero-cont-img {
    box-sizing: border-box;
    aspect-ratio: auto;
    filter: brightness(80%);
    vertical-align: middle;
    object-fit: cover;
    flex: 1;
    align-self: flex-end;
    max-width: none;
    overflow: clip;
  }

  .hero-cont-img.about {
    vertical-align: top;
    flex: 1;
    align-self: center;
  }

  .opener-logo {
    width: 20%;
  }

  .huge-p {
    font-size: 1.2rem;
  }

  .huge-p.light-text {
    font-size: 1rem;
  }

  .info-box {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .mid-img-wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .mid-img-wrap.section-padding {
    min-height: auto;
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .page-wrap {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    padding: 1.5rem 1.5rem 1.5rem 1.125rem;
  }

  .text-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    text-align: center;
  }

  .contact-box-wrap {
    grid-column-gap: 1.4rem;
    grid-row-gap: 1.4rem;
    padding: 1.4rem;
  }

  .contact-img-wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .mid-img {
    box-sizing: border-box;
    aspect-ratio: auto;
    filter: brightness(80%);
    object-fit: contain;
    overflow: clip;
  }

  .about-box-wrap {
    flex-flow: column;
  }

  .about-box-title {
    font-size: 1rem;
  }

  .sectors-box {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .sectors-box.finance {
    text-align: center;
    justify-content: space-between;
    align-self: center;
    align-items: center;
  }

  .sectors-box.team {
    align-self: stretch;
  }

  .icon-title-wrap.team {
    text-align: center;
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 100%;
  }

  .sector-text-wrap {
    width: 100%;
  }

  .about-mid-img-wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .about-mid-img-wrap.section-padding {
    min-height: auto;
    margin-top: .5rem;
    margin-bottom: 1rem;
  }

  .family-img {
    width: 100%;
    max-width: none;
  }

  .dark-box-wrap {
    flex-flow: column;
  }

  .shapes-img {
    margin-top: -2rem;
  }

  .info-text-wrap {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    margin: 0 .5rem 1rem;
    inset: auto auto 0% 0%;
  }

  .info-text-wrap.company {
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    position: relative;
  }

  .team-box {
    flex-flow: column;
    justify-content: flex-start;
    align-self: stretch;
    align-items: stretch;
    margin-left: 0;
  }

  .member-box {
    justify-content: center;
    align-items: stretch;
  }
}

#w-node-af6ac8e3-b1ce-cda6-23dc-a32b43a6a065-52f8f521 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-cef64361-1f9b-8732-7793-1d4785eeed97-52f8f521 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c4313243-b51c-03bb-11ad-c431ebe2a80b-52f8f521 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d0d2d682-3502-a29f-1a22-871f47028af2-52f8f521, #w-node-eb00ca3d-f0c1-8354-e9aa-1faf574614be-52f8f521, #w-node-_85cb43b8-5298-9d0a-b169-853350d81ae0-52f8f521, #w-node-_5ce572de-a6ee-b264-99b3-588be3f1debe-52f8f521, #w-node-e573c9ae-1e4b-15b0-7098-638502628a9c-52f8f521, #w-node-_0c02166c-4ee3-9762-cc8d-f567a47991b2-52f8f521, #w-node-_31bfd8e3-b79a-c6a8-c644-de3e1d6aef06-52f8f521, #w-node-_8101b2ee-d87b-6d50-ecc4-1cc6560df4db-52f8f521, #w-node-aa9291ec-5ca1-3ae2-496b-ff742d602a68-52f8f521, #w-node-_479385eb-f044-0d6d-9fb9-3510fe0092c5-52f8f521, #w-node-_36d6a540-3dac-ba1b-4887-4e460e7ddc86-52f8f521, #w-node-_58a77a61-8d2a-f298-bcf8-5b5d6bda4258-52f8f521, #w-node-_84eebd00-708d-d564-7474-81a48d7f1aa8-52f8f521, #w-node-c0ceb277-bbf2-2cf4-4072-7fa273a7e783-52f8f521, #w-node-_293d8aee-201d-8e8e-7d11-7b9b1bf3932f-52f8f521, #w-node-e02f6cf5-e81b-07a2-d153-c916403846e7-52f8f521, #w-node-_90e05c14-0560-63b0-7156-ffcbe12cdec6-52f8f521, #w-node-_90e05c14-0560-63b0-7156-ffcbe12cdec7-52f8f521, #w-node-_40d4d6df-e38b-f778-5115-ea8f93d0542e-52f8f521, #w-node-c9d7c3ab-d31b-4fe2-e290-666f73a76a6a-52f8f521, #w-node-_1cb2eaff-c085-9ab3-df4a-1725ee4f484b-52f8f521, #w-node-_1229091c-99d0-b728-5727-37785a9996e2-52f8f521 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f637bbff-835b-0236-4124-4ac1eef82ac3-52f8f521 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_826fbc41-7f9a-f875-b76e-3e9c3ff2002b-52f8f521, #w-node-ed82fd76-b394-3b31-d285-0d24c40a28ca-52f8f521, #w-node-_11717b33-079b-321a-8523-e173de28bfe2-52f8f521 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e383549d-c8b3-87cd-ee42-73f99aa01117-52f8f521 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_55db6e40-b97b-9254-09df-2929df1b67ad-52f8f521, #w-node-_8a96fce1-c74f-35f2-c6f4-3587e7d0e79a-52f8f521, #w-node-bfdc7d70-2863-8331-b4f9-ad395f381310-52f8f521, #w-node-_8219438d-b20e-01aa-f124-d537d0821573-52f8f521, #w-node-df52a5df-cf6e-cd43-ccd8-20633efad3fb-52f8f521, #w-node-cd8a551e-24bb-f985-80c2-ed654c7036ec-52f8f521, #w-node-c73ec5c5-9d1c-c71a-647d-93fd71def3a3-52f8f521, #w-node-b28db8fa-48cc-0fc7-f454-c90e65fa4e38-52f8f521 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_18765f94-c4e6-c755-ac1d-a3de06ce4dbc-52f8f521 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_91cfe370-0245-0733-cc80-e0128461d2a5-52f8f521, #w-node-_983a314a-baad-360b-c27c-560bd790abd0-52f8f521, #w-node-dec986e8-2989-ac3d-9697-51959cdb817b-52f8f521 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_539debc5-c3bf-e500-5373-a3259d80206f-52f8f521 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-aecd07ed-cd8b-1716-e906-11a45aa52757-52f8f521, #w-node-_432c5549-5a58-4527-4926-71dbf8e6a1d1-52f8f521, #w-node-_165d79eb-b2a5-28c4-eb36-16dde57c961e-52f8f521, #w-node-c962fc9a-3fcf-08e3-bdf2-4ecd4a9701dd-52f8f521, #w-node-_448e0e5a-f5bb-b07f-46a7-e322d88554aa-52f8f521, #w-node-_448e0e5a-f5bb-b07f-46a7-e322d88554ab-52f8f521 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bca97c44-ed2a-c4d2-234a-6c62ee4dc6b5-52f8f521 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_65cb131a-038a-ef25-ea34-fb9ed9c178b0-52f8f521, #w-node-_50c4eecd-635c-c0cb-6b83-c35774246b79-52f8f521 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-Extralight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-ExtralightItalic.otf') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-SemiboldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Generalsans';
  src: url('../fonts/GeneralSans-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}