:root {
  --body-color: black;
  --cta-color: #911028;
  --white: white;
  --border-color: rgba(18, 4, 44, .15);
  --dark-black: black;
  --light-black: black;
  --black: black;
  --indigo: #ea6a1f;
  --black-2: #2a2536;
  --white-smoke: #f5f4f7;
  --indigo-2: #3d1091;
  --ghost-white: #eceaf0;
  --dark-khaki: #b9ba9c;
  --gainsboro: #dbdadf;
  --inactive-link: rgba(18, 4, 44, .4);
  --silver: #d1c5c0;
  --thistle: #cbc0df;
  --dark-grey: #b6aeaa;
}

.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 {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

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

body {
  color: var(--body-color);
  font-family: Space Grotesk, sans-serif;
  font-size: 1vw;
  line-height: 1.2em;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5em;
  font-weight: 600;
  line-height: 1.1em;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4em;
  font-weight: 500;
  line-height: 1.1em;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3em;
  font-weight: 600;
  line-height: 1.1em;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5em;
  font-weight: 600;
  line-height: 1.1em;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.1em;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.8em;
  font-weight: 600;
  line-height: 1.1em;
}

p {
  margin-bottom: 0;
  font-size: 1.1em;
  line-height: 1.5em;
}

a {
  color: var(--cta-color);
  text-decoration: none;
}

ul, ol {
  margin-top: 2em;
  margin-bottom: 2em;
  padding-left: 3em;
}

li {
  margin-bottom: .7em;
  font-size: 1.3em;
  line-height: 1.2em;
}

strong {
  font-weight: 600;
}

blockquote {
  color: #0c389f;
  border-left: 5px solid #064dfa;
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding: 1em 1em 1em 1.5em;
  font-size: 1.3em;
  line-height: 1.5em;
}

.section {
  z-index: 10;
  background-color: var(--white);
  direction: rtl;
  font-family: URWGeometric, sans-serif;
  position: relative;
  overflow: hidden;
}

.section.page-hero-sec {
  z-index: 20;
  overflow: visible;
}

.section.overflow-visible {
  overflow: visible;
}

.section.overflow-visible.culture {
  margin-top: 20px;
}

.section.with-bottom-border {
  border-bottom: 1px solid var(--border-color);
}

.section.sticky-sec {
  z-index: 20;
  background-color: var(--dark-black);
  overflow: visible;
}

.section.with-grey-bg {
  background-color: #f3f2f6;
}

.section.with-transparent-bg {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, .5);
}

