@font-face {
  font-family: Notosansarabic;
  src: url('../fonts/NotoSansArabic-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Notosansarabic;
  src: url('../fonts/NotoSansArabic-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Notosansarabic;
  src: url('../fonts/NotoSansArabic-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Notosansarabic;
  src: url('../fonts/NotoSansArabic-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Notosansarabic;
  src: url('../fonts/NotoSansArabic-Thin.ttf') format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Notosansarabic;
  src: url('../fonts/NotoSansArabic-Medium.ttf') format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

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

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

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

:root {
  --text-dark: #385e7d;
  --white: #fff;
  --black: #121212;
  --mid-white: #fafafa;
  --white-10: #ffffff1a;
  --dark-blue: #274761;
  --gold: #ae8e64;
  --text-dark-grey: #2d2f36;
  --white-70: #ffffffb3;
  --text-black: #2c2e35;
}

body {
  color: var(--text-dark);
  font-family: Inter, sans-serif;
  font-size: 1rem;
  line-height: 100%;
}

h1 {
  color: #333;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

p {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: inline-block;
}

.section {
  height: 100vh;
  position: relative;
}

.container {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
}

.container.main-hero {
  padding-top: 4.5rem;
  padding-left: 10rem;
  padding-right: 10rem;
}

.container.ar {
  padding-left: 0;
  padding-right: 1.25rem;
}

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

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

.container.full.white {
  background-color: var(--mid-white);
  padding-left: 0;
}

.flex-h-0 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.flex-h-0.h-full {
  align-items: stretch;
  height: 100%;
}

.flex-h-0.z-1 {
  z-index: 1;
  color: var(--white);
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.flex-h-0.mob-v {
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.flex-v-0 {
  flex-flow: column;
  justify-content: space-between;
  display: flex;
}

.align-left {
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.align-right {
  justify-content: flex-end;
  align-items: stretch;
  display: flex;
}

.align-top {
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.align-bottom {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.align-center {
  justify-content: center;
  align-items: center;
  display: flex;
}

.caps {
  text-transform: uppercase;
}

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

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

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

.relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.flex-h-2 {
  grid-column-gap: .125rem;
  grid-row-gap: .125rem;
  display: flex;
}

.flex-h-4 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  display: flex;
}

.flex-h-8 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  display: flex;
}

.flex-h-10 {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  display: flex;
}

.flex-h-16 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  display: flex;
}

.flex-h-24 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  display: flex;
}

.flex-h-32 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  display: flex;
}

.flex-h-64 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  display: flex;
}

.flex-v-2 {
  grid-column-gap: .125rem;
  grid-row-gap: .125rem;
  flex-flow: column;
  display: flex;
}

.flex-v-4 {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-flow: column;
  display: flex;
}

.flex-v-8 {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
  display: flex;
}

.flex-v-10 {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  flex-flow: column;
  display: flex;
}

.flex-v-16 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: flex;
}

.flex-v-16.custom.full {
  width: 100%;
}

.flex-v-32 {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  display: flex;
}

.flex-v-64 {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  flex-flow: column;
  display: flex;
}

.nav {
  background-color: #0000;
}

.nav-logo {
  width: 10rem;
  height: 4rem;
}

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

.nav-link {
  padding: 1.25rem 1rem;
}

.nav-links-wrap {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.bold {
  font-weight: 700;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: capitalize;
}

.no-wrap-text {
  white-space: nowrap;
}

.styleguide {
  display: none;
}

.flex-v-70 {
  grid-column-gap: 4.375rem;
  grid-row-gap: 4.375rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  display: flex;
}

.flex-v-70.pad-top {
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
}

.flex-v-70.pad-top.wrap._1 {
  position: relative;
}

.flex-v-70.pad-top.wrap._1.ar {
  padding-left: 1.5rem;
}

.flex-v-70.pad-top.wrap._1.project-mob {
  border-bottom: 1px solid var(--white-10);
  margin-bottom: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 0;
}

.flex-v-70.pad-top.wrap._1.project-mob.border-b {
  border: 1px #000;
  border-bottom: 1px solid #4343431a;
}

.flex-v-70.pad-top.wrap._1.custom {
  padding-right: 0;
}

.flex-v-70.pad-top.ar {
  width: 18rem;
  padding-right: 0;
}

.logo-img {
  max-width: 12.375rem;
}

.button-transp {
  z-index: 2;
  -webkit-backdrop-filter: blur(.3125rem);
  backdrop-filter: blur(.3125rem);
  color: var(--dark-blue);
  cursor: pointer;
  background-color: #0000;
  border: 1px solid #385e7d26;
  border-radius: 100vw;
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding: 1.1875rem 4.25rem;
  font-size: .9375rem;
  font-weight: 500;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  display: flex;
}

.button-transp:hover {
  color: var(--dark-blue);
  background-color: #b7b7b726;
  border-color: #385e7d26;
}

.button-transp.is-golden {
  color: var(--gold);
}

.button-transp.blue {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

.button-transp.blue.desk-hide {
  display: none;
}

.button-transp.grey {
  border-color: var(--white-10);
  background-color: var(--white-10);
}

.button-transp.grey:hover {
  background-color: var(--gold);
}

.button-transp.gold {
  border-color: var(--gold);
}

.button-transp.gold:hover {
  background-color: var(--gold);
}

.button-transp.popup {
  display: flex;
}

.button-transp.hidden {
  display: none;
}

.button-transp.dark-grey {
  color: var(--white);
  background-color: #343434e6;
  border-bottom-color: #343434e6;
  width: 100%;
  font-size: .875rem;
  line-height: 120%;
}

.button-transp.dark-grey:hover {
  color: #343434e6;
  background-color: #0000;
  border-top-color: #343434e6;
  border-left-color: #343434e6;
  border-right-color: #343434e6;
}

.flex-h-20 {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.flex-h-20.footer-bottom {
  justify-content: center;
  align-items: stretch;
  width: 100%;
}

.text-size-16px {
  font-size: 1rem;
  font-weight: 300;
  line-height: 140%;
}

.text-size-16px.text-color-black-light {
  color: #6d6e70;
}

.text-size-16px.center {
  text-align: center;
  font-weight: 400;
}

.text-size-13px {
  font-size: .75rem;
  font-weight: 400;
  line-height: 140%;
}

.text-size-13px.text-color-black-light {
  color: #6d6e70;
}

.flex-h-22 {
  grid-column-gap: 1.375rem;
  grid-row-gap: 1.375rem;
  display: flex;
}

.flex-h-22.v {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-flow: column;
}

.flex-v-24 {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  display: flex;
}

.flex-v-24.center {
  justify-content: flex-start;
  align-items: center;
}

.flex-v-24.center.mob-v._1 {
  width: 100%;
}

.flex-v-24.no-gap {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
}

.line {
  background-color: var(--white-10);
  opacity: .1;
  width: 100%;
  height: 1px;
}

.image-152px {
  max-width: 9.5rem;
}

.content {
  flex: 1;
  position: relative;
}

.content.hero {
  width: 100%;
}

.content._600px-h {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  display: flex;
}

.content._600px-h.grid {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.card {
  flex-flow: column;
  justify-content: flex-end;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 1.125rem 1.5rem;
  font-family: Sf Pro Display, Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card.max-w-33 {
  max-width: 33.333%;
}

.card.is-hero {
  width: 100%;
  height: 16rem;
}

.card.tight {
  width: 50%;
}

.overlay {
  background-color: #ff0004;
  width: 100%;
  height: 100%;
  position: static;
  inset: 0%;
}

.filter {
  opacity: .42;
  pointer-events: none;
  background-image: linear-gradient(#20202000, #2020208c 90%);
  position: absolute;
  inset: 0%;
}

.icon-36px {
  width: 2.25rem;
  height: 2.25rem;
}

.icon-36px.ar {
  transform: rotate(180deg);
}

.row {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  justify-content: space-between;
  height: 33.3%;
  display: flex;
}

.row.h-full {
  height: 100%;
}

.row.z-1 {
  z-index: 1;
  color: var(--white);
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.row.is-half {
  height: 50%;
}

.row.custom {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 66.6% 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.row.custom.gap {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.row.gap {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
}

.close-popup-block {
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #000c;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.close-cross-img {
  z-index: 2;
  cursor: pointer;
  flex: none;
  width: 3rem;
  height: 3rem;
  position: absolute;
  inset: -3rem -3rem auto auto;
}

.text-field-calendar {
  color: var(--text-dark);
  background-color: #0000;
  border: .0625rem solid #1b1d1d33;
  border-radius: 1.25rem;
  width: 100%;
  height: 3.5rem;
  margin-bottom: 0;
  padding: 1rem;
  font-size: .875rem;
  font-weight: 400;
  transition: border-color .4s;
}

.text-field-calendar:active, .text-field-calendar:focus {
  border-width: .0625rem;
}

.text-field-calendar::placeholder {
  color: #b5b5b5;
}

.text-field-calendar.white {
  background-color: var(--white);
}

.success-icon {
  width: 3rem;
  margin-bottom: 1rem;
}

.popup-wrapper {
  z-index: 1000;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

.form-wrapper {
  text-wrap: wrap;
  width: 100%;
  margin-bottom: 0;
}

.grid-2x1-40px {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  display: grid;
  position: relative;
}

.grid-2x1-40px.popup {
  grid-template-columns: 1fr;
}

.block-form-wrap {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-direction: column;
  justify-content: space-between;
  max-width: 31.25rem;
  height: 100%;
  display: flex;
}

.success-message {
  background-color: #f5f5f700;
  height: 100%;
  padding: 0;
}

.h-28-regular {
  color: #000;
  text-align: left;
  text-wrap: wrap;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 115%;
}

.h-28-regular.white {
  color: var(--white);
}

.text-block-error-message {
  color: #00ade5;
  text-transform: none;
  height: 1.25rem;
  font-size: .875rem;
  font-style: normal;
  text-decoration: none;
}

.text-block-error-message.white {
  color: var(--white);
}

.div-block-popup {
  z-index: 2;
  background-color: #f5f5f7;
  background-image: none;
  border-radius: 1.875rem;
  justify-content: space-between;
  min-width: 32rem;
  max-width: 70rem;
  margin: auto;
  padding: 2.5rem;
  display: flex;
  position: relative;
  inset: auto;
  overflow: visible;
}

.div-block-popup.black {
  background-color: var(--white-10);
  color: var(--text-dark-grey);
}

.form-block-text {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  display: flex;
}

.heading-28 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 135%;
}

.heading-28.white {
  color: var(--white);
}

.form-calendar {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  flex-direction: column;
  font-size: 1rem;
  display: flex;
}

.submit-button {
  background-color: var(--text-dark);
  color: #fff;
  text-align: center;
  cursor: pointer;
  border: 1px solid #00ade5;
  border-radius: 1.25rem;
  justify-content: center;
  align-items: center;
  max-height: 3.5rem;
  padding: 1rem 1.75rem;
  line-height: 135%;
  transition: all .3s;
  display: flex;
}

.submit-button:hover {
  color: #00ade5;
  background-color: #0000;
}

.submit-button.gold {
  border-color: var(--gold);
  background-color: var(--gold);
}

.submit-button.gold:hover {
  background-color: var(--black);
  color: var(--white);
}

.submit-button.dark-grey {
  border-color: var(--white-10);
  background-color: var(--white-10);
}

.submit-button.dark-grey:hover {
  border-color: var(--text-dark-grey);
  background-color: var(--text-dark-grey);
  color: var(--white);
}

.error-message {
  opacity: .5;
  color: red;
  text-align: center;
  background-color: #0000;
  margin-top: .5rem;
  padding: 0;
  font-size: .75rem;
}

.success-message-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  color: #00ade5;
  text-align: left;
  background-color: #f5f5f7;
  border: .0625rem #00ade5;
  border-radius: 1rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 15rem;
  padding: 1rem;
  display: flex;
}

.success-message-wrapper.transparent {
  color: var(--gold);
  background-color: #0000;
}

.success-message-wrapper.transparent.grey {
  color: var(--mid-white);
}

.paragraph-stolzl-regular {
  font-size: 1rem;
  line-height: 135%;
}

.left-side {
  flex-flow: column;
  padding-bottom: 2rem;
  display: flex;
}

.left-side.custom {
  padding-right: 1.5rem;
}

.left-side.custom._w-380 {
  width: 23.75rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.mob-footer {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  display: none;
}

.logo-96px {
  max-width: 6rem;
}

.logo-96px.op-0 {
  opacity: 0;
}

.flex-v-48 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.grid-3x3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.grid-3x3.h-full {
  height: 100%;
}

.grid-3x3.z-1 {
  z-index: 1;
  color: var(--white);
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.grid-3x3.is-half {
  height: 50%;
}

.main-footer {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  width: 100%;
  padding-bottom: 1.5rem;
  display: flex;
}

.div-block {
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.flex-h-48 {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.flex-h-48.h-full {
  height: 100%;
}

.flex-h-48.z-1 {
  z-index: 1;
  color: var(--white);
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.heading-29 {
  font-weight: 600;
}

.bg-video {
  z-index: 1111;
  width: 100vw;
  height: 100vh;
  display: none;
  position: absolute;
  inset: 0%;
}

.eoi-popup {
  z-index: 1000;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

.close-popup-block-eoi {
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #000c;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hover-link {
  font-weight: 500;
  transition: opacity .3s;
}

.hover-link:hover {
  opacity: .75;
}

.dropdown-lang {
  background-color: #0000;
  margin-bottom: -4rem;
  margin-left: -2rem;
  margin-right: -2rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  text-decoration: none;
  display: block;
  position: absolute;
  inset: 1rem -7rem auto auto;
}

.lang-wrap {
  grid-column-gap: .3125rem;
  grid-row-gap: .3125rem;
  color: #6d6e70;
  background-color: #0000;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: -2rem;
  margin-left: -2rem;
  margin-right: -2rem;
  padding: 0 2rem 2rem;
  font-size: .875rem;
  display: flex;
}

.lang-wrap.w--open {
  color: #464646;
  border-radius: .9375rem .9375rem 0 0;
}

.lang-text {
  color: #333;
  margin: 0;
  line-height: 120%;
  position: static;
}

.lang-arrow {
  margin: 0;
  font-size: .6rem;
  line-height: 110%;
  position: static;
}

.dropdown-lang-list-wrap {
  color: #0000;
  background-color: #fff;
  border-radius: .625rem;
  width: 6rem;
  margin-top: 1rem;
  font-size: .75rem;
  line-height: 110%;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 .5rem 1rem #0003;
}

.list-item {
  grid-column-gap: .3125rem;
  grid-row-gap: .3125rem;
  color: #6d6e70;
  flex-flow: row;
  width: 100%;
  padding: .5rem;
  transition: background-color .4s;
  display: flex;
}

.list-item:hover {
  color: #1eade5;
  background-color: #b5b5b51a;
}

.flex-h-5 {
  grid-column-gap: .3125rem;
  grid-row-gap: .3125rem;
  color: #6d6e70;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.lang-flag {
  object-fit: scale-down;
  width: 1.25rem;
  height: 1.25rem;
}

.weight-400 {
  font-weight: 400;
}

.dropdown-lang-2, .dropdown-lang-3 {
  background-color: #0000;
  margin-bottom: -4rem;
  margin-left: -2rem;
  margin-right: -2rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  text-decoration: none;
  display: block;
  position: absolute;
  inset: 1rem -7rem auto auto;
}

.dropdown-lang-4 {
  background-color: #0000;
  margin-bottom: -4rem;
  margin-left: -2rem;
  margin-right: -2rem;
  padding-bottom: 4rem;
  padding-left: 2rem;
  padding-right: 2rem;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 1rem -6rem auto auto;
}

.dropdown-lang-4.ar {
  inset: 1rem auto auto -6rem;
}

.dropdown-lang-list-wrap-2 {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  color: #0000;
  background-color: #fff;
  border-radius: .625rem;
  margin-top: 1rem;
  font-size: .75rem;
  line-height: 110%;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 .5rem 1rem #0003;
}

.dropdown-lang-list-wrap-2.w--open {
  flex-flow: column;
  padding-top: .625rem;
  padding-bottom: .625rem;
  padding-left: .625rem;
  display: flex;
}

.flex-h-5-2 {
  grid-column-gap: .3125rem;
  grid-row-gap: .3125rem;
  color: #6d6e70;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.ar {
  direction: rtl;
  font-family: Notosansarabic, Arial, sans-serif;
}

.dropdown-lang-projects {
  border-radius: 1rem;
  margin-left: -2rem;
  margin-right: -2rem;
  padding: 1rem 2rem;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 1rem auto auto 1rem;
}

.dropdown-lang-projects.ar {
  inset: 1rem auto auto -6rem;
}

.download-popup {
  z-index: 1000;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

.close-popup-block--download {
  z-index: 1;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #000c;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.download-popup-sheet {
  z-index: 1000;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: visible;
}

.text-gold {
  color: var(--gold);
}

.div-block-2 {
  z-index: 11111;
  background-color: #fff;
  position: fixed;
  inset: 0%;
}

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

.text-size-34 {
  font-size: 2.125rem;
  line-height: 114%;
}

.text-size-34.max-w-280 {
  letter-spacing: -.02rem;
  max-width: 18rem;
}

.text-size-34.max-w-280.dark {
  color: #2e3037;
}

.logo-166px {
  max-width: 7.125rem;
  max-height: 4.875rem;
}

.logo-166px.op-0 {
  opacity: 0;
}

.logo-166px.vista {
  width: auto;
}

.images-logo {
  width: 14.625rem;
  max-width: none;
}

.code-embed {
  color: #434343b3;
  font-size: .875rem;
  line-height: 131%;
}

.code-embed.white {
  color: var(--white-70);
}

.code-embed-2 {
  color: #434343b3;
  font-size: .875rem;
  line-height: 131%;
}

.code-embed-2.white {
  color: var(--white-70);
}

.bottom-text {
  color: #434343b3;
  font-size: .875rem;
  line-height: 131%;
}

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

.gradient {
  background-image: linear-gradient(#20202000, #2020208c 90%);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

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

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

@media screen and (max-width: 991px) {
  .flex-h-0.h-full.column {
    flex-flow: column;
    height: auto;
  }

  .flex-v-16.mob-hide.flex-v-32 {
    display: none;
  }

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

  .nav-menu {
    background-color: #0000;
  }

  .menu-btn {
    padding: 1rem;
  }

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

  .flex-v-70.pad-top {
    grid-column-gap: 24rem;
    grid-row-gap: 24rem;
  }

  .flex-v-70.pad-top.wrap._1.project-mob.border-b {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    border-bottom-style: none;
    flex-flow: row;
    justify-content: flex-start;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .button-transp.dark-grey {
    width: auto;
    margin-left: auto;
    padding: 1rem;
  }

  .flex-h-20 {
    flex-flow: column;
  }

  .flex-h-20.footer-bottom {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 95vw;
  }

  .content._600px-h.grid {
    grid-template-rows: 15rem 15rem 15rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 15rem;
  }

  .text-field-calendar {
    background-color: #fff;
    width: 100%;
    max-width: none;
    height: 3rem;
    padding-top: 0;
    padding-bottom: 0;
  }

  .grid-2x1-40px {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    grid-template-columns: 1fr;
  }

  .grid-2x1-40px.popup {
    grid-template-columns: 1.25fr;
  }

  .block-form-wrap {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    max-width: none;
  }

  .text-block-error-message {
    height: 1.25rem;
    font-size: .625rem;
  }

  .div-block-popup {
    border-radius: 1.25rem;
    width: 70%;
    max-width: none;
    padding: 1.25rem;
  }

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

  .submit-button {
    max-width: none;
    height: 3rem;
    padding-top: 0;
    padding-bottom: 0;
    font-size: .88rem;
  }

  .error-message {
    height: 1.25rem;
  }

  .success-message-wrapper {
    padding: 1.25rem;
  }

  .paragraph-stolzl-regular {
    font-size: 1rem;
  }

  .left-side.custom._w-380 {
    width: auto;
    padding: .75rem;
  }

  .mob-footer.tablet-visible {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    background-color: var(--white);
    padding: 2.5rem .75rem;
    display: flex;
  }

  .dropdown-lang-list-wrap, .dropdown-lang-list-wrap-2 {
    margin-top: 2rem;
    inset: 0% 0% auto auto;
  }

  .logo-166px.vista, .images-logo.vista {
    width: auto;
    max-height: 3.125rem;
  }

  .code-embed-3, .code-embed-4 {
    color: #434343b3;
    font-size: .875rem;
    line-height: 131%;
  }

  .button-wrapper {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .section {
    height: auto;
  }

  .container {
    padding-left: 0;
  }

  .container.main-hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .container.full {
    height: auto;
    padding-bottom: 4.375rem;
  }

  .container.full.white {
    padding-bottom: 0;
  }

  .flex-h-0.h-full {
    flex-flow: column;
  }

  .flex-v-10.mob-center {
    text-align: center;
  }

  .flex-v-16.mob-hide {
    display: none;
  }

  .flex-v-16.custom {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
  }

  .flex-v-70.pad-top {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem .75rem;
  }

  .flex-v-70.pad-top.wrap {
    flex-flow: wrap;
  }

  .flex-v-70.pad-top.wrap._1 {
    flex-flow: row;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .flex-v-70.pad-top.wrap._1.project-mob {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-right: .75rem;
  }

  .flex-v-70.pad-top.wrap._1.custom {
    padding-right: .75rem;
    display: flex;
  }

  .logo-img {
    order: -1;
    max-width: 4.8125rem;
  }

  .button-transp {
    white-space: nowrap;
    flex: 1;
    padding-left: 3.25rem;
    padding-right: 3.25rem;
    font-size: .85em;
  }

  .button-transp.blue.desk-hide {
    width: 80%;
    display: flex;
  }

  .button-transp.blue.mob-hide {
    display: none;
  }

  .button-transp.grey, .button-transp.gold {
    max-height: 3.125rem;
  }

  .button-transp.dark-grey {
    flex: 0 auto;
  }

  .flex-h-22.mob-40 {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }

  .flex-h-22.mob-40.column {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
  }

  .flex-h-22.mob-40.gap-22 {
    grid-column-gap: 1.375rem;
    grid-row-gap: 1.375rem;
  }

  .flex-v-24 {
    flex: 1;
  }

  .flex-v-24.center {
    flex-flow: row;
  }

  .flex-v-24.center.mob-v._1 {
    justify-content: space-between;
    align-items: center;
    display: block;
  }

  .line {
    display: none;
  }

  .content._600px-h.grid {
    display: flex;
  }

  .card {
    height: 8.4375rem;
  }

  .card.max-w-33 {
    max-width: none;
  }

  .card.span-2, .card._w-140 {
    height: 8.75rem;
  }

  .filter {
    background-image: linear-gradient(#20202000, #2020208c 90%);
  }

  .row {
    flex-flow: column;
    height: auto;
  }

  .row.custom {
    display: flex;
  }

  .close-cross-img {
    top: -4rem;
    right: 0;
  }

  .block-form-wrap {
    width: 100%;
  }

  .text-block-error-message {
    font-size: .625rem;
  }

  .div-block-popup {
    width: 90vw;
  }

  .div-block-popup.black {
    color: var(--text-dark-grey);
  }

  .heading-28 {
    font-size: 1.25rem;
  }

  .left-side {
    padding-bottom: 0;
  }

  .left-side.custom {
    padding-right: 0;
  }

  .mob-footer {
    justify-content: flex-start;
    align-items: center;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
    display: flex;
  }

  .mob-footer.tablet-visible {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .logo-96px {
    max-width: 4.8125rem;
  }

  .grid-3x3 {
    flex-flow: column;
    grid-template-columns: 1fr;
    height: auto;
  }

  .main-footer {
    display: none;
  }

  .flex-h-48.h-full {
    flex-flow: column;
  }

  .heading-29 {
    line-height: 100%;
  }

  .logo-166px {
    max-width: 4.8125rem;
  }

  .images-logo {
    width: auto;
    max-width: 4.125rem;
  }

  .bottom-text {
    font-size: 1rem;
  }

  .bottom-text.font-size-14 {
    text-align: left;
    font-size: .875rem;
  }

  .bottom-text.white, .code-embed-3 {
    color: var(--white-70);
  }

  .code-embed-3.grey {
    color: #434343b3;
  }

  .code-embed-4 {
    color: var(--white-70);
  }

  .code-embed-4.grey {
    color: #434343b3;
  }

  .button-wrapper {
    border-bottom: 1px solid #4343431a;
    width: 100%;
    padding-bottom: 2rem;
    display: block;
  }
}

@media screen and (max-width: 479px) {
  .container {
    max-width: none;
  }

  .container.ar {
    padding-right: 0;
  }

  .container.full {
    height: auto;
  }

  .flex-h-0.mob-v {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    align-items: stretch;
  }

  .flex-v-10.mob-center {
    align-items: center;
    max-width: 90vw;
  }

  .flex-v-10.mob-center.flex-v-24 {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .flex-v-70.pad-top, .flex-v-70.pad-top.wrap {
    flex-flow: column;
  }

  .flex-v-70.pad-top.wrap._1 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
  }

  .flex-v-70.pad-top.wrap._1.project-mob {
    flex-flow: row;
  }

  .flex-v-70.pad-top.ar {
    flex-flow: column;
    width: auto;
    padding-right: .75rem;
  }

  .logo-img {
    max-width: 6rem;
  }

  .logo-img._1 {
    max-width: 7rem;
  }

  .button-transp {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .flex-h-20.footer-bottom {
    width: 90vw;
  }

  .flex-h-22.mob-40.ru {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    flex-flow: column;
  }

  .flex-v-24 {
    width: 100%;
  }

  .flex-v-24.center {
    order: 1;
  }

  .flex-v-24.center.mob-v {
    flex-flow: column;
  }

  .flex-v-24.center.mob-v._1 {
    order: -1;
  }

  .content._600px-h {
    max-height: none;
    margin-top: 0;
    overflow: hidden;
  }

  .text-field-calendar {
    width: 100%;
  }

  .grid-2x1-40px {
    display: block;
  }

  .block-form-wrap {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .div-block-popup {
    min-width: auto;
  }

  .success-message-wrapper {
    min-height: 15rem;
  }

  .left-side {
    padding-bottom: 0;
  }

  .logo-96px {
    max-width: 11rem;
  }

  .logo-96px.op-0 {
    display: none;
  }

  .heading-29 {
    line-height: 100%;
  }

  .heading-29.ru {
    font-size: 2.1rem;
  }

  .dropdown-lang {
    top: 1rem;
    right: 1rem;
  }

  .lang-wrap {
    border-style: none;
  }

  .flex-h-5 {
    grid-column-gap: .3125rem;
    grid-row-gap: .3125rem;
  }

  .dropdown-lang-2, .dropdown-lang-3 {
    top: 1rem;
    right: 1rem;
  }

  .dropdown-lang-4 {
    inset: -3rem 1rem auto auto;
  }

  .dropdown-lang-4.ar {
    inset: 0% auto auto 1rem;
  }

  .dropdown-lang-list-wrap-2.w--open {
    padding-right: .65rem;
  }

  .flex-h-5-2 {
    grid-column-gap: .3125rem;
    grid-row-gap: .3125rem;
  }

  .dropdown-lang-projects {
    inset: 0% 2.7rem auto auto;
  }

  .dropdown-lang-projects.ar {
    inset: 0% auto auto 1rem;
  }

  .logo-166px {
    order: -1;
    max-width: 5.125rem;
  }

  .logo-166px.op-0 {
    display: none;
  }
}

#w-node-_71ab2c37-29b6-507a-f814-f74829689fdf-55d50db2, #w-node-_71ab2c37-29b6-507a-f814-f74829689fdf-ce4d849a, #w-node-b96b8993-b5d3-1297-5fb1-d485c937c206-ce4d849a, #w-node-_014e1da3-c8f7-c92c-65e1-fad7b41e6203-ce4d849a, #w-node-_5b97efa4-bba4-effd-519f-61d1d26bdb32-ce4d849a, #w-node-_71ab2c37-29b6-507a-f814-f74829689fdf-1195ad3c, #w-node-e50180fd-1ca7-e494-7382-61127e695b71-1195ad3c, #w-node-_6338655d-f5c1-cdd6-e032-525f84df6aa8-1195ad3c, #w-node-_71ab2c37-29b6-507a-f814-f74829689fdf-2aefff27, #w-node-_71ab2c37-29b6-507a-f814-f74829689fdf-33b34989, #w-node-_71ab2c37-29b6-507a-f814-f74829689fdf-28a16e60, #w-node-b96b8993-b5d3-1297-5fb1-d485c937c206-73618865, #w-node-_003afa4b-a0d8-7587-6a0a-c7aa5839b494-73618865, #w-node-b96b8993-b5d3-1297-5fb1-d485c937c206-390fc006, #w-node-_6cea1466-3f84-8820-47d8-ec6921ebfa1f-390fc006, #w-node-_7f2d64b1-2f99-cad4-f020-a261f19394a2-a5116036, #w-node-_7a2ecd2c-4d66-d6bb-ddf0-76bc1684aff8-8306e4d2, #w-node-_71ab2c37-29b6-507a-f814-f74829689fdf-bbc9f77e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_755afa1d-8338-6ffa-8135-252865560e8d-5bfb0ade, #w-node-_755afa1d-8338-6ffa-8135-252865560e94-5bfb0ade {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_755afa1d-8338-6ffa-8135-252865560ef1-5bfb0ade {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_71ab2c37-29b6-507a-f814-f74829689fdf-55d50db2, #w-node-_71ab2c37-29b6-507a-f814-f74829689fdf-ce4d849a, #w-node-b96b8993-b5d3-1297-5fb1-d485c937c206-ce4d849a, #w-node-_014e1da3-c8f7-c92c-65e1-fad7b41e6203-ce4d849a, #w-node-_5b97efa4-bba4-effd-519f-61d1d26bdb32-ce4d849a, #w-node-_71ab2c37-29b6-507a-f814-f74829689fdf-1195ad3c, #w-node-e50180fd-1ca7-e494-7382-61127e695b71-1195ad3c, #w-node-_6338655d-f5c1-cdd6-e032-525f84df6aa8-1195ad3c, #w-node-_71ab2c37-29b6-507a-f814-f74829689fdf-2aefff27, #w-node-_71ab2c37-29b6-507a-f814-f74829689fdf-33b34989, #w-node-_71ab2c37-29b6-507a-f814-f74829689fdf-28a16e60, #w-node-b96b8993-b5d3-1297-5fb1-d485c937c206-73618865, #w-node-_003afa4b-a0d8-7587-6a0a-c7aa5839b494-73618865, #w-node-b96b8993-b5d3-1297-5fb1-d485c937c206-390fc006, #w-node-_6cea1466-3f84-8820-47d8-ec6921ebfa1f-390fc006, #w-node-_7f2d64b1-2f99-cad4-f020-a261f19394a2-a5116036, #w-node-_7a2ecd2c-4d66-d6bb-ddf0-76bc1684aff8-8306e4d2, #w-node-_71ab2c37-29b6-507a-f814-f74829689fdf-bbc9f77e {
    grid-column: span 2 / span 2;
  }

  #w-node-_755afa1d-8338-6ffa-8135-252865560e8d-5bfb0ade, #w-node-_755afa1d-8338-6ffa-8135-252865560e94-5bfb0ade {
    grid-column: span 1 / span 1;
  }

  #w-node-_755afa1d-8338-6ffa-8135-252865560ef1-5bfb0ade {
    grid-column: span 2 / span 2;
  }
}


@font-face {
  font-family: 'Notosansarabic';
  src: url('../fonts/NotoSansArabic-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosansarabic';
  src: url('../fonts/NotoSansArabic-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosansarabic';
  src: url('../fonts/NotoSansArabic-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosansarabic';
  src: url('../fonts/NotoSansArabic-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosansarabic';
  src: url('../fonts/NotoSansArabic-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Notosansarabic';
  src: url('../fonts/NotoSansArabic-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Display';
  src: url('../fonts/SF-Pro-Display-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Display';
  src: url('../fonts/SF-Pro-Display-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Display';
  src: url('../fonts/SF-Pro-Display-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sf Pro Display';
  src: url('../fonts/SF-Pro-Display-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}