.section.with-gradient-bg {
  background-image: linear-gradient(45deg, #f2edfc, #e8ebe0);
}

.section.with-gradient-bg.casestudies {
  display: none;
}

.section.with-dark-black-bg {
  background-color: var(--dark-black);
  color: var(--white);
}

.section.with-dark-black-bg.roles {
  background-color: var(--body-color);
  display: block;
}

.section.with-parallax-bg {
  background-image: radial-gradient(circle farthest-side at 100% 100%, rgba(234, 106, 31, .31), rgba(255, 255, 255, 0) 54%), linear-gradient(45deg, #d6d6d0, var(--white));
  overflow: visible;
}

.section.with-gradient-dark-bg {
  background-color: var(--light-black);
  background-image: linear-gradient(20deg, var(--black), #27095d);
  color: var(--white);
  overflow: visible;
}

.section.with-parallax-bg-2 {
  background-image: linear-gradient(to bottom, #212024, var(--indigo));
  overflow: visible;
}

.section.with-blurry-bg {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, .5);
}

.section.in-solutions {
  background-color: var(--dark-black);
  color: var(--white);
}

.section.with-dark-bg-2 {
  background-color: var(--black-2);
  color: var(--white);
  border-bottom: 1px solid #55505e;
  overflow: visible;
}

.section.with-gradient-dark-bg-2 {
  color: var(--white);
  background-color: #000;
  overflow: visible;
}

.section.with-gradient-bg-2 {
  background-image: linear-gradient(to bottom, var(--white), rgba(255, 255, 255, 0)), linear-gradient(45deg, #f2edfc, #e8ebe0);
}

.section.is-service-3 {
  background-color: rgba(0, 0, 0, 0);
  margin-top: -30vh;
}

.section.with-gradient-bg-3 {
  background-image: linear-gradient(to bottom, var(--white), rgba(255, 255, 255, 0) 50%), linear-gradient(45deg, #f2edfc, #e8ebe0);
}

.section.is-overview-section-2 {
  background-color: var(--dark-black);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.section.news {
  margin-top: 0;
  display: none;
}

.section.media {
  display: none;
}

.container {
  z-index: 10;
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8em;
  padding-right: 8em;
  position: relative;
}

.container.in-accordion {
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  padding-left: 5em;
  padding-right: 5em;
  display: flex;
}

.container.is-full-width {
  padding-left: 5em;
  padding-right: 5em;
}

.container.is-full-width.newsletter {
  background-color: var(--indigo);
}

.container.in-hero-7 {
  flex: 1;
  justify-content: center;
  display: flex;
}

.container.in-listing-4 {
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  display: flex;
}

.container.with-bg-light {
  background-color: var(--white-smoke);
  margin-top: 1em;
  margin-bottom: 1em;
}

.container.with-bg-dark {
  background-color: var(--light-black);
  color: var(--white);
}

.container.with-border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.container.is-blog-listing {
  margin-top: -135px;
}

.padding {
  padding: 8em 0;
}

.padding.more-paddings {
  padding-top: 10em;
  padding-bottom: 10em;
}

.padding.with-vertical-flex {
  width: 100%;
  grid-row-gap: 8em;
  flex-direction: column;
  display: flex;
}

.padding.less-paddings {
  padding-top: 4em;
  padding-bottom: 4em;
}

.padding.padding-bottom-0em {
  padding-bottom: 0;
}

.padding.with-border-bottom {
  border-bottom: 1px solid var(--border-color);
}

.padding.padding-top-4em {
  padding-top: 4em;
}

.padding.padding-bottom-2em {
  padding-bottom: 2em;
}

.padding.is-blog-listing-2 {
  padding-top: 4em;
}

.padding.is-blog-listing-3 {
  padding-top: 0;
}

.heading {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5em;
  font-weight: 500;
  line-height: 1.2em;
}

.heading.is-header-5-title {
  color: rgba(255, 255, 255, .85);
  text-align: left;
  margin-bottom: .9em;
  font-family: Tajawal, sans-serif;
  font-size: 4em;
  font-weight: 700;
  line-height: 1.2em;
  display: inline;
}

.heading.is-grid-2-title {
  color: var(--indigo);
  text-align: right;
  font-family: Tajawal, sans-serif;
  font-size: 4em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-grid-8-title-2 {
  color: var(--indigo-2);
  font-size: 5em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-grid-8-title-1 {
  font-family: Gilda Display, sans-serif;
  font-size: 3.6em;
  font-weight: 400;
  line-height: 1em;
}

.heading.is-header-8-title {
  color: var(--white);
}

.heading.is-header-7-title {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-family: Tajawal, sans-serif;
  font-size: 6em;
  font-weight: 400;
  line-height: 1.1em;
}

.heading.is-listing-8-title {
  color: var(--indigo);
  font-family: Tajawal, sans-serif;
  font-size: 4em;
  font-weight: 600;
  line-height: 1.2em;
}

.heading.is-header-3-title-1 {
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: .5em;
  font-family: Gilda Display, sans-serif;
  font-size: 6em;
  font-weight: 400;
  line-height: 1.1em;
}

.heading.is-title-3 {
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.1em;
}

.heading.is-title-4 {
  color: var(--white);
  text-align: center;
  letter-spacing: -.03em;
  text-transform: uppercase;
  font-family: Gilda Display, sans-serif;
  font-size: 10em;
  font-weight: 400;
  line-height: 1em;
}

.heading.is-title-8 {
  letter-spacing: -.04em;
  font-size: 9em;
  font-weight: 700;
  line-height: 1em;
}

.heading.is-title-9 {
  letter-spacing: -.04em;
  font-size: 5em;
  font-weight: 600;
  line-height: 1em;
}

.heading.is-features-title {
  letter-spacing: -.05em;
  font-weight: 600;
  line-height: 1em;
}

.heading.in-listing-6-title {
  color: var(--white);
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.1em;
}

.heading.is-large-title-1 {
  color: var(--indigo);
  text-align: center;
  font-family: Tajawal, sans-serif;
  font-size: 6em;
  font-weight: 600;
  line-height: 1.1em;
}

.heading.is-gallery-title {
  text-align: center;
  letter-spacing: -.03em;
  font-size: 6em;
  font-weight: 600;
  line-height: 1em;
}

.heading.is-grid-5-title-2 {
  letter-spacing: -.04em;
  font-size: 2.5em;
  font-weight: 300;
  line-height: 1.5em;
}

.heading.is-title-11 {
  max-width: 11em;
  color: var(--indigo);
  text-align: center;
  margin-bottom: 1.3em;
  margin-left: auto;
  margin-right: auto;
  font-size: 6em;
  font-weight: 400;
  line-height: 1em;
}

.heading.is-large-title-2 {
  color: var(--indigo);
  text-align: center;
  font-size: 6em;
  font-weight: 600;
  line-height: 1.1em;
}

.heading.is-large-title-3 {
  color: var(--white);
  text-align: center;
  font-size: 7.5em;
  font-weight: 600;
  line-height: .9em;
}

.heading.is-title-12 {
  letter-spacing: -.04em;
  font-size: 4.4em;
  font-weight: 700;
  line-height: 1.2em;
}

.heading.is-title-13 {
  font-family: Tajawal, sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.5em;
}

.heading.is-title-13.white {
  color: var(--white-smoke);
  text-align: center;
  margin-top: .2em;
  font-weight: 400;
}

.heading.is-large-title-2 {
  color: var(--white);
  text-align: center;
  font-size: 6em;
  font-weight: 600;
  line-height: 1.1em;
}

.heading.is-contact-title-1 {
  text-align: center;
  letter-spacing: -.03em;
  margin-bottom: 1em;
  font-family: Tajawal, sans-serif;
  font-size: 5em;
  font-weight: 600;
  line-height: 1em;
}

.heading.is-header-2-title {
  z-index: 10;
  font-family: Gilda Display, sans-serif;
  font-size: 4.5em;
  font-weight: 400;
  position: relative;
}

.heading.is-ui-kit-title {
  font-size: 6em;
  font-weight: 500;
  line-height: 1em;
}

.heading.is-title-14 {
  font-weight: 500;
}

.heading.is-listing-7-title {
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.1em;
}

.heading.is-header-1-title-1 {
  font-size: 4em;
  font-weight: 500;
  line-height: 1.1em;
}

.heading.is-header-9-title {
  color: var(--indigo);
  text-transform: uppercase;
  font-family: Gilda Display, sans-serif;
  font-size: 6em;
  font-weight: 400;
  line-height: 1em;
}

.heading.is-header-10-title {
  color: var(--white);
  margin-top: .5em;
  margin-bottom: .5em;
}

.heading.is-grid-3-title-1 {
  color: var(--indigo);
  text-transform: uppercase;
  font-family: Gilda Display, sans-serif;
  font-size: 6em;
  font-weight: 400;
  line-height: 1em;
}

.heading.is-grid-1-title-1 {
  color: var(--indigo);
  text-transform: uppercase;
  font-family: Gilda Display, sans-serif;
  font-size: 4.6em;
  font-weight: 400;
  line-height: 1.1em;
}

.heading.is-grid-5-title {
  font-family: Tajawal, sans-serif;
  font-size: 2.6em;
  font-weight: 400;
  line-height: 1.6em;
}

.heading.is-grid-7-title {
  color: var(--indigo);
  text-transform: uppercase;
  font-family: Gilda Display, sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.3em;
}

.heading.is-title-15 {
  max-width: 9.4em;
  color: var(--white);
  text-align: center;
  font-family: Tajawal, sans-serif;
  font-size: 3.7em;
  font-weight: 500;
  line-height: 1.3em;
}

.heading.is-listing-9-title {
  max-width: 10em;
  margin-bottom: auto;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.2em;
}

.heading.is-header-11-title {
  font-size: 4em;
  font-weight: 500;
  line-height: 1.1em;
}

.heading.is-grid-4-title {
  text-align: right;
  font-family: Tajawal, sans-serif;
  font-size: 3.6em;
  font-weight: 500;
  line-height: 1em;
}

.heading.is-title-1 {
  text-align: center;
  font-family: Tajawal, sans-serif;
  font-size: 4em;
  font-weight: 500;
  line-height: 1.1em;
}

.heading.is-header-3-title-2 {
  color: var(--white);
  letter-spacing: -.04em;
  margin-bottom: .5em;
  font-size: 10em;
  font-weight: 600;
  line-height: 1em;
}

.heading.is-header-12-title {
  color: var(--indigo);
  letter-spacing: -.04em;
  text-indent: -.04em;
  font-family: URWGeometric, sans-serif;
  font-size: 4.5em;
  font-weight: 700;
  line-height: 1em;
}

.heading.is-listing-10-title {
  max-width: 10em;
  margin-bottom: auto;
  font-family: URWGeometric, sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-grid-3-title-2 {
  color: var(--indigo);
  font-size: 4.5em;
  font-weight: 500;
  line-height: 1em;
}

.heading.is-service-title-1 {
  text-align: center;
  letter-spacing: -.04em;
  font-size: 4em;
  font-weight: 600;
  line-height: 1em;
}

.heading.is-client-title {
  color: var(--white);
  font-size: 6em;
  font-weight: 500;
  line-height: 1.3em;
}

.heading.is-grid-1-title-2 {
  letter-spacing: -.04em;
  font-size: 3.9em;
  font-weight: 500;
  line-height: 1.3em;
}

.heading.is-header-1-title-2 {
  color: var(--white);
  font-size: 6em;
  font-weight: 600;
  line-height: 1em;
}

.heading.is-feature-title-1 {
  letter-spacing: -.04em;
  margin-bottom: 1.2em;
  font-size: 4em;
  font-weight: 500;
  line-height: 1.1em;
}

.heading.is-case-title-1 {
  color: var(--white);
  letter-spacing: -.04em;
  text-indent: -.04em;
  font-size: 11vw;
}

.heading.is-other-cases-title {
  text-align: center;
  margin-bottom: .8em;
  font-size: 6em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-case-study-title-1 {
  letter-spacing: -.04em;
  text-indent: -.04em;
  font-size: 7em;
  font-weight: 700;
  line-height: 1em;
}

.heading.is-header-8-title-2 {
  color: var(--white);
  font-size: 7em;
  line-height: 1em;
}

.heading.is-blog-title {
  letter-spacing: -.04em;
  text-indent: -.04em;
  font-family: URWGeometric, sans-serif;
  font-size: 5em;
  font-weight: 700;
  line-height: 1em;
}

.heading.is-header-3-title-3 {
  color: var(--white);
  letter-spacing: -.04em;
  text-indent: -.04em;
  font-size: 9em;
  font-weight: 600;
  line-height: 1em;
}

.heading.is-study-title-1 {
  text-align: center;
  margin-bottom: 1em;
  font-size: 6em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-header-13-title {
  letter-spacing: -.04em;
  text-indent: -.04em;
  margin-bottom: .6em;
  font-size: 7em;
  font-weight: 700;
  line-height: 1em;
}

.heading.is-tab-title-1 {
  letter-spacing: -.03em;
  margin-bottom: 1em;
  font-size: 5em;
  font-weight: 600;
  line-height: 1em;
}

.heading.is-tab-title-1.is-center {
  text-align: center;
  font-family: Tajawal, sans-serif;
}

.heading.is-tab-title-1.is-center.roles {
  color: #000;
}

.heading.is-404-title {
  letter-spacing: -.04em;
  font-size: 6.4em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-overview-title-3 {
  text-align: center;
  font-size: 6em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-overview-title-2 {
  letter-spacing: -.04em;
  margin-bottom: .3em;
  font-size: 5em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-overview-title-1 {
  color: var(--white);
  font-size: 4em;
  font-weight: 400;
}

.heading.is-solution-title-1 {
  letter-spacing: -.04em;
  font-size: 6.6em;
  font-weight: 700;
}

.heading.is-overview-title-4 {
  max-width: 10em;
  text-align: center;
  letter-spacing: -.04em;
  font-size: 4em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-overview-title-6 {
  letter-spacing: -.04em;
  margin-bottom: .6em;
  font-size: 4em;
  font-weight: 700;
  line-height: 1em;
}

.heading.is-client-title-1 {
  text-align: center;
  margin-bottom: 1em;
  font-size: 5em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-client-title-2 {
  text-align: center;
  margin-bottom: 1em;
  font-size: 4em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-client-title-3 {
  text-align: center;
  margin-bottom: .3em;
  font-size: 4em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-client-title-4 {
  text-align: center;
  font-size: 5em;
  font-weight: 700;
  line-height: .9em;
}

.heading.is-header-9-title-2 {
  max-width: 5.5em;
  color: var(--indigo);
  text-transform: uppercase;
  font-family: Gilda Display, sans-serif;
  font-size: 6em;
  font-weight: 400;
  line-height: 1em;
}

.heading.is-about-1-title {
  color: var(--white);
  text-align: center;
  letter-spacing: -.03em;
  text-transform: uppercase;
  margin-bottom: .7em;
  font-family: Gilda Display, sans-serif;
  font-size: 10em;
  font-weight: 400;
  line-height: 1em;
}

.heading.is-overview-title-5, .heading.is-case-study-title-3 {
  text-align: center;
  font-size: 6em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-header-14-title {
  color: var(--white);
  margin-top: 0;
  font-family: Tajawal, sans-serif;
  font-size: 6em;
}

.heading.is-header-13-title-2 {
  text-align: center;
  letter-spacing: -.04em;
  text-indent: -.04em;
  margin-bottom: .6em;
  font-size: 7em;
  font-weight: 700;
  line-height: 1em;
}

.heading.is-services-2-title {
  letter-spacing: -.04em;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1em;
}

.heading.is-large-title-2 {
  color: var(--indigo);
  text-align: center;
  font-size: 7em;
  font-weight: 700;
  line-height: 1.1em;
}

.heading.is-contact-title-2 {
  color: var(--white);
  text-align: center;
  font-family: Tajawal, sans-serif;
  font-size: 6em;
  font-weight: 600;
}

.heading.is-review-title-1 {
  color: var(--white);
  color: var(--white);
  text-align: center;
  font-size: 6em;
  font-weight: 600;
}

.heading.is-review-title-2 {
  color: var(--white);
  font-size: 6em;
  font-weight: 600;
}

.heading.is-grid-1-title-1 {
  color: #330b7e;
  text-transform: uppercase;
  color: #330b7e;
  text-transform: uppercase;
  font-family: Gilda Display, sans-serif;
  font-size: 4.6em;
  font-weight: 400;
  line-height: 1.1em;
}

.heading.is-grid-7-title {
  color: var(--indigo);
  text-transform: capitalize;
  font-family: Tajawal, sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.3em;
}

.content-grid-1 {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.circle-background-1 {
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: var(--indigo);
  border-radius: 50%;
  position: absolute;
}

.custom-list-1 {
  max-width: 40em;
}

.list-block {
  z-index: 10;
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 4.5em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.list-block.is-last {
  padding-bottom: 0;
}

.list-block.less-padding {
  direction: rtl;
  padding-bottom: 2em;
}

.list-block.with-animation {
  direction: rtl;
  justify-content: flex-end;
  padding-bottom: 2em;
}

.list-block.in-overview {
  min-height: 11em;
  padding-bottom: 2em;
}

.circle-in-list {
  width: 3em;
  height: 3em;
  border-radius: 50%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-left: 2.5em;
  margin-right: 0;
  display: flex;
  position: relative;
}

.list-content {
  text-align: right;
  padding-top: .6em;
}

.custom-list-icon {
  z-index: 10;
  width: 1.5em;
  height: 1.5em;
  object-fit: contain;
  font-size: 1.4em;
  position: absolute;
}

.list-line {
  width: .2em;
  height: 100%;
  background-color: var(--indigo);
  opacity: .1;
  position: absolute;
  top: .1em;
  left: 1.4em;
}

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

.list-line.is-hide-on-desktop {
  display: none;
}

.list-title {
  color: var(--indigo);
  margin-bottom: .7em;
  font-family: Tajawal, sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2em;
}

.list-title.is-white-color {
  color: var(--white);
  font-family: Tajawal, sans-serif;
}

.list-title.is-smaller {
  font-size: 1.3em;
}

.list-text {
  max-width: 26em;
  font-family: Tajawal, sans-serif;
  font-size: 1.1em;
  line-height: 1.5em;
}

.list-text.with-opacity {
  color: rgba(255, 255, 255, .7);
  font-family: Tajawal, sans-serif;
}

.list-text.in-overview {
  max-width: 20em;
}

.global-styles {
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.empty-state-hidden {
  display: none;
}

.absolute-block {
  z-index: 1;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header-6 {
  z-index: 5;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80vh;
  padding-bottom: 80vh;
  display: flex;
  position: relative;
  overflow: visible;
}

.opacity-70 {
  opacity: .7;
  font-family: Tajawal, sans-serif;
}

.bg-color-for-sticky-sec-1 {
  z-index: 15;
  mix-blend-mode: multiply;
  background-color: rgba(10, 2, 24, .75);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.sticky-100vh-block {
  z-index: 2;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.video-background {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
}

.nav-link {
  z-index: 10;
  color: rgba(255, 255, 255, .8);
  border-top: 1px solid rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 0 1em;
  font-weight: 500;
  transition: border-color .2s, color .2s;
  display: flex;
  position: relative;
  top: -1px;
}

.nav-link:hover {
  border-top-color: var(--white);
  color: #fff;
}

.nav-link.w--current {
  border-top-color: var(--white);
  color: var(--white);
}

.nav-link.is-2nd {
  color: rgba(18, 4, 44, .6);
}

.nav-link.is-2nd:hover {
  border-top-color: var(--body-color);
  color: var(--body-color);
}

.nav-link.is-2nd.w--current {
  border-top-color: var(--body-color);
  color: #12042c;
}

.nav-link.lightmenu {
  color: #222;
}

.cover-image {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.cover-image.is-rounded {
  border-radius: 50%;
}

.cover-image.is-parallax {
  height: 120%;
  top: auto;
  bottom: auto;
}

.cover-image.is-parallax-large {
  height: 100%;
  object-fit: cover;
  top: auto;
  bottom: auto;
}

.cover-image.is-parallax-medium {
  height: 100%;
  top: auto;
  bottom: auto;
}

.brand-slogan {
  opacity: .8;
  color: #fff;
  letter-spacing: .25em;
  font-size: .7em;
  font-weight: 600;
  line-height: 1.1em;
}

.brand-slogan.is-2nd {
  color: rgba(18, 4, 44, .7);
}

.hero-bg-gradient {
  z-index: 7;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 35%, rgba(10, 3, 24, .9));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.hero-socials-list {
  grid-column-gap: 1em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.social-icon {
  z-index: 5;
  width: 1em;
  height: 1em;
  font-size: 1.2em;
  position: relative;
}

.social-icon.footericon {
  filter: invert();
}

.social-link-block {
  width: 6em;
  height: 6em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  display: flex;
  position: relative;
}

._3d-block {
  z-index: 8;
  width: 100%;
  height: 100%;
  perspective: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

._3d-block.is-rounded-5 {
  border-radius: 5px;
}

.image-animation-trigger {
  z-index: 10;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  overflow: hidden;
}

.image-animation-trigger._3d-for-image {
  width: 110%;
  height: 115%;
  position: absolute;
}

.animation-color-bg {
  z-index: 15;
  background-color: var(--white);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.animation-color-bg.is-body-color {
  background-color: var(--body-color);
}

.animation-color-bg.is-indigo {
  background-color: rgba(234, 106, 31, .28);
  display: block;
}

.animation-color-bg.is-gradient-1 {
  background-image: linear-gradient(45deg, #cbc0df, #eff0d4);
}

.animation-color-bg.is-gradient-3 {
  background-image: linear-gradient(135deg, var(--ghost-white), #cbc0df);
}

.animation-color-bg.is-black-light {
  background-color: var(--light-black);
}

.animation-color-bg.is-black {
  background-color: var(--dark-black);
}

.animation-color-bg.is-grey {
  background-color: #d9d7dd;
}

.grid-1-block-1 {
  max-width: 32em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 6em;
}

.form-success-title {
  color: var(--white);
  text-align: center;
  margin-bottom: .3em;
  margin-left: auto;
  margin-right: auto;
  font-size: 5em;
  font-weight: 300;
  line-height: 1.2em;
}

.form-success-message-1 {
  width: 100%;
  background-color: var(--indigo);
  color: var(--white);
  padding: 10em 3em;
}

.form-success-message-1.is-newsletter {
  background-color: var(--light-black);
  padding-top: 2em;
  padding-bottom: 2em;
}

.form-error-link {
  color: #0a223f;
  text-decoration: underline;
}

.form-error-message {
  background-color: #ffccd5;
  border: 1px solid #c9184a;
  padding: 2em;
}

.form-error-paragraph {
  color: #191c1f;
  line-height: 1.6;
}

.newsletter-submit-button {
  min-width: 15em;
  background-color: var(--indigo);
  letter-spacing: .15em;
  text-transform: uppercase;
  background-image: url('../images/east_white_24dp.svg');
  background-position: 85%;
  background-repeat: no-repeat;
  background-size: 1.1em;
  border-radius: 3px;
  padding: 1.4em 3.6em 1.4em 2.3em;
  font-family: Tajawal, sans-serif;
  font-size: 1em;
  font-weight: 500;
  transition: background-position .6s cubic-bezier(.075, .82, .165, 1), background-color .2s;
}

.newsletter-submit-button:hover {
  background-color: var(--body-color);
  background-position: 89%;
}

.newsletter-submit-button.is-2nd {
  background-color: var(--white);
  direction: rtl;
  color: var(--body-color);
  letter-spacing: 0;
  background-image: url('../images/arrow_right_alt_FILL0_wght700_GRAD0_opsz48.svg');
  font-family: Tajawal, sans-serif;
}

.dropdown-link {
  align-self: stretch;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: flex;
  position: static;
}

.dropdown-link.is-contanct-menu-grid {
  padding-top: 0;
  padding-bottom: 0;
}

.dropdown-icon {
  margin: 0 0 0 .5em;
  font-size: 1em;
  position: relative;
}

.dropdown-list {
  display: none;
  top: 5em;
}

.dropdown-list.w--open {
  background-color: var(--white);
  top: 5.9em;
  left: 0;
  right: 0;
  box-shadow: 0 80px 100px -40px rgba(14, 19, 31, .7);
}

.dropdown-list.is-contacts {
  display: none;
}

.dropdown-list.services {
  display: block;
  overflow: visible;
}

.menu-dropdown-title {
  color: #1b243a;
  margin-right: 1em;
  font-size: 1.9em;
}

.menu-dropdown-title.is-contant-title {
  min-width: 8em;
  margin-bottom: 0;
  font-family: URWGeometric, sans-serif;
  font-size: 1.2em;
  font-weight: 500;
}

.social-link-circle {
  z-index: 1;
  width: 130%;
  height: 130%;
  border: .2em solid var(--body-color);
  border-radius: 50%;
  display: none;
  position: absolute;
}

.social-link-circle.is-white {
  border-color: rgba(255, 255, 255, .5);
}

.contact-menu-grid-subtitle {
  max-width: 30em;
  opacity: .9;
  color: #1b243a;
  font-family: URWGeometric, sans-serif;
  font-size: 1.2em;
  line-height: 1.3em;
}

.gallery-flex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.gallery-flex.with-margin {
  margin-bottom: 2.5em;
}

.newsletter-grid {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
}

.newsletter-field {
  z-index: 5;
  min-height: 3em;
  color: #1b243a;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  margin-bottom: 0;
  padding: .5em 0;
  font-family: URWGeometric, sans-serif;
  font-size: 1.4em;
  line-height: 1.1em;
  transition: border-color .5s;
  position: relative;
}

.newsletter-field:focus {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(255, 255, 255, 0);
}

.newsletter-field:focus-visible {
  border-color: rgba(255, 255, 255, 0);
}

.newsletter-field[data-wf-focus-visible] {
  border-color: rgba(255, 255, 255, 0);
}

.newsletter-field::-ms-input-placeholder {
  color: rgba(27, 36, 58, .45);
  font-size: .9em;
}

.newsletter-field::placeholder {
  color: rgba(27, 36, 58, .45);
  font-size: .9em;
}

.newsletter-field.is-2nd {
  color: var(--white);
  font-family: URWGeometric, sans-serif;
}

.newsletter-field.is-2nd::-ms-input-placeholder {
  color: rgba(255, 255, 255, .5);
}

.newsletter-field.is-2nd::placeholder {
  color: rgba(255, 255, 255, .5);
}

.newsletter-form {
  z-index: 10;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(0, 0, 0, 0);
  flex: none;
  margin-bottom: 0;
  padding: 1.5em;
  transition: background-color .2s, border-color .2s;
  position: relative;
}

.newsletter-form:hover {
  border-bottom-color: var(--body-color);
  background-color: var(--white);
}

.newsletter-form.is-2nd {
  border-bottom-color: rgba(255, 255, 255, .2);
}

.newsletter-form.is-2nd:hover {
  background-color: rgba(255, 255, 255, .05);
  border-bottom-color: rgba(255, 255, 255, .7);
}

.newsletter-form-inner {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.newsletter-block {
  width: 100%;
  border: 1px solid rgba(18, 4, 44, .35);
  padding: .5em;
  transition: border-color .2s;
  position: relative;
}

.newsletter-block:hover {
  border-color: rgba(18, 4, 44, .06);
}

.newsletter-block.is-2nd {
  border-color: rgba(255, 255, 255, .2);
}

.newsletter-title-block {
  align-items: center;
  display: flex;
}

.newsletter-image {
  width: 1em;
  height: 1em;
  object-fit: cover;
  border-radius: 50%;
  flex: none;
  font-size: 6.3em;
  position: relative;
}

.newsletter-image.is-2nd {
  left: -.5em;
}

.brand-name {
  letter-spacing: .5em;
  text-indent: .5em;
  font-weight: 700;
}

.brand-name.is-2nd {
  color: var(--body-color);
}

.contact-menu-grid {
  z-index: 10;
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  border-bottom: 1px solid var(--border-color);
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: start;
  padding-top: 1.6em;
  padding-bottom: 1.6em;
  display: grid;
  position: relative;
}

.contact-menu-grid.is-last {
  border-bottom-color: rgba(0, 0, 0, 0);
}

.menu-buttons {
  width: 100%;
  grid-row-gap: .5em;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.menu-contacts {
  padding-top: 3em;
  padding-bottom: 3em;
}

.menu-link-title {
  font-family: Tajawal, sans-serif;
  font-size: 1.3em;
  line-height: 1.2em;
}

.menu-button-lines {
  z-index: 10;
  width: 1.6em;
  grid-row-gap: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.menu-line {
  width: 100%;
  height: 2px;
  background-color: var(--body-color);
}

.contact-menu-grid-item {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.empty-block-4.in-contact {
  margin-top: .2em;
  margin-bottom: .2em;
}

.newsletter-inner-padding {
  padding: 6em 0;
}

.flex-for-sticky {
  z-index: 10;
  width: 100%;
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.min-100vh-sec {
  z-index: 1;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.sticky-column-2-bg {
  z-index: 1;
  background-image: linear-gradient(to right, rgba(10, 13, 20, .6), rgba(0, 0, 0, 0));
  border-left: 1px solid rgba(255, 255, 255, .15);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.custom-list-2 {
  z-index: 10;
  width: 100%;
  max-width: 33em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.header-5-inner {
  z-index: 1;
  min-height: 80vh;
  background-color: #14161b;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 14em;
  padding-bottom: 15em;
  display: flex;
  position: relative;
}

.empty-block-5.is-25-opacity {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: rgba(6, 77, 250, .25);
}

.empty-block-5.is-70-opacity {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: rgba(6, 77, 250, .7);
}

.empty-block-5.is-10-opacity {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background-color: rgba(6, 77, 250, .1);
}

.empty-block-5.is-90-opacity {
  background-color: rgba(6, 77, 250, .9);
}

.header-5-color-bg {
  z-index: 15;
  background-color: rgba(12, 12, 36, .76);
  background-image: linear-gradient(to bottom, var(--indigo), rgba(0, 0, 0, 0));
  mix-blend-mode: multiply;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header-5-color-bg.media {
  background-color: var(--indigo);
  background-image: linear-gradient(to bottom, var(--indigo), rgba(0, 0, 0, 0));
}

.header-5-color-bg.full-screen-menu {
  background-color: rgba(12, 12, 36, .99);
}

.navbar {
  z-index: 999;
  width: 100%;
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  direction: rtl;
  background-color: rgba(255, 255, 255, .01);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.navbar.arabic {
  direction: rtl;
}

.main-nav {
  z-index: 10;
  height: 6em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-self: stretch;
  align-items: stretch;
  display: flex;
  position: relative;
}

.main-nav.is-2nd {
  border-bottom-color: rgba(255, 255, 255, .8);
}

.nav-block-1 {
  display: flex;
}

.nav-block-2 {
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  display: flex;
  position: static;
}

.nav-block-3 {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-direction: row;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  margin-left: auto;
  padding-right: 3em;
  display: flex;
}

.brand-link-block {
  color: #fff;
  text-transform: uppercase;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 1em 2em;
  transition: background-color .2s;
  display: flex;
}

.brand-link-block:hover {
  background-color: rgba(255, 255, 255, .1);
}

.brand-link-block.is-2nd {
  background-color: rgba(0, 0, 0, 0);
}

.nav-contact-button {
  height: 3.5em;
  grid-column-gap: 1em;
  color: var(--body-color);
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: .4em 2em;
  transition: border-color .2s, background-color .2s;
  display: flex;
}

.nav-contact-button:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .5);
}

.nav-contact-button.is-2nd {
  background-color: var(--body-color);
  color: var(--white);
}

.nav-contact-button.is-2nd:hover {
  background-color: var(--indigo);
}

.nav-link-contact-grid {
  width: 3.5em;
  height: 3.5em;
  color: #fff;
  letter-spacing: .3em;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  flex-direction: row;
  justify-content: center;
  align-self: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: .5em;
  font-weight: 600;
  transition: background-color .2s;
  display: flex;
}

.nav-link-contact-grid:hover {
  background-color: rgba(255, 255, 255, .2);
}

.nav-link-contact-grid.is-2nd {
  border-color: rgba(18, 4, 44, .3);
}

.nav-link-contact-grid.is-2nd:hover {
  background-color: var(--border-color);
  border-color: rgba(18, 4, 44, .6);
}

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

.brand-slogan-block {
  justify-content: flex-start;
  align-items: center;
  display: none;
  position: relative;
}

.brand-divider-2 {
  width: 1px;
  height: 2em;
  opacity: .25;
  background-color: #fff;
  flex: none;
  margin-left: 1em;
  margin-right: 1.5em;
}

.brand-divider-2.is-2nd {
  background-color: rgba(18, 4, 44, .7);
}

.tabs-1 {
  width: 100%;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.tab-1-link {
  color: rgba(51, 11, 126, .5);
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border-left: 2px solid rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  padding: 1.2em 0 1.2em 2em;
  font-size: .95em;
  font-weight: 500;
  line-height: 1.1em;
  transition: border-color .3s;
}

.tab-1-link:hover {
  color: #330b7e;
}

.tab-1-link.w--current {
  border-left-color: var(--indigo);
  opacity: 1;
  color: var(--indigo);
  background-color: rgba(0, 0, 0, 0);
}

.tab-2-pane {
  width: 100%;
  height: 100%;
}

.tab-2-content {
  z-index: 5;
  width: 100%;
  overflow: visible;
}

.tabs-1-links {
  min-width: 20%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 3em;
  margin-right: 5em;
  display: flex;
}

.gallery-grid-1 {
  width: 100%;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.tab-image {
  height: 27em;
  position: relative;
}

.grid-15-text-1 {
  font-size: 1.8em;
  font-weight: 500;
  line-height: 1.5em;
}

.content-grid-15 {
  width: 100%;
  grid-column-gap: 10em;
  grid-row-gap: 10em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.accordion-inner {
  width: 100%;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 4em 0 8em;
  display: flex;
  position: relative;
}

.accordion-lines {
  z-index: 5;
  width: 100%;
  height: 1px;
  opacity: 1;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.accordion-lines.is-bottom {
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.accordion-content {
  background-color: rgba(0, 0, 0, 0);
  display: block;
  position: relative;
}

.accordion-content.w--open {
  position: relative;
}

.accordion {
  flex: none;
  align-self: stretch;
  margin-left: 0;
  margin-right: 0;
  transition: background-color .2s;
  display: block;
  position: relative;
  overflow: hidden;
}

.accordion:hover {
  background-color: var(--white-smoke);
}

.accordion.is-2nd:hover {
  background-color: var(--light-black);
}

.accordion-toggle {
  width: 100%;
  min-height: 8em;
  color: var(--body-color);
  white-space: normal;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
}

.accordion-interactive-line {
  z-index: 3;
  height: 100%;
  background-color: var(--body-color);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.accordion-interactive-line.is-2nd {
  background-color: rgba(231, 227, 240, .5);
}

.accordion-title {
  z-index: 20;
  max-width: 50%;
  text-align: left;
  letter-spacing: .01em;
  font-family: Tajawal, sans-serif;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.1em;
  text-decoration: none;
  position: relative;
}

.accordion-title.is-2nd {
  color: rgba(255, 255, 255, .8);
}

.accordion-arrow {
  z-index: 20;
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 1.6em;
  position: relative;
}

.empty-block-8.is-10-opacity {
  background-color: rgba(160, 188, 255, .1);
}

.acc-flex {
  grid-column-gap: 3.5em;
  grid-row-gap: 3.5em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.newsletter-content-block {
  max-width: 30em;
}

.newsletter-text-1 {
  text-align: right;
  font-family: Tajawal, sans-serif;
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1.6em;
}

.rich-text h2 {
  letter-spacing: -.02em;
  margin-bottom: .4em;
  font-size: 3em;
  font-weight: 600;
  line-height: 1.1em;
}

.rich-text p {
  color: rgba(18, 4, 44, .8);
  margin-bottom: .3em;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.7em;
}

.rich-text h3 {
  margin-top: 1.1em;
  margin-bottom: .5em;
  font-size: 2.2em;
  font-weight: 600;
  line-height: 1.1em;
}

.rich-text h4 {
  margin-top: 1.5em;
  margin-bottom: .5em;
  font-size: 1.9em;
  font-weight: 600;
  line-height: 1.1em;
}

.rich-text h5 {
  margin-top: 1.5em;
  margin-bottom: 1em;
  font-size: 1.7em;
  font-weight: 600;
  line-height: 1.1em;
}

.rich-text h6 {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.1em;
}

.rich-text h1 {
  margin-bottom: .6em;
  font-size: 4em;
  font-weight: 700;
  line-height: 1em;
}

.rich-text a {
  color: rgba(18, 4, 44, .6);
  text-decoration: underline;
  transition: color .2s;
}

.rich-text a:hover {
  color: var(--body-color);
  text-decoration: underline;
}

.rich-text strong {
  color: var(--body-color);
  font-weight: 500;
}

.rich-text blockquote {
  border-left-color: var(--indigo-2);
  color: var(--indigo-2);
}

.rich-text li {
  line-height: 1.7em;
}

.grid-15-column-1 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.gallery-lightbox {
  height: 30em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gallery-lightbox.is-large-image {
  height: 43em;
}

.gallery-lightbox.in-tabs {
  height: 100%;
}

.gallery-background {
  z-index: 3;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 11, 126, .5);
  display: none;
  position: absolute;
}

.icon {
  z-index: 10;
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 1em;
  position: relative;
}

.icon.in-gallery {
  font-size: 1.5em;
  display: none;
  position: absolute;
}

.gallery-thumbnail {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  position: relative;
}

.gallery-grid {
  width: 100%;
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.gallery {
  width: 100%;
}

.gallery.with-margin-bottom {
  margin-bottom: 8em;
}

.accordion-visible-line {
  z-index: 1;
  height: 100%;
  background-color: var(--border-color);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.accordion-visible-line.is-2nd {
  background-color: rgba(231, 227, 240, .16);
}

.empty-block-10.with-bg-opacity-15 {
  background-color: rgba(6, 77, 250, .15);
}

.empty-block-10.with-bg-opacity-15:hover {
  background-color: rgba(6, 77, 250, .3);
}

.empty-block-10.with-bg-opacity-5 {
  background-color: rgba(6, 77, 250, .05);
}

.empty-block-10.with-bg-opacity-5:hover {
  background-color: rgba(6, 77, 250, .3);
}

.empty-block-10.with-bg-opacity-25 {
  background-color: rgba(6, 77, 250, .25);
}

.empty-block-10.with-bg-opacity-25:hover {
  background-color: rgba(6, 77, 250, .3);
}

.hero-socials-wrap {
  z-index: 10;
  position: relative;
}

.grid-15-text-2 {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.8em;
}

.grid-15-column-2 {
  grid-row-gap: 4.25em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.sticky-column-2 {
  width: 50%;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80vh;
  padding-bottom: 80vh;
  padding-left: 6em;
  display: flex;
  position: relative;
}

.sticky-100vh-block-2 {
  z-index: 2;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.password-form {
  width: 100%;
  text-align: center;
  flex-direction: column;
  margin-bottom: 0;
  display: flex;
}

.password {
  z-index: 100;
  width: 80%;
  max-width: 57em;
  min-height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 3em;
  display: flex;
  position: relative;
}

.password-form-label {
  z-index: 20;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 600;
  position: absolute;
  top: 5.5em;
  left: 3.6em;
}

.password-form-inner {
  width: 100%;
  background-color: rgba(255, 255, 255, .36);
  padding: 1.2em;
  position: relative;
}

.password-form-block {
  z-index: 10;
  width: 100%;
  border: 1px solid var(--border-color);
  background-color: rgba(18, 4, 44, .05);
  border-radius: 3px;
  flex: none;
  margin-bottom: 0;
  padding: 1.5em;
  transition: background-color .2s, border-color .2s;
  position: relative;
}

.password-form-block:hover {
  background-color: rgba(18, 4, 44, .1);
  border-color: rgba(18, 4, 44, .5);
}

.password-form-field {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.password-form-input {
  z-index: 5;
  min-height: 3em;
  color: #1b243a;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  margin-bottom: 0;
  padding: .5em 0 .5em 5.5em;
  font-size: 1.4em;
  line-height: 1.1em;
  transition: border-color .5s;
  position: relative;
}

.password-form-input:focus {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(255, 255, 255, 0);
}

.password-form-input:focus-visible {
  border-color: rgba(255, 255, 255, 0);
}

.password-form-input[data-wf-focus-visible] {
  border-color: rgba(255, 255, 255, 0);
}

.password-form-input::-ms-input-placeholder {
  color: rgba(27, 36, 58, .45);
  font-size: .9em;
}

.password-form-input::placeholder {
  color: rgba(27, 36, 58, .45);
  font-size: .9em;
}

.password-form-submit {
  min-width: 15em;
  background-color: var(--indigo-2);
  letter-spacing: .1em;
  text-transform: uppercase;
  background-image: url('../images/east_white_24dp.svg');
  background-position: 85%;
  background-repeat: no-repeat;
  background-size: 1.1em;
  border-radius: 3px;
  padding: 1.4em 3.6em 1.4em 2.3em;
  font-size: 1em;
  font-weight: 500;
  transition: background-position .6s cubic-bezier(.075, .82, .165, 1), background-color .2s;
}

.password-form-submit:hover {
  background-color: var(--body-color);
  background-position: 89%;
}

.password-error {
  z-index: 50;
  background-color: rgba(247, 158, 158, .4);
  border: 1px solid #fab1af;
  margin-top: 1em;
  padding: 1em;
  position: relative;
}

.password-error-text {
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.3em;
}

.style-guide-block {
  width: 100%;
  max-width: 60em;
  grid-row-gap: 6em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.static-gallery-grid, .gallery-grid-2 {
  width: 100%;
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.preloader-background {
  z-index: 1;
  background-color: var(--black-2);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.preloader-loading {
  z-index: 20;
  color: var(--dark-khaki);
  letter-spacing: .6em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 400;
  position: absolute;
  bottom: 5em;
}

.preloader-brand {
  z-index: 20;
  grid-column-gap: 1.75em;
  align-items: center;
  display: flex;
  position: absolute;
  top: 10vh;
}

.preloader {
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5em;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.preloader-logo {
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 1.9em;
}

.preloader-inner {
  z-index: 20;
  grid-row-gap: 5vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.preloader-brand-name {
  color: var(--white);
  letter-spacing: .7em;
  text-transform: uppercase;
  font-weight: 600;
}

.preloader-bg-animation {
  z-index: 2;
  background-color: var(--dark-black);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.preloader-content-title {
  color: var(--white);
  font-size: 3vw;
  font-weight: 300;
}

.preloader-title-overflow {
  margin-bottom: .3em;
  overflow: hidden;
}

.colors {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 5em;
  display: grid;
}

.color-define {
  width: 100%;
  height: 5em;
  background-color: var(--body-color);
}

.color-define.is-1st {
  opacity: .1;
}

.color-define.is-2nd {
  opacity: .3;
}

.color-define.is-3rd {
  opacity: .5;
}

.color-define.is-4th {
  opacity: .7;
}

.color-define.is-5th {
  opacity: .9;
}

.color-define-2 {
  width: 100%;
  height: 5em;
  background-color: var(--dark-khaki);
}

.color-define-2.is-1st {
  opacity: .1;
}

.color-define-2.is-2nd {
  opacity: .3;
}

.color-define-2.is-3rd {
  opacity: .5;
}

.color-define-2.is-4th {
  opacity: .7;
}

.color-define-2.is-5th {
  opacity: .9;
}

.color-define-3 {
  width: 100%;
  height: 5em;
  background-color: var(--indigo);
}

.color-define-3.is-1st {
  opacity: .1;
}

.color-define-3.is-2nd {
  opacity: .3;
}

.color-define-3.is-3rd {
  opacity: .5;
}

.color-define-3.is-4th {
  opacity: .7;
}

.color-define-3.is-5th {
  opacity: .9;
}

.header-5-socials {
  z-index: 10;
  min-height: 14vh;
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  border-top: 1px solid rgba(255, 255, 255, .2);
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding-left: 5em;
  padding-right: 5em;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.header-5-content {
  z-index: 20;
  grid-column-gap: 10em;
  grid-row-gap: 2em;
  direction: rtl;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.header-5-title-1 {
  color: var(--white);
  font-size: 1.8em;
  line-height: 1.5em;
}

.header-5-block-1 {
  width: 100%;
  max-width: 28em;
  flex: none;
  padding-top: .9em;
}

.main-button {
  z-index: 10;
  background-color: var(--indigo);
  color: var(--white);
  letter-spacing: .15em;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50px;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.5em;
  font-family: URWGeometric, sans-serif;
  transition: letter-spacing .6s cubic-bezier(.075, .82, .165, 1), background-color .2s;
  display: flex;
  position: relative;
}

.main-button:hover {
  background-color: var(--body-color);
  letter-spacing: .25em;
}

.main-button.is-transparent {
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
}

.main-button.is-white {
  color: var(--body-color);
  background-color: #fff;
  border-color: rgba(18, 4, 44, .2);
}

.main-button.is-white.location {
  justify-content: space-between;
}

.main-button.video {
  color: #000;
  background-color: #fff;
  font-size: 1em;
}

.button-text {
  letter-spacing: 0;
  text-transform: uppercase;
  margin-left: .5em;
  font-family: Tajawal, sans-serif;
  font-size: .9em;
  font-weight: 500;
  line-height: 1em;
}

.serif-font-white {
  color: var(--white);
  letter-spacing: -.04em;
  margin-right: .05em;
  font-family: Gilda Display, sans-serif;
  font-size: 1.1em;
  font-style: italic;
  font-weight: 400;
}

.header-7-buttons {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.header-5-title-block {
  z-index: 10;
  width: 100%;
  max-width: 46em;
  margin-bottom: 4em;
  position: relative;
}

.v2-text {
  color: rgba(255, 255, 255, .8);
  margin-left: .6em;
  font-size: 1.3em;
  line-height: 1.1em;
  display: inline-block;
  position: relative;
  top: -1.7em;
}

.header-5-block-2 {
  flex: 1;
}

.header-5-social-bg {
  z-index: 1;
  background-color: var(--white);
  background-image: linear-gradient(45deg, #f8f8e4, #eae0fd);
  border-bottom: 1px solid rgba(20, 22, 27, .18);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.nav-topbar {
  width: 100%;
  height: 2.2em;
  grid-column-gap: 4.5em;
  grid-row-gap: 1em;
  background-color: rgba(18, 11, 32, .8);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: .6em 1.5em;
  display: none;
}

.nav-topbar.is-2nd {
  border-bottom: 1px solid var(--border-color);
  background-color: var(--white);
}

.topbar-text {
  color: rgba(255, 255, 255, .7);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .75em;
  font-weight: 400;
  line-height: 1em;
}

.topbar-text.is-2nd {
  color: var(--body-color);
}

.menu-large-links {
  width: 100%;
  grid-row-gap: 2em;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 5em;
  display: flex;
}

.menu-large-link {
  color: rgba(20, 22, 27, .7);
  letter-spacing: 0;
  text-transform: uppercase;
  flex: none;
  padding-left: .9em;
  padding-right: .9em;
  font-family: URWGeometric, sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.1em;
  transition: letter-spacing .6s cubic-bezier(.075, .82, .165, 1), font-size .6s cubic-bezier(.075, .82, .165, 1);
}

.menu-large-link:hover {
  color: #14161b;
  letter-spacing: .15em;
}

.menu-large-link.w--current {
  color: #14161b;
}

.button-icon {
  width: 1em;
  height: 1em;
  direction: rtl;
  object-fit: contain;
  transform-style: preserve-3d;
  align-self: center;
  margin-left: 0;
  padding-right: 0;
  font-size: 1em;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.header-6-text-2 {
  color: var(--white);
  text-align: center;
  font-size: 4em;
  line-height: 1.3em;
}

.header-6-content {
  z-index: 10;
  width: 100%;
  max-width: 80em;
  grid-row-gap: 4.75em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.header-6-image-size-1 {
  z-index: 10;
  width: 70%;
  height: 35em;
  max-width: 30em;
  position: relative;
}

.header-6-title-1 {
  z-index: 20;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  margin-bottom: -.5em;
  font-family: Gilda Display, sans-serif;
  font-size: 10em;
  font-weight: 400;
  line-height: 1em;
  position: relative;
}

.header-6-text-1 {
  color: var(--white);
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.1em;
}

.content-grid-2 {
  width: 100%;
  max-width: 80em;
  grid-column-gap: 10em;
  grid-row-gap: 5em;
  direction: rtl;
  grid-template-rows: auto;
  align-items: center;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
}

.content-grid-2.custom {
  direction: ltr;
}

.grid-2-block-1 {
  width: 100%;
  max-width: 26em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: right;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: visible;
}

.grid-2-block-1.align-to-right {
  text-align: right;
  align-items: flex-end;
}

.grid-2-text-2 {
  direction: rtl;
  font-family: Tajawal, sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.6em;
}

.grid-3-image {
  z-index: 10;
  width: 100%;
  height: 40em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.grid-3-image.is-1st {
  z-index: 20;
}

.grid-8-line {
  width: 100%;
  height: 1px;
  background-color: rgba(20, 22, 27, .15);
}

.grid-2-text-1 {
  font-family: Tajawal, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.2em;
}

.serif-font-2 {
  color: rgba(51, 11, 126, .8);
  letter-spacing: -.04em;
  margin-right: .05em;
  font-family: Gilda Display, sans-serif;
  font-size: 1.1em;
  font-style: italic;
  font-weight: 400;
}

.content-grid-10 {
  width: 100%;
  grid-column-gap: 5em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-10-block-1 {
  direction: ltr;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: .5em;
  padding-bottom: .5em;
  padding-right: .4em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grid-9-line {
  width: 100%;
  height: 5px;
  background-color: var(--body-color);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.grid-10-number {
  color: var(--indigo);
  text-align: right;
  letter-spacing: -.05em;
  font-size: 5em;
  font-weight: 600;
  line-height: 1em;
  position: relative;
  top: -.1em;
}

.grid-10-text {
  font-family: Tajawal, sans-serif;
  font-weight: 500;
}

.aside-image-1 {
  z-index: 20;
  width: 10em;
  height: 10em;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: -5em;
}

.aside-image-2 {
  z-index: 20;
  width: 20em;
  height: 10em;
  object-fit: cover;
  position: absolute;
  bottom: 5em;
  right: -10em;
}

._3d-absolute-block {
  width: 100%;
  height: 100%;
  position: absolute;
  left: -104%;
}

._3d-absolute-block.is-right-2nd {
  left: auto;
  right: -104%;
}

.grid-8-block-1 {
  width: 100%;
  max-width: 26em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.content-grid-9 {
  width: 100%;
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  position: relative;
}

.aside-image-3 {
  z-index: 20;
  width: 10em;
  height: 20em;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: -5em;
}

.grid-9-block-1 {
  width: 100%;
  min-height: 7em;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 4.5em 3em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-8 {
  z-index: 5;
  width: 100%;
  background-color: var(--body-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: visible;
}

.header-10-content {
  width: 100%;
  max-width: 57em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.header-button {
  z-index: 5;
  min-height: 4em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  background-color: rgba(255, 255, 255, .5);
  border-radius: 100px;
  align-self: stretch;
  padding: 0 1.5em;
  transition: background-color .2s, transform .6s cubic-bezier(.075, .82, .165, 1);
  display: flex;
  position: relative;
}

.header-button:hover {
  background-color: rgba(255, 255, 255, .8);
  transform: scale(1.1);
}

.explore-text-1 {
  color: var(--body-color);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 800;
  line-height: 1em;
}

.header-button-flex-1 {
  z-index: 10;
  grid-column-gap: .5em;
  flex-direction: row;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding-left: .7em;
  padding-right: .7em;
  display: flex;
  position: relative;
}

.explore-icon-1 {
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 1.2em;
}

.hero-badge {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--white);
  background-color: rgba(18, 4, 44, .45);
  border-radius: 5em;
  padding: .7em 1.2em;
  font-weight: 600;
  line-height: 1em;
}

.hero-badge.is-white {
  background-color: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .4);
}

.topbar-link {
  color: rgba(255, 255, 255, .8);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .75em;
  font-weight: 500;
  line-height: 1em;
  transition: color .2s;
}

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

.topbar-link.is-2nd {
  color: rgba(18, 4, 44, .7);
}

.topbar-link.is-2nd:hover {
  color: var(--body-color);
}

.topbar-links {
  grid-column-gap: 1.75em;
  grid-row-gap: 1em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

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

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

.slider-gradient-color-1 {
  z-index: 2;
  background-color: rgba(12, 12, 36, .15);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), var(--indigo));
  mix-blend-mode: multiply;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slider-absolute-block {
  z-index: 1;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.slider-bg-for-interaction {
  z-index: 15;
  background-color: var(--black);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slide-timeline {
  z-index: 20;
  width: 1px;
  height: 11em;
  background-color: rgba(255, 255, 255, .2);
  position: absolute;
  left: 5vw;
  overflow: hidden;
}

.slider-timeline-bg {
  background-color: var(--white);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slider {
  z-index: 1;
  width: 100%;
  height: 200vh;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.slider-sticky-block {
  width: 100%;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.header-10-padding {
  z-index: 10;
  width: 100%;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 13em;
  padding-bottom: 10em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.fullscreen-menu-button {
  grid-column-gap: 1em;
  background-color: var(--white);
  color: var(--body-color);
  flex-direction: row;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding-left: 2.5em;
  padding-right: 2.5em;
  transition: background-color .2s, padding .6s cubic-bezier(.075, .82, .165, 1);
  display: flex;
}

.fullscreen-menu-button:hover {
  padding-left: 3.3em;
  padding-right: 3.3em;
}

.fullscreen-menu-button.is-2nd:hover {
  background-color: var(--border-color);
}

.menu-button-text {
  font-family: Tajawal, sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  line-height: .9em;
}

.hero-badge-text {
  line-height: 1.2em;
}

.parallax-content-trigger-1, .parallax-content-trigger-2 {
  padding-top: .4em;
  padding-bottom: .4em;
  overflow: hidden;
}

.parallax-content-trigger-2.for-large-text {
  margin-top: -2em;
}

.parallax-content-trigger-3 {
  padding-top: .5em;
  padding-bottom: .5em;
  overflow: hidden;
}

.content-grid-7 {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-7-block {
  max-width: 22em;
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  display: flex;
}

.grid-7-block.is-last {
  border-left: 2px solid var(--indigo);
  justify-content: center;
  padding-left: 1.8em;
}

.grid-7-block.is-3rd {
  justify-content: space-between;
}

.grid-7-block.is-last {
  border-left: 2px solid var(--indigo);
  justify-content: center;
  padding-left: 1.8em;
}

.grid-7-icon-1 {
  width: 1.5em;
  height: 1.5em;
  object-fit: contain;
  font-size: 3em;
}

.grid-7-title-1 {
  font-family: Tajawal, sans-serif;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.2em;
}

.grid-7-text-1 {
  font-size: 1.1em;
  line-height: 1.6em;
}

.grid-9-image {
  width: 6em;
  height: 6em;
  object-fit: cover;
  border-radius: 50%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grid-9-number {
  min-width: 3.3em;
  text-align: left;
  letter-spacing: -.05em;
  font-size: 4em;
  font-weight: 600;
  line-height: 1em;
}

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

.grid-9-text {
  max-width: 15em;
  color: rgba(18, 4, 44, .8);
  font-size: 1em;
  line-height: 1.5em;
}

.scrolling-horizontal-background {
  z-index: 1;
  background-color: #f6f5f8;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.content-grid-3 {
  z-index: 20;
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.grid-3-block-1 {
  width: 100%;
  max-width: 28em;
  flex: none;
  padding-top: .2em;
}

.grid-3-text-1 {
  font-size: 1.8em;
  line-height: 1.5em;
}

.grid-1-text-1 {
  font-family: Tajawal, sans-serif;
  font-size: 1.2em;
  line-height: 1.8em;
}

.grid-3-image-4 {
  z-index: 20;
  width: 16em;
  height: 10em;
  object-fit: cover;
  position: absolute;
  right: -8em;
}

.grid-4-block-1 {
  width: 100%;
  max-width: 26em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.grid-7-text-2 {
  color: var(--indigo);
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.8em;
}

.grid-9-icon {
  z-index: 10;
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 1.5em;
  display: none;
  position: absolute;
}

.grid-9-title-block {
  min-width: 7em;
}

.grid-9-middle-line {
  z-index: 1;
  width: 1px;
  height: 100%;
  background-color: var(--body-color);
  position: absolute;
}

.grid-9-horizontal-line {
  z-index: 1;
  width: 100%;
  height: 1px;
  background-color: var(--body-color);
  position: absolute;
}

.header-7-flex {
  z-index: 5;
  width: 100%;
  background-color: var(--body-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: visible;
}

.header-200vh-video {
  z-index: 1;
  width: 100%;
  height: 200vh;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.video-sticky-block {
  width: 100%;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.video-bg-color-1 {
  z-index: 20;
  background-image: linear-gradient(to bottom, var(--body-color), rgba(51, 11, 126, 0));
  mix-blend-mode: multiply;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.border-button {
  z-index: 10;
  color: var(--indigo);
  letter-spacing: .2em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 1.5em 0;
  font-weight: 600;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-9-grid {
  width: 100%;
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.header-9-image-1 {
  z-index: 10;
  width: 100%;
  height: 100%;
  position: relative;
}

.header-9-image-2 {
  z-index: 10;
  width: 100%;
  height: 100%;
  min-height: 35em;
  position: relative;
}

.header-9-content-block {
  width: 100%;
  max-width: 35em;
  grid-column-gap: 2.75em;
  grid-row-gap: 2.75em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 5em 5em;
  display: flex;
}

.header-9-content-block._404 {
  align-self: center;
  align-items: center;
}

.header-9-text-1 {
  color: var(--indigo);
  font-family: URWGeometric, sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.6em;
}

.header-9-image-3 {
  z-index: 10;
  width: 100%;
  height: 50%;
  position: relative;
}

.header-9-subtitle {
  color: var(--indigo);
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.2em;
}

.header-9-line {
  width: 5em;
  height: 1px;
  background-color: var(--indigo);
}

.header-9-subtitle-block {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2.5em;
  display: flex;
}

.content-grid-4 {
  width: 100%;
  grid-column-gap: 10em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
  align-items: center;
  justify-items: center;
}

.header-parallax-content {
  grid-row-gap: 4em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header-7-content {
  width: 100%;
  max-width: 52em;
  grid-column-gap: 3.75em;
  grid-row-gap: 3.75em;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.header-7-padding {
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 8em;
  padding-bottom: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-flex-2 {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.header-7-socials {
  z-index: 10;
  min-height: 11em;
  min-width: 33%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 5em;
  padding-right: 5em;
  display: none;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
  overflow: hidden;
}

.listing-7-grid {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.listing-7-item {
  grid-column-gap: 1.75em;
  grid-row-gap: 1.75em;
  background-color: var(--white);
  border-radius: 5px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 3em;
  display: flex;
}

.listing-7-text {
  max-width: 22em;
  color: rgba(18, 4, 44, .8);
}

.listing-7-image-size {
  z-index: 5;
  width: 100%;
  height: 15em;
  border-radius: 5px;
  margin-bottom: 1em;
  position: relative;
}

.listing-8-column-2 {
  z-index: 5;
  width: 50%;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
  position: relative;
}

.listing-8-text {
  opacity: .8;
  font-family: Tajawal, sans-serif;
  font-size: 1.3em;
  line-height: 1.6em;
}

.listing-8-item {
  width: 100%;
  min-height: 100vh;
  grid-column-gap: 1.75em;
  grid-row-gap: 1.75em;
  background-color: var(--white);
  direction: ltr;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  padding: 5em;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.listing-8-item:nth-child(2n) {
  background-color: var(--black);
  color: var(--white);
  flex-direction: row-reverse;
}

.listing-8-flex {
  color: var(--body-color);
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.listing-8 {
  width: 100%;
}

.listing-8-column-1 {
  width: 40%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10em;
  padding-bottom: 10em;
  display: flex;
  position: relative;
}

.listing-8-content {
  width: 100%;
  max-width: 28em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.listing-8-subtitle {
  opacity: .6;
  letter-spacing: .4em;
  text-indent: .4em;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.4em;
}

.header-3-gradient-color {
  z-index: 2;
  height: 50%;
  background-image: linear-gradient(rgba(255, 255, 255, 0), #fff 90%);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header-3-title-block {
  max-width: 80em;
}

.header-3-padding {
  z-index: 10;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 14em;
  padding-bottom: 4em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-3 {
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  background-color: var(--body-color);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: visible;
}

.header-3.in-solutions {
  min-height: 80vh;
}

.listing-8-icon {
  width: 1em;
  height: 1em;
  font-size: 1.3em;
}

.listing-8-scroll-down {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 5em;
  overflow: hidden;
}

.listing-8-image-2 {
  z-index: 20;
  width: 24em;
  height: 72%;
  position: absolute;
  top: auto;
  bottom: auto;
  left: -5em;
  right: auto;
}

.menu-links-1-list {
  width: 100%;
  max-width: 1920px;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.menu-links-1-list.in-overview {
  grid-column-gap: 0em;
  flex-wrap: wrap;
  justify-content: space-between;
}

.menu-link-1-item {
  flex: 1;
  display: flex;
}

.menu-link-1 {
  min-height: 10em;
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  background-color: var(--ghost-white);
  color: var(--body-color);
  border: 1px solid #dfdce5;
  border-radius: 5px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 1em;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.menu-link-1:hover {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  background-color: #d8d6db;
  border-color: #b6b2be;
}

.menu-link-1.is-2nd {
  background-color: rgba(0, 0, 0, 0);
}

.menu-link-1.is-2nd.w--current {
  background-color: var(--white);
}

.menu-link-1.in-overview {
  width: 24%;
  flex: 0 auto;
}

.menu-link-1.in-overview.w--current {
  background-color: rgba(255, 255, 255, .6);
  border-color: #b7b2c0;
}

.menu-link-5-icon {
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 2em;
}

.menu-links-1 {
  width: 100%;
  padding: 5em 5em 2em;
}

.tabs-2 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.tabs-2.is-2nd {
  background-color: var(--dark-black);
  color: var(--white);
  display: none;
}

.tabs-2-links {
  width: 100%;
  grid-column-gap: 3.75em;
  border-bottom: 1px solid rgba(18, 4, 44, .2);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.tabs-2-links.is-2nd {
  border-bottom-color: rgba(255, 255, 255, .2);
}

.tab-2-link {
  z-index: 10;
  min-height: 6em;
  opacity: .5;
  color: var(--body-color);
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 0;
  border-bottom: 1px solid rgba(18, 4, 44, 0);
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 1em 0;
  font-weight: 500;
  line-height: 1.1em;
  transition: padding .4s cubic-bezier(.075, .82, .165, 1), background-position .2s, opacity .2s;
  display: flex;
  top: 1px;
}

.tab-2-link:hover {
  opacity: .65;
}

.tab-2-link.w--current {
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/expand_more_FILL0_wght700_GRAD0_opsz48.svg');
  background-position: 90%;
  background-repeat: no-repeat;
  background-size: 1.4em;
  border-bottom-color: #12042c;
  padding-left: 1em;
  padding-right: 3em;
  font-weight: 600;
}

.tab-2-link.is-2nd {
  color: var(--white);
}

.tab-2-link.is-2nd.w--current {
  border-bottom-color: var(--white);
  background-image: url('../images/arrow-icon-white-1.svg');
}

.tab-2-link-text {
  font-family: URWGeometric, sans-serif;
  font-size: 1.3em;
  line-height: 1.1em;
}

.grid-15-text-3 {
  color: rgba(18, 4, 44, .8);
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.8em;
}

.grid-16-title-1 {
  min-width: 1.5em;
  color: var(--indigo);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 700;
}

.content-grid-13 {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.content-grid-13.in-client-page {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding-top: 2.5em;
  padding-bottom: 2.5em;
}

.grid-13-large-text-1 {
  letter-spacing: -.05em;
  text-indent: -.05em;
  font-family: URWGeometric, sans-serif;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.3em;
}

.grid-13-block-1 {
  grid-column-gap: 2.25em;
  grid-row-gap: 2.25em;
  direction: ltr;
  text-align: right;
  border-radius: 5px;
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 1.5em 0;
  transition: padding .6s cubic-bezier(.075, .82, .165, 1), background-color .6s cubic-bezier(.075, .82, .165, 1);
  display: flex;
}

.grid-13-block-1:hover {
  background-color: var(--white);
  margin-right: 1em;
  padding-left: 1.5em;
  padding-right: 1.5em;
}

.menu-links-2 {
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  padding: 5em;
}

.menu-links-2-list {
  width: 100%;
  max-width: 1920px;
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  border: 1px solid rgba(18, 4, 44, .15);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.menu-link-2-item {
  flex: 1;
  display: flex;
}

.menu-link-2 {
  grid-column-gap: 1.75em;
  grid-row-gap: .75em;
  color: var(--body-color);
  background-image: url('../images/arrow_right_alt_FILL0_wght700_GRAD0_opsz48.svg');
  background-position: 85%;
  background-repeat: no-repeat;
  background-size: 0;
  border-radius: 10px;
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding: 2.5em 5em 2.5em 2.5em;
  transition: background-position .6s cubic-bezier(.075, .82, .165, 1), background-color .2s;
  display: flex;
  position: relative;
}

.menu-link-2:hover {
  background-color: var(--ghost-white);
  background-position: 90%;
  background-size: 1.2em;
}

.menu-link-2-title {
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.2em;
}

.menu-links-5-flex {
  width: 100%;
  max-width: 1920px;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.menu-link-5 {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  opacity: .6;
  color: var(--body-color);
  text-align: center;
  border: 1px solid rgba(18, 4, 44, .2);
  border-radius: 5px;
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 2em;
  transition: opacity .2s;
  display: flex;
}

.menu-link-5:hover {
  opacity: 1;
}

.menu-links-5 {
  width: 100%;
  padding: 0 5em 5em;
}

.cms-links-wrap-1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cms-links-wrap-1.align-to-left {
  align-items: flex-start;
}

.cms-link-text-1 {
  font-size: 1em;
  line-height: 1.1em;
}

.cms-link-block-1 {
  z-index: 10;
  color: rgba(18, 4, 44, .4);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  flex: 1;
  align-self: stretch;
  padding-top: .7em;
  padding-bottom: .7em;
  font-weight: 500;
  transition: color .2s;
  position: relative;
  top: 1px;
}

.cms-link-block-1:hover {
  color: rgba(18, 4, 44, .6);
}

.cms-link-block-1.w--current {
  border-bottom-color: var(--body-color);
  color: var(--body-color);
}

.cms-links-list-1 {
  grid-column-gap: 3em;
  grid-row-gap: .5em;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.features-grid-1-list {
  grid-column-gap: 5em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.content-grid-12 {
  width: 100%;
}

.features-grid-1-item {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: .25fr 2.25fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.feature-icon-2 {
  z-index: 10;
  width: 1em;
  height: 1em;
  object-fit: contain;
  margin-top: .05em;
  font-size: 1.7em;
  position: relative;
}

.features-grid-1-content {
  max-width: 22em;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.features-grid-1-text-1 {
  font-size: 1.1em;
  line-height: 1.6em;
}

.large-title-block-1 {
  width: 100%;
  max-width: 80em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.padding-80vh {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80vh;
  padding-bottom: 80vh;
  display: flex;
  position: relative;
}

.scolling-image {
  z-index: 1;
  width: 45%;
  height: 130%;
  max-width: 30em;
  position: absolute;
}

.scolling-image.in-case-studies {
  width: 18vw;
  max-width: none;
}

.scolling-image.with-minimum-height {
  width: 18vw;
  max-width: none;
  min-height: 30em;
}

.scolling-image.in-case-study {
  width: 20vw;
  max-width: none;
  min-height: 30em;
}

._3d-block-for-text {
  z-index: 8;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cms-links-list-2 {
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.cms-link-item-2 {
  background-color: rgba(0, 0, 0, 0);
  align-self: stretch;
  display: flex;
}

.cms-link-block-2 {
  z-index: 10;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  color: rgba(18, 4, 44, .4);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 5px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5em 2em;
  font-weight: 500;
  transition: color .2s;
  display: flex;
}

.cms-link-block-2:hover {
  color: rgba(18, 4, 44, .7);
}

.cms-link-block-2.w--current {
  background-color: var(--white);
  color: var(--body-color);
  background-image: url('../images/expand_more_FILL0_wght700_GRAD0_opsz48.svg');
  background-position: 92%;
  background-repeat: no-repeat;
  background-size: 1.3em;
  border-color: rgba(18, 4, 44, .2);
  padding-right: 3.5em;
}

.cms-link-text-2 {
  font-size: 1.3em;
  line-height: 1.1em;
}

.aside-image-6 {
  z-index: 20;
  width: 20em;
  height: 10em;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: -10em;
}

.aside-image-5 {
  z-index: 20;
  width: 10em;
  height: 8em;
  object-fit: cover;
  position: absolute;
  bottom: -8em;
  right: 0;
}

.menu-links-3 {
  width: 100%;
  border-bottom: 1px solid rgba(18, 4, 44, .2);
  padding: 3.5em 5em;
  display: block;
}

.menu-links-3-list {
  width: 100%;
  max-width: 1920px;
  grid-column-gap: 0em;
  grid-row-gap: 2.25em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.menu-link-3-item {
  flex: 1;
  align-self: stretch;
  display: flex;
}

.menu-link-3 {
  grid-row-gap: 1.25em;
  background-color: var(--white);
  color: var(--body-color);
  border-radius: 5px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2em;
  transition: color .2s, transform .2s, box-shadow .2s, background-color .2s;
  display: flex;
  position: relative;
  transform: translate(0);
  box-shadow: 0 0 rgba(18, 4, 44, 0);
}

.menu-link-3:hover {
  background-color: var(--black);
  color: var(--white);
  transform: translate(0, -5px);
  box-shadow: 4px 40px 30px -30px rgba(18, 4, 44, .67);
}

.menu-link-2-image {
  width: 3em;
  height: 2em;
  object-fit: cover;
  border-radius: 7px;
  font-size: 2em;
}

.menu-link-3-title {
  font-family: Tajawal, sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1em;
}

.menu-link-3-desc {
  font-family: Tajawal, sans-serif;
  font-size: .9em;
}

.menu-link-3-image {
  width: 100%;
  height: 7em;
  background-color: var(--indigo);
  opacity: 1;
  mix-blend-mode: normal;
  object-fit: cover;
  border-radius: 5px;
}

.clients-1-list {
  grid-column-gap: 10em;
  grid-row-gap: 2.5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.client-1-logo {
  width: 6em;
  height: 2em;
  object-fit: contain;
  object-position: 0% 50%;
  flex: none;
}

.client-1-block {
  grid-column-gap: 1.25em;
  grid-row-gap: 2.25em;
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  justify-content: flex-start;
  align-items: center;
  padding: 1.5em 0;
  transition: border-color .2s;
  display: flex;
}

.client-1-block:hover {
  border-bottom-color: var(--body-color);
}

.client-1-text-1 {
  letter-spacing: -.04em;
  text-indent: -.04em;
  text-transform: uppercase;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.3em;
}

.client-1-text-2 {
  max-width: 11em;
  color: rgba(18, 4, 44, .8);
  font-size: .9em;
  font-weight: 500;
  line-height: 1.4em;
}

.client-1-title-block {
  min-width: 12em;
  text-align: center;
}

.menu-share-icon {
  width: 1em;
  height: 1em;
  object-fit: contain;
  flex: none;
  font-size: 1.1em;
  display: block;
}

.image-9 {
  width: 1em;
  height: 1em;
  object-fit: cover;
  border-radius: 50%;
  font-size: 3em;
}

.grid-11-block-2 {
  min-height: 16em;
  position: relative;
  overflow: hidden;
}

.content-grid-11 {
  width: 100%;
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-11-block-1 {
  min-height: 16em;
  grid-column-gap: 2.25em;
  grid-row-gap: .5em;
  justify-content: center;
  align-items: center;
  padding: 3em;
  display: flex;
}

.grid-11-block-1.is-vertical {
  text-align: center;
  flex-direction: column;
  justify-content: center;
}

.grid-11-block-1.is-center {
  justify-content: center;
}

.grid-11-text-1 {
  max-width: 16em;
  font-size: 1em;
  line-height: 1.5em;
}

.grid-11-number {
  letter-spacing: -.03em;
  text-indent: -.03em;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.1em;
}

.scolling-title {
  z-index: 20;
  perspective: 1000px;
  position: relative;
}

.parallax-animation {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.grid-15-title-line {
  width: 2px;
  height: 1.3em;
  background-color: rgba(18, 4, 44, .5);
  margin-right: 2em;
}

.grid-15-block-1 {
  max-width: 39em;
  grid-row-gap: 3em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.content-1-title-block {
  grid-column-gap: 2.25em;
  grid-row-gap: 2.25em;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.6em;
  padding-bottom: 5.5em;
  display: flex;
}

.grid-15-image {
  z-index: 10;
  width: 100%;
  height: 45em;
  position: relative;
}

.button-listing-1-list {
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.button-listing-1-list.is-grid {
  grid-column-gap: 5em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-15-block-2 {
  width: 80%;
  max-width: 40em;
  grid-row-gap: 2.25em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-for-border-button {
  color: var(--body-color);
  letter-spacing: 0;
  margin-left: .5em;
  font-family: Tajawal, sans-serif;
  font-size: .9em;
  line-height: 1em;
}

.icon-for-border-button {
  width: 1em;
  height: 1em;
  object-fit: contain;
  transform-style: preserve-3d;
  margin-left: 1em;
  font-size: 1em;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.border-button-line {
  height: 2px;
  background-color: var(--indigo);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.button-listing-1-link {
  width: 100%;
  color: rgba(10, 3, 24, .6);
  background-image: url('../images/arrow_right_alt_FILL0_wght700_GRAD0_opsz48.svg');
  background-position: 95%;
  background-repeat: no-repeat;
  background-size: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  justify-content: space-between;
  align-items: center;
  padding-top: .7em;
  padding-bottom: .7em;
  font-size: 1.2em;
  font-weight: 500;
  transition: color .2s, border-color .2s, background-position 1s cubic-bezier(.075, .82, .165, 1), padding .6s cubic-bezier(.075, .82, .165, 1);
  display: flex;
  overflow: hidden;
}

.button-listing-1-link:hover {
  border-bottom-color: var(--body-color);
  color: var(--black);
  background-position: 100%;
  background-size: 1em;
  padding-top: 1em;
  padding-bottom: 1em;
}

.button-listing-1-link.w--current {
  border-bottom-color: var(--body-color);
  color: #0a0318;
}

.button-listing-1, .button-listing-1-item {
  width: 100%;
}

.button-listing-1-text {
  max-width: 92%;
  color: var(--indigo);
  font-family: Tajawal, sans-serif;
  line-height: 1.8em;
}

.listing-2-list {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.listing-2-item {
  display: flex;
}

.listing-2-link-block {
  min-height: 33em;
  border: 1px solid rgba(255, 255, 255, .15);
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding: 3em;
  transition: border-color .2s;
  display: flex;
  position: relative;
}

.listing-2-link-block:hover {
  border-color: rgba(255, 255, 255, .4);
}

.listing-2-link-block.is-case-study-2 {
  min-height: 46em;
  grid-row-gap: 1em;
  padding-bottom: 5em;
}

.listing-2-content {
  z-index: 20;
  max-width: 27em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2em;
  display: flex;
  position: relative;
}

.listing-bg {
  z-index: 10;
  mix-blend-mode: multiply;
  background-image: linear-gradient(rgba(10, 3, 24, .3), rgba(10, 3, 24, .8));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.listing-heading-uni-1 {
  color: var(--white);
  text-align: center;
  font-family: Tajawal, sans-serif;
  font-size: 2em;
  font-weight: 400;
}

.listing-heading-uni-1.is-case-title {
  font-size: 2.4em;
  font-weight: 500;
  line-height: 1em;
}

.title-with-button-flex-1 {
  grid-column-gap: 2.25em;
  grid-row-gap: 2.25em;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.title-with-button-flex-1.with-margin-bottom {
  margin-bottom: 3em;
}

.listing-text {
  color: rgba(255, 255, 255, .8);
  font-family: Tajawal, sans-serif;
  line-height: 1.7em;
}

.listing-icon {
  z-index: 10;
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 1.4em;
  position: relative;
}

.menu-sublinks-1-flex-1 {
  grid-column-gap: 0em;
  grid-row-gap: .5em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.menu-sublink {
  grid-column-gap: 1em;
  color: rgba(18, 4, 44, .7);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  padding: .5em 1.5em;
  transition: color .2s, padding .6s cubic-bezier(.075, .82, .165, 1), background-color .2s;
  display: flex;
}

.menu-sublink:hover {
  color: var(--white);
  background-color: rgba(10, 3, 24, .8);
  background-image: url('../images/arrow-icon-white-4.svg');
  background-position: 91%;
  background-repeat: no-repeat;
  background-size: 1em;
  padding-left: 1.8em;
  padding-right: 2.8em;
}

.menu-sublinks-1 {
  width: 100%;
  border-bottom: 1px solid rgba(18, 4, 44, .2);
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5em 5em;
  display: flex;
}

.grid-13-content {
  grid-column-gap: .75em;
  grid-row-gap: .75em;
  direction: rtl;
  text-align: right;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.grid-13-image {
  width: 2.5em;
  height: 2.5em;
  min-height: 100%;
  object-fit: contain;
  border-radius: 5px;
  flex: none;
  font-size: 3em;
}

.grid-13-text {
  max-width: 15.5em;
  font-family: Tajawal, sans-serif;
  font-size: 1.1em;
  line-height: 1.6em;
}

.features-column-1 {
  width: 33vw;
  min-height: 100vh;
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5em;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.features-title-block {
  transform: rotate(-90deg);
}

.features-column-2 {
  border-left: 1px solid rgba(255, 255, 255, .15);
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 50vh;
  padding-bottom: 80vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.features-aside-button {
  z-index: 20;
  width: 5em;
  height: 30em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: width .8s cubic-bezier(.785, .135, .15, .86);
  display: flex;
  position: absolute;
  left: 0;
}

.features-aside-button:hover {
  width: 33vw;
}

.listing-6-grid-1 {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.listing-6-grid-2 {
  z-index: 10;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: .25fr .5fr 1fr .25fr;
  grid-auto-columns: 1fr;
  align-items: start;
  padding-top: 5em;
  padding-bottom: 5em;
  transition: padding .6s cubic-bezier(.075, .82, .165, 1);
  display: grid;
  position: relative;
}

.listing-6-grid-2:hover {
  background-image: url('../images/arrow-icon-white-4.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 1.5em;
  padding-top: 6em;
  padding-bottom: 6em;
}

.listing-6-icon {
  z-index: 10;
  width: 1em;
  height: 1em;
  opacity: .5;
  object-fit: contain;
  margin-top: .05em;
  font-size: 1.7em;
  position: relative;
}

.listing-6-text {
  max-width: 20em;
  color: rgba(255, 255, 255, .8);
  font-size: 1.1em;
  line-height: 1.6em;
}

.features-flex {
  width: 100%;
  background-color: var(--light-black);
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.max-width-70 {
  width: 100%;
  max-width: 70em;
  margin-bottom: 4em;
  margin-left: auto;
  margin-right: auto;
}

.is-serif-italic {
  color: rgba(51, 11, 126, .7);
  font-family: URWGeometric, sans-serif;
  font-style: italic;
  font-weight: 700;
}

.tab-content-block-1 {
  width: 100%;
  max-width: 42em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4em;
  padding-bottom: 4em;
  display: flex;
}

.tab-text-1 {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.7em;
}

.tab-text-2 {
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.7em;
}

.features-aside-button-icon {
  z-index: 20;
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 1.7em;
  position: absolute;
}

.uppercase-title-1 {
  z-index: 10;
  color: var(--white);
  text-align: center;
  letter-spacing: .4em;
  text-indent: .4em;
  text-transform: uppercase;
  margin-bottom: 3em;
  font-size: .9em;
  font-weight: 600;
  line-height: 1.6em;
  position: relative;
}

.tab-content-block-2 {
  width: 100%;
  max-width: 42em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4em;
  display: flex;
}

.content-grid-16 {
  width: 100%;
  grid-column-gap: 7.5em;
  grid-row-gap: 4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.grid-16-block-2 {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.grid-16-block-1 {
  width: 100%;
  max-width: 22em;
  grid-row-gap: 2.25em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.grid-16-title-block {
  grid-column-gap: 2.5em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.parallax-sticky-flex {
  z-index: 20;
  width: 100%;
  min-height: 100vh;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.subtitle-text-1 {
  max-width: 23em;
  direction: rtl;
  color: rgba(18, 4, 44, .7);
  text-align: center;
  font-family: Tajawal, sans-serif;
  font-size: 1.8em;
  font-weight: 400;
}

.subtitle-text-1.timeline {
  color: rgba(255, 255, 255, .59);
  font-family: Tajawal, sans-serif;
  font-size: 1.5em;
}

.parallax-image-3 {
  z-index: 5;
  width: 30em;
  height: 20em;
  position: absolute;
  top: 0;
  right: -32.5em;
}

.parallax-image-2 {
  z-index: 5;
  width: 32em;
  height: 27em;
  position: absolute;
  top: 7.5em;
  left: -35em;
}

.parallax-image-1 {
  z-index: 4;
  width: 18em;
  height: 25em;
  position: absolute;
  bottom: -4.7em;
  right: -15em;
}

.parallax-image-4 {
  z-index: 3;
  width: 23em;
  height: 15em;
  position: absolute;
  bottom: 4.7em;
  left: -15em;
}

.header-4 {
  z-index: 10;
  width: 100%;
  min-height: 250vh;
  position: relative;
  overflow: visible;
}

.parallax-content-block {
  z-index: 20;
  width: 100%;
  max-width: 60em;
  grid-row-gap: 2.5em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.parallax-content {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 12em 6em;
  display: flex;
  position: relative;
}

.parallax-content.is-2nd {
  padding-top: 12em;
  padding-bottom: 6em;
}

.parallax-content.with-button {
  padding-top: 12em;
  padding-bottom: 12em;
}

.header-10-text-1 {
  max-width: 28em;
  direction: rtl;
  color: rgba(255, 255, 255, .8);
  font-family: Tajawal, sans-serif;
  font-size: 1.8em;
  line-height: 1.6em;
}

.social-link-block-3 {
  width: 4em;
  height: 4em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
  position: relative;
}

.gallery-padding {
  padding: 14em 0 8em;
}

.parallax-animation-hook-1.with-flex {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.listing-1-list {
  grid-row-gap: 5em;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.listing-1-item {
  width: 100%;
  display: flex;
}

.listing-1-link {
  min-height: 33em;
  border: 1px solid rgba(255, 255, 255, .15);
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 6em;
  transition: border-color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.listing-1-link:hover {
  border-color: rgba(255, 255, 255, .4);
}

.listing-3-background-color {
  z-index: 10;
  mix-blend-mode: multiply;
  background-image: linear-gradient(rgba(10, 3, 24, .2), rgba(10, 3, 24, .8));
  transition: background-color .3s;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.listing-1-content {
  z-index: 20;
  max-width: 27em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  color: var(--white);
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.custom-list-3 {
  max-width: 35em;
  margin-left: auto;
  margin-right: auto;
}

.parallax-animation-large {
  z-index: 1;
  border-radius: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.content-grid-5 {
  grid-column-gap: 10em;
  grid-row-gap: 10em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  justify-items: center;
}

.content-grid-5.with-margin-bottom {
  margin-bottom: 10em;
}

.grid-5-block-2 {
  max-width: 35em;
  grid-column-gap: 2.75em;
  grid-row-gap: 2.75em;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.grid-5-image-2 {
  width: 100%;
  height: 100%;
  max-width: 35em;
  min-height: 55em;
  position: relative;
}

.grid-5-text-1 {
  color: #12042c;
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.8em;
}

.grid-5-text-2 {
  color: rgba(18, 4, 44, .8);
  font-size: 1.4em;
  font-weight: 400;
  line-height: 1.8em;
}

.grid-5-image-1 {
  width: 100%;
  min-height: 25em;
  position: relative;
}

.grid-5-block-1 {
  width: 100%;
  max-width: 28em;
  grid-column-gap: 3.25em;
  grid-row-gap: 3.25em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.grid-5-image-3 {
  width: 100%;
  min-height: 19em;
  position: relative;
}

.listing-3-content {
  z-index: 20;
  max-width: 27em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.listing-6-arrow-icon {
  width: 5em;
  height: 5em;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  transition: border-color .2s;
  position: absolute;
  right: -1.7em;
}

.listing-6-arrow-icon:hover {
  border-color: rgba(255, 255, 255, .2);
}

.listing-6-link-1 {
  padding-bottom: .9em;
  position: relative;
  overflow: hidden;
}

.listing-title-line {
  height: 2px;
  background-color: #fff;
  display: none;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.listing-title-line.is-dark {
  background-color: var(--body-color);
}

.uppercase-title-2 {
  text-align: center;
  letter-spacing: .4em;
  text-indent: .4em;
  text-transform: uppercase;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.6em;
}

.content-grid-text-3 {
  max-width: 16em;
  font-family: URWGeometric, sans-serif;
  font-size: 1.3em;
  line-height: 1.6em;
}

.number-text-3 {
  letter-spacing: -.03em;
  text-indent: -.03em;
  font-family: URWGeometric, sans-serif;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.1em;
}

.content-grid-6 {
  grid-column-gap: 7.5em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr 1fr;
}

.grid-6-text-2 {
  color: rgba(255, 255, 255, .8);
  font-family: Tajawal, sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.9em;
}

.grid-6-block-3 {
  max-width: 28em;
  grid-row-gap: 2.5em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.grid-6-text-1 {
  font-family: Tajawal, sans-serif;
  font-size: 1.3em;
}

.grid-6-image {
  z-index: 20;
  height: 33em;
  position: relative;
}

.grid-6-block-2 {
  max-width: 25em;
  grid-row-gap: 2.5em;
  border-top: 4px solid rgba(255, 255, 255, .25);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 2em;
  display: flex;
}

.subtitle-text-3 {
  max-width: 30em;
  color: rgba(255, 255, 255, .8);
  text-align: center;
  font-size: 1.4em;
  font-weight: 300;
}

.header-buttons {
  grid-column-gap: 2em;
  grid-row-gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 1.5em;
}

.listing-3.is-fullscreen {
  min-height: 100vh;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.listing-3-list {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  padding: 2px;
  display: grid;
}

.listing-3-list.is-fullscreen {
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  display: flex;
}

.services-3-item {
  width: 100%;
  height: 45em;
  padding: 0;
  display: flex;
}

.services-3-item.is-fullscreen {
  height: 100%;
}

.listing-3-link {
  min-height: 33em;
  border: 1px solid rgba(255, 255, 255, .15);
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding: 3em;
  transition: border-color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.listing-3-link:hover {
  border-color: rgba(255, 255, 255, .4);
}

.cta-2-grid {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
}

.cta-2-block-1 {
  position: relative;
}

.cta-2-block-2 {
  z-index: 10;
  background-color: var(--dark-black);
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10em 6em;
  display: flex;
  position: relative;
}

.cta-2-text-1 {
  color: rgba(255, 255, 255, .7);
  text-align: center;
  font-family: Tajawal, sans-serif;
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1.3em;
}

.cta-2-content {
  z-index: 10;
  width: 100%;
  max-width: 32em;
  padding-top: 1em;
  padding-bottom: 1em;
  position: relative;
  overflow: hidden;
}

.cta-background-color {
  z-index: 1;
  background-color: var(--indigo);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.cta-2-title {
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: Tajawal, sans-serif;
  font-size: 1.9em;
  font-weight: 500;
  line-height: 1.3em;
}

.cta-2-icon {
  z-index: 5;
  width: 1em;
  height: 1em;
  object-fit: contain;
  transform-style: preserve-3d;
  font-size: 1.5em;
  position: absolute;
  bottom: 3.3em;
  transform: rotateX(0)rotateY(-4deg)rotateZ(-180deg);
}

.socials-1 {
  z-index: 10;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--white);
  padding: 3em;
  transition: border-color .2s;
  position: relative;
}

.socials-1:hover {
  border-bottom-color: rgba(18, 4, 44, .4);
}

.socials-1.is-black {
  background-color: var(--light-black);
  border-top: 1px solid rgba(255, 255, 255, .15);
  border-bottom-color: rgba(255, 255, 255, .15);
}

.socials-1.is-black:hover {
  border-top-color: rgba(255, 255, 255, .4);
  border-bottom-color: rgba(255, 255, 255, .4);
}

.socials-1-list {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.social-1-link-block {
  width: 5em;
  height: 5em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  display: flex;
  position: relative;
}

.footer-2-column-1 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-1-link-block {
  z-index: 10;
  width: 100%;
  color: var(--body-color);
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 1.1em 0;
  display: flex;
  position: relative;
}

.footer-1-text {
  letter-spacing: 0;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1em;
}

.icon-for-footer-button {
  width: 1em;
  height: 1em;
  object-fit: contain;
  margin-left: 2.1em;
  font-size: 1em;
}

.footer-line-color {
  width: 100%;
  height: 100%;
  background-color: var(--indigo);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.footer-1-icon {
  z-index: 10;
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 1.5em;
  position: relative;
}

.footer-1-link-content {
  grid-column-gap: 5em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-link-line {
  width: 100%;
  height: 2px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.footer-link-line.with-color {
  background-color: rgba(18, 4, 44, .08);
}

.footer-contact-button {
  width: 100%;
  border: 1px solid var(--inactive-link);
  color: var(--body-color);
  text-align: center;
  background-color: rgba(255, 255, 255, .8);
  border-radius: 3px;
  padding: .6em 1em;
  transition: border-color .2s, background-color .2s, color .2s;
}

.footer-contact-button:hover {
  border-color: var(--body-color);
  background-color: var(--body-color);
  color: var(--white);
}

.footer-contact-button.is-2nd {
  border-color: var(--border-color);
  background-color: rgba(255, 255, 255, .6);
}

.footer-contact-button.is-2nd:hover {
  border-color: var(--body-color);
  background-color: var(--body-color);
  color: var(--white);
}

.footer-contact-button.is-transparent {
  color: var(--white);
  background-color: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .2);
}

.footer-contact-button.is-transparent:hover {
  background-color: var(--white);
  color: var(--body-color);
  border-color: rgba(255, 255, 255, .5);
}

.footer-contact-button.is-wihite {
  border-color: var(--white);
  color: var(--body-color);
  background-color: rgba(255, 255, 255, .8);
  font-weight: 500;
}

.footer-contact-button.is-wihite:hover {
  background-color: var(--white);
}

.footer-contant-text {
  font-size: 1em;
}

.subfooter {
  z-index: 20;
  border-top: 1px solid var(--border-color);
  background-color: var(--white-smoke);
  padding-top: 2.5em;
  padding-bottom: 2.5em;
  position: relative;
}

.subfooter-links-list {
  grid-column-gap: 2.75em;
  grid-row-gap: .25em;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.subfooter-text-link {
  color: var(--body-color);
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 50px;
  padding: .4em 0;
  font-size: 1.1em;
  font-weight: 500;
  transition: padding .4s cubic-bezier(.075, .82, .165, 1), border-color .2s, color .2s, background-color .2s;
  display: block;
}

.subfooter-text-link:hover {
  background-color: var(--body-color);
  color: var(--white);
  padding-left: .8em;
  padding-right: .8em;
}

.subfooter-text-link.is-2nd {
  color: rgba(255, 255, 255, .5);
  font-size: .9em;
  font-weight: 300;
}

.subfooter-text-link.is-2nd:hover {
  color: rgba(255, 255, 255, .9);
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(255, 255, 255, .35);
}

.listing-4-list {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.listing-4-item {
  border-top: 1px solid rgba(18, 4, 44, .3);
  display: flex;
  position: relative;
  overflow: hidden;
}

.listing-4-item.in-services:first-child {
  padding-top: 16em;
}

.listing-4-grid {
  grid-column-gap: 5em;
  grid-row-gap: 2em;
  direction: rtl;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
}

.listing-4-content-block {
  max-width: 33em;
  grid-row-gap: 3.5em;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 10em;
  display: flex;
}

.listing-heading-uni-2 {
  color: var(--white);
  font-family: Tajawal, sans-serif;
  font-size: 3.3em;
  font-weight: 600;
  line-height: 1.1em;
  transition: color .2s;
}

.listing-heading-uni-2:hover {
  color: rgba(255, 255, 255, .8);
}

.listing-heading-uni-2.is-case-study {
  font-size: 2.2em;
  font-weight: 500;
}

.listing-4-text-1 {
  color: rgba(255, 255, 255, .85);
  margin-bottom: 4em;
  font-family: Tajawal, sans-serif;
  font-size: 1.5em;
  line-height: 1.7em;
}

.arrow-icon-1 {
  z-index: 2;
  width: 1em;
  height: 1em;
  object-fit: contain;
  transform-style: preserve-3d;
  font-size: 1.2em;
  position: relative;
  transform: rotateX(0)rotateY(-180deg)rotateZ(0);
}

.listing-overlay-color {
  z-index: 2;
  background-color: var(--indigo);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.listing-4-image {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.listing-4-link {
  width: 100%;
  align-self: stretch;
  padding-top: 8em;
  padding-bottom: 8em;
  display: flex;
}

.listing-4-title-block {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: .5em;
  padding-bottom: .5em;
  display: flex;
  overflow: hidden;
}

.arrow-block-1 {
  z-index: 10;
  width: 4em;
  height: 4em;
  position: relative;
}

.listing-animation-color {
  z-index: 3;
  background-color: var(--white);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.circle-bg-1 {
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  border-radius: 50%;
  position: absolute;
}

.parallax-animation-medium {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.grid-14-text-1 {
  max-width: 26em;
  font-family: Tajawal, sans-serif;
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1.7em;
}

.title-text-1 {
  font-size: 1.6em;
  font-weight: 500;
}

.custom-list-4 {
  width: 100%;
}

.cta-1-grid-1 {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  overflow: hidden;
}

.cta-1-block-2 {
  min-height: 30em;
  position: relative;
}

.cta-1-block-1 {
  background-color: var(--silver);
  background-image: linear-gradient(45deg, #cbc0df, var(--silver));
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.cta-1-title {
  font-size: 2.2em;
  font-weight: 600;
  line-height: 1.2em;
}

.cta-1-text {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.7em;
}

.cta-1-content {
  z-index: 10;
  width: 100%;
  max-width: 17em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.cta-1-icon-2 {
  z-index: 21;
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 2.1em;
  display: none;
  position: absolute;
}

.cta-animation-bg {
  z-index: 20;
  background-color: var(--black);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.footer-2-main-grid {
  grid-column-gap: 2.5em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
}

.footer-1-column-3 {
  grid-row-gap: 1em;
  border: 1px solid var(--border-color);
  text-align: center;
  background-color: #fff;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4em 2em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.footer-1-column-2 {
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.address-text-2 {
  color: var(--body-color);
  font-size: 1.2em;
  font-weight: 600;
}

.address-text-2.is-white {
  color: var(--white);
}

.footer-1-buttons {
  z-index: 10;
  width: 100%;
  max-width: 13em;
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.footer-2-grid {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.footer-2-small-link {
  color: rgba(255, 255, 255, .6);
  font-size: 1em;
  transition: color .2s;
}

.footer-2-small-link:hover {
  color: var(--white);
}

.footer-1-address {
  z-index: 10;
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
  display: flex;
  position: relative;
}

.footer-2-grid-block-2 {
  grid-row-gap: 2.5em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-2-links-1 {
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-1-link-block-2 {
  width: 100%;
  grid-column-gap: 2em;
  border: 1px solid var(--border-color);
  color: var(--body-color);
  border-radius: 5px;
  flex: 1;
  justify-content: space-around;
  align-items: center;
  padding: 2em;
  transition: border-color .2s, background-color .2s;
  display: flex;
}

.footer-1-link-block-2:hover {
  background-color: rgba(18, 4, 44, .1);
  border-color: rgba(18, 4, 44, .3);
}

.footer-1-link-icon-2 {
  z-index: 10;
  width: 1em;
  height: 1em;
  opacity: .8;
  object-fit: contain;
  font-size: 3em;
  position: relative;
}

.footer-1-link-text {
  max-width: 18em;
  color: rgba(18, 4, 44, .8);
  text-transform: uppercase;
  font-size: .95em;
  font-weight: 500;
}

.footer-1-content-1 {
  width: 100%;
  max-width: 16em;
  grid-row-gap: .75em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-uppercase-text-2 {
  color: rgba(18, 4, 44, .5);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1em;
  font-size: .6em;
  font-weight: 600;
}

.footer-uppercase-text-2.is-grey {
  color: rgba(255, 255, 255, .5);
}

.footer-image-1 {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.footer-image-1-color {
  z-index: 2;
  background-image: linear-gradient(to top, rgba(255, 255, 255, .95), rgba(255, 255, 255, .8));
  border-radius: 5px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.footer-image-1-color.is-2nd {
  background-image: linear-gradient(to top, rgba(10, 3, 24, .95), rgba(10, 3, 24, .81));
}

.header-7-socials-bg {
  z-index: 1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, .5);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.newsletter-1 {
  z-index: 20;
  width: 100%;
  background-color: var(--white);
  direction: rtl;
  position: relative;
}

.newsletter-list-1 {
  width: 100%;
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: grid;
}

.footer-2 {
  z-index: 20;
  background-color: var(--light-black);
  color: var(--white);
  position: relative;
}

.footer-1-link-text-3 {
  color: var(--cta-color);
}

.footer-image-wrap-1 {
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 5px;
  margin: 2px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.subfooter-1-black {
  z-index: 20;
  background-color: var(--light-black);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 2.5em;
  padding-bottom: 2.5em;
  position: relative;
}

.subfooter-links {
  grid-column-gap: 2em;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.grid-14-block-1 {
  max-width: 27em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.grid-16-text-2 {
  max-width: 9em;
}

.listing-5-list {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.listing-5-list.in-solutions {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  padding: .5em;
}

.listing-5-list.in-case-studies {
  grid-row-gap: 1em;
}

.listing-5-item {
  border-top: 1px solid rgba(18, 4, 44, .3);
  display: flex;
  position: relative;
  overflow: hidden;
}

.listing-5-link {
  width: 100%;
  align-self: stretch;
  padding-top: 8em;
  padding-bottom: 8em;
  display: flex;
}

.listing-5-link.is-case-study-1 {
  min-height: 40em;
  align-items: center;
}

.listing-5-content {
  max-width: 37em;
  grid-column-gap: 2.25em;
  grid-row-gap: 2.25em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.listing-5-content.is-longer {
  max-width: 60em;
}

.listing-5-text {
  color: rgba(255, 255, 255, .85);
  font-size: 1.3em;
  line-height: 1.7em;
}

.contact-link {
  color: var(--white);
  font-family: URWGeometric, sans-serif;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.3em;
}

.contact-links {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.subtitle-text-4 {
  max-width: 23em;
  color: rgba(255, 255, 255, .8);
  text-align: center;
  font-family: Tajawal, sans-serif;
  font-size: 1.8em;
  font-weight: 300;
}

.buttons-flex-2 {
  z-index: 10;
  grid-column-gap: 2em;
  grid-row-gap: 1em;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 5em;
}

.simple-cta-buttons-1 {
  width: 100%;
  max-width: 90em;
  grid-column-gap: 1.75em;
  grid-row-gap: 1.75em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.simple-cta-button-1 {
  width: 100%;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  border: 1px solid var(--border-color);
  color: var(--body-color);
  border-radius: 5px;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  padding: 2em;
  transition: padding .6s cubic-bezier(.075, .82, .165, 1), border-color .2s, background-color .2s;
  display: flex;
}

.simple-cta-button-1:hover {
  background-color: rgba(255, 255, 255, .55);
  border-color: rgba(18, 4, 44, .5);
  padding-left: 3.5em;
  padding-right: 3.5em;
}

.simple-cta-button-1-icon {
  z-index: 10;
  width: 1em;
  height: 1em;
  opacity: .8;
  object-fit: contain;
  font-size: 3em;
  position: relative;
}

.simple-cta-button-1-text-1 {
  max-width: 19em;
  text-align: center;
  font-size: 1.2em;
  font-weight: 400;
}

.simple-cta-button-1-text-2 {
  color: var(--cta-color);
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 600;
  line-height: 1.3em;
}

.address-text-3 {
  font-family: URWGeometric, sans-serif;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.7em;
}

.address-tab-block {
  width: 100%;
  max-width: 37em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 4em;
  padding-bottom: 4em;
  display: flex;
}

.simple-button-2 {
  min-width: 10em;
  color: var(--indigo);
  text-align: center;
  background-color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(51, 11, 126, .3);
  border-radius: 3px;
  padding: .6em 1em;
  font-weight: 500;
  transition: border-color .2s, background-color .2s;
}

.simple-button-2:hover {
  background-color: rgba(51, 11, 126, .1);
  border-color: rgba(51, 11, 126, .5);
}

.simple-button-2.on-dark-bg:hover {
  border-color: var(--white);
  background-color: var(--white);
}

.simple-buttons {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.simple-button-2-text {
  font-family: URWGeometric, sans-serif;
  font-size: 1em;
}

.contact-grid {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form {
  z-index: 10;
  width: 100%;
  text-align: right;
  background-color: rgba(0, 0, 0, 0);
  flex: none;
  margin-bottom: 0;
  padding: 0;
  position: relative;
}

.form.on-dark-bg {
  color: var(--white);
}

.form-block {
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.form-submit-button {
  background-color: var(--indigo);
  direction: rtl;
  text-align: right;
  letter-spacing: .15em;
  text-transform: uppercase;
  background-image: url('../images/east_white_24dp.svg');
  background-position: 85%;
  background-repeat: no-repeat;
  background-size: 1.1em;
  border-radius: 5px;
  align-self: flex-start;
  margin-top: 1em;
  margin-left: auto;
  padding: 1.5em 6.2em 1.5em 3em;
  font-family: Tajawal, sans-serif;
  font-size: 1em;
  font-weight: 500;
  transition: padding .6s cubic-bezier(.075, .82, .165, 1), background-color .2s;
}

.form-submit-button:hover {
  background-color: var(--body-color);
  padding-left: 4em;
  padding-right: 7.5em;
}

.form-submit-button.on-dark-bg {
  background-color: var(--white);
  color: var(--body-color);
  background-image: url('../images/arrow_right_alt_FILL0_wght700_GRAD0_opsz48.svg');
}

.form-submit-button.on-dark-bg:hover {
  background-color: #ccc1e0;
}

.form-field {
  z-index: 5;
  min-height: 4em;
  border-style: solid;
  border-width: 0 0 1px;
  border-color: transparent transparent var(--border-color);
  color: #1b243a;
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: 0;
  padding: .5em 0;
  font-family: Tajawal, sans-serif;
  font-size: 1.4em;
  line-height: 1.1em;
  transition: border-color .5s;
  position: relative;
}

.form-field:hover {
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-color: var(--body-color);
  border-left-width: 0;
}

.form-field:active {
  border-color: transparent transparent var(--body-color);
}

.form-field:focus {
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-color: var(--body-color);
  background-color: rgba(0, 0, 0, 0);
  border-left-width: 0;
}

.form-field:focus-visible {
  border-bottom-color: var(--body-color);
}

.form-field[data-wf-focus-visible] {
  border-bottom-color: var(--body-color);
}

.form-field::-ms-input-placeholder {
  color: rgba(18, 4, 44, .5);
  font-size: .9em;
}

.form-field::placeholder {
  color: rgba(18, 4, 44, .5);
  font-size: .9em;
}

.form-field.is-text-area {
  min-height: 8em;
  margin-bottom: 1.2em;
  padding-top: 1.3em;
  font-family: Tajawal, sans-serif;
}

.form-field.on-dark-bg {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, .25);
}

.form-field.on-dark-bg:hover {
  border-bottom-color: var(--white);
}

.form-field.on-dark-bg::-ms-input-placeholder {
  color: rgba(255, 255, 255, .65);
}

.form-field.on-dark-bg::placeholder {
  color: rgba(255, 255, 255, .65);
}

.checkbox-field {
  justify-content: flex-start;
  align-items: center;
  padding-top: .5em;
  padding-bottom: .5em;
  padding-left: 0;
  display: flex;
}

.checkbox {
  width: 2em;
  height: 2em;
  cursor: pointer;
  border-width: 2px;
  border-color: rgba(51, 11, 126, .5);
  border-radius: 50%;
  flex: none;
  margin: 0 1em 0 0;
  transition: border-width .2s, background-color .2s, border-color .2s;
}

.checkbox:hover {
  border-width: 4px;
  border-color: #330b7e;
}

.checkbox.w--redirected-checked {
  border-color: var(--indigo);
  background-color: var(--indigo);
  background-size: 1.1em;
}

.checkbox.w--redirected-focus {
  border-color: var(--body-color);
  background-color: var(--border-color);
  box-shadow: none;
}

.checkbox.on-dark-bg {
  border-color: rgba(255, 255, 255, .5);
}

.checkbox.on-dark-bg:hover {
  border-color: rgba(255, 255, 255, .8);
}

.checkbox.on-dark-bg.w--redirected-checked {
  border-color: var(--white);
  background-color: var(--white);
  background-image: url('../images/done_FILL0_wght700_GRAD0_opsz48.svg');
  background-size: 1.5em;
}

.checkbox-label {
  font-family: Tajawal, sans-serif;
  font-size: 1.2em;
  line-height: 1.2em;
}

.contact-grid-column-2 {
  width: 100%;
  max-width: 35em;
  grid-column-gap: 5em;
  grid-row-gap: 0em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.simple-cta-button-2 {
  width: 100%;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  color: var(--body-color);
  flex: 1;
  justify-content: space-around;
  align-items: center;
  padding: 3em 12em;
  transition: padding .6s cubic-bezier(.075, .82, .165, 1), border-color .2s, background-color .2s;
  display: flex;
}

.simple-cta-button-2:hover {
  background-color: rgba(255, 255, 255, .55);
  border-color: rgba(18, 4, 44, .5);
  padding-left: 8em;
  padding-right: 8em;
  font-weight: 600;
}

.simple-cta-button-2-text-2 {
  max-width: 19em;
  text-align: center;
  font-family: Tajawal, sans-serif;
  font-size: 1.2em;
}

.simple-cta-button-2-text-1 {
  color: var(--indigo);
  letter-spacing: .03em;
  text-transform: uppercase;
  font-family: Tajawal, sans-serif;
  font-size: .8em;
  font-weight: 600;
  line-height: 1.3em;
}

.form-image-size-2 {
  height: 40em;
  position: relative;
}

.while-scrolling-effect {
  z-index: 1;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.while-scrolling-effect.is-relative-position {
  z-index: 5;
  position: relative;
}

.image-type-2 {
  height: 30em;
  position: relative;
}

.grid-11 {
  grid-column-gap: 10em;
  grid-row-gap: 10em;
  grid-template-rows: auto;
}

.address-text-5 {
  font-family: URWGeometric, sans-serif;
  font-size: 1.5em;
  line-height: 1.9em;
}

.address-text-5.is-2nd {
  color: rgba(255, 255, 255, .8);
}

.address-block {
  max-width: 30em;
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.header-2-grid {
  grid-column-gap: 10em;
  grid-row-gap: 10em;
  grid-template-rows: auto;
}

.header-2-column {
  grid-column-gap: 6em;
  grid-row-gap: 6em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.header-2-text-1 {
  color: rgba(255, 255, 255, .7);
  font-size: 1.3em;
  line-height: 1.9em;
}

.header-2-content-1 {
  max-width: 39em;
  grid-column-gap: 4em;
  grid-row-gap: 4em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.header-2-padding {
  padding: 12em 0 14em;
}

.header-2-text-2 {
  max-width: 30em;
  color: rgba(255, 255, 255, .8);
  font-size: 1.1em;
  line-height: 1.9em;
}

.header-2-quote-icon {
  z-index: 1;
  width: 1em;
  height: 1em;
  opacity: .15;
  object-fit: contain;
  font-size: 7em;
  position: absolute;
  top: -.4em;
  left: -.4em;
}

.moving-while-scrolling-8rem {
  z-index: 5;
  position: relative;
}

.breadcrumbs-3 {
  grid-column-gap: 2.5em;
  grid-row-gap: 1em;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 4em;
  display: flex;
}

.breadcrumb-text-1 {
  color: rgba(255, 255, 255, .5);
  transition: color .2s;
}

.breadcrumb-text-1:hover {
  color: rgba(255, 255, 255, .7);
}

.breadcrumb-text-1.w--current {
  color: var(--white);
}

.header-2-image-size-1 {
  height: 50em;
  position: relative;
}

.ui-kit-header {
  z-index: 10;
  background-color: var(--light-black);
  color: var(--white);
  padding-top: 12em;
  padding-bottom: 4em;
  padding-left: 0;
  position: relative;
}

.breadcrumbs-1 {
  max-width: 45%;
  grid-column-gap: 2.5em;
  grid-row-gap: 1em;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 4em;
  display: flex;
}

.image-size-uni {
  height: 43em;
  position: relative;
}

.images {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.image-block {
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.image-description {
  letter-spacing: -.05em;
  font-size: 2.5em;
  font-weight: 700;
}

.opacity-50 {
  opacity: .5;
}

.title-1-block {
  width: 100%;
  max-width: 46%;
}

.listing-6-title-block {
  z-index: 20;
  width: 100%;
  max-width: 60em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.content-text-3 {
  color: rgba(255, 255, 255, .7);
  font-size: 1.7em;
  font-weight: 300;
  line-height: 1.5em;
}

.listing-6 {
  z-index: 10;
  width: 100%;
  position: relative;
}

.listing-1-bg-color-1 {
  z-index: 2;
  mix-blend-mode: multiply;
  background-image: linear-gradient(rgba(10, 3, 24, .2), rgba(10, 3, 24, .8));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.relative-image {
  z-index: 10;
  width: 100%;
  position: relative;
}

.empty-state-default {
  background-color: var(--border-color);
  border: 1px solid rgba(18, 4, 44, .3);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5em;
  font-size: 2em;
  font-weight: 500;
  display: flex;
}

.listing-2 {
  display: flex;
}

.listing-5-image {
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.listing-7-link-1 {
  color: var(--body-color);
  padding-bottom: .9em;
  position: relative;
  overflow: hidden;
}

.header-7 {
  z-index: 5;
  position: relative;
}

.header-5 {
  z-index: 20;
  position: relative;
}

.footer-5-grid-2 {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  grid-template-rows: auto;
  margin-top: 4em;
}

.footer-2-padding {
  padding: 8em 0 4em;
}

.footer-1-grid-1-copy {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr .5fr;
}

.footer-simple {
  z-index: 20;
  background-color: var(--dark-black);
  direction: rtl;
  position: relative;
}

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

.footer-large-link-block-2 {
  width: 100%;
  grid-column-gap: 2em;
  opacity: .6;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 5px;
  flex: 1;
  justify-content: space-around;
  align-items: center;
  padding: 2em;
  transition: padding .6s cubic-bezier(.075, .82, .165, 1), border-color .2s, background-color .2s;
  display: flex;
}

.footer-large-link-block-2:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .4);
  padding-left: 3em;
  padding-right: 3em;
}

.footer-1-link-text-1 {
  max-width: 18em;
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 300;
}

.footer-1-link-text-2 {
  font-size: 1em;
}

.footer-1-link-icon {
  z-index: 10;
  width: 1em;
  height: 1em;
  opacity: .8;
  object-fit: contain;
  font-size: 1.3em;
  position: relative;
}

.footer-main-link {
  color: var(--white);
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding-top: .6em;
  padding-bottom: .6em;
  font-size: 1.6em;
  display: flex;
}

.footer-main-link.in-footer-3 {
  padding-top: .3em;
  padding-bottom: .3em;
  font-size: 2em;
  transition: padding .6s cubic-bezier(.075, .82, .165, 1);
}

.footer-main-link.in-footer-3:hover {
  padding-top: .6em;
  padding-bottom: .6em;
}

.footer-simple-padding {
  padding-top: 8em;
  padding-bottom: 8em;
}

.footer-simple-title {
  color: var(--white);
  text-transform: capitalize;
  font-family: Tajawal, sans-serif;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.6em;
}

.footer-simple-title.is-black {
  color: var(--body-color);
}

.footer-simple-grid {
  grid-column-gap: 3em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr;
}

.footer-simple-title-block {
  max-width: 44em;
}

.footer-simple-button-block {
  grid-column-gap: 2em;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer-simple-links {
  grid-row-gap: 1em;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.footer-simple-link {
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  padding-top: .3em;
  padding-bottom: .3em;
  padding-right: 1.5em;
  font-family: Tajawal, sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.1em;
  display: flex;
}

.footer-simple-link.is-black {
  color: var(--body-color);
  font-weight: 500;
}

.footer-contact-link-text {
  max-width: 18em;
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  padding-top: .4em;
  padding-bottom: .4em;
  font-size: .9em;
  font-weight: 300;
  transition: border-color .2s;
  position: relative;
}

.footer-contact-link-text:hover {
  border-bottom-color: rgba(255, 255, 255, .5);
}

.footer-contact-link-text.is-black {
  color: var(--body-color);
}

.footer-simple-contacts {
  grid-column-gap: 3.5em;
  grid-row-gap: 1em;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.header-1-content-bg {
  z-index: 1;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: rgba(10, 3, 24, .7);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header-1 {
  z-index: 10;
  background-color: var(--light-black);
  color: var(--white);
  padding-top: 18em;
  padding-bottom: 4em;
  padding-left: 0;
  position: relative;
  overflow: hidden;
}

.header-1-block-1 {
  z-index: 20;
  width: 100%;
  max-width: 60%;
  padding: 5em;
  position: relative;
  overflow: hidden;
}

.header-1-text-1 {
  color: rgba(255, 255, 255, .8);
  font-size: 1.4em;
  line-height: 1.4em;
}

.header-1-link {
  min-width: 15em;
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gradient-bg-for-parallax-1 {
  z-index: 1;
  background-image: linear-gradient(45deg, #f1e9ff, #f6f6e5);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header-2 {
  z-index: 10;
  background-color: var(--dark-black);
  color: var(--white);
  position: relative;
}

.footer-3 {
  z-index: 20;
  background-color: var(--light-black);
  position: relative;
}

.footer-3-padding {
  padding: 10em 0;
}

.footer-3-grid {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr .5fr .5fr;
}

.footer-3-grid-links {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.footer-3-link {
  color: rgba(255, 255, 255, .5);
  font-size: 1em;
  transition: color .2s;
}

.footer-3-link:hover {
  color: rgba(255, 255, 255, .8);
}

.footer-3-subtitle-1 {
  color: var(--white);
}

.footer-3-buttons {
  width: 100%;
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column wrap;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.footer-3-button-1 {
  width: 100%;
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  opacity: .6;
  color: var(--white);
  background-color: rgba(255, 255, 255, .11);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 3px;
  justify-content: flex-start;
  align-items: center;
  padding: 1.5em;
  transition: border-color .2s, background-color .2s;
  display: flex;
}

.footer-3-button-1:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .33);
}

.footer-3-button-text-1 {
  max-width: 18em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 400;
}

.footer-3-button-2 {
  width: 100%;
  grid-column-gap: 2em;
  opacity: .7;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 3px;
  justify-content: space-between;
  align-items: center;
  padding: 1.3em 1.5em;
  transition: border-color .2s, background-color .2s;
  display: flex;
}

.footer-3-button-2:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .4);
}

.footer-3-button-text-2 {
  max-width: 21em;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 300;
}

.footer-3-button-text-3 {
  max-width: 18em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 300;
}

.footer-3-button-content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-3-icon-1 {
  z-index: 10;
  width: 1em;
  height: 1em;
  opacity: .8;
  object-fit: contain;
  font-size: 1.6em;
  position: relative;
}

.footer-3-icon-2 {
  z-index: 10;
  width: 1em;
  height: 1em;
  opacity: .8;
  object-fit: contain;
  font-size: 1.2em;
  position: relative;
}

.footer-3-button-3 {
  width: 100%;
  grid-column-gap: 2em;
  opacity: .7;
  color: var(--white);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .15);
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 1em;
  transition: border-color .2s, background-color .2s;
  display: flex;
}

.footer-3-button-3:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .3);
}

.footer-3-buttons-2 {
  width: 100%;
  grid-column-gap: .75em;
  border-radius: 3px;
  flex-direction: row;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.footer-3-button-text-4 {
  max-width: 7em;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .7em;
  font-weight: 300;
}

.footer-3-grid-block-2 {
  grid-row-gap: 2.5em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: .8em;
  padding-bottom: .8em;
  display: flex;
}

.footer-3-grid-block-1 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-3-links {
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.header-1-flex-1 {
  z-index: 10;
  grid-row-gap: 1em;
  border-left: 5px solid rgba(255, 255, 255, .25);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 2.5em;
  display: flex;
  position: relative;
}

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

.button-icon-1 {
  z-index: 10;
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 1.7em;
  display: block;
  position: absolute;
}

.button-icon-1.is-2nd {
  display: none;
}

.header-9 {
  z-index: 10;
  background-color: var(--white);
  position: relative;
}

.header-2-image-size-2 {
  height: 30em;
  position: relative;
}

.header-3-buttons, .header-5-buttons {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.header-8-flex-1 {
  z-index: 10;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-8-content {
  width: 100%;
  max-width: 57em;
  min-height: 200vh;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.header-9-title-block {
  padding-top: 15em;
  padding-bottom: 15em;
}

.header-10 {
  z-index: 5;
  width: 100%;
  min-height: 100vh;
  background-color: var(--body-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: visible;
}

.grid-16-text-1 {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.8em;
}

.grid-15-title {
  color: rgba(18, 4, 44, .5);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 700;
}

.content-block-4 {
  max-width: 40em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.title-block-1 {
  width: 100%;
  max-width: 60em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10em;
  padding-bottom: 10em;
  display: flex;
}

.ui-buttons-flex {
  width: 100%;
  max-width: 40em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.ui-buttons-grid {
  width: 100%;
  grid-column-gap: 5em;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.button-description {
  margin-bottom: 2.8em;
  font-size: .9em;
}

.listing-9-grid {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.listing-9-item {
  z-index: 1;
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  border: 1px solid #cbc9d4;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: -1px;
  margin-left: -1px;
  padding: 2.5em;
  transition: box-shadow .2s, background-color .2s;
  display: flex;
  position: relative;
}

.listing-9-item:hover {
  z-index: 2;
  background-color: var(--white);
  box-shadow: 0 20px 50px -20px rgba(18, 4, 44, .4);
}

.listing-9-image-size {
  z-index: 5;
  width: 25%;
  max-width: 10em;
  border-radius: 5px;
  flex: none;
  align-self: stretch;
  position: relative;
}

.listing-9-content {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.listing-9-text-1 {
  max-width: 18em;
  color: rgba(18, 4, 44, .6);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .7em;
  font-weight: 500;
}

.simple-link-1 {
  grid-column-gap: 1em;
  color: rgba(18, 4, 44, .7);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  padding: .5em 0;
  font-family: URWGeometric, sans-serif;
  transition: color .2s, padding .6s cubic-bezier(.075, .82, .165, 1), background-color .2s;
  display: flex;
}

.simple-link-1:hover {
  color: var(--white);
  background-color: rgba(10, 3, 24, .8);
  background-image: url('../images/arrow-icon-white-4.svg');
  background-position: 84%;
  background-repeat: no-repeat;
  background-size: .8em;
  padding-left: 1.3em;
  padding-right: 2.2em;
}

.header-11 {
  z-index: 10;
  background-color: var(--light-black);
  color: var(--white);
  padding-top: 14em;
  padding-bottom: 6em;
  position: relative;
}

.header-11-image {
  width: 50%;
  margin-top: 8.3em;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.nav-contact-text {
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: Tajawal, sans-serif;
  font-size: .9em;
  font-weight: 700;
  line-height: .9em;
}

.socials-header-7 {
  z-index: 10;
  transition: border-color .2s;
  position: relative;
}

.socials-header-7:hover {
  border-bottom-color: rgba(18, 4, 44, .4);
}

.grid-16-number {
  min-width: 1.5em;
  color: var(--indigo);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 700;
}

.grid-title-1 {
  max-width: 18em;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .7em;
  font-weight: 600;
  line-height: 1.6em;
}

.grid-2-image-1 {
  z-index: 10;
  width: 100%;
  height: 100%;
  min-height: 40em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.content-grid-8 {
  width: 100%;
  max-width: 80em;
  grid-column-gap: 10em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
  align-items: center;
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
}

.grid-3-image-3 {
  z-index: 20;
  width: 20em;
  height: 10em;
  object-fit: cover;
  position: absolute;
  bottom: 5em;
  right: -10em;
}

.grid-3-image-2 {
  z-index: 20;
  width: 10em;
  height: 10em;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: -5em;
}

.grid-4-image-1 {
  z-index: 10;
  width: 100%;
  height: 40em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.grid-10-line {
  width: 100%;
  height: 5px;
  background-color: var(--body-color);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.cta-1-icon-1 {
  z-index: 5;
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 2.1em;
  display: none;
}

.newsletter-images {
  flex-direction: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.newsletter-text-2 {
  max-width: 14em;
  font-family: Tajawal, sans-serif;
  font-size: 2em;
  line-height: 1.2em;
}

.overflow-link-block {
  overflow: hidden;
}

.footer-3-line-1 {
  width: 1px;
  background-color: rgba(255, 255, 255, .5);
  align-self: stretch;
}

.footer-3-column-3, .footer-2-column {
  grid-row-gap: 1em;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4em 2em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.content-grid-14 {
  width: 100%;
  grid-column-gap: 5em;
  grid-row-gap: 2em;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  overflow: hidden;
}

.grid-14-block-2 {
  max-width: 33em;
  grid-row-gap: 3.5em;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 10em;
  display: flex;
}

.grid-14-block-2.custom {
  max-width: 50em;
}

.number-text-6 {
  color: var(--white);
  text-align: center;
  letter-spacing: -.03em;
  text-indent: -.03em;
  font-size: 3.5em;
  font-weight: 500;
  line-height: 1.1em;
}

.number-text-6.is-smaller {
  font-size: 2em;
  font-weight: 400;
}

.content-text-2 {
  color: rgba(255, 255, 255, .7);
  letter-spacing: .5em;
  text-indent: .5em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 700;
}

.content-block-2 {
  grid-row-gap: .75em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: .5em;
  display: flex;
  overflow: hidden;
}

.grid-1-list {
  max-width: 40em;
  direction: rtl;
}

.grid-8-text-1 {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.2em;
}

.grid-8-text-2 {
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.6em;
}

.grid-4-line {
  width: 100%;
  height: 1px;
  background-color: rgba(20, 22, 27, .15);
}

.grid-4-text-1 {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.2em;
}

.grid-4-text-2 {
  text-align: right;
  font-family: Tajawal, sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.6em;
}

.collection-item {
  flex: 1;
  display: flex;
}

.ui-nav-height-2 {
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.ui-nav-height-1 {
  height: 80vh;
  background-color: var(--light-black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.ui-kit-title-block {
  width: 100%;
  max-width: 80em;
}

.topfooter-1 {
  z-index: 20;
  width: 100%;
  min-height: 13em;
  background-color: #eeedf0;
  background-image: linear-gradient(45deg, var(--silver), var(--thistle));
  border-top: 1px solid rgba(18, 4, 44, .3);
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: relative;
  overflow: hidden;
}

.socials-2 {
  z-index: 10;
  width: 140%;
  align-self: center;
  position: relative;
}

.socials-2:hover {
  border-bottom-color: rgba(18, 4, 44, .4);
}

.topfooter-1-block-1 {
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  transition: width .6s cubic-bezier(.075, .82, .165, 1);
  display: flex;
}

.topfooter-1-block-1:hover {
  width: 120%;
}

.topfooter-1-menu-button {
  color: var(--body-color);
  cursor: pointer;
  border-right: 1px solid rgba(18, 4, 44, .3);
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 3em;
  transition: background-color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.topfooter-1-menu-button:hover {
  background-color: rgba(255, 255, 255, .5);
}

.topfooter-1-menu-button.is-2nd {
  border-left: 1px solid rgba(18, 4, 44, .3);
  border-right-color: rgba(0, 0, 0, 0);
}

.topfooter-1-button-text {
  z-index: 10;
  font-size: 1.8em;
  font-weight: 500;
  position: relative;
}

.topfooter-1-background {
  z-index: 1;
  background-color: var(--light-black);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.cms-links-block {
  z-index: 20;
  border-top: 1px solid var(--border-color);
  margin-top: 8.2em;
  padding-top: 2em;
  position: relative;
  top: 1px;
}

.cms-links-block.on-dark-bg {
  border-top-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.cms-links-block.with-background {
  background-image: none;
}

.menu-links-6-flex {
  grid-column-gap: 0em;
  grid-row-gap: .5em;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.logo-image-default {
  z-index: 10;
  width: 7em;
  height: 2.9em;
  object-fit: contain;
  object-position: 0% 50%;
  flex: none;
  display: none;
  position: relative;
}

.dropdown-toggle {
  z-index: 10;
  color: rgba(255, 255, 255, .8);
  border-top: 1px solid rgba(0, 0, 0, 0);
  justify-content: center;
  align-self: stretch;
  align-items: center;
  margin: 0;
  padding: 0 1em;
  font-weight: 500;
  transition: color .2s, border-color .2s;
  display: flex;
  top: -1px;
}

.dropdown-toggle:hover {
  border-top-color: var(--white);
  color: var(--white);
}

.dropdown-toggle.is-2nd {
  color: rgba(18, 4, 44, .6);
}

.dropdown-toggle.is-2nd:hover {
  border-top-color: var(--body-color);
  color: var(--body-color);
}

.dropdown-toggle.lightmenu {
  color: rgba(34, 34, 34, .8);
}

.subfooter-links-list-2 {
  grid-column-gap: 2.75em;
  grid-row-gap: .25em;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-2-uppercase-title {
  color: #fff;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1em;
  font-size: .6em;
  font-weight: 600;
}

.address-text-4 {
  color: var(--body-color);
  font-size: 1.2em;
  font-weight: 600;
}

.footer-uppercase-text-4 {
  color: rgba(18, 4, 44, .5);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1em;
  font-size: .6em;
  font-weight: 600;
}

.content-block-1 {
  width: 100%;
  max-width: 56em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.content-text-1 {
  direction: rtl;
  color: rgba(18, 4, 44, .8);
  text-align: center;
  font-family: Tajawal, sans-serif;
  font-size: 1.7em;
  line-height: 1.7em;
}

.circle-images {
  flex-direction: row;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.circle-image {
  z-index: 1;
  width: .8em;
  height: .8em;
  object-fit: cover;
  border-radius: 50%;
  flex: none;
  font-size: 6.3em;
  position: relative;
}

.circle-image.is-2nd {
  z-index: 2;
  margin-left: -15%;
}

.circle-image.is-3rd {
  margin-left: -15%;
}

.newsletter-2 {
  z-index: 20;
  width: 100%;
  direction: rtl;
  color: var(--white);
  background-color: #1f1a29;
  position: relative;
}

.circle-button {
  z-index: 1;
  width: 4em;
  height: 4em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.overflow-hidden-block {
  padding-top: .5em;
  padding-bottom: .5em;
  overflow: hidden;
}

.video-bg-color-2 {
  z-index: 20;
  background-image: linear-gradient(to bottom, var(--dark-black), rgba(51, 11, 126, 0));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.grid-11-text-2 {
  max-width: 12em;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.6em;
}

.header-3-gradient-color-2 {
  z-index: 2;
  height: 50%;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--dark-black) 90%);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.listing-6-item {
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.listing-6-item:last-child {
  border-bottom-width: 0;
  border-bottom-color: rgba(0, 0, 0, 0);
}

.header-1-bg {
  z-index: 9;
  mix-blend-mode: multiply;
  background-image: linear-gradient(rgba(15, 12, 22, .8), rgba(15, 12, 22, 0) 60%);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header-1-link-bg {
  z-index: 1;
  background-color: var(--dark-black);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.title-block-2 {
  width: 100%;
  max-width: 56em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 6em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.gradient-bg-for-parallax-2 {
  z-index: 1;
  background-image: linear-gradient(to top, var(--white), #e0dcda);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header-12 {
  padding-top: 16em;
  padding-bottom: 4em;
}

.header-12.solutions {
  padding-top: 8em;
  padding-bottom: 6em;
}

.header-12.solutions.dark {
  background-color: var(--dark-black);
  padding-bottom: 8em;
}

.header-12._404 {
  background-color: #000;
}

.rounded-image {
  z-index: 1;
  width: .8em;
  height: .8em;
  object-fit: cover;
  border-radius: 10px;
  flex: none;
  font-size: 6.3em;
  position: relative;
}

.rounded-image.is-2nd {
  z-index: 2;
  width: 1em;
  height: 1em;
  margin-left: -15%;
}

.rounded-image.is-3rd {
  margin-left: -15%;
}

.listing-10-flex {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.listing-10-item {
  z-index: 1;
  width: 100%;
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  transition: box-shadow .2s, background-color .2s;
  display: flex;
  position: relative;
}

.listing-10-item:nth-child(2n) {
  flex-direction: row-reverse;
}

.listing-10-item:hover {
  z-index: 2;
  background-color: rgba(18, 4, 44, 0);
  box-shadow: 0 20px 50px -20px rgba(18, 4, 44, .4);
}

.listing-10-image-size {
  z-index: 5;
  width: 46%;
  flex: none;
  align-self: stretch;
  position: relative;
}

.listing-10-content {
  grid-column-gap: 2.5em;
  grid-row-gap: 2.5em;
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 10em 6em;
  display: flex;
}

.header-12-text-1 {
  color: rgba(18, 4, 44, .8);
  text-align: center;
  font-family: URWGeometric, sans-serif;
  font-size: 1.7em;
  line-height: 1.7em;
}

.header-12-content {
  width: 100%;
  max-width: 53em;
  grid-row-gap: 2em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.header-12-content.with-margin-bottom {
  margin-bottom: 6em;
}

.listing-10-text-1 {
  max-width: 18em;
  color: rgba(18, 4, 44, .6);
  letter-spacing: .3em;
  text-indent: .3em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 600;
}

.image-size-50em {
  height: 50em;
}

.slider-gradient-color-2 {
  z-index: 2;
  height: 100vh;
  mix-blend-mode: multiply;
  background-color: rgba(10, 3, 24, .4);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 20%, rgba(18, 4, 44, .7));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slider-overlay-color {
  z-index: 2;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slider-overlay-color-sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.welcome-title {
  color: var(--white);
  font-size: 2em;
  font-weight: 600;
}

.sticky-column-3 {
  width: 50%;
  min-height: 100vh;
  grid-row-gap: 4em;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 14em;
  padding-bottom: 14em;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.sticky-column-3.in-overview {
  padding-left: 4em;
  padding-right: 4em;
}

.clients-2-list {
  flex-flow: column wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.client-2-item {
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  transition: border-color .4s;
}

.client-2-item:hover {
  border-bottom-color: var(--body-color);
}

.client-2-link {
  grid-column-gap: 1.25em;
  grid-row-gap: 2.25em;
  color: var(--body-color);
  justify-content: space-between;
  align-items: center;
  padding: 4em 10em;
  transition: border-color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.client-2-block-1 {
  z-index: 10;
  min-width: 50%;
  grid-column-gap: 5em;
  grid-row-gap: 2em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.client-2-block-2 {
  z-index: 10;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.client-2-text-1 {
  max-width: 30em;
  color: rgba(18, 4, 44, .7);
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5em;
}

.client-2-text-2 {
  min-width: 3em;
  text-align: right;
  letter-spacing: -.04em;
  text-indent: -.04em;
  text-transform: uppercase;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.3em;
}

.client-2-text-3 {
  color: rgba(18, 4, 44, .4);
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 600;
}

.client-2-logo {
  width: 7em;
  height: 2em;
  object-fit: contain;
  object-position: 0% 50%;
  flex: none;
}

.client-logo-block {
  min-width: 10em;
}

.client-animation-bg {
  z-index: 1;
  background-color: var(--white);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.client-2-years {
  grid-column-gap: 2em;
  grid-row-gap: 1em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.client-2-line {
  width: 3em;
  height: 1px;
  background-color: var(--inactive-link);
}

.client-2-year-text {
  color: rgba(18, 4, 44, .6);
  text-transform: uppercase;
  font-size: 1em;
  font-weight: 600;
}

.client-2-year-text.is-2nd {
  color: var(--body-color);
}

.case-study-title-2 {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-family: Gilda Display, sans-serif;
  font-size: 9vw;
  font-weight: 400;
  line-height: .9em;
}

.large-title-block-2 {
  width: 100%;
  max-width: 45vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.bg-color-for-sticky-sec-2 {
  z-index: 15;
  mix-blend-mode: multiply;
  background-color: rgba(10, 2, 24, .85);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.case-study-results {
  z-index: 10;
  grid-column-gap: 5em;
  grid-row-gap: 1em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.case-study-result {
  grid-column-gap: .25em;
  grid-row-gap: .25em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.case-study-result-text {
  color: rgba(255, 255, 255, .7);
  letter-spacing: .1em;
  text-indent: .1em;
  text-transform: uppercase;
  font-size: .7em;
}

.case-study-result-number {
  color: var(--white);
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 600;
  line-height: 1.1em;
}

.grid-13-text-2 {
  letter-spacing: -.05em;
  text-indent: -.05em;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.3em;
}

.service-rich-text-block {
  width: 100%;
  max-width: 60em;
  grid-row-gap: 4em;
  border-left: 1px solid rgba(255, 255, 255, .2);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-left: 6em;
  padding-right: 6em;
  display: flex;
}

.service-rich-text-block.with-black-border {
  border-left-color: var(--border-color);
}

.image-size-33em {
  z-index: 20;
  height: 33em;
  position: relative;
}

.image-size-33em.with-margin-bottom {
  margin-bottom: 8em;
}

.content-block-5 {
  width: 100%;
  max-width: 63em;
  grid-row-gap: 3.75em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 6em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.sticky-column-4 {
  width: 50%;
  min-height: 100vh;
  grid-row-gap: 10em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 8.2em;
  padding-top: 8em;
  padding-bottom: 8em;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.client-large-text-1 {
  font-size: 2.3em;
  font-weight: 300;
  line-height: 1.9em;
}

.sticky-column-5 {
  width: 50%;
  grid-row-gap: 4em;
  color: var(--white);
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80vh;
  padding-bottom: 80vh;
  padding-left: 6em;
  display: flex;
  position: relative;
}

.image-collage-1 {
  width: 100%;
  height: 35em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.rich-text-on-dark-bg {
  color: var(--white);
}

.rich-text-on-dark-bg h2 {
  letter-spacing: -.02em;
  margin-bottom: .4em;
  font-size: 3em;
  font-weight: 600;
  line-height: 1.1em;
}

.rich-text-on-dark-bg p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: .3em;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.7em;
}

.rich-text-on-dark-bg h3 {
  margin-top: 1.1em;
  margin-bottom: .5em;
  font-size: 2.2em;
  font-weight: 600;
  line-height: 1.1em;
}

.rich-text-on-dark-bg h4 {
  margin-top: 1.5em;
  margin-bottom: .5em;
  font-size: 1.9em;
  font-weight: 600;
  line-height: 1.1em;
}

.rich-text-on-dark-bg h5 {
  margin-top: 1.5em;
  margin-bottom: 1em;
  font-size: 1.7em;
  font-weight: 600;
  line-height: 1.1em;
}

.rich-text-on-dark-bg h6 {
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.1em;
}

.rich-text-on-dark-bg h1 {
  margin-bottom: .6em;
  font-size: 4em;
  font-weight: 700;
  line-height: 1em;
}

.rich-text-on-dark-bg a {
  color: rgba(255, 255, 255, .6);
  text-decoration: underline;
  transition: color .2s;
}

.rich-text-on-dark-bg a:hover {
  opacity: 1;
  color: var(--white);
  text-decoration: underline;
}

.rich-text-on-dark-bg strong {
  color: var(--white);
  font-weight: 500;
}

.rich-text-on-dark-bg blockquote {
  color: #c6bdd6;
  border-left-color: rgba(198, 189, 214, .5);
}

.rich-text-on-dark-bg.in-review-page {
  text-align: center;
}

.menu-links-1-smaller {
  font-size: .8em;
}

.grid-17-block-1 {
  max-width: 34em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 6em;
}

.quote-icon-in-corner {
  z-index: 1;
  width: 1em;
  height: 1em;
  opacity: .15;
  object-fit: contain;
  font-size: 7em;
  position: absolute;
  top: -.4em;
  left: -.4em;
}

.content-grid-17 {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.grid-17-block-2 {
  max-width: 44em;
}

.header-1-block-2 {
  z-index: 20;
  width: 100%;
  max-width: 63em;
  position: relative;
}

.header-1-bg-2 {
  z-index: 9;
  mix-blend-mode: multiply;
  background-image: linear-gradient(rgba(15, 12, 22, .9), rgba(42, 37, 54, .5));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header-1-flex-2 {
  grid-column-gap: 5em;
  grid-row-gap: 2em;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.breadcrumbs-block-1 {
  grid-column-gap: 2.5em;
  grid-row-gap: 1em;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.7em;
  display: flex;
}

.large-title-block-3 {
  width: 100%;
  max-width: 80vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.bg-color-for-sticky-sec-3 {
  z-index: 15;
  mix-blend-mode: multiply;
  background-color: rgba(10, 2, 24, .5);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.rich-text-block-1 {
  width: 100%;
  max-width: 60em;
  margin-left: auto;
  margin-right: auto;
}

.uppercase-title-3 {
  text-align: center;
  letter-spacing: .4em;
  text-indent: .4em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 600;
  line-height: 1.6em;
}

.uppercase-title-3.is-white {
  color: var(--white);
}

.case-study-logo-client {
  width: 7em;
  height: 4em;
  object-fit: contain;
  object-position: 0% 50%;
  flex: none;
  margin-bottom: -1em;
}

.vertical-flex-with-gap-1 {
  grid-row-gap: 8em;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.uppercase-title-4 {
  z-index: 20;
  color: var(--white);
  text-align: center;
  letter-spacing: .4em;
  text-indent: .4em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 600;
  line-height: 1.6em;
  position: absolute;
  top: -21em;
}

.case-study-title-block {
  width: 100%;
  max-width: 80em;
  grid-row-gap: 3em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.header-8-content-2 {
  width: 100%;
  max-width: 75em;
  min-height: 200vh;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.grid-12 {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
}

.grid-12-content {
  max-width: 40em;
  grid-row-gap: 3em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8em 5em 8em 0;
  display: flex;
}

.grid-12-image {
  height: 50em;
  position: relative;
}

.listing-11-item {
  width: 100%;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.listing-11-item:nth-child(2n) {
  flex-direction: row-reverse;
}

.listing-11-link-block {
  width: 40%;
  min-height: 30em;
  background-color: var(--silver);
  background-image: linear-gradient(45deg, var(--indigo), var(--silver));
  color: var(--black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.listing-11-image {
  flex: 1;
  align-self: stretch;
  position: relative;
}

.listing-11-content {
  z-index: 10;
  width: 100%;
  max-width: 30em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.listing-11-icon {
  z-index: 21;
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 2.1em;
  display: none;
  position: absolute;
}

.listing-11-animation-bg {
  z-index: 20;
  background-color: var(--indigo);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.listing-11-title {
  font-size: 2.1em;
  font-weight: 600;
  line-height: 1.2em;
}

.listing-11-list {
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.listing-11-icon-for-phone {
  z-index: 5;
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 2.1em;
  display: none;
}

.listing-11-text-1.is-2nd {
  border: 1px solid var(--inactive-link);
  background-color: rgba(255, 255, 255, .23);
  padding: .2em .7em;
}

.listing-11-text-1.is-2nd.main-button {
  color: #000;
  letter-spacing: 0;
  background-color: #fff;
  border-width: 0;
}

.listing-12 {
  margin-top: 0;
}

.listing-12.news {
  margin-top: 150px;
}

.listing-12-grid {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.listing-12-grid.homenews {
  margin-top: 13em;
}

.listing-12-item {
  z-index: 1;
  border: 1px solid #cbc9d4;
  margin-top: -1px;
  margin-left: -1px;
  transition: box-shadow .2s, background-color .2s;
  position: relative;
}

.listing-12-item:hover {
  z-index: 2;
  background-color: var(--white);
  box-shadow: 0 20px 50px -20px rgba(18, 4, 44, .4);
}

.listing-12-image {
  width: 100%;
  height: 20em;
  border-radius: 5px;
  position: relative;
}

.listing-12-content {
  max-width: 23em;
  grid-row-gap: 2em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.listing-12-title {
  text-align: center;
  font-family: URWGeometric, sans-serif;
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.2em;
}

.listing-12-link {
  width: 100%;
  grid-row-gap: 2em;
  color: var(--body-color);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3em;
  display: flex;
}

.blog-categories {
  grid-column-gap: 1em;
  grid-row-gap: .5em;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.header-12-content-2 {
  width: 100%;
  max-width: 65em;
  grid-row-gap: 2em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-content-block {
  width: 100%;
  max-width: 55em;
  grid-row-gap: 4em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.header-3-gradient-color-3 {
  z-index: 2;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(15, 12, 22, .9) 65%, var(--dark-black));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.topics-background {
  z-index: 1;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.blog-uppercase-titles {
  grid-column-gap: 1em;
  grid-row-gap: .5em;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.blog-uppercase-title {
  text-align: center;
  letter-spacing: .4em;
  text-indent: .4em;
  text-transform: uppercase;
  font-size: .8em;
  font-weight: 600;
  line-height: 1.6em;
}

.blog-uppercase-title.is-featured {
  border: 1px solid var(--inactive-link);
  background-color: rgba(18, 4, 44, .07);
  padding: .3em .5em;
}

.cms-link-block-white {
  z-index: 10;
  color: rgba(255, 255, 255, .5);
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  flex: 1;
  align-self: stretch;
  padding-top: .7em;
  padding-bottom: .7em;
  font-weight: 500;
  transition: color .2s;
  position: relative;
  top: 1px;
}

.cms-link-block-white:hover {
  color: var(--white);
}

.cms-link-block-white.w--current {
  border-bottom-color: var(--white);
  color: #fff;
}

.header-3-padding-2 {
  z-index: 10;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 20em;
  padding-bottom: 4em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.clients-3 {
  width: 100%;
  max-width: 84em;
  margin-left: auto;
  margin-right: auto;
}

.clients-3-list {
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.client-3-logo {
  width: 7em;
  height: 4em;
  object-fit: contain;
  object-position: 0% 50%;
  flex: none;
}

.client-3-link-block {
  min-height: 17em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: background-color .2s;
  display: flex;
}

.client-3-link-block:hover {
  background-color: rgba(255, 255, 255, .5);
}

.client-3-item {
  border: 1px solid var(--white);
  margin-top: -1px;
  margin-left: -1px;
  position: relative;
}

.client-large-text-2 {
  color: rgba(18, 4, 44, .6);
  font-size: 1.8em;
  line-height: 1.4em;
}

.header-13 {
  z-index: 10;
  background-color: var(--black);
  color: var(--white);
  padding-top: 16em;
  padding-bottom: 4em;
  position: relative;
}

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

.contact-title-1 {
  margin-bottom: 1em;
  font-family: Tajawal, sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}

.contact-grid-column-1 {
  width: 100%;
  max-width: 35em;
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.address-text-6 {
  color: rgba(255, 255, 255, .7);
  font-size: .9em;
  line-height: 2.4em;
}

.adress-content-block {
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.blur-bg {
  z-index: 1;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.blur-bg-color {
  z-index: 20;
  background-color: rgba(15, 12, 22, .6);
  background-image: linear-gradient(to bottom, var(--dark-black), rgba(15, 12, 22, 0));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slider-gradient-color-3 {
  z-index: 2;
  mix-blend-mode: multiply;
  background-color: rgba(10, 3, 24, .4);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(18, 4, 44, .7) 80%);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slider-timeline-absolute {
  z-index: 20;
  padding: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.slider-timeline-sticky {
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

._100vh-bg-white {
  z-index: 5;
  height: 100vh;
  background-color: var(--white);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.black-block {
  width: 100%;
  grid-row-gap: 8em;
  background-color: var(--dark-black);
  color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 8em;
  display: flex;
}

.simple-cta-button-2-icon {
  z-index: 10;
  width: 1em;
  height: 1em;
  opacity: .8;
  object-fit: contain;
  font-size: 3em;
  position: relative;
}

.nav-desc-text {
  z-index: 20;
  color: var(--white);
  text-align: center;
  position: relative;
}

.nav-desc-text.is-2nd {
  color: var(--body-color);
}

.tab-1-content {
  z-index: 5;
  width: 100%;
  overflow: visible;
}

.tab-1-pane {
  width: 100%;
  height: 100%;
}

.bg-color-text {
  width: 80%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.overview-hero-content {
  width: 100%;
  max-width: 67em;
  grid-row-gap: 2em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.brand-icon {
  width: 100%;
  height: 2em;
  object-fit: contain;
  margin-right: .3em;
  font-size: 1.5em;
}

.brand-icon.light {
  height: 2em;
}

.grid-13-large-text-2 {
  letter-spacing: -.05em;
  text-indent: -.05em;
  text-transform: uppercase;
  font-size: 2.3em;
  font-weight: 700;
  line-height: 1.3em;
}

.grid-13-text-3 {
  max-width: 16em;
  font-size: 1em;
  line-height: 1.4em;
}

.white-link {
  color: var(--white);
  text-decoration: underline;
}

.fullscreen-menu-contacts {
  z-index: 30;
  width: 35%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  text-align: center;
  background-color: rgba(28, 21, 32, .55);
  border: 1px solid rgba(255, 255, 255, .18);
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 5em 5em 2.5em;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.fullscreen-menu-column-1 {
  z-index: 10;
  width: 65%;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  padding: 0 0 0 7.9em;
  display: block;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.fullscreen-menu {
  z-index: 999;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 0;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.fullscreen-main-link-text {
  letter-spacing: -.02em;
  margin-right: 1em;
  font-size: 1.5em;
  line-height: 1em;
}

.fullscreen-main-link {
  z-index: 1;
  color: #fff;
  text-align: left;
  border: 1px solid #342f3d;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  padding: 1.2em 2.5em;
  font-weight: 500;
  line-height: 1em;
  transition: background-color .2s, border-color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.fullscreen-main-link:hover {
  z-index: 2;
  background-color: rgba(255, 255, 255, .05);
  border-color: rgba(0, 0, 0, 0);
}

.fullscreen-main-link.w--current {
  font-weight: 600;
}

.bg-color-for-column-2 {
  z-index: 10;
  background-color: var(--light-black);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fullscreen-menu-bg {
  background-color: var(--light-black);
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fullscreen-menu-contact-link {
  width: 100%;
  color: rgba(255, 255, 255, .8);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  transition: background-color .2s, border-color .2s, color .2s;
}

.fullscreen-menu-contact-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.fullscreen-menu-contact-link.is-overview {
  color: #fff;
  border: 1px solid #fff;
}

.fullscreen-menu-contact-link.is-overview:hover {
  color: #272b3d;
  background-color: #fff;
}

.arrow-for-fullscreen-link {
  width: 1em;
  height: 1em;
  transform-style: preserve-3d;
  margin-left: auto;
  font-size: 1.5em;
}

.menu-delay-for-animations {
  z-index: 100;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.close-button-icon {
  z-index: 5;
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 2em;
  position: relative;
}

.fullscreen-inner {
  z-index: 10;
  width: 100%;
  flex-direction: row;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: stretch;
  margin-top: 0;
  padding-top: 0;
  display: block;
  position: fixed;
}

.close-button {
  z-index: 999;
  width: 8em;
  text-transform: uppercase;
  cursor: pointer;
  border-right: 1px solid #342f3d;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.1em;
  transition: width .6s cubic-bezier(.075, .82, .165, 1);
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.close-button:hover {
  width: 12em;
}

.fullscreen-menu-column-2 {
  z-index: 9;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.menu-cover-image {
  z-index: 5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.fullscreen-menu-contact-text {
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .85em;
  font-weight: 600;
}

.fullscreen-main-links {
  z-index: 10;
  width: 100%;
  height: 100%;
  grid-column-gap: 0em;
  grid-row-gap: 0em;
  border: 1px solid #342f3d;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  position: relative;
}

.socials-3 {
  z-index: 10;
  align-self: center;
  margin-top: 2em;
  position: relative;
}

.socials-3:hover {
  border-bottom-color: rgba(18, 4, 44, .4);
}

.custom-list-5 {
  z-index: 10;
  width: 100%;
  max-width: 33em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.header-12-text-2 {
  max-width: 25em;
  color: rgba(18, 4, 44, .8);
  text-align: center;
  font-size: 1.7em;
  line-height: 1.7em;
}

.form-success-title-2 {
  color: var(--white);
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.2em;
}

.grid-13-large-text-3 {
  letter-spacing: -.05em;
  text-indent: -.05em;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1.3em;
}

.overview-grid-2 {
  width: 100%;
  grid-column-gap: 7em;
  grid-row-gap: 2.5em;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 4em;
  display: grid;
}

.subfooter-links-list-3 {
  grid-column-gap: 2.75em;
  grid-row-gap: .25em;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.overview-text-6 {
  margin-bottom: 2.4em;
  font-size: 1.5em;
  font-weight: 500;
}

.overview-block-1 {
  width: 100%;
  max-width: 58em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.review-flex {
  width: 100%;
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.review-flex:nth-child(2n) {
  flex-direction: row-reverse;
}

.review-grid-column-2 {
  width: 100%;
  max-width: 35em;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.review-grid-column-1 {
  width: 100%;
  max-width: 35em;
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.reviews-list {
  grid-row-gap: 8em;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.reviews {
  width: 100%;
}

.review-name {
  font-size: 1em;
  font-weight: 600;
}

.review-name.is-2nd {
  color: rgba(18, 4, 44, .5);
}

.review-content-block {
  grid-row-gap: 1em;
  border-bottom: 1px solid var(--border-color);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 4em;
  padding-bottom: 4em;
  display: flex;
}

.review-client-name-block {
  grid-column-gap: 2em;
  grid-row-gap: 1em;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.tab-text-3 {
  color: rgba(18, 4, 44, .8);
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.6em;
}

.tab-content-block-3 {
  grid-column-gap: 7.5em;
  grid-row-gap: 10em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.tab-text-4 {
  color: rgba(18, 4, 44, .8);
  font-size: 1.8em;
  font-weight: 600;
  line-height: 1.6em;
}

.tab-flex-1 {
  grid-row-gap: 4em;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.tab-image-2 {
  height: 20em;
  position: relative;
}

.grid-13-text-4 {
  letter-spacing: -.05em;
  text-indent: -.05em;
  font-size: 3em;
  font-weight: 700;
  line-height: 1.3em;
}

.vertical-flex-with-gap-2 {
  grid-row-gap: 4em;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.topic-text-1 {
  max-width: 31em;
  color: rgba(255, 255, 255, .8);
  font-size: 1.3em;
  line-height: 1.7em;
}

.header-3-title-block-2 {
  max-width: 80em;
  grid-row-gap: 2.5em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.close-button-bg {
  z-index: 1;
  background-color: rgba(27, 23, 36, 0);
  background-image: url('../images/close-icon-white.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 1.5em;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.screens-1 {
  width: 100%;
  object-fit: fill;
  flex: none;
}

.overview-block-2 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: -2em;
  margin-bottom: -2em;
  display: flex;
  position: relative;
}

.overview-block-3 {
  width: 100%;
  max-width: 60em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.overview-screen-2 {
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: auto;
}

.overview-screen-2-bg {
  z-index: 5;
  mix-blend-mode: multiply;
  background-color: rgba(15, 12, 22, .9);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.menu-link-6 {
  z-index: 1;
  width: 100%;
  min-height: 14em;
  color: var(--body-color);
  border: 1px solid #d2ccdd;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  margin-top: -1px;
  margin-left: -1px;
  padding: 2em;
  transition: border-color .2s, background-color .2s, width .6s cubic-bezier(.075, .82, .165, 1);
  display: flex;
  position: relative;
}

.menu-link-6:hover {
  z-index: 2;
  width: 120%;
  background-color: rgba(18, 4, 44, .05);
  border-color: #9e94b1;
  font-weight: 500;
}

.menu-link-6.is-1st {
  background-color: rgba(207, 193, 233, .2);
  border-color: #c0b8cf;
}

.menu-link-6.is-1st:hover {
  background-color: rgba(207, 193, 233, .4);
  border-color: #9e94b1;
}

.overview-link-name {
  font-family: URWGeometric, sans-serif;
  font-size: 1.3em;
  line-height: 1.3em;
}

.overview-link-icon {
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 1.3em;
}

.overview-links {
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 4em;
  display: flex;
}

.overview-links.is-2nd {
  margin-bottom: 0;
}

.overview-block-4 {
  width: 100%;
  padding-bottom: 2em;
}

.overview-direction-title {
  font-size: 1.5em;
  font-weight: 600;
}

.review-role-text {
  color: var(--white);
  text-align: center;
  margin-top: 1em;
  font-size: 1.3em;
}

.menu-links-6 {
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.header-14 {
  min-height: 83vh;
  background-color: var(--light-black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 13em;
  padding-bottom: 8em;
  display: flex;
  position: relative;
}

.header-buttons-2 {
  z-index: 20;
  grid-column-gap: 2em;
  grid-row-gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  display: flex;
  position: absolute;
  top: 5vh;
  bottom: auto;
}

.large-text-1 {
  color: var(--white);
  font-family: URWGeometric, sans-serif;
  font-size: 8em;
  font-weight: 600;
  line-height: 1.2em;
}

.header-10-content-2 {
  width: 100%;
  max-width: 78em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.header-14-image {
  z-index: 1;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header-14-image-color {
  z-index: 10;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), var(--dark-black) 73%);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header-14-content-2 {
  z-index: 10;
  width: 100%;
  max-width: 68em;
  grid-row-gap: 1.75em;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3.5em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.bg-gradient-color {
  z-index: 2;
  mix-blend-mode: multiply;
  background-color: rgba(12, 12, 36, .15);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0), #320a7a);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.bg-animation-for-column-2 {
  z-index: 30;
  background-color: var(--light-black);
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header-10-padding-2 {
  z-index: 10;
  width: 100%;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 50vh;
  padding-bottom: 50vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.listing-10-text {
  max-width: 30em;
  color: rgba(18, 4, 44, .8);
  font-family: URWGeometric, sans-serif;
  font-size: 1.3em;
}

.form-grid-in-ui {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
}

.form-block-2 {
  padding: 5em;
}

.form-block-2.is-black {
  background-color: var(--light-black);
}

.gallery-description-text {
  text-align: center;
  letter-spacing: -.05em;
  margin-bottom: .9em;
  font-size: 2.5em;
  font-weight: 700;
}

.middle-text-1-flex {
  color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.middle-text-1 {
  letter-spacing: .3em;
  text-indent: .3em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 600;
  line-height: 1.1em;
}

.content-block-6 {
  width: 100%;
  max-width: 56em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 4em;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.content-text-4 {
  color: rgba(255, 255, 255, .8);
  text-align: center;
  font-family: Tajawal, sans-serif;
  font-size: 1.7em;
  line-height: 1.7em;
}

.content-text-4.is-black {
  color: var(--body-color);
  font-family: URWGeometric, sans-serif;
}

.content-text-4.black-text {
  color: rgba(0, 0, 0, .8);
  font-family: Tajawal, sans-serif;
}

.menu-sublinks-2 {
  width: 100%;
  border-bottom: 1px solid rgba(18, 4, 44, .2);
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 2.5em 5em;
  display: flex;
}

.header-12-text-3 {
  color: rgba(18, 4, 44, .8);
  text-align: center;
  font-size: 1.4em;
  line-height: 1.7em;
}

.badge-text-1 {
  color: var(--white);
  letter-spacing: .1em;
  text-indent: .1em;
  text-transform: uppercase;
  background-color: #911061;
  border-radius: 10px;
  padding: .2em .8em;
  font-size: .7em;
  font-weight: 500;
}

.badge-text-1.is-cms {
  background-color: #6841d6;
}

.badge-text-1.is-2nd {
  background-color: #6d6369;
}

.title-with-badge {
  grid-column-gap: 1em;
  grid-row-gap: .5em;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.review-image-size {
  min-height: 40em;
  flex: 1;
  position: relative;
}

.overview-small-title {
  color: rgba(255, 255, 255, .7);
  letter-spacing: .3em;
  text-indent: .3em;
  text-transform: uppercase;
  font-size: .9em;
  font-weight: 700;
}

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

.overview-subtitle-1 {
  max-width: 32em;
  color: rgba(255, 255, 255, .8);
  font-size: 1.6em;
  line-height: 1.6em;
}

.header-overflow-title {
  padding-top: .4em;
  padding-bottom: .4em;
  overflow: hidden;
}

.lottie-animation {
  height: 35em;
  margin-top: -145px;
}

.splxrai {
  height: 6vh;
}

.lottie-animation-2 {
  height: 10em;
  margin-top: -58px;
  margin-bottom: -46px;
}

.text-span {
  color: var(--body-color);
}

.footer {
  width: 8em;
  margin-bottom: 27px;
}

._404 {
  background-color: #000;
}

._404-logo {
  max-width: 25%;
}

.content-grid-18 {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  direction: rtl;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.section-2 {
  z-index: 10;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.section-2.overflow-visible {
  overflow: visible;
}

.section-2.overflow-visible.areas {
  background-color: #f6f5f8;
}

.list-title-2 {
  color: var(--indigo);
  margin-bottom: .7em;
  font-family: Tajawal, sans-serif;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2em;
}

.border-button-2 {
  z-index: 10;
  color: #330b7e;
  letter-spacing: .2em;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 1.5em 0;
  font-weight: 600;
  display: flex;
  position: relative;
  overflow: hidden;
}

.list-line-2 {
  width: .2em;
  height: 100%;
  opacity: .1;
  direction: rtl;
  background-color: #330b7e;
  position: absolute;
  top: .1em;
  left: 0;
  right: 1.4em;
}

.list-text-2 {
  max-width: 26em;
  font-family: Tajawal, sans-serif;
  font-size: 1.1em;
  line-height: 1.5em;
}

.border-button-line-2 {
  height: 2px;
  background-color: var(--indigo);
  color: var(--indigo);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.custom-list-icon-2 {
  z-index: 10;
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 1.8em;
  position: absolute;
}

.grid-1-block-3 {
  max-width: 32em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 6em;
}

.circle-background-2 {
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: var(--indigo);
  border-radius: 50%;
  position: absolute;
}

.popup-close-icon {
  width: 1em;
  height: 1em;
}

.popup-content-wrapper {
  z-index: 1;
  width: 90vw;
  max-height: 90%;
  max-width: 55em;
  background-color: #fff;
  border-radius: 1.2em;
  position: relative;
  overflow: auto;
}

.popup-content-wrapper.video {
  height: 90vh;
  max-height: 675px;
  max-width: 1200px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: visible;
}

.popup-close {
  z-index: 2;
  width: 3.5em;
  height: 3.5em;
  color: #000;
  cursor: pointer;
  background-color: #e9e9e9;
  border-radius: 999em;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 1em;
  bottom: auto;
  left: auto;
  right: 1em;
}

.popup-inner {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.popup-background {
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .65);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.popup-video {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.popup-content {
  margin: 2.5em 3em;
}

.popup-content.has-video {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  margin: 0;
  display: flex;
  overflow: hidden;
}

.popup-wrapper {
  z-index: 999;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.popup-toggle {
  cursor: pointer;
}

.video-teaser-wrapper {
  max-width: 25em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.video-thumbnail {
  border-radius: 1.3em;
}

.is-magnetic.is-absolut {
  position: absolute;
}

.play-wrapper {
  z-index: 3;
  width: 5em;
  height: 5em;
  color: #f8f1e2;
  cursor: pointer;
  background-color: #fbd28f;
  border-radius: 999em;
  flex: none;
  justify-content: center;
  align-items: center;
  transition: all .3s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  box-shadow: 0 10px 4em rgba(0, 0, 0, .45);
}

.play-wrapper:hover {
  transform: scale(1.15);
}

.play-icon {
  width: 24px;
  height: 24px;
  color: #000;
  margin-left: .2em;
  font-size: 1.7em;
}

.section-3 {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 5em;
  padding-bottom: 5em;
  display: flex;
}

.popup-video-group {
  margin-top: -85px;
}

.content-grid-19 {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.text-for-border-button-2 {
  font-size: .9em;
  line-height: 1em;
}

.section-4 {
  z-index: 10;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.section-4.overflow-visible {
  overflow: visible;
}

.list-title-3 {
  color: #330b7e;
  margin-bottom: .7em;
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.2em;
}

.list-text-3 {
  max-width: 26em;
  font-size: 1.1em;
  line-height: 1.5em;
}

.border-button-line-3 {
  height: 2px;
  background-color: #330b7e;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.custom-list-icon-3 {
  z-index: 10;
  width: 1em;
  height: 1em;
  object-fit: contain;
  font-size: 1.4em;
  position: absolute;
}

.grid-1-block-4 {
  max-width: 32em;
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 6em;
}

.grid-1-text-2 {
  font-size: 1.2em;
  line-height: 1.8em;
}

.circle-background-3 {
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #330b7e;
  border-radius: 50%;
  position: absolute;
}

.grid-7-text-3 {
  color: #330b7e;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.8em;
}

.main-button-2 {
  z-index: 10;
  color: #fff;
  letter-spacing: .15em;
  background-color: #330b7e;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 1em 1.5em 1em 2em;
  transition: letter-spacing .6s cubic-bezier(.075, .82, .165, 1), background-color .2s;
  display: flex;
  position: relative;
}

.main-button-2:hover {
  letter-spacing: .25em;
  background-color: #12042c;
}

.content-grid-20 {
  grid-column-gap: 5em;
  grid-row-gap: 5em;
  direction: rtl;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.section-5 {
  z-index: 10;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

.section-5.with-gradient-bg {
  background-image: linear-gradient(45deg, rgba(234, 106, 31, .1), #fff1e8);
}

.grid-7-text-4 {
  font-family: Tajawal, sans-serif;
  font-size: 1.1em;
  line-height: 1.6em;
}

.html-embed {
  margin-top: -35px;
  margin-bottom: -20px;
  padding-left: 50px;
  padding-right: 50px;
}

.bold-text {
  font-family: Tajawal, sans-serif;
}

@media screen and (min-width: 1440px) {
  body {
    font-size: 14px;
  }

  .dropdown-link.is-contanct-menu-grid {
    display: none;
  }

  .nav-block-3 {
    padding-left: 3em;
    padding-right: 0;
  }

  .main-button {
    direction: rtl;
    justify-content: flex-start;
  }

  .fullscreen-menu {
    display: none;
  }

  .fullscreen-main-link-text {
    font-family: Tajawal, sans-serif;
  }

  .arrow-for-fullscreen-link {
    transform: rotateX(0)rotateY(-180deg)rotateZ(0);
  }

  .fullscreen-inner {
    direction: rtl;
  }

  .fullscreen-menu-contact-text {
    font-family: Tajawal, sans-serif;
  }
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 15px;
  }

  .heading.is-header-14-title {
    font-weight: 400;
  }

  .empty-block-4 {
    background-image: url('../images/close_whtie_300.svg');
    padding-top: 1.6em;
    padding-bottom: 1.6em;
  }

  .newsletter-2 {
    background-color: var(--indigo);
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: 12px;
  }

  .container {
    padding-left: 4em;
    padding-right: 4em;
  }

  .padding.is-blog-listing-2, .padding.is-blog-listing-3 {
    padding-bottom: 6em;
  }

  .heading.is-grid-8-title-2 {
    font-size: 4em;
  }

  .heading.is-header-8-title {
    font-size: 4.2em;
  }

  .heading.is-listing-8-title {
    font-size: 2.2em;
  }

  .heading.is-header-3-title-1 {
    font-size: 4.5em;
  }

  .heading.is-title-4 {
    font-size: 12vw;
  }

  .heading.is-title-8 {
    font-size: 7em;
  }

  .heading.is-title-9 {
    font-size: 4em;
  }

  .heading.is-large-title-1 {
    font-size: 5em;
  }

  .heading.is-title-11 {
    font-size: 4.5em;
  }

  .heading.is-large-title-3 {
    font-size: 6em;
  }

  .heading.is-header-2-title {
    font-size: 3em;
  }

  .heading.is-ui-kit-title {
    font-size: 5em;
  }

  .heading.is-header-1-title-1 {
    font-size: 3em;
  }

  .heading.is-header-9-title {
    font-size: 4.2em;
  }

  .heading.is-header-10-title {
    font-size: 4em;
  }

  .heading.is-title-15 {
    font-size: 3.6em;
  }

  .heading.is-title-1 {
    font-size: 5em;
  }

  .heading.is-header-3-title-2 {
    margin-bottom: .3em;
    font-size: 8em;
  }

  .heading.is-header-12-title {
    font-size: 6em;
  }

  .heading.is-service-title-1, .heading.is-client-title {
    font-size: 3.6em;
  }

  .heading.is-grid-1-title-2 {
    font-size: 3.4em;
  }

  .heading.is-header-1-title-2 {
    font-size: 3em;
  }

  .heading.is-case-title-1 {
    font-size: 13vw;
  }

  .heading.is-other-cases-title {
    font-size: 5em;
  }

  .heading.is-case-study-title-1 {
    font-size: 6em;
  }

  .heading.is-header-8-title-2 {
    font-size: 4.2em;
  }

  .heading.is-blog-title {
    font-size: 4em;
  }

  .heading.is-header-3-title-3 {
    font-size: 6em;
    line-height: .9em;
  }

  .heading.is-header-13-title {
    font-size: 6em;
  }

  .heading.is-tab-title-1 {
    margin-bottom: .5em;
  }

  .heading.is-overview-title-3 {
    font-size: 5em;
  }

  .heading.is-overview-title-2 {
    font-size: 4em;
  }

  .heading.is-overview-title-1 {
    font-size: 3em;
  }

  .heading.is-solution-title-1 {
    font-size: 5em;
  }

  .heading.is-overview-title-4, .heading.is-client-title-1, .heading.is-client-title-4 {
    font-size: 4em;
  }

  .heading.is-header-9-title-2 {
    font-size: 4.2em;
  }

  .heading.is-about-1-title {
    font-size: 12vw;
  }

  .heading.is-overview-title-5 {
    font-size: 5em;
  }

  .heading.is-header-14-title {
    font-size: 4em;
  }

  .heading.is-header-13-title-2 {
    font-size: 6em;
  }

  .heading.is-services-2-title {
    font-size: 3em;
  }

  .heading.is-large-title-2 {
    font-size: 6em;
  }

  .heading.is-review-title-1 {
    font-size: 5em;
  }

  .content-grid-1 {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .list-title {
    font-size: 1.5em;
  }

  .list-text {
    max-width: none;
    font-size: 1.15em;
  }

  .header-6 {
    min-height: auto;
    padding-top: 50em;
    padding-bottom: 50em;
  }

  .nav-link {
    min-height: 4.5em;
    color: var(--body-color);
    border-left-width: 0;
    border-left-color: rgba(0, 0, 0, 0);
    font-size: 1.3em;
  }

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

  .hero-socials-list {
    grid-column-gap: 0em;
  }

  .grid-1-block-1 {
    max-width: 38em;
    position: relative;
    top: 0;
  }

  .newsletter-submit-button {
    font-size: 1.1em;
  }

  .dropdown-link {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .dropdown-icon {
    font-size: 1em;
  }

  .dropdown-list.w--open {
    width: 100%;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: none;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }

  .dropdown-list.is-contacts {
    position: absolute;
    top: 5.7em;
    left: 0;
    right: 0;
    box-shadow: 0 100px 90px -30px rgba(18, 24, 39, .94);
  }

  .menu-dropdown-title.is-contant-title {
    margin-right: 0;
  }

  .contact-menu-grid-subtitle {
    font-size: 1.1em;
  }

  .newsletter-grid {
    width: 100%;
    max-width: 46em;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .newsletter-field {
    font-size: 1.3em;
  }

  .newsletter-field::-ms-input-placeholder {
    font-size: 1.1em;
  }

  .newsletter-field::placeholder {
    font-size: 1.1em;
  }

  .newsletter-image {
    font-size: 5.9em;
  }

  .menu-mobile-text {
    letter-spacing: .3em;
    text-transform: uppercase;
    font-size: .5em;
    font-weight: 600;
    line-height: 1.1em;
  }

  .grid-1-block-2 {
    max-width: 38em;
  }

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

  .contact-menu-grid.is-last {
    grid-template-columns: .75fr 1fr;
  }

  .menu-buttons {
    grid-column-gap: .5em;
    grid-row-gap: .5em;
    flex-wrap: wrap;
  }

  .menu-mobile-dots {
    width: 20px;
    grid-column-gap: .15em;
    grid-row-gap: .15em;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .menu-mobile-line {
    width: 100%;
    height: 1px;
    background-color: var(--body-color);
    flex: none;
    padding: 0;
    font-size: .175em;
  }

  .contact-menu-grid-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .flex-for-sticky {
    flex-wrap: wrap;
    padding-bottom: 8em;
  }

  .sticky-column-2-bg {
    border: 1px solid rgba(255, 255, 255, .15);
    margin-top: 0;
  }

  .custom-list-2 {
    max-width: 28em;
  }

  .main-nav {
    justify-content: space-between;
  }

  .nav-block-1 {
    min-width: auto;
  }

  .nav-block-2 {
    z-index: 99;
    background-color: var(--white);
    padding: 0;
    position: absolute;
    top: 6em;
    box-shadow: 0 100px 90px -30px rgba(18, 24, 39, .94);
  }

  .nav-block-3 {
    grid-column-gap: 1.25em;
    grid-row-gap: 0em;
    margin-left: auto;
    padding-right: 1em;
  }

  .brand-link-block {
    border-right-width: 0;
    border-right-color: rgba(0, 0, 0, 0);
    padding-left: 1.3em;
    padding-right: 1.8em;
  }

  .nav-contact-button {
    background-color: rgba(255, 255, 255, .8);
  }

  .menu-mobile-button-flex {
    height: 100%;
    grid-column-gap: .5em;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: .5em 1.3em;
    display: flex;
  }

  .mobile-menu-button {
    background-color: var(--white);
    border-left: 1px solid rgba(212, 160, 255, .33);
    padding: 0;
  }

  .mobile-menu-button.w--open {
    color: var(--body-color);
    background-color: #e2e2e2;
  }

  .mobile-menu-button.is-2nd {
    border-bottom: 1px solid var(--border-color);
    border-left-color: var(--border-color);
    background-color: rgba(18, 4, 44, .05);
  }

  .tab-1-link {
    padding-left: 1.5em;
  }

  .tabs-1-links {
    margin-right: 2em;
    overflow: auto;
  }

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

  .content-grid-15 {
    grid-column-gap: 5em;
    grid-row-gap: 5em;
    grid-template-columns: 1fr;
  }

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

  .accordion-title {
    font-size: 1.2em;
  }

  .acc-flex {
    flex-direction: column;
    justify-content: flex-start;
  }

  .newsletter-content-block {
    max-width: 33em;
    margin-bottom: 2.5em;
  }

  .newsletter-text-1 {
    font-size: 1.3em;
  }

  .gallery-lightbox {
    height: 15em;
  }

  .gallery-lightbox.is-large-image {
    height: 33em;
  }

  .sticky-column-2 {
    width: auto;
    max-width: none;
    flex: 0 auto;
    margin-left: auto;
    margin-right: auto;
    padding: 8em 6em;
  }

  .password-form-input {
    font-size: 1.3em;
  }

  .password-form-input::-ms-input-placeholder {
    font-size: 1.1em;
  }

  .password-form-input::placeholder {
    font-size: 1.1em;
  }

  .password-form-submit {
    font-size: 1.1em;
  }

  .static-gallery-grid, .gallery-grid-2 {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
  }

  .preloader-content-title {
    font-size: 5vw;
  }

  .color-define, .color-define-2, .color-define-3 {
    height: 4em;
  }

  .header-5-socials {
    justify-items: center;
    padding: 2em;
  }

  .header-5-content {
    grid-row-gap: 3em;
    flex-direction: column;
    justify-content: flex-start;
  }

  .main-button:hover {
    letter-spacing: .15em;
  }

  .nav-topbar {
    display: none;
  }

  .menu-large-links {
    background-color: var(--gainsboro);
    padding: 3.5em;
  }

  .menu-large-link:hover {
    letter-spacing: 0;
  }

  .header-6-text-2 {
    font-size: 3em;
  }

  .header-6-title-1 {
    margin-bottom: -7vw;
    font-size: 14vw;
  }

  .content-grid-2 {
    grid-column-gap: 5em;
    grid-row-gap: 5em;
  }

  .grid-3-image {
    height: 30em;
  }

  .content-grid-10 {
    grid-column-gap: 2.5em;
  }

  .grid-10-number {
    font-size: 3.7em;
  }

  .aside-image-1 {
    width: 7em;
    height: 7em;
    left: -3.5em;
  }

  .aside-image-2 {
    width: 14em;
    height: 8em;
    right: -3em;
  }

  .content-grid-9 {
    grid-template-columns: 1fr;
  }

  .aside-image-3 {
    width: 10em;
    height: 14em;
    left: -4em;
  }

  .header-10-content {
    padding-left: 3em;
    padding-right: 3em;
  }

  .header-button {
    background-color: rgba(255, 255, 255, .65);
  }

  .fullscreen-menu-button {
    display: none;
  }

  .fullscreen-menu-button:hover {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

  .menu-button-text {
    display: none;
  }

  .content-grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-9-middle-line {
    display: none;
  }

  .header-9-content-block {
    padding-left: 2.5em;
    padding-right: 2.5em;
  }

  .header-7-socials {
    padding-left: 3.5em;
    padding-right: 3.5em;
  }

  .listing-7-grid {
    grid-template-columns: 1fr 1fr;
  }

  .listing-7-item {
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
  }

  .listing-8-item {
    min-height: auto;
    position: relative;
  }

  .header-3-padding {
    padding-top: 12em;
  }

  .listing-8-scroll-down {
    bottom: 0;
  }

  .listing-8-image-2 {
    width: 14em;
    height: 60%;
    left: -3em;
  }

  .menu-links-1-list {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .menu-link-1-item {
    min-width: 25%;
    flex: 1;
  }

  .menu-link-1 {
    width: 100%;
    min-height: 6em;
    grid-column-gap: 1.5em;
    grid-row-gap: 1em;
    flex-direction: row;
    flex: 0 auto;
    justify-content: flex-start;
    padding-left: 2em;
    padding-right: 2em;
    transition: none;
  }

  .menu-link-1:hover {
    grid-column-gap: 1.5em;
    grid-row-gap: .75em;
  }

  .menu-link-1.in-overview {
    width: 32%;
  }

  .menu-link-5-icon {
    font-size: 1.3em;
  }

  .menu-links-1 {
    padding: 1.5em;
  }

  .tab-2-link.w--current {
    padding-right: 2.5em;
  }

  .content-grid-13 {
    grid-template-columns: 1fr;
  }

  .grid-13-block-1:hover {
    background-color: rgba(0, 0, 0, 0);
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .grid-13-block-1.in-middle {
    border-top: 1px solid rgba(18, 4, 44, .3);
    border-bottom: 1px solid rgba(18, 4, 44, .3);
  }

  .menu-links-2 {
    background-color: var(--gainsboro);
    padding: 1em;
  }

  .menu-links-2-list {
    border-color: var(--border-color);
    border-radius: 5px;
    flex-wrap: wrap;
    overflow: hidden;
  }

  .menu-link-2-item {
    width: 50%;
    flex: 0 auto;
  }

  .menu-link-2 {
    background-color: var(--white);
    background-position: 90%;
    background-size: 1.5em;
    border-radius: 0;
    padding: 1.8em 6em 1.8em 1.8em;
  }

  .menu-link-2:hover {
    background-color: var(--white);
    background-position: 90%;
    background-size: 1.5em;
  }

  .menu-link-5 {
    opacity: 1;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }

  .menu-links-5 {
    padding-bottom: 1.5em;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .padding-80vh {
    min-height: auto;
  }

  .scolling-image {
    height: 170%;
  }

  .scolling-image.in-case-studies, .scolling-image.with-minimum-height, .scolling-image.in-case-study {
    width: 30vw;
    height: 140%;
  }

  .menu-links-3 {
    background-color: var(--border-color);
    padding: 1.5em;
  }

  .menu-links-3-list {
    grid-row-gap: 0em;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    flex-wrap: wrap;
    overflow: hidden;
  }

  .menu-link-3-item {
    width: 33.3333%;
    flex: 0 auto;
  }

  .menu-link-3 {
    width: 100%;
    border-radius: 0;
    flex: 0 auto;
  }

  .menu-link-3:hover {
    background-color: var(--white);
    box-shadow: none;
    color: var(--body-color);
    transform: none;
  }

  .menu-share-icon {
    flex: none;
    display: block;
  }

  .content-grid-11 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-15-title-line {
    margin-right: 8em;
  }

  .grid-15-image {
    height: 30em;
  }

  .button-listing-1-link {
    background-position: 100%;
    background-size: 1em;
    border-bottom-color: rgba(18, 4, 44, .3);
  }

  .button-listing-1-link:hover {
    padding-top: .7em;
    padding-bottom: .7em;
  }

  .listing-2-list {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .listing-2-content {
    padding: 1em;
  }

  .listing-text {
    font-size: 1.2em;
  }

  .menu-sublinks-1-flex-1 {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .menu-sublink {
    background-color: var(--body-color);
    color: var(--white);
    background-image: url('../images/arrow-icon-white-4.svg');
    background-position: 90%;
    background-repeat: no-repeat;
    background-size: 1.1em;
    padding-right: 2.5em;
  }

  .menu-sublink:hover {
    background-position: 90%;
    background-size: 1.1em;
    padding-left: 1.5em;
    padding-right: 2.5em;
  }

  .menu-sublinks-1 {
    background-color: #dbdadf;
    padding-left: 2em;
    padding-right: 2em;
  }

  .grid-13-content {
    width: 100%;
    grid-column-gap: 5em;
    flex-flow: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .grid-13-image {
    width: 4em;
  }

  .grid-13-text {
    font-size: 1.1em;
    line-height: 1.5em;
  }

  .features-column-1 {
    width: 26vw;
    padding-right: 1.4em;
  }

  .features-column-2 {
    padding-left: 0;
    padding-right: 0;
  }

  .listing-6-grid-2 {
    background-image: url('../images/arrow-icon-white-4.svg');
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: 1.5em;
  }

  .listing-6-grid-2:hover {
    padding-top: 5em;
    padding-bottom: 5em;
  }

  .content-grid-16 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-16-block-2 {
    grid-column-gap: 30px;
    border-top: 1px solid var(--border-color);
    justify-content: space-between;
    align-items: center;
    padding-top: 4em;
  }

  .grid-16-block-1 {
    max-width: none;
  }

  .parallax-image-3 {
    font-size: .7em;
    right: -6.3em;
  }

  .parallax-image-2 {
    font-size: .5em;
    top: 3em;
    left: -15em;
  }

  .parallax-image-1 {
    font-size: .8em;
    right: -6.3em;
  }

  .parallax-image-4 {
    font-size: .9em;
    bottom: 10em;
  }

  .gallery-padding {
    padding-top: 12em;
  }

  .content-grid-5 {
    grid-column-gap: 6em;
    grid-row-gap: 6em;
  }

  .listing-6-arrow-icon {
    width: 4em;
    height: 4em;
    border-color: rgba(255, 255, 255, .2);
    right: -1.3em;
  }

  .content-grid-6 {
    grid-column-gap: 5em;
    grid-row-gap: 2.5em;
    grid-template-columns: .5fr 1fr;
  }

  .listing-3-list {
    grid-template-columns: 1fr 1fr;
  }

  .listing-3-list.is-fullscreen {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-wrap: wrap;
  }

  .services-3-item.is-fullscreen {
    width: 50%;
    height: 40em;
    min-height: 50vh;
  }

  .footer-1-link-block {
    padding: 1.6em 3em;
  }

  .footer-1-text {
    font-size: 1.4em;
  }

  .subfooter-links-list {
    grid-column-gap: 1.5em;
  }

  .subfooter-text-link:hover {
    color: var(--body-color);
    background-color: rgba(0, 0, 0, 0);
    padding-left: 0;
    padding-right: 0;
  }

  .subfooter-text-link.is-2nd {
    color: rgba(255, 255, 255, .7);
  }

  .subfooter-text-link.is-2nd:hover {
    border-color: rgba(0, 0, 0, 0);
  }

  .listing-4-item.in-services:first-child {
    padding-top: 11em;
  }

  .listing-4-grid {
    grid-column-gap: 2em;
    grid-template-columns: 1fr 1fr;
  }

  .listing-4-content-block {
    margin-left: 0;
  }

  .listing-heading-uni-2 {
    font-size: 3.1em;
  }

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

  .cta-1-block-1 {
    align-items: flex-start;
  }

  .footer-2-main-grid {
    grid-row-gap: 2.5em;
    grid-template-columns: 1fr;
  }

  .newsletter-list-1 {
    grid-template-columns: 1fr 1fr;
  }

  .subfooter-links {
    grid-row-gap: 1em;
    flex-wrap: wrap;
  }

  .grid-16-text-2 {
    max-width: none;
    font-size: 1.3em;
  }

  .simple-cta-buttons-1 {
    grid-row-gap: 1.25em;
    flex-wrap: wrap;
  }

  .simple-cta-button-1 {
    background-color: rgba(255, 255, 255, .7);
    flex: 0 auto;
  }

  .simple-cta-button-1:hover {
    padding-left: 2em;
    padding-right: 2em;
  }

  .form-submit-button {
    font-size: 1.1em;
  }

  .form-field {
    font-size: 1.3em;
  }

  .form-field::-ms-input-placeholder {
    font-size: 1.1em;
  }

  .form-field::placeholder {
    font-size: 1.1em;
  }

  .simple-cta-button-2, .simple-cta-button-2:hover {
    padding-left: 0;
    padding-right: 0;
  }

  .header-2-grid {
    grid-column-gap: 5em;
  }

  .header-2-padding {
    padding-top: 10.5em;
  }

  .ui-kit-header {
    padding-top: 10em;
  }

  .breadcrumbs-1 {
    max-width: none;
    margin-bottom: 3em;
  }

  .title-1-block {
    max-width: none;
  }

  .footer-5-grid-2 {
    margin-top: 2em;
  }

  .footer-1-grid-1-copy {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main-link.in-footer-3:hover {
    padding-top: .3em;
    padding-bottom: .3em;
  }

  .footer-simple-title {
    font-size: 1.9em;
  }

  .footer-simple-grid {
    grid-row-gap: 2.5em;
    grid-template-columns: 1fr;
  }

  .footer-simple-title-block {
    max-width: 50em;
  }

  .footer-simple-button-block, .footer-simple-contacts {
    justify-content: flex-start;
  }

  .header-1-block-1 {
    max-width: none;
  }

  .header-1-link {
    min-width: 12em;
  }

  .footer-3-padding {
    padding-top: 8em;
    padding-bottom: 4em;
  }

  .footer-3-grid {
    grid-row-gap: 3.25em;
    grid-template-columns: 1fr;
  }

  .footer-3-buttons {
    grid-column-gap: 0em;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-3-button-1 {
    width: 49%;
  }

  .footer-3-button-text-1 {
    font-size: 1em;
  }

  .footer-3-button-2 {
    width: 49%;
  }

  .footer-3-button-text-2, .footer-3-button-text-3 {
    font-size: 1em;
  }

  .footer-3-button-3 {
    border-bottom-color: rgba(255, 255, 255, .2);
  }

  .footer-3-button-text-4 {
    font-size: .8em;
  }

  .header-8-content {
    min-height: auto;
    padding-top: 60em;
    padding-bottom: 60em;
  }

  .title-block-1 {
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .listing-9-grid {
    grid-template-columns: 1fr 1fr;
  }

  .simple-link-1 {
    background-color: var(--body-color);
    color: var(--white);
    background-image: url('../images/arrow-icon-white-4.svg');
    background-position: 90%;
    background-repeat: no-repeat;
    background-size: 1em;
    padding-left: 1.3em;
    padding-right: 2.2em;
    font-size: 1.1em;
  }

  .simple-link-1:hover {
    background-position: 90%;
    background-size: 1em;
  }

  .header-11 {
    padding-bottom: 0;
  }

  .header-11-image {
    width: 100%;
    height: 20em;
    margin-top: 4em;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .content-grid-8 {
    grid-column-gap: 5em;
    grid-row-gap: 5em;
  }

  .grid-3-image-3 {
    right: -3em;
  }

  .grid-3-image-2 {
    left: -3.5em;
  }

  .grid-4-image-1 {
    height: 30em;
  }

  .cta-1-icon-1 {
    display: block;
  }

  .grid-14-block-2 {
    margin-left: 5em;
  }

  .number-text-6.is-smaller {
    font-size: 2.3em;
  }

  .ui-kit-title-block {
    max-width: none;
  }

  .topfooter-1-block-1:hover {
    width: 100%;
  }

  .cms-links-block {
    margin-top: 6em;
  }

  .cms-links-block.with-background {
    background-image: linear-gradient(rgba(18, 4, 44, .1), rgba(255, 255, 255, 0));
  }

  .menu-links-6-flex {
    grid-column-gap: 1em;
  }

  .dropdown-toggle {
    color: var(--body-color);
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    font-size: 1.2em;
  }

  .dropdown-toggle:hover {
    color: var(--body-color);
  }

  .subfooter-links-list-2 {
    grid-column-gap: 1.75em;
  }

  .circle-image {
    font-size: 5.9em;
  }

  .header-12 {
    padding-top: 14em;
  }

  .rounded-image {
    font-size: 5.9em;
  }

  .listing-10-item {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .listing-10-item:nth-child(2n) {
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .listing-10-image-size {
    width: 100%;
    height: 25em;
  }

  .listing-10-content {
    width: 100%;
    flex: 0 auto;
    align-self: auto;
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .image-size-50em {
    height: 40em;
  }

  .welcome-title {
    font-size: 1.6em;
  }

  .sticky-column-3 {
    width: 100%;
    min-height: auto;
    padding-top: 8em;
    padding-bottom: 5em;
    position: relative;
  }

  .client-2-item {
    border-bottom-color: var(--body-color);
  }

  .client-2-item:last-child {
    border-bottom-color: rgba(0, 0, 0, 0);
  }

  .client-2-link {
    border-bottom-color: var(--body-color);
    flex-wrap: wrap;
    padding-left: 4em;
    padding-right: 4em;
  }

  .client-2-block-1 {
    width: 100%;
    min-width: auto;
  }

  .case-study-title-2 {
    font-size: 14vw;
  }

  .large-title-block-2 {
    max-width: none;
  }

  .case-study-results {
    flex-wrap: wrap;
  }

  .content-block-5 {
    margin-bottom: 2em;
  }

  .sticky-column-4 {
    width: 100%;
    min-height: auto;
    padding-top: 8em;
    padding-bottom: 5em;
    position: relative;
  }

  .sticky-column-5 {
    width: auto;
    max-width: none;
    flex: 0 auto;
    margin-left: auto;
    margin-right: auto;
    padding: 8em 6em;
  }

  .grid-17-block-1 {
    max-width: 38em;
    position: relative;
    top: 0;
  }

  .content-grid-17 {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .grid-17-block-2 {
    max-width: 38em;
  }

  .header-1-block-2, .large-title-block-3 {
    max-width: none;
  }

  .vertical-flex-with-gap-1 {
    grid-row-gap: 6em;
  }

  .header-8-content-2 {
    max-width: 46em;
    min-height: auto;
    padding-top: 60em;
    padding-bottom: 60em;
  }

  .listing-11-link-block {
    width: 50%;
    align-items: flex-start;
    padding-left: 3em;
    padding-right: 3em;
  }

  .listing-11-icon-for-phone {
    display: block;
  }

  .listing-12-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header-3-padding-2 {
    padding-top: 17em;
  }

  .header-13 {
    padding-top: 14em;
  }

  .overview-hero-content {
    max-width: 64em;
    padding-left: 3em;
    padding-right: 3em;
  }

  .grid-13-text-3 {
    font-size: 1.1em;
    line-height: 1.5em;
  }

  .fullscreen-menu-contacts {
    width: 100%;
    flex: 0 auto;
    margin-bottom: 0;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }

  .fullscreen-menu-column-1 {
    width: 100%;
    align-self: auto;
    padding-top: 4.9em;
    padding-left: 0;
  }

  .fullscreen-main-link {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .fullscreen-main-link:hover {
    background-color: rgba(0, 0, 0, 0);
  }

  .fullscreen-inner {
    flex-wrap: wrap;
    align-self: auto;
    overflow: auto;
  }

  .close-button {
    width: 100%;
    height: 6em;
    opacity: 1;
    border-bottom: 1px solid #342f3d;
    border-right-width: 0;
    border-right-color: rgba(0, 0, 0, 0);
    font-size: .9em;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .close-button:hover {
    width: 100%;
  }

  .fullscreen-menu-column-2 {
    width: 100%;
    flex: 0 auto;
    align-self: auto;
    padding: 5em;
  }

  .socials-3 {
    margin-top: 3em;
  }

  .overview-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .subfooter-links-list-3 {
    grid-column-gap: 1.75em;
  }

  .overview-text-6 {
    font-size: 1.5em;
  }

  .overview-block-1 {
    max-width: 49em;
  }

  .review-content-block {
    border-bottom-color: rgba(0, 0, 0, 0);
  }

  .tab-content-block-3 {
    grid-column-gap: 3.5em;
  }

  .grid-13-text-4 {
    font-size: 2.5em;
  }

  .vertical-flex-with-gap-2 {
    grid-row-gap: 6em;
  }

  .overview-screen-2 {
    width: 140%;
  }

  .menu-link-6 {
    width: 50%;
    min-height: 9em;
  }

  .menu-link-6:hover {
    width: 50%;
  }

  .overview-links, .menu-links-6 {
    grid-column-gap: 0em;
    grid-row-gap: 0em;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
  }

  .large-text-1 {
    font-size: 6em;
  }

  .header-10-content-2 {
    padding-left: 3em;
    padding-right: 3em;
  }

  .header-14-content-2 {
    max-width: 63em;
    padding-left: 4em;
    padding-right: 4em;
  }

  .form-grid-in-ui {
    grid-template-columns: 1fr;
  }

  .menu-sublinks-2 {
    background-color: #dbdadf;
    padding-left: 2em;
    padding-right: 2em;
  }

  .content-grid-18 {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .list-title-2 {
    font-size: 1.5em;
  }

  .list-text-2 {
    max-width: none;
    font-size: 1.15em;
  }

  .grid-1-block-3 {
    max-width: 38em;
    position: relative;
    top: 0;
  }

  .popup-content-wrapper {
    max-height: 92%;
  }

  .play-wrapper:active {
    transform: scale(.9);
  }

  .content-grid-19 {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .list-title-3 {
    font-size: 1.5em;
  }

  .list-text-3 {
    max-width: none;
    font-size: 1.15em;
  }

  .grid-1-block-4 {
    max-width: 38em;
    position: relative;
    top: 0;
  }

  .main-button-2:hover {
    letter-spacing: .15em;
  }
}

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

  p {
    font-size: 1.3em;
    line-height: 1.4em;
  }

  .container.in-accordion, .container.is-full-width {
    padding-left: 4em;
    padding-right: 4em;
  }

  .container.in-hero-7 {
    flex: 0 auto;
  }

  .padding {
    padding-top: 6em;
    padding-bottom: 6em;
  }

  .heading.is-header-5-title {
    font-size: 3.5em;
  }

  .heading.is-grid-8-title-2 {
    font-size: 3.2em;
  }

  .heading.is-header-7-title {
    font-size: 5em;
  }

  .heading.is-listing-8-title {
    font-size: 2.8em;
  }

  .heading.is-header-3-title-1 {
    font-size: 3.5em;
  }

  .heading.is-title-4 {
    font-size: 12vw;
  }

  .heading.is-title-8 {
    font-size: 5em;
  }

  .heading.is-title-9 {
    font-size: 3.5em;
  }

  .heading.is-grid-5-title-2 {
    font-size: 2em;
  }

  .heading.is-title-11 {
    margin-bottom: .8em;
    font-size: 4em;
  }

  .heading.is-large-title-3 {
    font-size: 4.7em;
  }

  .heading.is-header-2-title {
    line-height: 1.3em;
  }

  .heading.is-ui-kit-title {
    font-size: 4em;
  }

  .heading.is-listing-7-title {
    font-size: 1.8em;
  }

  .heading.is-header-9-title {
    font-size: 7vw;
    line-height: 1.1em;
  }

  .heading.is-header-10-title {
    font-size: 3.5em;
  }

  .heading.is-grid-3-title-1 {
    font-size: 5em;
  }

  .heading.is-title-15 {
    font-size: 3em;
  }

  .heading.is-header-11-title {
    font-size: 4em;
  }

  .heading.is-grid-4-title {
    font-size: 3.2em;
  }

  .heading.is-title-1 {
    font-size: 4em;
  }

  .heading.is-header-3-title-2 {
    font-size: 6em;
  }

  .heading.is-grid-3-title-2 {
    font-size: 5em;
  }

  .heading.is-service-title-1 {
    margin-bottom: .8em;
    font-size: 3em;
    line-height: 1.1em;
  }

  .heading.is-client-title {
    font-size: 3em;
  }

  .heading.is-grid-1-title-2 {
    font-size: 3em;
    line-height: 1.4em;
  }

  .heading.is-header-1-title-2 {
    line-height: 1.3em;
  }

  .heading.is-other-cases-title {
    font-size: 4em;
  }

  .heading.is-header-8-title-2 {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 8vw;
    line-height: 1.1em;
  }

  .heading.is-blog-title {
    font-size: 3.5em;
  }

  .heading.is-header-3-title-3, .heading.is-tab-title-1 {
    font-size: 4em;
  }

  .heading.is-404-title {
    font-size: 5em;
  }

  .heading.is-solution-title-1, .heading.is-client-title-1 {
    font-size: 4em;
  }

  .heading.is-client-title-2, .heading.is-client-title-3 {
    font-size: 3.5em;
  }

  .heading.is-client-title-4 {
    font-size: 4em;
  }

  .heading.is-header-9-title-2 {
    font-size: 7vw;
    line-height: 1.1em;
  }

  .heading.is-about-1-title {
    font-size: 12vw;
  }

  .heading.is-case-study-title-3 {
    font-size: 4em;
  }

  .heading.is-header-14-title {
    font-size: 3.5em;
  }

  .heading.is-review-title-1 {
    font-size: 4em;
  }

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

  .list-block.in-overview {
    min-height: auto;
  }

  .circle-in-list {
    width: 2.6em;
    height: 2.6em;
    margin-right: 2em;
  }

  .list-content {
    padding-top: .4em;
  }

  .list-line {
    left: 1.2em;
  }

  .list-line.is-hide-on-desktop {
    display: block;
  }

  .list-title {
    font-size: 1.6em;
  }

  .list-text {
    font-size: 1.2em;
  }

  .brand-slogan {
    display: none;
  }

  .hero-socials-list {
    flex-direction: row;
  }

  .grid-1-block-1 {
    position: relative;
    top: 0;
  }

  .dropdown-list.is-contacts {
    top: 3.8em;
  }

  .menu-dropdown-title.is-contant-title {
    margin-bottom: .4em;
    font-size: 1.6em;
  }

  .contact-menu-grid-subtitle {
    font-size: 1.2em;
  }

  .newsletter-field::-ms-input-placeholder {
    font-size: 1em;
  }

  .newsletter-field::placeholder {
    font-size: 1em;
  }

  .newsletter-form {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .menu-mobile-text {
    font-size: .45em;
  }

  .contact-menu-grid {
    text-align: center;
    grid-template-columns: 1fr;
    justify-items: center;
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .contact-menu-grid.is-last {
    grid-template-columns: 1fr;
  }

  .menu-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu-button-lines {
    grid-row-gap: 2px;
  }

  .contact-menu-grid-item {
    justify-content: center;
    align-items: center;
  }

  .empty-block-4.in-contact {
    font-size: 1.6em;
  }

  .header-5-inner {
    min-height: auto;
    padding-top: 10em;
    padding-bottom: 8em;
    overflow: hidden;
  }

  .main-nav {
    height: 4em;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
  }

  .nav-block-2 {
    top: 4em;
  }

  .brand-link-block {
    padding-right: 1.3em;
  }

  .nav-contact-button {
    height: 2.8em;
    grid-column-gap: .5em;
  }

  .menu-mobile-button-flex {
    padding-left: 1em;
    padding-right: 1em;
  }

  .nav-link-contact-grid {
    width: 2.8em;
    height: 2.8em;
  }

  .brand-logo-block {
    width: 100%;
  }

  .brand-slogan-block, .brand-divider-2 {
    display: none;
  }

  .tabs-1-links {
    justify-content: flex-start;
    margin-bottom: 2em;
  }

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

  .tab-image {
    height: 14em;
  }

  .accordion-title {
    font-size: 1.3em;
  }

  .accordion-arrow {
    font-size: 1.6em;
  }

  .gallery-grid {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .sticky-column-2 {
    padding-bottom: 10em;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .password-form-block {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .password-form-field {
    flex-wrap: wrap;
  }

  .password-form-input {
    width: 100%;
    margin-bottom: 1em;
  }

  .password-form-input::-ms-input-placeholder {
    font-size: 1em;
  }

  .password-form-input::placeholder {
    font-size: 1em;
  }

  .password-form-submit {
    width: 100%;
  }

  .gallery-grid-2 {
    grid-template-columns: 1fr;
  }

  .preloader {
    padding: 10em 5vw;
  }

  .preloader-content-title {
    font-size: 7vw;
  }

  .header-5-socials {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 1em 3.5em;
    position: relative;
  }

  .header-6-text-2 {
    font-size: 2.7em;
    line-height: 1.5em;
  }

  .content-grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-2-block-1 {
    max-width: 34em;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .grid-2-block-1.align-to-right {
    text-align: center;
    align-items: center;
  }

  .grid-9-line {
    height: 4px;
  }

  .grid-10-number {
    font-size: 2.5em;
  }

  .grid-9-block-1 {
    padding-left: 0;
    padding-right: 0;
  }

  .header-10-padding {
    padding-top: 11em;
  }

  .fullscreen-menu-button {
    width: auto;
    padding-left: 2em;
    padding-right: 2em;
  }

  .content-grid-7 {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
    grid-template-columns: 1fr 1fr;
  }

  .grid-7-block.is-last {
    max-width: 34em;
  }

  .grid-7-block.is-3rd {
    max-width: 30em;
    margin-bottom: 4em;
  }

  .grid-7-block.is-last {
    max-width: 34em;
  }

  .grid-9-number {
    font-size: 2.7em;
  }

  .grid-9-text {
    font-size: 1.1em;
  }

  .grid-7-text-2 {
    font-size: 1.3em;
  }

  .header-9-content-block {
    padding-right: 0;
  }

  .content-grid-4 {
    grid-column-gap: 3em;
    grid-row-gap: 3em;
  }

  .header-7-content {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .header-7-padding {
    min-height: auto;
  }

  .header-7-socials {
    min-height: auto;
    min-width: auto;
    border-radius: 5px;
    margin-top: 4em;
    padding-left: 2em;
    padding-right: 2em;
    position: relative;
  }

  .listing-7-grid {
    grid-template-columns: 1fr;
  }

  .listing-7-item {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .listing-8-column-2 {
    width: 100%;
    height: 35em;
  }

  .listing-8-text {
    font-size: 1.2em;
  }

  .listing-8-item {
    flex-wrap: wrap;
    padding-top: 0;
  }

  .listing-8-column-1 {
    width: 100%;
    padding-bottom: 6em;
  }

  .listing-8-content {
    margin-bottom: 3em;
  }

  .header-3-padding {
    padding-top: 8em;
  }

  .header-3.in-solutions {
    min-height: 60vh;
  }

  .listing-8-scroll-down {
    position: relative;
  }

  .listing-8-image-2 {
    height: 15em;
    margin-left: auto;
    margin-right: auto;
    top: -4em;
    left: auto;
  }

  .menu-link-1-item {
    min-width: 45%;
    flex: 1;
  }

  .menu-link-1.in-overview {
    width: 49%;
  }

  .tabs-2-links {
    grid-column-gap: 3em;
  }

  .content-grid-13.in-client-page {
    padding-top: 0;
    padding-bottom: 0;
  }

  .menu-link-2 {
    background-position: 95%;
    padding-right: 4em;
  }

  .menu-link-2:hover {
    background-position: 95%;
  }

  .menu-links-5-flex {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
  }

  .cms-links-list-1 {
    grid-column-gap: 2em;
  }

  .scolling-image.in-case-studies {
    width: 40vw;
  }

  .menu-link-3 {
    padding: 1.5em;
  }

  .grid-11-block-1 {
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }

  .grid-11-text-1 {
    font-size: 1.1em;
  }

  .grid-11-number {
    font-size: 2.7em;
  }

  .grid-15-title-line {
    margin-right: 4em;
  }

  .button-listing-1-list.is-grid {
    grid-column-gap: 2em;
    grid-template-columns: 1fr 1fr;
  }

  .listing-2-list {
    grid-template-columns: 1fr;
  }

  .listing-2-link-block.is-case-study-2 {
    grid-row-gap: 2em;
  }

  .menu-sublink {
    font-size: 1.1em;
  }

  .grid-13-content {
    grid-column-gap: 1.5em;
  }

  .grid-13-image {
    width: 3em;
  }

  .features-column-1 {
    width: 100%;
    min-height: auto;
    padding-bottom: 0;
    padding-left: 4em;
    padding-right: 4em;
    position: relative;
  }

  .features-title-block {
    margin-bottom: 4em;
    transform: none;
  }

  .features-column-2 {
    width: 100%;
    border-left-width: 0;
    border-left-color: rgba(0, 0, 0, 0);
    flex: 0 auto;
    padding-top: 8em;
    padding-bottom: 8em;
  }

  .features-aside-button {
    width: 100%;
    height: 16em;
    position: relative;
  }

  .features-aside-button:hover {
    width: 100%;
  }

  .listing-6-grid-2 {
    grid-template-rows: auto auto;
    grid-template-columns: .25fr 1fr;
  }

  .features-flex {
    flex-wrap: wrap;
  }

  .parallax-image-3 {
    font-size: .6em;
  }

  .parallax-image-2 {
    font-size: .4em;
  }

  .parallax-image-1 {
    font-size: .6em;
  }

  .parallax-image-4 {
    font-size: .8em;
  }

  .gallery-padding {
    padding-top: 10em;
  }

  .listing-1-list {
    grid-row-gap: 2.5em;
  }

  .listing-1-link {
    padding: 3.3em;
  }

  .content-grid-5 {
    grid-column-gap: 3em;
    grid-row-gap: 6em;
    grid-template-columns: 1fr;
  }

  .grid-5-block-1 {
    justify-content: center;
    align-items: center;
  }

  .content-grid-6 {
    grid-column-gap: 2.5em;
  }

  .cta-2-grid {
    grid-template-columns: 1fr;
    padding: 5em;
  }

  .cta-2-block-1 {
    z-index: 1;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .cta-2-block-2 {
    padding-top: 6em;
    padding-bottom: 6em;
  }

  .cta-2-content {
    margin-bottom: 1.5em;
  }

  .cta-2-icon {
    position: relative;
    bottom: auto;
  }

  .socials-1-list {
    flex-direction: row;
  }

  .footer-contact-button {
    font-size: 1.2em;
  }

  .subfooter-text-link.is-2nd {
    font-size: 1em;
  }

  .listing-4-item.in-services:first-child {
    padding-top: 6em;
  }

  .listing-4-grid {
    grid-template-columns: 1fr;
  }

  .listing-4-content-block {
    margin-left: 0;
  }

  .listing-4-text-1 {
    margin-bottom: 2em;
  }

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

  .cta-1-block-2 {
    min-height: 20em;
  }

  .footer-2-main-grid {
    grid-row-gap: 5em;
  }

  .footer-1-column-3 {
    padding-top: 2em;
    padding-bottom: 2em;
  }

  .footer-2-grid {
    grid-column-gap: 5em;
    grid-row-gap: 5em;
    grid-template-columns: 1fr 1fr;
  }

  .footer-2-small-link {
    font-size: 1.1em;
  }

  .footer-2-grid-block-2 {
    grid-row-gap: 5.25em;
  }

  .footer-2-links-1 {
    grid-row-gap: 1.25em;
  }

  .footer-1-link-block-2 {
    justify-content: space-between;
    padding-left: 3em;
    padding-right: 3em;
  }

  .header-7-socials-bg {
    border-radius: 5px;
  }

  .newsletter-list-1 {
    grid-template-columns: 1fr;
  }

  .simple-cta-button-1-icon {
    font-size: 2em;
  }

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

  .form-field::-ms-input-placeholder {
    font-size: 1em;
  }

  .form-field::placeholder {
    font-size: 1em;
  }

  .grid-11 {
    grid-column-gap: 2.5em;
  }

  .header-2-grid {
    grid-template-columns: 1fr;
  }

  .header-2-padding {
    padding-top: 8em;
    padding-bottom: 12em;
  }

  .header-2-image-size-1 {
    height: 30em;
  }

  .ui-kit-header {
    padding-top: 8em;
  }

  .footer-5-grid-2 {
    grid-row-gap: 1.5em;
    grid-template-columns: 1fr;
    margin-top: 1.5em;
  }

  .footer-2-padding {
    padding-top: 6em;
    padding-bottom: 6em;
  }

  .footer-1-grid-1-copy {
    grid-column-gap: 1em;
    grid-row-gap: 1em;
    grid-template-columns: 1fr;
  }

  .footer-simple-padding {
    padding-bottom: 2em;
  }

  .footer-simple-title {
    font-size: 1.7em;
  }

  .footer-contact-link-text {
    width: 100%;
    max-width: none;
    text-align: center;
    background-color: rgba(255, 255, 255, .03);
    border: 1px solid #3c3a45;
    margin-top: -1px;
    padding-top: 1.2em;
    padding-bottom: 1.2em;
    font-size: 1.1em;
  }

  .footer-simple-contacts {
    grid-row-gap: 0em;
  }

  .header-1-link {
    width: 100%;
    padding-top: 3em;
    padding-bottom: 3em;
  }

  .footer-3-padding {
    padding-top: 6em;
    padding-bottom: 6em;
  }

  .footer-3-button-1, .footer-3-button-2 {
    width: 100%;
  }

  .header-1-flex {
    flex-direction: column-reverse;
  }

  .header-8-content {
    padding-top: 30em;
    padding-bottom: 30em;
  }

  .header-9-title-block {
    padding-top: 12em;
    padding-bottom: 12em;
  }

  .header-10 {
    min-height: 85vh;
    overflow: visible;
  }

  .title-block-1 {
    max-width: 40em;
  }

  .ui-buttons-grid {
    grid-row-gap: 5em;
    grid-template-columns: 1fr;
  }

  .listing-9-grid {
    grid-template-columns: 1fr;
  }

  .listing-9-image-size {
    width: 33%;
    max-width: none;
  }

  .listing-9-content {
    margin-left: auto;
    margin-right: auto;
  }

  .listing-9-text-1 {
    font-size: .8em;
  }

  .simple-link-1 {
    font-size: 1.2em;
  }

  .header-11 {
    padding-top: 12em;
  }

  .grid-2-image-1 {
    width: 80%;
    min-height: 30em;
  }

  .content-grid-8 {
    grid-template-columns: 1fr;
  }

  .grid-10-line {
    height: 3px;
  }

  .content-grid-14 {
    grid-template-columns: 1fr;
  }

  .grid-14-block-2 {
    margin-left: 0;
  }

  .topfooter-1 {
    min-height: 10em;
  }

  .cms-links-block {
    margin-top: 3.9em;
  }

  .cms-links-block.on-dark-bg {
    margin-top: 4em;
  }

  .footer-2-uppercase-title {
    font-size: .8em;
  }

  .address-text-4 {
    font-size: 1.5em;
  }

  .footer-uppercase-text-4 {
    font-size: .8em;
  }

  .grid-11-text-2 {
    font-size: 1.4em;
  }

  .header-12 {
    padding-top: 10em;
  }

  .listing-10-flex {
    grid-template-columns: 1fr;
  }

  .listing-10-content {
    padding-left: 6em;
    padding-right: 6em;
  }

  .header-12-text-1 {
    font-size: 1.5em;
  }

  .listing-10-text-1 {
    font-size: .8em;
  }

  .image-size-50em {
    height: 30em;
  }

  .client-2-block-1 {
    grid-column-gap: 2em;
  }

  .client-2-text-1 {
    font-size: 1.1em;
  }

  .client-2-year-text {
    font-size: 1.2em;
  }

  .case-study-title-2 {
    font-size: 16vw;
  }

  .grid-13-text-2 {
    font-size: 2.5em;
  }

  .service-rich-text-block {
    padding-left: 4em;
    padding-right: 4em;
  }

  .content-block-5 {
    margin-bottom: 0;
  }

  .sticky-column-5 {
    padding-bottom: 10em;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .grid-17-block-1 {
    position: relative;
    top: 0;
  }

  .content-grid-17 {
    grid-row-gap: 3em;
    grid-template-columns: 1fr;
  }

  .header-1-flex-2 {
    grid-row-gap: 5em;
    flex-direction: column;
  }

  .uppercase-title-3 {
    font-size: 1em;
  }

  .header-8-content-2 {
    max-width: 53em;
    padding-top: 30em;
    padding-bottom: 30em;
  }

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

  .grid-12-content {
    padding-top: 4em;
    padding-bottom: 6em;
    padding-right: 0;
  }

  .listing-11-item {
    flex-direction: column-reverse;
  }

  .listing-11-item:nth-child(2n) {
    flex-direction: column-reverse;
    justify-content: space-between;
    align-items: stretch;
  }

  .listing-11-link-block {
    width: 100%;
    min-height: auto;
    padding-left: 5em;
    padding-right: 5em;
  }

  .listing-11-image {
    min-height: 20em;
  }

  .listing-12-grid {
    grid-template-columns: 1fr;
  }

  .header-3-padding-2 {
    padding-top: 15em;
  }

  .header-13 {
    padding-top: 10em;
  }

  .simple-cta-button-2-icon {
    font-size: 2em;
  }

  .fullscreen-menu-contacts {
    background-color: rgba(21, 23, 32, .6);
  }

  .fullscreen-main-link-text {
    font-size: 1.5em;
  }

  .fullscreen-main-link {
    padding-left: 2em;
    padding-right: 2em;
  }

  .fullscreen-menu-contact-link {
    padding-top: 1.8em;
    padding-bottom: 1.8em;
  }

  .fullscreen-menu-column-2 {
    position: relative;
  }

  .fullscreen-menu-contact-text {
    font-size: 1em;
  }

  .socials-3 {
    margin-top: 2em;
  }

  .header-12-text-2 {
    font-size: 1.5em;
  }

  .overview-grid-2 {
    grid-row-gap: 0em;
    grid-template-columns: 1fr;
    justify-items: center;
  }

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

  .review-flex:nth-child(2n) {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }

  .review-grid-column-1 {
    max-width: none;
  }

  .review-content-block {
    padding-bottom: 0;
  }

  .tab-content-block-3 {
    grid-row-gap: 3em;
    grid-template-columns: 1fr;
  }

  .grid-13-text-4 {
    font-size: 2em;
  }

  .vertical-flex-with-gap-2 {
    grid-row-gap: 4em;
  }

  .screens-1 {
    max-width: none;
  }

  .header-14 {
    min-height: 75vh;
  }

  .large-text-1 {
    font-size: 5em;
  }

  .header-12-text-3 {
    font-size: 1.5em;
  }

  .review-image-size {
    height: 24em;
    min-height: auto;
    flex: 0 auto;
  }

  .overview-small-title {
    font-size: 1em;
  }

  .content-grid-18 {
    grid-template-columns: 1fr;
  }

  .list-title-2 {
    font-size: 1.6em;
  }

  .list-line-2 {
    left: 1.2em;
  }

  .list-text-2 {
    font-size: 1.2em;
  }

  .grid-1-block-3 {
    position: relative;
    top: 0;
  }

  .popup-video {
    margin-top: -12em;
  }

  .popup-content {
    margin: 3em 2em;
  }

  .content-grid-19 {
    grid-template-columns: 1fr;
  }

  .list-title-3 {
    font-size: 1.6em;
  }

  .list-text-3 {
    font-size: 1.2em;
  }

  .grid-1-block-4 {
    position: relative;
    top: 0;
  }

  .grid-7-text-3 {
    font-size: 1.3em;
  }

  .content-grid-20 {
    grid-column-gap: 2.5em;
    grid-row-gap: 2.5em;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  ol {
    padding-left: 2.2em;
  }

  .container {
    order: -1;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .container.in-accordion, .container.is-full-width {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .container.is-blog-listing {
    padding-left: 0;
    padding-right: 0;
  }

  .padding.is-blog-listing-1 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .padding.is-blog-listing-2, .padding.is-blog-listing-3 {
    padding-bottom: 0;
  }

  .heading.is-header-5-title {
    font-size: 3em;
    line-height: 1.4em;
  }

  .heading.is-grid-2-title {
    text-align: center;
    font-size: 2.5em;
  }

  .heading.is-grid-8-title-2 {
    line-height: 1.2em;
  }

  .heading.is-header-8-title {
    font-size: 3.5em;
  }

  .heading.is-header-7-title {
    font-size: 12vw;
  }

  .heading.is-header-3-title-1 {
    font-size: 3em;
  }

  .heading.is-title-4 {
    line-height: 1.2em;
  }

  .heading.is-title-9 {
    font-size: 3em;
  }

  .heading.is-features-title {
    font-size: 3.3em;
  }

  .heading.is-large-title-1 {
    font-size: 4em;
  }

  .heading.is-title-11 {
    font-size: 3.3em;
  }

  .heading.is-title-12 {
    font-size: 3em;
  }

  .heading.is-contact-title-1 {
    font-size: 4em;
  }

  .heading.is-ui-kit-title, .heading.is-header-1-title-1 {
    font-size: 3em;
  }

  .heading.is-header-10-title {
    line-height: 1.3em;
  }

  .heading.is-grid-3-title-1 {
    font-size: 3em;
  }

  .heading.is-grid-1-title-1 {
    font-size: 3.3em;
  }

  .heading.is-title-15 {
    font-size: 2.5em;
  }

  .heading.is-header-11-title, .heading.is-title-1 {
    font-size: 3em;
  }

  .heading.is-header-3-title-2 {
    font-size: 18vw;
  }

  .heading.is-header-12-title {
    font-size: 3em;
  }

  .heading.is-listing-10-title {
    font-size: 2.5em;
  }

  .heading.is-grid-3-title-2 {
    font-size: 3em;
  }

  .heading.is-service-title-1, .heading.is-client-title, .heading.is-grid-1-title-2 {
    font-size: 2.5em;
  }

  .heading.is-header-1-title-2 {
    font-size: 3em;
  }

  .heading.is-case-title-1 {
    font-size: 15vw;
  }

  .heading.is-other-cases-title {
    font-size: 3em;
  }

  .heading.is-case-study-title-1 {
    font-size: 4em;
  }

  .heading.is-blog-title {
    font-family: URWGeometric, sans-serif;
    font-size: 3em;
  }

  .heading.is-header-3-title-3 {
    line-height: 1.1em;
  }

  .heading.is-study-title-1, .heading.is-header-13-title {
    font-size: 5em;
  }

  .heading.is-tab-title-1, .heading.is-404-title {
    font-size: 3em;
  }

  .heading.is-overview-title-3 {
    font-size: 4em;
  }

  .heading.is-overview-title-2 {
    margin-bottom: .6em;
    font-size: 2.5em;
  }

  .heading.is-overview-title-1 {
    font-size: 7vw;
    line-height: 1.4em;
  }

  .heading.is-solution-title-1, .heading.is-overview-title-4, .heading.is-overview-title-6 {
    font-size: 3em;
  }

  .heading.is-client-title-1 {
    font-size: 3.5em;
  }

  .heading.is-client-title-2, .heading.is-client-title-3 {
    font-size: 3em;
  }

  .heading.is-client-title-4 {
    font-size: 3.5em;
  }

  .heading.is-header-9-title-2 {
    font-size: 9vw;
  }

  .heading.is-about-1-title {
    margin-bottom: .5em;
    line-height: 1.2em;
  }

  .heading.is-overview-title-5 {
    margin-bottom: .2em;
    font-size: 15vw;
    line-height: 1em;
  }

  .heading.is-case-study-title-3 {
    font-size: 3.5em;
  }

  .heading.is-header-14-title {
    margin-top: 1em;
    font-size: 11.5vw;
    line-height: 1.3em;
  }

  .heading.is-header-13-title-2 {
    font-size: 5em;
  }

  .heading.is-services-2-title {
    font-size: 2.5em;
  }

  .heading.is-large-title-2 {
    font-size: 17vw;
  }

  .heading.is-contact-title-2, .heading.is-review-title-1 {
    font-size: 5em;
  }

  .heading.is-review-title-1 {
    font-size: 3em;
  }

  .heading.is-review-title-2 {
    font-size: 5em;
  }

  .heading.is-grid-1-title-1 {
    font-size: 3.3em;
  }

  .custom-list-1 {
    max-width: none;
  }

  .list-block {
    padding-bottom: 3em;
  }

  .circle-in-list {
    width: 2.3em;
    height: 2.3em;
    margin-right: 1.5em;
  }

  .list-content {
    padding-top: .1em;
  }

  .custom-list-icon {
    font-size: 1.1em;
  }

  .list-line {
    left: 1em;
  }

  .absolute-block {
    order: -1;
  }

  .nav-link {
    min-height: 4em;
    font-size: 1.1em;
  }

  .form-success-title {
    font-size: 1.2em;
  }

  .form-error-message {
    padding: 1.7em;
  }

  .form-error-paragraph {
    font-size: 1em;
  }

  .newsletter-submit-button {
    width: 100%;
  }

  .dropdown-list {
    display: none;
  }

  .newsletter-field {
    width: 100%;
    text-align: center;
    margin-bottom: 1em;
  }

  .newsletter-form-inner {
    flex-wrap: wrap;
  }

  .newsletter-title-block {
    grid-row-gap: 2em;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }

  .newsletter-image {
    margin-right: .2em;
    font-size: 4.7em;
  }

  .menu-mobile-text {
    letter-spacing: 0;
    font-family: Tajawal, sans-serif;
  }

  .menu-contacts {
    padding-bottom: 1em;
  }

  .menu-mobile-dots {
    width: 5vw;
    font-size: .8em;
  }

  .empty-block-4.in-contact {
    font-size: 1.4em;
  }

  .flex-for-sticky.in-overview {
    padding-bottom: 0;
  }

  .nav-block-3 {
    grid-column-gap: .75em;
    flex-direction: row-reverse;
  }

  .brand-link-block {
    padding-left: 3vw;
    padding-right: 1vw;
    font-size: .8em;
  }

  .nav-contact-button {
    padding-left: 1em;
    padding-right: 1em;
    font-size: .8em;
  }

  .menu-mobile-button-flex {
    grid-column-gap: 3vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .mobile-menu-button {
    justify-content: center;
  }

  .nav-link-contact-grid.is-2nd {
    background-color: rgba(0, 0, 0, .1);
  }

  .tabs-1 {
    flex-direction: column;
  }

  .tab-1-link {
    margin-right: 1.5em;
  }

  .tabs-1-links {
    width: 100%;
    min-width: auto;
    flex-flow: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin-right: 0;
    position: relative;
    top: 0;
  }

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

  .tab-inner {
    grid-template-columns: 1fr;
  }

  .tab-image {
    height: 11em;
  }

  .accordion-title {
    max-width: 85%;
    font-size: 1.1em;
  }

  .rich-text h1 {
    font-size: 3.5em;
  }

  .rich-text ul {
    padding-left: 2.2em;
  }

  .grid-15-column-1 {
    flex-direction: column;
  }

  .gallery-lightbox {
    height: 10em;
  }

  .gallery-lightbox.is-large-image {
    height: 21em;
  }

  .gallery-grid {
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
  }

  .sticky-column-2 {
    padding: 4em 6vw;
  }

  .password {
    padding: 0;
  }

  .password-form-label {
    top: 3.8em;
    left: 0;
    right: 0;
  }

  .password-form-field {
    flex-wrap: wrap;
    padding-top: 2em;
  }

  .password-form-input {
    width: 100%;
    text-align: center;
    margin-bottom: 1em;
    padding-left: 0;
  }

  .password-form-submit {
    width: 100%;
  }

  .static-gallery-grid, .gallery-grid-2 {
    grid-column-gap: 1.25em;
    grid-row-gap: 1.25em;
  }

  .preloader-inner {
    flex-direction: column;
  }

  .preloader-content-title {
    text-align: center;
    font-size: 9vw;
  }

  .preloader-title-overflow {
    width: 100%;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .color-define, .color-define-2, .color-define-3 {
    height: 3em;
  }

  .main-button.is-white.location {
    margin-top: 10px;
  }

  .menu-large-links {
    grid-row-gap: 0em;
    padding: 2em;
  }

  .menu-large-link {
    width: 100%;
    text-align: center;
    padding: .7em 0;
    font-size: 1.4em;
  }

  .header-6-text-2 {
    font-size: 2.2em;
  }

  .header-6-image-size-1 {
    height: 25em;
  }

  .header-6-title-1 {
    margin-bottom: -7vw;
    font-size: 15vw;
  }

  .content-grid-10 {
    grid-template-columns: 1fr;
  }

  .grid-10-number {
    font-size: 2.9em;
  }

  .grid-9-block-1 {
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
  }

  .header-10-content {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .fullscreen-menu-button {
    display: none;
  }

  .content-grid-7 {
    grid-template-columns: 1fr;
  }

  .grid-7-block {
    text-align: center;
    align-items: center;
  }

  .grid-7-block.is-last {
    border-left-width: 0;
    padding-left: 0;
  }

  .grid-9-number {
    min-width: auto;
  }

  .grid-9-block-2 {
    grid-row-gap: 1em;
    text-align: center;
    flex-direction: column;
    justify-content: center;
  }

  .grid-9-text {
    font-size: 1.2em;
  }

  .grid-3-text-1 {
    font-size: 1.5em;
  }

  .grid-3-image-4 {
    width: 12em;
    height: 7em;
    right: -3.5em;
  }

  .grid-9-title-block {
    min-width: auto;
  }

  .header-9-image-1 {
    height: 90%;
  }

  .header-9-image-2 {
    height: 20em;
    min-height: auto;
  }

  .header-9-content-block {
    padding: 12vw 8vw;
  }

  .header-9-image-3 {
    height: 20em;
  }

  .header-9-subtitle {
    font-size: 1.1em;
  }

  .header-9-line {
    width: 3em;
  }

  .content-grid-4 {
    grid-template-columns: 1fr;
  }

  .header-7-padding {
    padding-top: 16em;
    padding-bottom: 12em;
  }

  .header-7-socials {
    width: 82%;
  }

  .listing-7-item {
    padding: 2em;
  }

  .listing-8-text {
    font-size: 1.4em;
  }

  .listing-8-item {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .listing-8-column-1 {
    padding-top: 8em;
    padding-bottom: 0;
  }

  .menu-links-1-list {
    grid-row-gap: .5em;
  }

  .menu-link-1-item {
    width: 100%;
    min-width: auto;
    flex: 0 auto;
  }

  .menu-link-1 {
    min-height: 4.7em;
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    justify-content: flex-start;
    padding-left: 2.3em;
    padding-right: 2.3em;
  }

  .menu-link-1:hover {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .menu-link-1.in-overview {
    width: 100%;
  }

  .menu-link-5-icon {
    font-size: 1.1em;
  }

  .tabs-2-links {
    padding-left: 0;
    padding-right: 0;
  }

  .tab-2-link.w--current {
    background-position: 100%;
    padding-left: 0;
    padding-right: 2em;
  }

  .grid-16-title-1 {
    font-size: 1em;
  }

  .menu-link-2-item {
    width: 100%;
  }

  .menu-link-2 {
    width: 100%;
    flex: 0 auto;
    padding-top: .9em;
    padding-bottom: .9em;
  }

  .menu-links-5-flex {
    flex-wrap: wrap;
  }

  .menu-link-5 {
    width: 100%;
    flex: 0 auto;
    justify-content: space-between;
    padding-left: 2.3em;
    padding-right: 2.3em;
  }

  .cms-links-list-1 {
    grid-row-gap: 0em;
  }

  .padding-80vh {
    padding-top: 40em;
    padding-bottom: 40em;
  }

  .scolling-image.in-case-studies {
    width: 50vw;
  }

  .scolling-image.in-case-study {
    width: 45vw;
  }

  .menu-link-3-item {
    width: 50%;
  }

  .content-grid-11 {
    grid-template-columns: 1fr;
  }

  .grid-11-block-1 {
    border: 1px solid var(--border-color);
  }

  .grid-11-number {
    font-size: 3em;
  }

  .grid-15-title-line {
    width: 100%;
    height: 1px;
    margin-top: 2em;
    margin-bottom: 2em;
    margin-right: 0;
  }

  .content-1-title-block {
    padding-bottom: 3em;
  }

  .button-listing-1-list.is-grid {
    grid-template-columns: 1fr;
  }

  .grid-15-block-2 {
    width: 100%;
    max-width: none;
  }

  .button-listing-1-link {
    direction: ltr;
    justify-content: flex-end;
  }

  .button-listing-1-text {
    direction: rtl;
    text-align: right;
  }

  .listing-2-link-block.is-case-study-2 {
    min-height: 43em;
    padding: 5em 8vw;
  }

  .listing-2-content {
    padding: 0;
  }

  .menu-sublinks-1-flex-1 {
    justify-content: center;
  }

  .menu-sublinks-1 {
    grid-row-gap: 2em;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .grid-13-content {
    grid-row-gap: .25em;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .grid-13-image {
    width: 32%;
  }

  .grid-13-text {
    max-width: none;
    font-size: 1.2em;
  }

  .features-column-1 {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .listing-6-grid-2 {
    grid-column-gap: 0em;
    grid-template-columns: .25fr 1.25fr;
  }

  .listing-6-text {
    max-width: 96%;
  }

  .content-grid-16 {
    grid-template-columns: 1fr;
  }

  .subtitle-text-1 {
    font-size: 1.5em;
  }

  .parallax-image-3 {
    font-size: .6em;
  }

  .parallax-image-2 {
    font-size: .4em;
  }

  .parallax-image-1 {
    font-size: .6em;
    bottom: 13em;
    right: -2.4em;
  }

  .parallax-image-4 {
    font-size: .7em;
    bottom: 30em;
    left: -7.8em;
  }

  .parallax-content {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .parallax-content.is-2nd {
    padding-top: 14em;
    padding-bottom: 14em;
  }

  .header-10-text-1 {
    font-size: 1.5em;
  }

  .social-link-block-3 {
    width: 3em;
  }

  .custom-list-3 {
    max-width: none;
  }

  .content-grid-5 {
    grid-row-gap: 3em;
    grid-template-columns: 1fr;
  }

  .grid-5-image-2 {
    min-height: 25em;
  }

  .grid-5-text-2 {
    font-size: 1.3em;
  }

  .grid-5-image-3 {
    min-height: 16em;
  }

  .content-grid-6 {
    grid-template-columns: 1fr;
  }

  .header-buttons {
    grid-column-gap: 1em;
  }

  .listing-3-list {
    grid-template-columns: 1fr;
  }

  .services-3-item {
    height: 33em;
  }

  .services-3-item.is-fullscreen {
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .listing-3-link.is-fullscreen {
    height: 80vh;
  }

  .cta-2-grid {
    padding: 8vw;
  }

  .cta-2-block-2 {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .socials-1-list {
    justify-content: flex-start;
    margin-top: 0;
  }

  .footer-1-link-block {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-1-icon {
    font-size: 1.2em;
  }

  .footer-1-link-content {
    grid-column-gap: 2.25em;
  }

  .listing-heading-uni-2 {
    font-size: 2.6em;
  }

  .custom-list-4 {
    max-width: none;
  }

  .cta-1-block-1 {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .footer-1-link-block-2 {
    padding-left: 1.3em;
    padding-right: 1.3em;
  }

  .newsletter-list-1 {
    max-width: none;
  }

  .grid-16-text-2 {
    max-width: 9em;
  }

  .listing-5-link.is-case-study-1 {
    min-height: 50em;
  }

  .simple-cta-button-1 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 3.5em;
    padding-bottom: 3.5em;
  }

  .simple-cta-button-1-text-2 {
    font-size: 1em;
  }

  .address-tab-block.position {
    padding-bottom: 0;
  }

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

  .form-submit-button {
    width: 100%;
    background-position: 88%;
    padding-left: 1em;
    padding-right: 3.5em;
  }

  .form-submit-button:hover {
    padding-left: 1em;
    padding-right: 5em;
  }

  .form-field {
    width: 100%;
    margin-bottom: 1em;
  }

  .checkbox {
    margin-left: 1em;
    margin-right: 0;
  }

  .simple-cta-button-2 {
    flex-flow: column wrap;
    justify-content: center;
    padding-top: 5em;
    padding-bottom: 5em;
  }

  .simple-cta-button-2-text-1 {
    font-size: 1em;
  }

  .grid-11 {
    grid-row-gap: 5em;
    grid-template-columns: 1fr;
  }

  .ui-kit-header {
    padding-top: 7em;
  }

  .footer-main-link.in-footer-3 {
    margin-bottom: 1em;
  }

  .footer-simple-padding {
    padding-top: 6em;
  }

  .footer-simple-title {
    font-size: 1.5em;
  }

  .footer-contact-link-text {
    font-size: 1em;
  }

  .header-1-block-1 {
    padding: 12vw 8vw;
  }

  .footer-3-grid-links {
    grid-template-columns: 1fr 1fr;
  }

  .header-1-flex-1 {
    padding-left: 8vw;
  }

  .header-8-content {
    padding-top: 33.3em;
    padding-bottom: 33.3em;
  }

  .grid-16-text-1 {
    font-size: 1.3em;
  }

  .listing-9-item {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    padding: 1.5em;
  }

  .listing-9-content {
    margin-left: 0;
    margin-right: 0;
  }

  .header-11 {
    padding-top: 10em;
  }

  .listing-6-text-block {
    padding-right: 5em;
  }

  .grid-2-image-1 {
    min-height: 22em;
  }

  .grid-3-image-3 {
    width: 14em;
    height: 7em;
  }

  .grid-3-image-2 {
    width: 8em;
    height: 7em;
  }

  .grid-4-image-1 {
    height: 20em;
  }

  .number-text-6.is-smaller {
    font-size: 1.8em;
  }

  .grid-1-list {
    max-width: none;
  }

  .topfooter-1 {
    min-height: auto;
    flex-direction: column;
  }

  .topfooter-1-menu-button {
    border-bottom: 1px solid rgba(18, 4, 44, .3);
    border-right-color: rgba(0, 0, 0, 0);
    padding-top: 2.5em;
    padding-bottom: 2.5em;
  }

  .topfooter-1-menu-button.is-2nd {
    border-top: 1px solid rgba(18, 4, 44, .3);
    border-bottom-color: rgba(0, 0, 0, 0);
  }

  .cms-links-block.on-dark-bg {
    padding-top: 1em;
  }

  .content-text-1 {
    font-size: 1.5em;
  }

  .circle-image {
    margin-right: .2em;
    font-size: 4.7em;
  }

  .grid-11-text-2 {
    font-size: 1.7em;
  }

  .rounded-image {
    margin-right: .2em;
    font-size: 4.7em;
  }

  .listing-10-content {
    margin-left: 0;
    margin-right: 0;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .header-12-text-1 {
    font-size: 1.5em;
  }

  .sticky-column-3 {
    grid-row-gap: 2.25em;
    order: -1;
    padding-top: 10em;
    padding-bottom: 6em;
  }

  .sticky-column-3.in-overview {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .client-2-link {
    grid-row-gap: 1em;
  }

  .client-2-block-1 {
    flex-wrap: wrap;
    margin-bottom: 2em;
  }

  .client-2-block-2 {
    width: 100%;
    justify-content: space-between;
  }

  .client-2-logo {
    font-size: 1.2em;
  }

  .client-2-years {
    width: 100%;
    justify-content: space-between;
  }

  .client-2-year-text {
    font-size: 1.4em;
  }

  .case-study-title-2 {
    font-size: 18vw;
  }

  .case-study-results {
    grid-column-gap: 2.25em;
  }

  .service-rich-text-block {
    padding-left: 1.5em;
    padding-right: 0;
  }

  .sticky-column-4 {
    grid-row-gap: 2.25em;
    padding-top: 10em;
    padding-bottom: 6em;
  }

  .sticky-column-5 {
    padding: 4em 6vw;
  }

  .rich-text-on-dark-bg ul {
    padding-left: 2.2em;
  }

  .header-1-flex-2 {
    grid-row-gap: 2.5em;
  }

  .vertical-flex-with-gap-1 {
    grid-row-gap: 4em;
  }

  .header-8-content-2 {
    padding-top: 33.3em;
    padding-bottom: 33.3em;
  }

  .listing-11-link-block {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .listing-11-text-1 {
    font-size: 1.2em;
  }

  .listing-12-grid.blog {
    margin-top: 80px;
  }

  .listing-12-item {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .listing-12-link {
    padding: 8vw;
  }

  .header-3-padding-2 {
    padding-top: 13em;
  }

  .clients-3-list {
    grid-template-columns: 1fr 1fr;
  }

  .client-large-text-2 {
    font-size: 1.6em;
  }

  .overview-hero-content {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .grid-13-text-3 {
    max-width: none;
    font-size: 1.2em;
  }

  .fullscreen-menu-contacts {
    width: 100%;
    max-width: none;
    min-width: auto;
    padding: 3em;
  }

  .fullscreen-menu-column-1 {
    padding-top: 3.9em;
  }

  .fullscreen-menu {
    display: none;
  }

  .fullscreen-main-link-text {
    font-size: 1.7em;
  }

  .fullscreen-main-link {
    width: 100%;
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .close-button {
    font-size: .7em;
  }

  .fullscreen-menu-column-2 {
    padding: 8vw;
  }

  .fullscreen-main-links {
    grid-template-columns: 1fr;
  }

  .socials-3 {
    margin-top: 0;
  }

  .header-12-text-2 {
    font-size: 1.5em;
  }

  .form-success-title-2 {
    font-size: 1.2em;
  }

  .overview-grid-2 {
    max-width: none;
  }

  .overview-text-6 {
    font-size: 1.4em;
  }

  .vertical-flex-with-gap-2 {
    grid-row-gap: 4em;
  }

  .overview-screen-2 {
    width: 190%;
  }

  .menu-link-6 {
    padding: 1.5em;
  }

  .header-buttons-2 {
    grid-column-gap: 1em;
  }

  .large-text-1 {
    font-size: 12vw;
  }

  .header-10-content-2 {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .header-14-content-2 {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .form-block-2 {
    padding: 0;
  }

  .form-block-2.is-black {
    padding: 5vw;
  }

  .gallery-description-text {
    font-size: 1.9em;
  }

  .content-text-4 {
    font-size: 1.5em;
  }

  .menu-sublinks-2 {
    grid-row-gap: 2em;
    flex-wrap: wrap;
    padding-left: 1.5em;
    padding-right: 1.5em;
  }

  .header-12-text-3 {
    font-size: 1.5em;
  }

  .overview-subtitle-1 {
    font-size: 1.4em;
  }

  .lottie-animation {
    margin-bottom: -100px;
  }

  .splxrai {
    height: 4.5vh;
  }

  .lottie-animation-2 {
    margin-top: -40px;
  }

  .list-line-2 {
    left: auto;
  }

  .custom-list-icon-2 {
    font-size: 1.1em;
  }

  .popup-video {
    margin-top: -5.8em;
  }

  .popup-video-group {
    margin-top: -90px;
  }

  .custom-list-icon-3 {
    font-size: 1.1em;
  }

  .content-grid-20 {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

#w-node-_527e44c3-681c-fb8a-4b49-fc7a1f8f157b-a9a611b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_527e44c3-681c-fb8a-4b49-fc7a1f8f157e-a9a611b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_527e44c3-681c-fb8a-4b49-fc7a1f8f1581-a9a611b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

#w-node-_7686e174-6108-e4ea-4ebb-d9851cd691c1-a9a611b3, #w-node-_7686e174-6108-e4ea-4ebb-d9851cd691d7-a9a611b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a8ef303d-5183-3f96-a463-608176429e4f-a9a611b3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_6278f356-702c-69d0-581f-ee0a2965e5e8-2965e5e4, #w-node-_6278f356-702c-69d0-581f-ee0a2965e5ed-2965e5e4, #w-node-_80901f64-1267-9261-2a31-d010b16bacfb-2965e5e4, #w-node-_6278f356-702c-69d0-581f-ee0a2965e601-2965e5e4, #w-node-_77ede916-bcaa-8e40-3bab-b1f44284da15-4284da11, #w-node-_77ede916-bcaa-8e40-3bab-b1f44284da1d-4284da11, #w-node-_073f4d94-128d-f812-df53-c6035dc9cd8a-5dc9cd88 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8f893bb8-edec-5ffe-1af6-e4c68647d2fc-8647d2f8, #w-node-_8f893bb8-edec-5ffe-1af6-e4c68647d300-8647d2f8, #w-node-_8f893bb8-edec-5ffe-1af6-e4c68647d304-8647d2f8, #w-node-_8f893bb8-edec-5ffe-1af6-e4c68647d308-8647d2f8, #w-node-_8f893bb8-edec-5ffe-1af6-e4c68647d30c-8647d2f8, #w-node-_8f893bb8-edec-5ffe-1af6-e4c68647d310-8647d2f8, #w-node-_8f893bb8-edec-5ffe-1af6-e4c68647d314-8647d2f8, #w-node-_8f893bb8-edec-5ffe-1af6-e4c68647d318-8647d2f8 {
  align-self: auto;
}

#w-node-_74cccdd4-6367-880b-64ab-2c821a3d2089-68993a17, #w-node-_74cccdd4-6367-880b-64ab-2c821a3d2091-68993a17, #w-node-_74cccdd4-6367-880b-64ab-2c821a3d2095-68993a17, #w-node-e4da4c37-ee58-167a-cbd7-451e68993ae7-68993a17, #w-node-e4da4c37-ee58-167a-cbd7-451e68993aea-68993a17, #w-node-e4da4c37-ee58-167a-cbd7-451e68993aec-68993a17, #w-node-e4da4c37-ee58-167a-cbd7-451e68993af4-68993a17 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a38bd6df-0094-aa35-7c33-cfc21563a613-68993a17 {
  justify-self: end;
}

#w-node-_515e64a2-bdcc-4d6b-f10a-0c63f49fa534-f49fa530, #w-node-_515e64a2-bdcc-4d6b-f10a-0c63f49fa53c-f49fa530, #w-node-_810a3a51-7511-fae1-f5d9-562ec2374f21-f49fa530, #w-node-aba4c4e0-3d44-ce94-0e70-d5d5f823639a-f49fa530, #w-node-_22714cc1-9047-3e9d-3c57-a863b48cc9dc-f49fa530, #w-node-_42bbd894-b8ec-8f19-0839-f70bf96b0bbf-a9a611bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_42bbd894-b8ec-8f19-0839-f70bf96b0bc7-a9a611bd {
  align-self: stretch;
}

#w-node-b5423ab1-1783-42b6-c098-fbd5c9bc6dbd-a9a611bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-b5423ab1-1783-42b6-c098-fbd5c9bc6dc1-a9a611bd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-c122ae6f-a17e-b1c8-76b1-0e4ff65b830c-a9a611c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_319b9e68-307a-d168-797e-f3b631a3eb16-a9a611c3, #w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff65-a9a611c6, #w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff68-a9a611c6, #w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff6e-a9a611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff74-a9a611c6 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff7b-a9a611c6, #w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff81-a9a611c6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff87-a9a611c6 {
  grid-area: 3 / 2 / 4 / 3;
}

#w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff8d-a9a611c6 {
  grid-area: 3 / 3 / 4 / 4;
}

#w-node-c20cc753-014e-599d-5eee-2e4e4aa6449c-bb0c4ac8, #w-node-c20cc753-014e-599d-5eee-2e4e4aa644a0-bb0c4ac8, #w-node-c20cc753-014e-599d-5eee-2e4e4aa644a4-bb0c4ac8, #w-node-c20cc753-014e-599d-5eee-2e4e4aa644a8-bb0c4ac8, #w-node-c20cc753-014e-599d-5eee-2e4e4aa644ad-bb0c4ac8, #w-node-c20cc753-014e-599d-5eee-2e4e4aa644b0-bb0c4ac8, #w-node-c20cc753-014e-599d-5eee-2e4e4aa644b2-bb0c4ac8, #w-node-c20cc753-014e-599d-5eee-2e4e4aa644b8-bb0c4ac8, #w-node-c20cc753-014e-599d-5eee-2e4e4aa644bb-bb0c4ac8, #w-node-c20cc753-014e-599d-5eee-2e4e4aa644bd-bb0c4ac8, #w-node-c20cc753-014e-599d-5eee-2e4e4aa644c1-bb0c4ac8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c20cc753-014e-599d-5eee-2e4e4aa644c6-bb0c4ac8 {
  justify-self: end;
}

#w-node-a434bf10-0eae-506c-17e1-5c52492a508e-a9a611ea {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_51d5ce90-5b2c-f14e-a96c-d6e3bbd05f88-a9a611ea {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_51d5ce90-5b2c-f14e-a96c-d6e3bbd05f89-a9a611ea, #w-node-_51d5ce90-5b2c-f14e-a96c-d6e3bbd05f8f-a9a611ea, #w-node-_51d5ce90-5b2c-f14e-a96c-d6e3bbd05f95-a9a611ea, #w-node-_8c3d18ed-7e7c-44de-b9d5-3b61a4af30ac-a9a611ea, #w-node-_8c3d18ed-7e7c-44de-b9d5-3b61a4af30b3-a9a611ea, #w-node-_8c3d18ed-7e7c-44de-b9d5-3b61a4af30ba-a9a611ea, #w-node-_82f8aa70-f3d2-90ac-730a-3c94d6cc4fa1-a9a61215 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_82f8aa70-f3d2-90ac-730a-3c94d6cc4fa3-a9a61215 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
  justify-self: center;
}

#w-node-a434bf10-0eae-506c-17e1-5c52492a508e-a9a61279 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_51d5ce90-5b2c-f14e-a96c-d6e3bbd05f88-a9a61279 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_51d5ce90-5b2c-f14e-a96c-d6e3bbd05f89-a9a61279, #w-node-_51d5ce90-5b2c-f14e-a96c-d6e3bbd05f8f-a9a61279, #w-node-_51d5ce90-5b2c-f14e-a96c-d6e3bbd05f95-a9a61279, #w-node-_8c3d18ed-7e7c-44de-b9d5-3b61a4af30ac-a9a61279, #w-node-_8c3d18ed-7e7c-44de-b9d5-3b61a4af30b3-a9a61279, #w-node-_8c3d18ed-7e7c-44de-b9d5-3b61a4af30ba-a9a61279, #w-node-_9bfc3ce4-c058-6f8e-abf2-b3f85056404d-32a61b97, #w-node-_9bfc3ce4-c058-6f8e-abf2-b3f850564054-32a61b97, #w-node-_9bfc3ce4-c058-6f8e-abf2-b3f85056405b-32a61b97, #w-node-_937a6fa2-ec35-56f5-4293-4d9f5a16b5cd-32a61b97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_937a6fa2-ec35-56f5-4293-4d9f5a16b5cf-32a61b97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
  justify-self: center;
}

#w-node-_13ab070b-3e01-ebe2-c6c6-2e2ab3ceabee-32a61b97 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_527e44c3-681c-fb8a-4b49-fc7a1f8f157e-a9a611b3 {
    justify-self: start;
  }

  #w-node-_527e44c3-681c-fb8a-4b49-fc7a1f8f1581-a9a611b3 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-e4da4c37-ee58-167a-cbd7-451e68993a19-68993a17 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-e4da4c37-ee58-167a-cbd7-451e68993ac6-68993a17 {
    grid-column: span 3 / span 3;
  }

  #w-node-e4da4c37-ee58-167a-cbd7-451e68993abe-68993a17 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-c611ebb8-54ac-3120-a0a5-c076bb0c4ad2-bb0c4ac8 {
    grid-area: span 1 / span 3 / span 1 / span 3;
  }

  #w-node-c611ebb8-54ac-3120-a0a5-c076bb0c4b45-bb0c4ac8 {
    grid-column: span 3 / span 3;
  }

  #w-node-c611ebb8-54ac-3120-a0a5-c076bb0c4b70-bb0c4ac8 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-a8ef303d-5183-3f96-a463-608176429e59-a9a611b3 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-a38bd6df-0094-aa35-7c33-cfc21563a613-68993a17 {
    justify-self: center;
  }

  #w-node-_42bbd894-b8ec-8f19-0839-f70bf96b0bbf-a9a611bd {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-b5423ab1-1783-42b6-c098-fbd5c9bc6dc1-a9a611bd {
    justify-self: start;
  }

  #w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff65-a9a611c6 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff74-a9a611c6 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff87-a9a611c6, #w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff8d-a9a611c6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c20cc753-014e-599d-5eee-2e4e4aa644c6-bb0c4ac8 {
    justify-self: center;
  }

  #w-node-_82f8aa70-f3d2-90ac-730a-3c94d6cc4fa3-a9a61215, #w-node-_937a6fa2-ec35-56f5-4293-4d9f5a16b5cf-32a61b97 {
    justify-self: start;
  }

  #w-node-_13ab070b-3e01-ebe2-c6c6-2e2ab3ceabf8-32a61b97 {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_527e44c3-681c-fb8a-4b49-fc7a1f8f1581-a9a611b3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7686e174-6108-e4ea-4ebb-d9851cd691cd-a9a611b3 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_6278f356-702c-69d0-581f-ee0a2965e5e8-2965e5e4 {
    align-self: center;
    justify-self: center;
  }

  #w-node-_80901f64-1267-9261-2a31-d010b16bacfb-2965e5e4 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c122ae6f-a17e-b1c8-76b1-0e4ff65b830c-a9a611c3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: start;
  }

  #w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff65-a9a611c6 {
    grid-column: span 1 / span 1;
  }

  #w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff68-a9a611c6 {
    justify-self: auto;
  }

  #w-node-e7fef25d-c05b-9c0a-314f-ca0e67e0ff74-a9a611c6 {
    grid-column-end: 2;
  }
}


@font-face {
  font-family: 'URWGeometric';
  src: url('../fonts/URWGeometricBlack.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'URWGeometric';
  src: url('../fonts/URWGeometricMedium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'URWGeometric';
  src: url('../fonts/URWGeometricExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'URWGeometric';
  src: url('../fonts/URWGeometricBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'URWGeometric';
  src: url('../fonts/URWGeometricRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}