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

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

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

:root {
  --light-grey-1: #f4f4f4;
  --black: #161616;
  --white: white;
  --light-grey-2: #e4e2df;
  --light-grey-3: #d8d5d2;
  --orange: #ff7448;
  --red: #ff4848;
  --purple: #6248ff;
}

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

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

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

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

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

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

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

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

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--light-grey-1);
  color: var(--black);
  font-family: Relative, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
  font-size: 1.2rem;
}

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

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 40px;
}

li {
  margin-bottom: .5rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.text-weight-light {
  font-weight: 300;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.show {
  display: block;
}

.overflow-hidden {
  overflow: hidden;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.text-weight-bold {
  font-weight: 700;
}

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

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

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

.z-index-1 {
  z-index: 1;
  position: relative;
}

.show-mobile-portrait {
  display: none;
}

.text-style-italic {
  font-style: italic;
}

.hide {
  display: none;
}

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

.text-weight-xbold {
  font-weight: 800;
}

.text-style-link {
  text-decoration: underline;
}

.text-style-muted {
  opacity: .6;
}

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

.text-size-small.invisible {
  display: none;
}

.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.text-rich-text h2 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h3 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}

.text-rich-text h5, .text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text p {
  margin-bottom: 1rem;
}

.text-rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.text-rich-text a {
  text-decoration: underline;
}

.text-rich-text figcaption {
  opacity: .8;
  text-align: left;
  border-left: 2px solid #000;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.max-width-medium.arabic {
  text-align: right;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.max-width-xsmall {
  width: 100%;
  max-width: 25rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 20rem;
}

.page-wrapper {
  overflow: visible;
}

.text-size-tiny {
  font-size: .75rem;
}

.container-large {
  width: 100%;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.background-color-black {
  background-color: var(--black);
  color: #f5f5f5;
}

.rl-styleguide_classes {
  display: none;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.page-padding {
  padding-left: 5%;
  padding-right: 5%;
}

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

.show-tablet {
  display: none;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.max-width-large.text-align-left.arabic {
  text-align: right;
}

.max-width-large.arabic {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.show-mobile-landscape {
  display: none;
}

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

.max-width-small {
  width: 100%;
  max-width: 30rem;
}

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.margin-tiny {
  margin: .25rem;
}

.margin-xxsmall {
  margin: .5rem;
}

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.margin-xxhuge {
  margin: 10rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .25rem;
}

.padding-xxsmall {
  padding: .5rem;
}

.padding-xsmall {
  padding: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 7rem;
}

.padding-xxhuge {
  padding: 10rem;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-xsmall.portfolyo {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.margin-bottom.margin-large.arabic {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.margin-bottom.margin-small, .margin-bottom.margin-xxlarge, .margin-bottom.margin-xsmall, .margin-bottom.margin-xsmall, .margin-bottom.margin-xxlarge, .margin-bottom.margin-medium, .margin-bottom.margin-tiny, .margin-bottom.margin-small, .margin-bottom.margin-small, .margin-bottom.margin-small, .margin-bottom.margin-small, .margin-bottom.margin-small, .margin-bottom.margin-xxsmall, .margin-bottom.margin-xxsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-right.margin-small.portfolio-ozel {
  border-radius: 10px;
  margin-right: .25rem;
  padding: .25rem 1rem;
  box-shadow: -12px 0 11px -3px #00000024;
}

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

.margin-horizontal {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top, .padding-top.padding-medium {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom, .padding-bottom.padding-xxlarge {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-vertical, .padding-vertical.padding-xxlarge {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

.text-style-nowrap {
  white-space: nowrap;
}

.text-weight-medium {
  font-weight: 500;
}

.styleguide_heading {
  z-index: 4;
  color: #fff;
  background-color: #000;
  padding: 4px 8px;
  position: sticky;
  top: 0;
}

.styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

.stylesystem-spacing-wrapper {
  background-color: var(--light-grey-1);
}

.styleguide_subheading {
  z-index: 3;
  color: #000;
  background-color: #d3d3d3;
  padding: .25rem .5rem;
  position: sticky;
  top: 32px;
}

.stylesystem-class-label {
  cursor: context-menu;
  background-color: #83747426;
  border-radius: 5px;
  padding-left: .5rem;
  padding-right: .5rem;
  display: inline-block;
}

.text-size-medium {
  font-size: 1.125rem;
}

.icon-small {
  width: 2rem;
}

.icon-medium {
  width: 3rem;
}

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

.stylesystem_color-sample {
  border: 1px solid #000;
  padding: 8rem 1.5rem 1.25rem;
}

.stylesystem_color-sample.lightgrey1 {
  background-color: var(--light-grey-1);
}

.stylesystem_color-sample.black {
  background-color: #161616;
}

.stylesystem_color-sample.white {
  background-color: var(--white);
}

.stylesystem_color-sample.lightgrey2 {
  background-color: var(--light-grey-2);
}

.stylesystem_color-sample.lightgrey3 {
  background-color: var(--light-grey-3);
}

.stylesystem_color-sample.orange {
  background-color: var(--orange);
}

.stylesystem_color-sample.red {
  background-color: var(--red);
}

.stylesystem_color-sample.purple {
  background-color: var(--purple);
}

.text-size-large {
  font-size: 1.25rem;
}

.text-size-large.text-color-white.cursor-mouse {
  cursor: default;
}

.text-size-large.text-color-white.cursor-mouse.inside, .text-size-large.larger {
  font-size: 1.5rem;
}

.text-size-large.larger.ar {
  text-align: right;
}

.heading-xxlarge {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.icon-xsmall {
  width: 1.5rem;
}

.styleguide_icons-list {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.icon-xxsmall {
  width: 1rem;
}

.heading-medium {
  letter-spacing: -.02em;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.3;
}

.tabs-menu {
  border-bottom: 1px #00000026;
  display: flex;
  overflow: auto;
}

.tabs-menu.no-scrollbar {
  padding-right: 24px;
}

.icon-xlarge {
  width: 6.5rem;
}

.background-color-black-2 {
  background-color: #000;
}

.heading-large {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.image-wrapper-3-2 {
  width: 100%;
  padding-top: 66.66%;
  position: relative;
}

.background-color-lightgrey {
  background-color: var(--light-grey-1);
}

.tab-link {
  color: #0009;
  background-color: #0000;
  border-bottom: 2px solid #0000;
  flex: none;
  margin-right: 1.5rem;
  padding: .5rem 0;
}

.tab-link.w--current {
  color: #000;
  background-color: #fff;
  border-bottom: .125rem solid #000;
}

.heading-xsmall {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
}

.image-wrapper-4-3 {
  width: 100%;
  padding-top: 75%;
  position: relative;
}

.heading-small {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.text-style-quote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

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

.image-wrapper-16-9 {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

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

.stylesystem-images_layout {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.icon-large {
  width: 5rem;
}

.image-wrapper-1-1 {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

.styleguide_grid-colours {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.heading-xlarge {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

.icon-1x1-xxsmall {
  width: 1rem;
  height: 1rem;
}

.icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.icon-1x1-small {
  width: 2rem;
  height: 2rem;
}

.icon-1x1-medium {
  width: 4rem;
  height: 4rem;
}

.icon-1x1-medium.yok {
  width: 7rem;
}

.icon-1x1-medium.powlice {
  height: 5rem;
}

.icon-1x1-large {
  width: 5rem;
  height: 5rem;
}

.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.rl-navbar_component {
  justify-content: flex-start;
  align-items: stretch;
  padding: 1.5rem 2.5vw;
  display: flex;
}

.rl-header_content-layout {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.rl-header_content-wrapper {
  background-color: #d8d5d1;
  border-radius: 1.5rem;
  height: 60vh;
  min-height: 25px;
  margin-top: 1.5rem;
  padding-left: 3rem;
  padding-right: 3rem;
  position: relative;
  overflow: hidden;
}

.rl-header_content-wrapper.overflow-safari {
  border-radius: 1rem;
}

.rl-page-padding {
  padding-left: 2.5vw;
  padding-right: 2.5vw;
}

.rl-header_content-column {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  grid-auto-flow: row;
  margin-bottom: 2rem;
}

.rl-navbar_button {
  color: #fff;
  text-align: center;
  background-color: #161616;
  border: 2px solid #161616;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: all .2s;
  display: flex;
}

.rl-navbar_button:hover {
  background-color: #000;
  border-color: #000;
}

.rl-navbar_button._0-opacity {
  opacity: 0;
  justify-content: center;
  min-height: 3rem;
}

.rl-navbar_button-icon {
  margin-left: 1rem;
}

.rl-navbar_logo-link {
  align-self: center;
  padding-left: 0;
}

.rl-navbar_loop {
  background-color: #d8d5d1;
  border-radius: .5rem;
  flex: 1;
  align-items: center;
  margin-left: 2rem;
  margin-right: 2rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  display: flex;
  overflow: hidden;
}

.rl-header_content-image {
  width: 100%;
  box-shadow: 0 8px 24px #0000000d;
}

.rl-header_component {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.rl-navbar_loop-text {
  letter-spacing: .05rem;
  text-transform: uppercase;
  flex: 1;
  font-weight: 500;
  display: flex;
}

.rl-navbar_loop-text-wrapper {
  flex-wrap: nowrap;
  flex: none;
  font-size: .875rem;
  display: flex;
}

.heading-huge {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.2;
}

.heading-xhuge {
  letter-spacing: -.02em;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.2;
}

.button {
  color: #fff;
  text-align: center;
  background-color: #161616;
  border: 2px solid #161616;
  border-radius: 8px;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: all .2s;
}

.button:hover {
  background-color: #000;
  border-color: #0000;
}

.button.button-small {
  padding: .625rem 1.25rem;
}

.button.button-large {
  align-items: center;
  height: 56px;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  display: flex;
}

.button.button-large.dont-shrink {
  flex: none;
}

.button-tertiary {
  border: 1px solid #00000026;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 2.5rem;
  padding: .5rem 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.button-tertiary:hover {
  background-color: #e4e2df;
}

.button-tertiary_icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: .5rem;
}

.button-tertiary_icon.left {
  margin-left: 0;
  margin-right: .5rem;
}

.button-row-grid {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: center start;
  display: grid;
}

.button-secondary {
  color: #000;
  text-align: center;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 8px;
  padding: .75rem 1.5rem;
  font-weight: 500;
  line-height: 1;
  transition: all .2s;
}

.button-secondary:hover {
  background-color: #d8d5d1;
}

.button-secondary.button-small {
  padding: .625rem 1.25rem;
}

.button-secondary.button-large {
  height: 56px;
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.button-secondary.button-large.with-icon {
  align-items: center;
  height: 56px;
  padding-left: 1.5rem;
  display: flex;
}

.button-secondary.button-large.dont-shrink {
  flex: none;
}

.button-secondary.invert-colors {
  background-color: var(--black);
  color: #fff;
  border-color: #fff;
}

.button-secondary.invert-colors:hover {
  background-color: #ffffff0d;
}

.button-secondary.invert-colors.blur-background {
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  background-color: #16161600;
}

.form-field-wrapper {
  margin-bottom: .75rem;
  position: relative;
}

.form-radio {
  cursor: pointer;
  border: .0625rem solid #16161633;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
}

.form-radio.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #161616;
}

.form-radio.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.checkbox-wrapper {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  transition: all .2s;
  display: flex;
}

.checkbox-wrapper:hover {
  color: #161616a6;
}

.form_grid-1-col {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  display: grid;
}

.stylesystem-form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-checkbox-label {
  cursor: pointer;
  margin-bottom: 0;
  padding-left: .875rem;
  font-size: 1rem;
  line-height: 1;
}

.field-label {
  margin-bottom: .5rem;
  font-size: .875rem;
  font-weight: 500;
}

.form-input {
  color: #000;
  background-color: #fff;
  border: 1px solid #0000;
  border-radius: 8px;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:hover {
  box-shadow: 0 1px 3px #0000001a;
}

.form-input:focus {
  background-color: #fff;
  border-color: #16161626;
}

.form-input::placeholder {
  color: #0009;
}

.form-input.select {
  background-color: #fff;
  background-image: none;
}

.form-input.text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.form-checkbox {
  cursor: pointer;
  border: 1px solid #16161633;
  border-radius: 4px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  transition: all .2s;
}

.form-checkbox:hover {
  border-color: #161616;
}

.form-checkbox.w--redirected-checked {
  box-shadow: none;
  background-color: #161616;
  background-image: url('../images/checkbox-tick.svg');
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #161616;
}

.form-checkbox.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.form-radio-wrapper {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex;
}

.body {
  background-color: var(--light-grey-1);
}

.rl-header_content-overlay {
  background-image: linear-gradient(360deg, #16161666, #16161600);
  height: 7.5rem;
  position: absolute;
  inset: auto 0% 0%;
}

.rl-header_sign-wrapper {
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 7.875rem;
  height: 7.875rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
}

.rl-header_content-loop-wrapper.move-down {
  transform: translate(0, -50%);
}

.rl-header_heading-wrapper {
  text-align: center;
  justify-content: center;
  width: 100%;
}

.heading-xxhuge {
  font-size: 5rem;
  font-weight: 500;
  line-height: 1.2;
}

.text-background-box {
  background-image: url('../images/text-box-bg.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: -1rem;
  margin-left: -.25rem;
  margin-right: -1.5rem;
  padding-bottom: 1rem;
  padding-left: 1.25rem;
  padding-right: 2rem;
  display: inline-block;
}

.rl-header_heading {
  letter-spacing: -.03em;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.3;
}

.text-background-scribble {
  background-image: url('../images/text-scribble-bg.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: -2.5rem;
  padding-left: 2.5rem;
  padding-right: 0;
  display: inline-block;
}

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

.rl-intro_heading-wrapper {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 4rem;
}

.rl-intro_animation-content {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.rl-header_sign-background {
  z-index: 0;
  color: #fff;
  text-align: center;
  background-image: url('../images/sign-bg.svg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 7.875rem;
  height: 7.875rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  position: absolute;
  inset: 0%;
}

.rl-intro_component {
  background-color: #d8d5d2;
  border-radius: 1.5rem;
  flex-direction: column;
  align-items: center;
  width: 95vw;
  height: 600vh;
  padding-top: 5rem;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  display: flex;
  position: relative;
}

.rl-intro_content {
  z-index: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 56.25rem;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
}

.rl-intro_lottie-animation {
  z-index: 1;
  object-position: 50% 50%;
  height: 60rem;
  position: relative;
}

.rl-intro-ix-triggers {
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.rl-intro-ix-trigger1 {
  height: 30%;
  position: relative;
}

.rl-intro_text-wrapper {
  z-index: 0;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.rl-intro_text-wrapper1 {
  text-align: left;
  align-self: flex-start;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  position: relative;
}

.rl-intro_heading {
  color: #16161626;
  -webkit-text-fill-color: transparent;
  background-color: #1616161a;
  background-image: url('../images/noise_2x.png');
  background-position: 0 0;
  background-size: 300px;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 12vw;
  display: inline;
}

.rl-intro_text-wrapper2 {
  text-align: right;
  align-self: center;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding-right: 5vw;
  position: relative;
}

.rl-intro_text-wrapper3 {
  text-align: left;
  align-self: center;
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5vw;
  padding-right: 20rem;
  position: relative;
}

.rl-intro_lottie-animation-screenshot {
  z-index: 2;
  width: 100%;
  display: block;
  position: absolute;
}

.rl-intro-ix-trigger2 {
  height: 80%;
  position: relative;
}

.rl-intro_video {
  z-index: 3;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.rl-intro_blur1 {
  z-index: -1;
  filter: blur(60px) blur(60px);
  background-image: linear-gradient(308deg, #ff7448 25%, #ff4848 54%, #6248ff 78%);
  border-radius: 500px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 27.5rem;
  height: 27.5rem;
  display: flex;
  position: absolute;
  inset: 0% auto auto 5%;
}

.rl-intro_blur2 {
  z-index: -1;
  filter: blur(60px) blur(60px);
  background-image: linear-gradient(308deg, #ff7448 25%, #ff4848 54%, #6248ff 78%);
  border-radius: 500px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 27.5rem;
  height: 27.5rem;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  right: 5%;
}

.rl-intro_blur3 {
  z-index: -1;
  filter: blur(60px) blur(60px);
  background-image: linear-gradient(308deg, #ff7448 25%, #ff4848 54%, #6248ff 78%);
  border-radius: 500px;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 27.5rem;
  height: 27.5rem;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 5%;
}

.rl-intro_video-wrapper {
  z-index: 3;
  width: 83%;
  margin-bottom: 3%;
  margin-left: .5%;
  padding-top: 47%;
  position: absolute;
  overflow: hidden;
}

.rl-intro_callout {
  z-index: 3;
  position: absolute;
  inset: 10vh auto auto -8vw;
}

.button-row {
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

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

.button-wrapper {
  margin-top: 1rem;
  margin-right: 1rem;
}

.button-wrapper.button-wrapper-center {
  margin-left: .5rem;
  margin-right: .5rem;
}

.button-icon {
  margin-right: .5rem;
}

.rl-features_heading-wrapper {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.rl-features_component {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
}

.rl-features_card1 {
  background-color: var(--light-grey-3);
  background-image: none;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 4rem;
  display: flex;
}

.rl-features_card2 {
  background-color: var(--light-grey-3);
  background-image: none;
  border-radius: 1rem;
  padding: 4rem;
}

.rl-features_card3 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: var(--black);
  border-radius: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1.25fr 1fr;
  grid-auto-columns: 1fr;
  padding: 4rem;
  display: grid;
  position: relative;
  overflow: hidden;
}

.rl-features_image.image1 {
  z-index: 0;
  position: relative;
}

.rl-features_image.image2 {
  z-index: 1;
  position: absolute;
  inset: 0%;
}

.rl-features_image.image3 {
  z-index: 2;
  position: absolute;
  inset: 0%;
}

.rl-features_text-wrapper.text-color-white {
  z-index: 3;
  position: relative;
}

.text-background-scribble2 {
  background-image: url('../images/text-scribble-bg2.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: -.5rem;
  padding-bottom: .5rem;
  padding-right: 0;
  display: inline-block;
}

.rl-testimonials_component {
  background-color: #0000;
  align-items: center;
  height: auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
}

.rl-testimonials_slide-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.rl-testimonial_quote-icon-top {
  position: absolute;
  inset: 0% auto auto 0%;
}

.rl-testimonial_quote-icon-bottom {
  position: absolute;
  inset: auto 0% 0% auto;
}

.rl-testimonials_headshot {
  object-fit: cover;
  border: 2px solid #fff;
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
}

.section-rl-builtwith {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.rl-builtwith_component {
  background-color: var(--light-grey-3);
  border-radius: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 95vw;
  height: auto;
  padding-left: 2.5vw;
  padding-right: 2.5vw;
  position: relative;
  overflow: hidden;
}

.rl-builtwith_heading-wrapper {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.text-background-box2 {
  background-image: url('../images/text-box-bg2.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: -1rem;
  margin-right: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 2rem;
  display: inline-block;
}

.rl-builtwith_projects-wrapper {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-bottom: 3rem;
  display: flex;
}

.rl-builtwith_projects-wrapper.top {
  margin-left: 5vw;
}

.rl-builtwith_projects-wrapper.top.show-tablet {
  display: none;
}

.rl-builtwith_projects-wrapper.bottom {
  margin-right: 5vw;
}

.rl-builtwith_projects-wrapper.bottom.show-tablet {
  display: none;
}

.rl-builtwith_project {
  flex: none;
  justify-content: center;
  align-items: center;
  width: 32vw;
  height: 21vw;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px #0000000d;
}

.rl-builtwith_project-image {
  align-self: flex-start;
}

.rl-builtwith_projects-list {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.rl-builtwith_project-button {
  color: var(--black);
  background-color: #fff;
  border-radius: .5rem;
  align-items: center;
  padding: .75rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  position: absolute;
}

.rl-builtwith_wrapper {
  height: auto;
  margin-top: 6rem;
}

.rl-body {
  background-image: url('../images/noise_2x.png');
  background-position: 0 0;
  background-size: 500px;
  background-attachment: scroll;
}

.rl-body.arabic {
  text-align: right;
}

.text-color-grey {
  color: #161616bf;
}

.rl-pricing_component {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
}

.tick-icon {
  align-self: flex-start;
  margin-right: .75rem;
}

.rl-pricing_button-wrapper {
  align-items: center;
  display: flex;
}

.rl-pricing_item {
  background-color: var(--light-grey-3);
  text-align: left;
  border-radius: 16px;
  padding: 3rem;
}

.rl-pricing_item.highlighted {
  background-color: var(--white);
  border-style: none;
}

.rl-pricing_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-columns: 1fr;
}

.rl-pricing_list-item {
  align-items: flex-start;
  display: flex;
}

.pricing-table_divider {
  background-color: #16161626;
  width: 100%;
  height: 1px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.pricing-table_button-caption {
  max-width: 12rem;
  margin-left: 1.5rem;
}

.rl-pricing-outline {
  background-image: linear-gradient(103deg, #ff7448, #ff4848 50%, #6248ff 97%);
  border-radius: 18px;
  padding: 3px;
}

.rl-faq_list {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  border-bottom: 1px solid #16161626;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: start stretch;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.rl-faq_accordion {
  border-top: 1px solid #16161626;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.faq-05_icon {
  align-self: flex-start;
  width: 32px;
  margin-left: 24px;
}

.rl-faq_question {
  cursor: pointer;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  transition: background-color .2s;
  display: flex;
}

.rl-faq_answer {
  overflow: hidden;
}

.save-money-label {
  letter-spacing: .02em;
  text-transform: uppercase;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: .5rem;
  margin-left: .5rem;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 700;
  display: inline-block;
  box-shadow: 2px 3px #000;
}

.rl-pricing_title-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

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

.copypaste-symbol_component.rl-header-position {
  position: absolute;
  inset: auto 2rem 2rem auto;
}

.copypaste-symbol_wrapper {
  border: 3.5px solid var(--black);
  box-shadow: 6px 6px 0 0 var(--black);
  background-color: #fff;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  height: 54px;
  margin-left: .5rem;
  margin-right: .5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
}

.copypaste-symbol_icon-wrapper {
  flex: none;
  margin-left: 1rem;
  margin-right: 1rem;
}

.copypaste-symbol_text-wrapper {
  height: 1.75rem;
  overflow: hidden;
}

.rl-features_card3-background {
  z-index: 1;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.rl-features_card3-image1 {
  width: 12.5rem;
}

.rl-features_card3-image2 {
  width: 12.5rem;
  margin-right: 1rem;
}

.rl-features_card3-background-wrapper {
  grid-column-gap: .1rem;
  grid-row-gap: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
  position: absolute;
  inset: auto -28% -120% auto;
  transform: skew(-45deg, 35deg);
}

.rl-features_image-wrapper {
  position: relative;
}

.rl-components_list {
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.rl-components_item-wrapper {
  background-color: var(--white);
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  margin: .5rem;
  padding: .5rem 1rem .5rem .5rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: all .2s;
  display: flex;
}

.rl-components_item-wrapper:hover {
  box-shadow: 0 2px 4px #0000001a;
}

.rl-components_item-image {
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
}

.rl-components_number-text {
  background-color: var(--light-grey-3);
  color: #161616cc;
  border-radius: .5rem;
  margin-left: .5rem;
  padding: .25rem .5rem;
  font-size: 1rem;
  line-height: 1;
  display: inline-block;
}

.rl-faq_component {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.slide-nav {
  height: .5rem;
  padding-top: 0;
  font-size: .5rem;
  display: none;
  bottom: 2rem;
}

.rl-footer_bottom-link {
  color: #161616a6;
  font-size: .875rem;
}

.rl-footer_line-divider {
  background-color: #16161626;
  width: 100%;
  height: 1px;
  margin-bottom: 2.5rem;
}

.rl-footer_left-wrapper {
  flex-direction: column;
  display: flex;
}

.rl-footer-credit-text {
  color: #161616a6;
  font-size: .875rem;
}

.footer1_logo-link {
  padding-left: 0;
}

.footer_logo {
  height: 32px;
}

.rl-footer_top-wrapper {
  grid-column-gap: 8vw;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: .5fr .5fr;
  align-items: start;
}

.rl-footer_bottom-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 1rem;
  display: flex;
}

.rl-footer_column-heading {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
}

.text-color-darkgrey {
  color: #161616a6;
}

.rl-footer_legal-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

.rl-footer_link {
  color: #161616a6;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s;
  display: block;
}

.rl-footer_link:hover {
  color: #161616;
}

.rl-footer_column {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.rl-footer_column-layout {
  grid-column-gap: 3vw;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
}

.footer_text-wrapper {
  flex-direction: column;
  align-items: flex-start;
  margin-left: 2.75rem;
  display: flex;
}

.rl-footer_slack-cta {
  background-color: var(--light-grey-3);
  border-radius: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  padding: 2rem;
  display: flex;
}

.rl-footer_slack-text-wrapper {
  align-items: center;
  margin-right: 1.5rem;
  display: flex;
}

.rl-footer_slack-icon {
  border: 3px solid var(--black);
  background-color: var(--white);
  box-shadow: 4px 4px 0 0 var(--black);
  border-radius: .5rem;
  width: 3.5rem;
  height: 3.5rem;
  margin-right: 2rem;
  padding: .5rem;
}

.rl-footer_social-link {
  background-color: var(--light-grey-3);
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  padding: .25rem;
  transition: all .3s;
  display: flex;
}

.rl-footer_social-link:hover {
  background-color: var(--light-grey-2);
}

.rl-footer_social-link-wrapper {
  margin-top: 1rem;
  display: flex;
}

.footer_text-link {
  text-decoration: underline;
}

.text-style-label {
  background-color: var(--light-grey-3);
  border-radius: .5rem;
  padding-left: .5rem;
  padding-right: .5rem;
  font-weight: 500;
  display: inline-block;
}

.fixed-cta {
  z-index: 999;
  position: fixed;
  inset: 1.5rem 2.5vw auto auto;
}

.text-bg-scribble3 {
  background-image: url('../images/text-scribble-bg3.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: -.5rem;
  padding-bottom: .5rem;
  display: inline-block;
}

.rl-features_background-overlay, .copypaste-symbol_mobile-image2 {
  display: none;
}

.rl-header_sign-text {
  z-index: 1;
  position: relative;
}

.rl-builtwith_button-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-left: .5rem;
}

.fixed-cta_button {
  color: #fff;
  text-align: center;
  background-color: #161616;
  border: 2px solid #161616;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  padding: .75rem 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: all .2s;
  display: flex;
}

.fixed-cta_button:hover {
  background-color: #000;
  border-color: #000;
}

.fixed-cta_button.w--current {
  background-color: var(--black);
}

.copypaste-symbol_mobile-image1 {
  display: none;
}

.rl-navbar_clone-button {
  border: 2px solid var(--light-grey-3);
  background-color: var(--light-grey-3);
  color: var(--black);
  text-align: center;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  margin-right: 1rem;
  padding: .75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: all .2s;
  display: flex;
}

.rl-navbar_clone-button:hover {
  border-color: var(--light-grey-2);
  background-color: var(--light-grey-2);
}

.rl-navbar_clone-button._0-opacity {
  opacity: 0;
  justify-content: center;
  min-height: 3rem;
}

.rl-pricing_callout-wrapper {
  grid-column-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: max-content max-content max-content;
  margin-bottom: 1.5rem;
}

.rl-pricing_callout {
  background-color: var(--light-grey-3);
  text-align: center;
  border-radius: 1rem;
  flex-direction: column;
  align-items: center;
  padding: 3rem;
  display: flex;
}

.rl-pricing_browser {
  align-items: center;
  display: flex;
}

.rl-pricing_browser-icon {
  margin-right: 1rem;
}

.rl-pricing_callout-wrapper-2 {
  grid-column-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: max-content max-content max-content;
  margin-bottom: 1.5rem;
}

.button-2 {
  border: 1px none var(--\<unknown\|relume-variable-color-neutral-1\>);
  color: var(--black);
  text-align: center;
  background-color: #3898ec00;
  border-radius: 10px;
  padding: .75rem 1.5rem;
  text-decoration: none;
  transition: all 1s;
  box-shadow: 5px 9px 20px -3px #00000021;
}

.button-2:hover {
  box-shadow: 5px -10px 20px #0000001c;
}

.button-2.is-navbar3-button {
  border-style: none;
  border-radius: 16px;
  margin-left: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  box-shadow: 3px 8px 20px #0000001f;
}

.button-2.is-navbar3-button.pc {
  transition: all .7s;
  box-shadow: 3px 8px 20px #00000012;
}

.button-2.is-navbar3-button.pc:hover {
  box-shadow: 3px -7px 20px #00000014;
}

.button-2.is-secondary {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
}

.button-2.is-link {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-2.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  padding: .5rem;
  display: flex;
}

.button-2.is-white {
  color: var(--white);
  transition-duration: .75s;
  box-shadow: 5px 1px 12px #ffffff45;
}

.button-2.is-white:hover {
  box-shadow: 5px 1px 12px #ffffffbf;
}

.button-2.portfolio-buttonstyle {
  color: var(--white);
  cursor: pointer;
  box-shadow: 5px 12px 20px 6px #ffffff21;
}

.button-2.portfolio-buttonstyle:hover {
  box-shadow: 5px -11px 20px 2px #00000057;
}

.dropdown-chevron {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.navbar3_container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center stretch;
  width: 100%;
  max-width: 70rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.navbar3_container.arabic {
  display: flex;
}

.navbar3_menu-button {
  padding: 0;
}

.navbar3_dropdown-toggle {
  grid-column-gap: .5rem;
  border-radius: 12px;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
}

.navbar3_dropdown-toggle.shadow {
  margin-left: 1rem;
  padding: 1rem 1.7rem;
  transition: all 1s;
  box-shadow: 8px 12px 20px #00000012;
}

.navbar3_dropdown-toggle.shadow:hover {
  box-shadow: 8px 1px 20px #8181811a;
}

.navbar3_menu {
  justify-content: flex-start;
  align-items: center;
  margin-left: -1rem;
  display: flex;
  position: static;
}

.navbar3_menu.article-container {
  grid-template-rows: 1fr;
  display: flex;
}

.navbar3_logo-link-menu {
  padding-left: 0;
  display: none;
}

.navbar3_menu-dropdown {
  margin-left: 0;
  margin-right: 0;
}

.navbar3_dropdown-list.w--open {
  border: 1px none var(--\<unknown\|relume-variable-border-color-1\>);
  background-color: #fff;
  border-radius: 14px;
  padding: 8px 8px 8px 20px;
  position: absolute;
  box-shadow: 7px 20px 20px #0000000d;
}

.navbar3_dropdown-link {
  color: var(--\<unknown\|relume-variable-link-color-1\>);
  padding: .5rem 1rem;
}

.navbar3_dropdown-link.w--current {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
}

.navbar3_dropdown-link.lang {
  margin-left: 20px;
  margin-right: 20px;
  padding-left: 0;
}

.navbar3_logo-link {
  padding-left: 0;
}

.navbar3_menu-background {
  display: none;
  position: static;
}

.navbar3_link {
  color: var(--\<unknown\|relume-variable-link-color-1\>);
  margin-left: 0;
  margin-right: 0;
  padding: .5rem 1rem;
}

.navbar3_link.w--current {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
}

.navbar3_link.home {
  margin-left: 2rem;
}

.navbar3_link.nopc {
  display: none;
}

.navbar3_component {
  background-color: #fff;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.navbar3_tablet-menu-button {
  border: 1px solid var(--\<unknown\|relume-variable-border-color-1\>);
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  background-color: #000;
  margin-left: 1rem;
  padding: .5rem 1.5rem;
  display: none;
}

.header1_image {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.heading-style-h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h1.colorful {
  text-shadow: -2px 2px #0e14981c, 7px -6px 6px #978db429;
}

.section_header1.aboutusnew {
  box-shadow: 0 2px 20px #0003;
}

.padding-section-large {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.padding-section-large.without-downie {
  padding-bottom: 1rem;
}

.padding-section-large.portf {
  display: flex;
}

.padding-section-large.rich-text-section {
  padding-top: 0;
}

.padding-section-large.arabic {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group.is-center {
  justify-content: center;
}

.button-group.is-center.on-landscape {
  justify-content: flex-start;
}

.button-group.portfolio-buttons {
  flex: 1;
  justify-content: flex-start;
  align-items: flex-end;
  padding-top: 3rem;
}

.button-group.portfolio-buttons.ar {
  justify-content: flex-end;
  align-items: flex-end;
  padding-top: 3rem;
}

.button-group.is-right {
  justify-content: flex-end;
  align-items: center;
}

.padding-global {
  padding-left: 5%;
  padding-right: 5%;
}

.header1_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center stretch;
  display: grid;
}

.margin-top-2, .margin-top-2.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.layout242_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: .3fr;
  place-items: start;
  display: grid;
}

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.layout242_item-icon-wrapper {
  display: inline-block;
}

.heading-style-h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.margin-top-3, .margin-top-3.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.heading-style-h3 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h3.text-color-white.cursor-mouse {
  cursor: default;
}

.heading-style-h3.text-color-white.cursor-mouse.inside {
  font-size: 3rem;
}

.heading-style-h3.ar {
  text-align: right;
}

.layout242_item {
  cursor: auto;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.layout242_item.pointer {
  cursor: pointer;
}

.layout1_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.text-style-tagline {
  justify-content: center;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.layout1_image {
  width: 100%;
  height: 100%;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.heading-style-h2.article {
  text-align: right;
}

.margin-top-4, .margin-top-4.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.cta8_content {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: start;
  display: grid;
}

.cta8_form-block {
  max-width: 30rem;
  margin-bottom: 0;
}

.form_message-success {
  background-color: var(--\<unknown\|relume-variable-background-color-6\>);
  color: var(--\<unknown\|relume-variable-text-color-4\>);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  display: flex;
}

.section_cta8.section-shadow {
  transition: all .6s;
  box-shadow: 0 2px 20px 1px #00000017;
}

.section_cta8.section-shadow:hover {
  box-shadow: 0 2px 50px -12px #00000047;
}

.form_message-error-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.form_message-error {
  background-color: var(--\<unknown\|relume-variable-background-color-8\>);
  color: var(--\<unknown\|relume-variable-text-color-5\>);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
}

.form_message-success-wrapper {
  margin-top: 1rem;
  padding: 0;
}

.error-text {
  color: #e23939;
}

.form_input {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  border-radius: 0;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form_input:focus {
  border-color: #000;
}

.form_input::placeholder {
  color: #0009;
}

.signup-form-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: 1rem;
  display: flex;
}

.success-text {
  font-weight: 600;
}

.margin-top-5, .margin-top-5.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.padding-section-medium.custom-gallery {
  padding-top: 1.5rem;
  padding-bottom: 7rem;
}

.padding-section-medium.custom-customer {
  padding-top: 7rem;
}

.padding-section-medium.custom-blog {
  padding-bottom: 0;
}

.logo1_logo {
  max-width: 9rem;
  max-height: 4rem;
}

.logo1_logo.elcair {
  margin-bottom: -10px;
  margin-left: -10px;
  margin-right: -25px;
  padding-left: 0;
}

.heading-style-h6 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.logo1_list {
  grid-column-gap: 3rem;
  grid-row-gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.logo1_list.arabic {
  justify-content: flex-end;
  align-items: center;
}

.layout192_image {
  width: 100%;
  height: 100%;
}

.margin-top-6, .margin-top-6.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.layout192_content {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.footer3_social-link {
  color: var(--\<unknown\|relume-variable-link-color-1\>);
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.footer3_social-link.invisible {
  display: none;
}

.footer3_link-list {
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  place-items: flex-start start;
  display: flex;
}

.footer3_link-list.arabic {
  justify-content: flex-start;
  align-items: flex-end;
}

.footer3_logo-link {
  float: none;
  padding-left: 0;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.footer3_legal-link {
  color: var(--\<unknown\|relume-variable-link-color-1\>);
  font-size: .875rem;
  text-decoration: underline;
}

.footer3_credit-text {
  font-size: .875rem;
}

.footer3_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: flex;
}

.footer3_component {
  background-color: #fff;
}

.footer3_top-wrapper {
  grid-column-gap: 4vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr .5fr;
  align-items: start;
}

.footer3_top-wrapper.arabic {
  grid-template-rows: auto;
  grid-template-columns: auto;
  justify-content: space-between;
  place-items: center stretch;
  margin-top: 2rem;
  display: flex;
}

.footer3_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  place-items: start;
  display: flex;
}

.footer3_social-list.arabic {
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 1rem;
}

.footer3_bottom-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer3_bottom-wrapper.arabic {
  justify-content: flex-end;
  align-items: center;
}

.line-divider {
  background-color: var(--\<unknown\|relume-variable-border-color-1\>);
  width: 100%;
  height: 1px;
}

.footer3_menu-wrapper {
  grid-column-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.footer3_menu-wrapper.arabic {
  grid-column-gap: 7rem;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.footer3_link {
  color: var(--\<unknown\|relume-variable-link-color-1\>);
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}

.footer3_details-wrapper.arabic {
  text-align: right;
}

.language-link {
  color: #484646;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 45px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
  position: relative;
}

.language-link:hover {
  color: #7735f6;
}

.langauge-line-base {
  background-color: #9b9eb838;
  width: 100%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.language-toggle {
  color: #20355a;
  border: 1px #9b9eb838;
  border-radius: 4px;
  padding-right: 45px;
  transition: all .2s;
  display: flex;
}

.langauge-line-break {
  background-color: #5b3acc;
  width: 0%;
  height: 1px;
  position: absolute;
  inset: auto 0% 0%;
}

.language-dropdown {
  border-radius: 20px;
  box-shadow: 6px 9px 20px #0000001c;
}

.language-dropdown.tablet {
  display: none;
}

.language-section {
  background-image: none;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding-top: 50px;
  display: flex;
}

.flag-2 {
  background-image: url('../images/tr-circle-01.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100px;
  width: 25px;
  height: 25px;
  margin-right: 0;
}

.flag-3 {
  background-image: url('../images/sa-circle-01.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100px;
  width: 25px;
  height: 25px;
  margin-right: 0;
}

.flag-5 {
  background-image: url('../images/sweden.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100px;
  width: 25px;
  height: 25px;
  margin-right: 14px;
}

.language-list {
  background-color: #d99f9f;
}

.language-list.w--open {
  background-color: #fff;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  min-width: 200px;
  padding: 8px 16px;
  box-shadow: 18px 18px 45px 19px #4f5e781a;
}

.flag-4 {
  background-image: url('../images/norway.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100px;
  width: 25px;
  height: 25px;
  margin-right: 14px;
}

.flag-1 {
  background-image: url('../images/united-kingdom.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 100px;
  width: 25px;
  height: 25px;
  margin-right: 0;
}

.flag-1.above {
  background-image: url('../images/united-kingdom.svg');
  margin-right: 0;
}

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

.service-link {
  cursor: pointer;
  border-radius: 13px;
  padding: 3rem 1rem;
  text-decoration: none;
  transition: all .7s cubic-bezier(.45, .48, .404, 1.018);
  box-shadow: 0 2px 5px #0003;
}

.service-link:hover {
  box-shadow: 0 -2px 20px -9px #00000040;
}

.section_page_3_cta {
  background-color: #eaeaea;
  box-shadow: inset 0 -5px 40px #ffffff14;
}

.page_2_feature_item-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.margin-top-7 {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.text-size-regular-2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 1rem;
}

.page_0_hero-header_content {
  justify-content: flex-start;
  align-items: center;
  min-height: 100svh;
  max-height: 60rem;
  display: flex;
}

.page_0_hero-header_content.arabic {
  justify-content: flex-end;
  align-items: center;
}

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

.navbar2_menu-button {
  padding: 0;
}

.navbar2_dropdown-list-2.w--open {
  background-color: #fff;
  border: 1px solid #000;
  padding: .5rem;
  position: absolute;
}

.footer-link-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.header1_image-2 {
  width: 100%;
  height: 100%;
}

.footer-social-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.navbar2_menu-2 {
  justify-content: center;
  align-items: center;
  display: flex;
  position: static;
}

.footer-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.heading {
  font-family: Open Sans, sans-serif;
  font-weight: 600;
}

.navbar2_button-wrapper {
  grid-column-gap: 1rem;
  margin-left: 1rem;
  display: flex;
}

.heading-2 {
  font-family: Open Sans, sans-serif;
  font-weight: 600;
}

.page_3_cta_component {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: start;
  display: grid;
}

.page_3_cta_component.arabic {
  text-align: right;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.navbar2_logo {
  max-width: 15vh;
  padding: 14px;
}

.image-overlay-layer {
  z-index: 1;
  background-color: #00000080;
  position: absolute;
  inset: 0%;
}

.social-icon {
  color: #061237;
  background-color: #67718e;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  margin: 8px;
  transition: all .3s;
  display: flex;
}

.social-icon:hover {
  color: #1355ff;
  background-color: #fff;
}

.footer-link {
  color: #b6bcce;
  letter-spacing: -.01em;
  border: 1px solid #0000;
  border-radius: 10px;
  margin-left: 4px;
  margin-right: 4px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  transition: all .2s;
}

.footer-link:hover {
  color: #fff;
  border: 1px solid #37456c;
}

.text-size-medium-2 {
  font-family: Open Sans, sans-serif;
  font-size: 1.125rem;
}

.text-size-medium-2.text-color-white.text-align-center.on-landscape {
  text-align: left;
}

.text-size-medium-2.text-color-white.text-align-center.on-landscape.arabic {
  text-align: right;
}

.section_page_0_hero-header {
  position: relative;
}

.section_page_0_hero-header.yeminli {
  background-image: url('../images/Group-62.png');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
}

.section_page_0_hero-header.verbal {
  background-image: url('../images/Group-62.png');
  background-position: 0 100%;
  background-size: cover;
}

.section-footer {
  background-color: #202020;
  align-items: center;
  padding: 100px 5%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button-3 {
  color: #fff;
  text-align: center;
  background-color: #000;
  border: 1px solid #000;
  padding: .75rem 1.5rem;
}

.button-3.is-navbar2-button {
  border-radius: 8px;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

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

.navbar2_dropdown-link-2 {
  padding: .5rem 1rem;
}

.navbar2_dropdown-link-2.w--current {
  color: #000;
}

.navbar2_container-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .375fr 1fr .375fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.padding-section-verycustom {
  padding-top: 7rem;
  padding-bottom: 2rem;
}

.footer-logo {
  width: 124px;
  margin-bottom: auto;
}

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

.page_2_feature_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 3fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.page_2_feature_component.align-center.arabic {
  text-align: right;
  grid-template-columns: 3fr 1fr;
}

.navbar2_logo-link {
  padding-left: 0;
}

.header1_component-3 {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.heading-4 {
  font-family: Open Sans, sans-serif;
  font-weight: 600;
}

.navbar2_dropdwn-toggle-2 {
  grid-column-gap: .5rem;
  align-items: center;
  padding: .5rem 1rem;
  display: flex;
}

.button-4 {
  color: #fff;
  text-align: center;
  background-color: #000;
  border: 1px solid #000;
  border-radius: 10px;
  padding: .75rem 1.5rem;
}

.button-4.is-white {
  color: #000;
  background-color: #fff;
}

.navbar2_link-2 {
  white-space: nowrap;
  padding: .5rem 1rem;
}

.navbar2_link-2.w--current {
  color: #000;
  white-space: nowrap;
}

.navbar2_link-2.home {
  padding-right: 2rem;
}

.page_3_cta_content {
  flex: 1;
}

.page_3_cta_content.ar {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.container-large-2 {
  z-index: 5;
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.page_0_hero-header_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.heading-3 {
  font-family: Open Sans, sans-serif;
  font-weight: 600;
}

.navbar2_component {
  background-color: #fff;
  border: 0 #000;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 5.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  box-shadow: 0 2px 60px #0003;
}

.button-5 {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-5.is-secondary {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
}

.button-5.is-link {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-5.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.text-size-medium-3 {
  font-size: 1.125rem;
}

.margin-top-8, .margin-top-8.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.button-6 {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-6.is-secondary {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
}

.button-6.is-link {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-6.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.margin-top-9, .margin-top-9.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.testimonial17_client {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: left;
  align-items: center;
  width: 100%;
  display: flex;
}

.testimonial17_client.arabic {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
}

.testimonial17_grid-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  display: grid;
}

.testimonial17_component {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.testimonial17_component.arabic {
  justify-content: flex-start;
  align-items: flex-end;
}

.testimonial17_customer-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

.testimonial17_rating-icon {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: .25rem;
  display: flex;
}

.testimonial17_card {
  border: 1px none var(--\<unknown\|relume-variable-border-color-1\>);
  border-radius: 15px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 2rem;
  display: flex;
  box-shadow: 0 20px 20px #00000012;
}

.margin-top-10, .margin-top-10.margin-small {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.text-weight-semibold {
  font-weight: 600;
}

.testimonial17_rating-wrapper {
  display: flex;
}

.testimonial17_rating-wrapper.arabic {
  justify-content: flex-end;
  align-items: center;
}

.gallery7_row {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: center;
  display: grid;
}

.gallery7_image-wrapper-large {
  width: 100%;
  height: 100%;
  position: relative;
}

.gallery7_image-wrapper {
  width: 100%;
  position: relative;
}

.gallery7_lightbox-link {
  width: 100%;
}

.gallery7_image3 {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

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

.gallery7_component {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  display: flex;
}

.gallery7_grid-list {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

.gallery7_image2 {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.component-portfolio {
  cursor: auto;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.portfolio-content {
  background-color: #050036ba;
  border-radius: 15px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 4.5rem 9rem 3rem 3rem;
  display: flex;
}

.portfolio-content.inside {
  background-color: #000000ba;
  border-radius: 0;
  justify-content: center;
  align-items: flex-start;
}

.portfolio-content.blogs {
  background-color: #000c;
}

.portfolio-content.blogs.arabic, .portfolio-content.arabic {
  justify-content: flex-end;
  align-items: flex-end;
  padding-left: 9rem;
  padding-right: 3rem;
}

.padding-content_portfolio-highlights {
  padding-left: 2rem;
}

.portfolio-generalinfo-section {
  background-color: #00000036;
}

.portfolio-generalinfo-contents {
  padding-left: 6rem;
  padding-right: 6rem;
}

.portfolio-generalinfo-photograph {
  border-radius: 10px;
  width: 100%;
  height: 360px;
  margin-top: 0;
}

.portfolio-generalinfo-picture {
  border-radius: 10px;
  width: 128px;
  margin-right: 2rem;
  box-shadow: -10px 2px 20px -9px #0000001c;
}

.portfolio-article-section {
  background-image: linear-gradient(#00000036, #ffffff69);
}

.section-5 {
  object-fit: fill;
  background-color: #9cc;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 15vh;
  padding-bottom: 10vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.circle-1 {
  z-index: 1;
  filter: blur(100px);
  background-color: #6aa3a3;
  border-radius: 50%;
  width: 60vw;
  height: 60vw;
  position: absolute;
  inset: 0% 0% auto auto;
}

.circle-2 {
  z-index: 2;
  filter: blur(46px);
  background-color: #9cc;
  border-radius: 50%;
  width: 30vw;
  height: 30vw;
  position: absolute;
  inset: auto 0% 0% auto;
}

.circle-3 {
  z-index: 2;
  filter: blur(90px);
  background-color: #afe6e6;
  border-radius: 50%;
  width: 40vw;
  height: 40vw;
  position: absolute;
  inset: 0% auto auto 0%;
}

.circle-4 {
  z-index: 1;
  filter: blur(90px);
  background-color: #6b8f8f;
  border-radius: 50%;
  width: 38vw;
  height: 38vw;
  position: absolute;
  inset: auto auto 0% 0%;
}

.main-logo-wrapper {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.main-logo-background {
  background-color: #000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 0 30px 15px #d4d4d4a1;
}

.mid-wrapper {
  position: absolute;
  inset: 0%;
}

.outer-wrapper {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: relative;
}

.companylogo-outer {
  z-index: 5;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  inset: 0% auto auto 0%;
  box-shadow: 0 1px 5px 2px #a1a1a163;
}

.companylogo-outer.react {
  inset: 0% 25% auto auto;
}

.companylogo-outer.memberstack {
  top: 12%;
  left: 9%;
}

.companylogo-outer.mailchimp {
  inset: 30% -2% auto auto;
}

.companylogo-outer.zapier {
  inset: auto auto 35% -4%;
}

.companylogo-outer.airtable {
  outline-offset: 0px;
  outline: 3px #000;
  inset: auto 62% -1% auto;
}

.companylogo-outer.bubble {
  inset: auto 6% 13% auto;
}

.animation-container {
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 300px;
  display: flex;
  position: relative;
}

.padding-section-small {
  padding-top: 2rem;
}

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

.blog33_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.blog33_image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.button-7 {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-7.is-secondary {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
}

.tag {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #000;
  background-color: #eee;
  border: 1px #eee;
  justify-content: center;
  align-items: center;
  padding: .25rem .5rem;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
}

.tag.is-text {
  background-color: #0000;
  border-style: none;
  border-color: #0000;
  padding: 0;
  display: inline-block;
}

.blog33_author-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.blog33_image-wrapper {
  border-radius: 0;
  width: 100%;
  overflow: hidden;
}

.blog33_item-link {
  text-decoration: none;
}

.text-size-regular-3 {
  font-size: 1rem;
}

.blog33_text-divider {
  margin-left: .5rem;
  margin-right: .5rem;
}

.blog33_author-image {
  object-fit: cover;
  border-radius: 100%;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  min-height: 3rem;
}

.section_blog33 {
  background-color: var(--\<unknown\|relume-variable-background-color-1\>);
  color: var(--\<unknown\|relume-variable-text-color-1\>);
}

.blog33_date-wrapper {
  align-items: center;
  display: flex;
}

.margin-top-11, .margin-top-11.margin-xxlarge, .margin-top-11.margin-small {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.blog33_component {
  flex-direction: column;
  align-items: center;
}

.blog44_heading-wrapper {
  grid-column-gap: 5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: end stretch;
  display: grid;
}

.blog44_heading-wrapper.arabic {
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.blog44_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  display: grid;
}

.blog44_image {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.button-8 {
  border: 1px solid var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  color: var(--\<unknown\|relume-variable-color-neutral-2\>);
  text-align: center;
  padding: .75rem 1.5rem;
  text-decoration: none;
}

.button-8.is-secondary {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
}

.button-8.is-link {
  color: var(--\<unknown\|relume-variable-color-neutral-1\>);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-8.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.blog44_meta-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  align-items: center;
  display: flex;
}

.blog44_item-link {
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  text-decoration: none;
  display: flex;
}

.blog44_item {
  border: 1px none var(--\<unknown\|relume-variable-border-color-1\>);
  background-color: #fff;
  border-radius: .8rem;
  transition: all .5s;
  overflow: hidden;
  box-shadow: 0 2px 20px -8px #0003;
}

.blog44_item:hover {
  box-shadow: 0 2px 14px -8px #000000ba;
}

.blog44_title-wrapper {
  margin-bottom: .5rem;
}

.section_blog44 {
  background-color: var(--\<unknown\|relume-variable-background-color-1\>);
  color: var(--\<unknown\|relume-variable-text-color-1\>);
}

.blog44_heading {
  flex: 1;
}

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

.blog44_item-content {
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  padding: 1.5rem;
  display: flex;
}

.margin-top-12, .margin-top-12.margin-xxlarge, .margin-top-12.margin-small {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.blog44_image-wrapper {
  width: 100%;
  overflow: hidden;
}

.heading-5 {
  font-size: 2.1rem;
}

.heading-6 {
  font-size: 1.8rem;
  font-weight: 700;
}

.heading-7 {
  font-size: 1.5rem;
}

.heading-8 {
  font-size: 1.2rem;
  font-weight: 700;
}

.heading-9 {
  font-size: 1.1rem;
  font-weight: 700;
}

.heading-10 {
  font-size: 1rem;
}

.heading-11 {
  font-size: 1.9rem;
  font-weight: 700;
}

.paragraph {
  font-size: 1.2px;
}

.portfolio-title-section {
  background-color: #c2c2c2;
  background-image: linear-gradient(#fff, #c1c1c1);
}

.image {
  width: 100%;
  height: 200px;
}

.title-stuffies {
  background-color: #ffffffc4;
  border-radius: 8px;
  padding: 5rem 2rem;
}

.title-stuffies.ar {
  text-align: right;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.picture-stuffy {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 8px;
  width: 100%;
  height: auto;
  box-shadow: 0 9px 20px 5px #0000000f;
}

.arabic-richtext {
  text-align: right;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.125rem;
  }

  h5 {
    font-size: 1rem;
  }

  .hide-tablet {
    display: none;
  }

  .show-tablet {
    display: block;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading-xxlarge {
    font-size: 3.25rem;
  }

  .heading-medium {
    font-size: 1.75rem;
  }

  .heading-large {
    font-size: 2.25rem;
  }

  .heading-xlarge {
    font-size: 2.75rem;
  }

  .rl-navbar_component {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .rl-header_content-layout {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .rl-header_content-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .rl-page-padding {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .rl-header_content-column {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    margin-bottom: 1rem;
  }

  .heading-huge {
    font-size: 3.5rem;
  }

  .heading-xhuge {
    font-size: 3.75rem;
  }

  .button.dont-shrink {
    flex: none;
  }

  .button-row-grid.tablet-1-col {
    grid-auto-flow: row;
  }

  .heading-xxhuge {
    font-size: 4rem;
  }

  .text-background-box {
    margin-bottom: -.75rem;
    margin-left: 0;
    padding-bottom: .875rem;
    padding-left: 1rem;
    padding-right: 1.75rem;
  }

  .rl-header_heading {
    font-size: 3.75rem;
  }

  .text-background-scribble {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    margin-left: 0;
    padding-left: 0;
  }

  .rl-intro_heading-wrapper {
    margin-bottom: 2rem;
  }

  .rl-intro_animation-content {
    height: 95vh;
  }

  .rl-intro_component {
    width: 100vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .rl-intro_heading {
    font-size: 7rem;
  }

  .rl-intro_blur1 {
    opacity: .9;
    filter: blur(64px);
    width: 320px;
    height: 320px;
    top: -5%;
  }

  .rl-intro_blur2, .rl-intro_blur3 {
    opacity: .9;
    width: 320px;
    height: 320px;
    top: -5%;
  }

  .rl-intro_callout {
    z-index: 999;
    top: 5vh;
    left: 5%;
  }

  .rl-features_component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .rl-features_card1, .rl-features_card2, .rl-features_card3 {
    padding: 2.5rem;
  }

  .rl-builtwith_component {
    width: 100vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .text-background-box2 {
    margin-right: .75rem;
  }

  .rl-builtwith_projects-wrapper {
    margin-bottom: 2rem;
  }

  .rl-builtwith_projects-wrapper.top.show-tablet, .rl-builtwith_projects-wrapper.bottom.show-tablet {
    display: flex;
  }

  .rl-builtwith_project {
    width: 55vw;
    height: 36vw;
  }

  .rl-builtwith_projects-list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .rl-builtwith_wrapper {
    margin-top: 5rem;
  }

  .rl-pricing_component {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .rl-pricing_button-wrapper {
    flex-direction: column;
  }

  .rl-pricing_item {
    padding: 2.5rem 2rem;
  }

  .pricing-table_button-caption {
    text-align: center;
    width: 100%;
    max-width: none;
    margin-top: 1rem;
    margin-left: 0;
  }

  .save-money-label {
    margin-bottom: .75rem;
    margin-left: 0;
  }

  .rl-pricing_title-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .rl-faq_component {
    grid-column-gap: 2rem;
    grid-row-gap: 0rem;
  }

  .rl-footer_left-wrapper {
    width: 100%;
  }

  .rl-footer_top-wrapper {
    grid-row-gap: 5rem;
    grid-template-columns: 1fr;
  }

  .footer_text-wrapper {
    margin-top: 1rem;
    margin-left: 0;
  }

  .fixed-cta {
    right: 5vw;
  }

  .copypaste-symbol_mobile-image2, .copypaste-symbol_mobile-image1, .rl-navbar_clone-button {
    display: none;
  }

  .rl-pricing_callout {
    padding: 2.5rem 2rem;
  }

  .button-2.is-navbar3-button.pc {
    display: none;
  }

  .dropdown-chevron {
    inset: auto 0% auto auto;
  }

  .navbar3_container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: auto max-content auto;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .navbar3_container.arabic {
    align-items: center;
  }

  .navbar3_menu-button {
    margin-left: -.5rem;
    padding: 0;
  }

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

  .menu-icon3_line-middle {
    background-color: #000;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .navbar3_dropdown-toggle {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: .75rem 2rem .75rem 0;
    position: relative;
  }

  .navbar3_dropdown-toggle.ar {
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
  }

  .menu-icon3_line-bottom {
    background-color: #000;
    border-radius: 20px;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar3_logo.phoneyphone {
    margin-bottom: -15px;
  }

  .navbar3_menu {
    z-index: 2;
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-clip: border-box;
    border: 1px #000;
    border-radius: 16px;
    flex-direction: column;
    justify-content: center;
    width: 80vw;
    height: 100dvh;
    margin-left: 0;
    padding-bottom: 6.5rem;
    padding-left: 5vw;
    padding-right: 5vw;
    transition: height .5s;
    display: block;
    position: absolute;
    inset: 0% 0% 0% auto;
    overflow: auto;
    box-shadow: 0 2px 20px #0003;
  }

  .navbar3_menu.article-container.ar {
    inset: 0% 0% 0% auto;
  }

  .navbar3_logo-link-menu {
    float: none;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    position: static;
  }

  .navbar3_logo-link-menu.w--current {
    margin-top: 4rem;
  }

  .navbar3_logo-link-menu.article.w--current {
    justify-content: flex-end;
    align-items: center;
  }

  .menu-icon3 {
    z-index: 3;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: relative;
  }

  .navbar3_menu-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    display: block;
    position: relative;
  }

  .navbar3_menu-dropdown.pc {
    display: none;
  }

  .navbar3_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar3_dropdown-list.w--open {
    border-style: none;
    padding: 0;
    position: static;
  }

  .navbar3_dropdown-link {
    padding: .75rem 0 .75rem 5%;
  }

  .navbar3_dropdown-link.ar {
    justify-content: flex-end;
    align-items: center;
    padding-right: 5%;
    display: flex;
  }

  .navbar3_menu-background {
    z-index: 0;
    background-color: #00000080;
    width: 100vw;
    height: 100vh;
    padding-bottom: 0;
    padding-right: 0;
    display: none;
    position: absolute;
    inset: 0%;
  }

  .navbar3_link {
    padding: .75rem 0;
    font-size: 1.125rem;
    position: static;
  }

  .navbar3_link.nopc {
    display: block;
  }

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

  .menu-icon3_line-top {
    background-color: #000;
    border-radius: 20px;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar3_component.arabic {
    justify-content: center;
    align-items: center;
  }

  .navbar3_tablet-menu-button {
    text-align: center;
    background-color: #fff;
    border-style: none;
    width: 100%;
    margin-top: 1.5rem;
    margin-left: 0;
    margin-right: 0;
    display: inline-block;
  }

  .header1_content-left.centerize {
    text-align: center;
  }

  .heading-style-h1 {
    font-size: 3.25rem;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .button-group.is-center.on-landscape {
    justify-content: center;
    align-items: center;
  }

  .button-group.portfolio-buttons {
    padding-top: 2.5rem;
  }

  .header1_content {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .margin-top-2 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .layout242_list {
    grid-column-gap: 2rem;
  }

  .margin-top-3 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h3 {
    font-size: 2.25rem;
  }

  .layout1_content {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .margin-top-4 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .cta8_content {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .signup-form-wrapper {
    grid-column-gap: 1rem;
  }

  .margin-top-5 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .margin-top-6 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .layout192_content {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .footer3_top-wrapper {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .language-toggle {
    z-index: 0;
  }

  .language-dropdown.pc {
    display: none;
  }

  .language-dropdown.tablet {
    z-index: 0;
    display: block;
  }

  .language-dropdown.tablet.ar {
    margin-left: 0;
    margin-right: 0;
  }

  .flag-2, .flag-3, .flag-1 {
    margin-right: 10px;
  }

  .margin-top-7 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .menu-icon2_line-bottom-2 {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .page_3_cta_button-row {
    flex: none;
  }

  .navbar2_menu-button {
    padding: 0;
  }

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

  .navbar2_dropdown-list-2 {
    position: static;
    overflow: hidden;
  }

  .navbar2_dropdown-list-2.w--open {
    border-style: none;
    padding: 0;
    position: static;
  }

  .footer-link-wrapper {
    flex-wrap: wrap;
  }

  .navbar2_menu-2 {
    -webkit-text-fill-color: inherit;
    background-color: #fff;
    background-clip: border-box;
    border-bottom: 1px solid #000;
    justify-content: center;
    padding: 1rem 5% 2.5rem;
    display: flex;
    position: absolute;
    overflow: auto;
  }

  .navbar2_menu-2.is-page-height-tablet {
    height: 100dvh;
    padding-bottom: 6.5rem;
    transition: height .5s;
  }

  .navbar2_button-wrapper {
    align-items: center;
  }

  .navbar2_menu-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    display: flex;
  }

  .page_3_cta_component {
    grid-column-gap: 3rem;
  }

  .navbar2_logo {
    max-width: none;
    height: auto;
  }

  .text-size-medium-2.text-color-white.text-align-center.on-landscape {
    text-align: left;
  }

  .section-footer {
    padding-bottom: 140px;
  }

  .navbar2_dropdown-link-2 {
    text-align: center;
    width: auto;
    padding: .75rem 0;
    font-size: 16px;
  }

  .navbar2_container-2 {
    grid-template-columns: .25fr 1fr;
    display: flex;
  }

  .menu-icon2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .padding-section-verycustom {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .menu-icon2_line-middle-2 {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .page_2_feature_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .navbar2_logo-link {
    height: auto;
  }

  .header1_component-3 {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .menu-icon2_line-top-2 {
    background-color: #000;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar2_dropdwn-toggle-2 {
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding: .75rem 2rem .75rem 0;
    display: flex;
  }

  .navbar2_link-2 {
    text-align: center;
    padding: .75rem 0;
    font-size: 1.125rem;
  }

  .page_3_cta_content {
    margin-right: 3rem;
  }

  .margin-top-8, .margin-top-9 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial17_grid-list {
    grid-template-columns: 1fr 1fr;
  }

  .margin-top-10 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .component-portfolio {
    height: auto;
  }

  .portfolio-content {
    padding-right: 3rem;
  }

  .portfolio-generalinfo-contents {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .main-logo-background {
    width: 100px;
    height: 100px;
  }

  .companylogo-outer.react, .companylogo-outer.memberstack, .companylogo-outer.mailchimp, .companylogo-outer.zapier, .companylogo-outer.airtable, .companylogo-outer.bubble {
    width: 30px;
    height: 30px;
  }

  .animation-container {
    width: 280px;
    height: 280px;
  }

  .blog33_list {
    grid-template-columns: 1fr 1fr;
  }

  .margin-top-11 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .blog44_heading-wrapper {
    grid-column-gap: 3rem;
  }

  .blog44_list {
    grid-template-columns: 1fr 1fr;
  }

  .blog44_heading {
    margin-right: 3rem;
  }

  .margin-top-12 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

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

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  h4 {
    font-size: 1rem;
    line-height: 1.4;
  }

  h5, h6 {
    font-size: 1rem;
  }

  .text-size-small.is-xsmall-mobile {
    font-size: .75rem;
  }

  .text-rich-text figure {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .hide-mobile-landscape {
    display: none;
  }

  .show-mobile-landscape {
    display: block;
  }

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-xsmall {
    margin: .75rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

  .padding-xsmall {
    padding: .75rem;
  }

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-style-nowrap {
    white-space: normal;
  }

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

  .text-size-large {
    font-size: 1.125rem;
  }

  .text-size-large.text-color-white.cursor-mouse {
    text-align: center;
  }

  .heading-xxlarge {
    font-size: 2.5rem;
  }

  .heading-medium {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .heading-large {
    font-size: 2rem;
  }

  .heading-xsmall {
    font-size: 1.125rem;
  }

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

  .text-style-quote {
    font-size: 1.125rem;
  }

  .heading-xlarge {
    font-size: 2.25rem;
  }

  .rl-navbar_component {
    flex-direction: column;
    padding-bottom: 0;
  }

  .rl-header_content-layout {
    grid-template-columns: 1fr 1fr;
  }

  .rl-header_content-wrapper {
    height: 50vh;
    margin-top: 1rem;
  }

  .rl-navbar_button._0-opacity, .rl-navbar_button-icon {
    display: none;
  }

  .rl-navbar_logo-link {
    align-self: flex-start;
  }

  .rl-navbar_loop {
    margin-top: 1.5rem;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-huge, .heading-xhuge {
    font-size: 2.5rem;
  }

  .rl-header_sign-wrapper {
    width: 6.5rem;
    height: 6.5rem;
    top: 1rem;
    left: 1rem;
  }

  .heading-xxhuge {
    font-size: 2.5rem;
  }

  .text-background-box {
    margin-bottom: -.6rem;
    margin-left: 0;
    padding-bottom: .6rem;
    padding-left: .75rem;
    padding-right: 1.25rem;
  }

  .rl-header_heading {
    font-size: 2.5rem;
  }

  .text-background-scribble {
    margin-left: -2rem;
    padding-left: 2rem;
  }

  .rl-intro_heading-wrapper {
    margin-bottom: 0;
  }

  .rl-header_sign-background {
    width: 6.5rem;
    height: 6.5rem;
  }

  .rl-intro_component {
    padding-top: 2rem;
  }

  .rl-intro_heading {
    font-size: 5rem;
  }

  .rl-intro_blur1 {
    opacity: .7;
    filter: blur(40px) blur(40px);
    width: 280px;
    height: 280px;
    top: -10%;
    left: -5%;
  }

  .rl-intro_blur2 {
    opacity: .7;
    filter: blur(40px) blur(40px);
    width: 280px;
    height: 280px;
    top: -10%;
    right: 0%;
  }

  .rl-intro_blur3 {
    opacity: .7;
    filter: blur(40px) blur(40px);
    width: 280px;
    height: 280px;
    top: -10%;
    left: 0%;
  }

  .rl-intro_callout {
    top: 10vh;
  }

  .rl-features_component {
    grid-template-columns: 1fr;
  }

  .rl-features_card1 {
    padding-top: 2.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .rl-features_card2 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .rl-features_card3 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .rl-testimonials_component {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .rl-testimonial_quote-icon-top, .rl-testimonial_quote-icon-bottom {
    width: 3.5rem;
  }

  .text-background-box2 {
    margin-bottom: .5rem;
    margin-right: 0;
    padding-bottom: .5rem;
    padding-right: 1.75rem;
  }

  .rl-builtwith_projects-wrapper {
    margin-bottom: 1rem;
  }

  .rl-builtwith_projects-wrapper.top {
    margin-left: 15vw;
  }

  .rl-builtwith_projects-wrapper.bottom {
    margin-right: 15vw;
  }

  .rl-builtwith_projects-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .rl-builtwith_project-button {
    border: 1px solid #1616161a;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    inset: auto auto 1rem 1rem;
  }

  .rl-builtwith_wrapper {
    margin-top: 3rem;
  }

  .rl-pricing_component {
    grid-template-columns: 1fr;
  }

  .rl-pricing_button-wrapper {
    align-items: flex-start;
  }

  .pricing-table_button-caption {
    text-align: left;
  }

  .rl-faq_list.top {
    border-bottom-style: none;
  }

  .faq-05_icon {
    width: 28px;
  }

  .rl-faq_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .copypaste-symbol_component.rl-header-position {
    display: none;
  }

  .rl-features_card3-background {
    height: 16rem;
  }

  .rl-features_card3-background-wrapper {
    right: -20%;
  }

  .rl-components_item-wrapper {
    margin-bottom: .25rem;
    margin-left: .25rem;
    margin-right: .25rem;
    padding-left: 1rem;
    font-size: 1rem;
  }

  .rl-components_item-image {
    display: none;
  }

  .rl-components_number-text {
    font-size: .875rem;
  }

  .rl-faq_component {
    grid-template-columns: 1fr;
  }

  .rl-footer-credit-text {
    margin-top: 1.5rem;
  }

  .rl-footer_top-wrapper {
    grid-row-gap: 3rem;
  }

  .rl-footer_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .rl-footer_legal-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
  }

  .rl-footer_slack-cta {
    flex-direction: column;
  }

  .rl-footer_slack-text-wrapper {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    margin-right: 0;
  }

  .rl-footer_slack-icon {
    margin-bottom: 1.5rem;
    margin-right: 0;
  }

  .fixed-cta {
    top: 1rem;
  }

  .rl-features_background-overlay {
    z-index: 1;
    background-image: linear-gradient(to bottom, var(--black) 22%, #16161600);
    display: block;
    position: absolute;
    inset: 0%;
  }

  .copypaste-symbol_mobile-image2 {
    display: none;
  }

  .rl-header_sign-text {
    font-size: 1.25rem;
  }

  .rl-builtwith_button-icon {
    flex: none;
    min-width: 1.25rem;
    min-height: 1.25rem;
    margin-left: 0;
  }

  .fixed-cta_button {
    width: auto;
    min-height: auto;
  }

  .copypaste-symbol_mobile-image1 {
    height: 48px;
    display: block;
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .rl-navbar_clone-button._0-opacity {
    display: none;
  }

  .rl-pricing_callout-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
  }

  .rl-pricing_browser-icon {
    width: 2.5rem;
  }

  .rl-pricing_callout-wrapper-2 {
    grid-column-gap: 1rem;
    grid-row-gap: 1.5rem;
  }

  .button-2.is-navbar3-button {
    padding: .25rem 1rem;
  }

  .navbar3_menu {
    width: 90vw;
    padding-bottom: 5rem;
  }

  .navbar3_component {
    min-height: 4rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .button-group.is-center.on-landscape {
    justify-content: center;
  }

  .button-group.portfolio-buttons {
    padding-top: 2rem;
  }

  .button-group.portfolio-buttons.ar {
    justify-content: center;
    align-items: center;
    padding-top: 2.5rem;
  }

  .button-group.is-right.exceptonmobile {
    justify-content: center;
    align-items: center;
  }

  .header1_content {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .margin-top-2 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .layout242_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .margin-top-3 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h3 {
    font-size: 2rem;
  }

  .heading-style-h3.text-color-white.cursor-mouse {
    text-align: center;
  }

  .layout1_content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .margin-top-4 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .cta8_content {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .margin-top-5 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .logo1_logo {
    max-height: 3rem;
  }

  .heading-style-h6 {
    font-size: 1.125rem;
  }

  .logo1_list {
    padding-top: 1rem;
  }

  .margin-top-6 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .layout192_content {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .footer3_credit-text {
    margin-top: 2rem;
  }

  .footer3_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
  }

  .footer3_top-wrapper {
    grid-row-gap: 3rem;
  }

  .footer3_bottom-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding-bottom: 1rem;
  }

  .footer3_menu-wrapper {
    grid-column-gap: 1.5rem;
  }

  .language-dropdown.tablet {
    z-index: 0;
    position: relative;
  }

  .margin-top-7 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .page_3_cta_button-row {
    justify-content: flex-start;
    width: 100%;
  }

  .page_3_cta_button-row.arabic {
    justify-content: flex-end;
    align-items: center;
  }

  .navbar2_menu-2.is-page-height-tablet {
    padding-bottom: 6rem;
  }

  .footer-wrapper {
    margin-bottom: 60px;
  }

  .heading {
    text-align: center;
  }

  .page_3_cta_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .page_3_cta_component.arabic {
    justify-content: space-between;
    align-items: flex-end;
  }

  .text-size-medium-2 {
    font-size: 1rem;
  }

  .text-size-medium-2.text-color-white.text-align-center.on-landscape {
    text-align: center;
  }

  .button-3.is-navbar2-button {
    padding: .25rem 1rem;
  }

  .padding-section-verycustom {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .page_2_feature_component {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    grid-template-columns: 1fr;
  }

  .header1_component-3 {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
  }

  .navbar2_dropdwn-toggle-2, .navbar2_link-2.home {
    padding-right: 0;
  }

  .page_3_cta_content {
    margin-right: 0;
  }

  .navbar2_component {
    min-height: 4rem;
  }

  .text-size-medium-3 {
    font-size: 1rem;
  }

  .margin-top-8, .margin-top-9 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .testimonial17_client {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .testimonial17_grid-list {
    grid-template-columns: 1fr;
  }

  .testimonial17_card {
    padding: 1.5rem;
  }

  .margin-top-10 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .gallery7_row, .gallery7_grid-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .component-portfolio {
    height: auto;
  }

  .portfolio-content {
    justify-content: flex-end;
    align-items: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .portfolio-content.blogs.arabic {
    justify-content: flex-end;
    align-items: center;
    padding-left: 3rem;
  }

  .portfolio-content.arabic {
    justify-content: center;
    align-items: center;
    padding-left: 3rem;
  }

  .portfolio-generalinfo-contents {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .main-logo-background {
    width: 75px;
    height: 75px;
    padding: 0%;
  }

  .mid-wrapper {
    object-fit: cover;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
  }

  .animation-container {
    width: 240px;
    max-width: 80vw;
    height: 240px;
    max-height: 80vw;
  }

  .blog33_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .margin-top-11 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .blog44_heading-wrapper {
    grid-row-gap: 2rem;
    flex-direction: column;
    grid-template-columns: 1fr;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .blog44_heading-wrapper.arabic {
    justify-content: flex-end;
    align-items: flex-end;
  }

  .blog44_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .blog44_heading {
    margin-right: 0;
  }

  .margin-top-12 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-12 {
    font-size: 1rem;
  }
}

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

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.65rem;
  }

  h4 {
    font-size: 1.6rem;
  }

  h5 {
    font-size: 1.5rem;
  }

  h6 {
    font-size: 1.4rem;
  }

  .show-mobile-portrait {
    display: block;
  }

  .hide-mobile-portrait {
    display: none;
  }

  .text-rich-text h2 {
    margin-bottom: 1.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

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

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

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

  .stylesystem-images_layout {
    grid-template-columns: 1fr;
  }

  .rl-header_content-wrapper {
    height: 35vh;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .button.button-large {
    justify-content: center;
  }

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

  .rl-header_content-overlay {
    justify-content: center;
    display: flex;
  }

  .text-background-box {
    background-position: 50% 100%;
    background-size: contain;
    margin-right: 0;
    padding: .15rem 1rem .4rem .5rem;
  }

  .text-background-scribble {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    margin-left: 0;
    padding-left: 0;
    display: inline;
  }

  .rl-intro_component {
    padding-top: 2rem;
  }

  .button-wrapper.button-wrapper-center.max-width-full-mobile-portrait {
    margin-left: 0;
    margin-right: 0;
  }

  .rl-features_card1, .rl-features_card2 {
    padding: 2rem 1.5rem;
  }

  .rl-features_card3 {
    padding: 2.5rem 1.5rem;
  }

  .text-background-box2 {
    margin-bottom: 0;
  }

  .rl-builtwith_projects-wrapper.top {
    margin-left: 20vw;
  }

  .rl-builtwith_projects-wrapper.bottom {
    margin-right: 20vw;
  }

  .rl-builtwith_project {
    width: 60vw;
    height: 40vw;
  }

  .copypaste-symbol_component.rl-header-position {
    right: auto;
  }

  .rl-features_card3-background {
    height: 10rem;
  }

  .rl-features_card3-background-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    bottom: -160%;
    right: -15%;
  }

  .rl-faq_component {
    grid-template-columns: 1fr;
  }

  .rl-footer_top-wrapper {
    grid-row-gap: 48px;
  }

  .rl-footer_column-layout {
    grid-row-gap: 2.5rem;
    grid-template-columns: 1fr;
  }

  .copypaste-symbol_mobile-image2 {
    width: 100%;
    max-width: 375px;
    display: inline-block;
  }

  .copypaste-symbol_mobile-image1 {
    bottom: 1rem;
    right: 1rem;
  }

  .rl-pricing_callout-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    justify-items: center;
    width: 100%;
  }

  .rl-pricing_browser {
    flex-direction: column;
  }

  .rl-pricing_browser-icon {
    margin-bottom: .5rem;
    margin-right: 0;
  }

  .rl-pricing_callout-wrapper-2 {
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    justify-items: center;
    width: 100%;
  }

  .menu-icon3_line-middle {
    background-color: #4b3bf3;
    margin-top: 3px;
    margin-bottom: 3px;
  }

  .menu-icon3_line-bottom {
    background-color: #4b3bf3;
  }

  .navbar3_menu {
    z-index: 1;
  }

  .menu-icon3 {
    z-index: 3;
    color: var(--purple);
    position: relative;
  }

  .menu-icon3_line-top {
    background-color: #4b3bf3;
  }

  .button-group.portfolio-buttons {
    padding-top: 1rem;
  }

  .header1_content {
    grid-template-columns: 1fr;
  }

  .margin-top-2 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .layout242_list {
    grid-template-columns: 1fr;
  }

  .margin-top-3 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-style-h3 {
    font-size: 1.5rem;
  }

  .layout1_content {
    grid-template-columns: 1fr;
  }

  .margin-top-4 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .signup-form-wrapper {
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .margin-top-5 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

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

  .margin-top-6 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .layout192_content {
    grid-template-columns: 1fr;
  }

  .footer3_menu-wrapper {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
  }

  .language-dropdown.tablet {
    z-index: 0;
  }

  .language-list {
    border-radius: 10px;
  }

  .page_2_feature_item-list {
    grid-template-columns: 1fr;
  }

  .margin-top-7 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .footer-link-wrapper {
    flex-direction: column;
  }

  .navbar2_menu-2.is-page-height-tablet {
    justify-content: flex-end;
  }

  .heading {
    font-size: 2rem;
    font-weight: 600;
  }

  .heading-2 {
    font-size: 1.7rem;
  }

  .footer-link {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .page_2_feature_component {
    grid-template-columns: 1fr;
  }

  .navbar2_logo-link {
    height: auto;
  }

  .header1_component-3 {
    grid-template-columns: 1fr;
  }

  .heading-4 {
    font-size: 1.3rem;
    font-weight: 600;
  }

  .navbar2_dropdwn-toggle-2 {
    padding-right: 0;
    font-weight: 600;
  }

  .navbar2_link-2 {
    font-weight: 600;
  }

  .navbar2_link-2.home {
    padding-right: 0;
    font-weight: 600;
  }

  .heading-3 {
    font-size: 1.5rem;
    font-weight: 600;
  }

  .margin-top-8, .margin-top-9, .margin-top-10 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .component-portfolio {
    height: auto;
  }

  .portfolio-content {
    padding: 2.5rem;
  }

  .portfolio-content.blogs.arabic {
    padding-left: 3rem;
  }

  .portfolio-generalinfo-contents {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-5 {
    padding-bottom: 7vh;
    padding-left: 5%;
    padding-right: 5%;
  }

  .circle-1 {
    background-color: #497070;
  }

  .circle-2, .circle-3 {
    background-color: #fff;
  }

  .circle-4 {
    background-color: #485757;
  }

  .planet_image {
    width: 100%;
    height: 100%;
  }

  .main-logo-background {
    width: 30%;
    height: 30%;
    padding: 0%;
    box-shadow: 0 0 20px 10px #d4d4d4a1;
  }

  .companylogo-outer {
    max-width: 32px;
    max-height: 32px;
  }

  .companylogo-outer.react, .companylogo-outer.memberstack, .companylogo-outer.mailchimp, .companylogo-outer.zapier, .companylogo-outer.airtable, .companylogo-outer.bubble {
    width: 25px;
    height: 25px;
  }

  .animation-container {
    width: 50vw;
    height: 50vw;
  }

  .margin-top-11 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .blog44_item-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .margin-top-12 {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .heading-13 {
    font-size: 1.6rem;
  }

  .heading-14, .heading-15, .heading-16 {
    font-size: 1.65rem;
  }
}

#w-node-f29e1d22-61b3-0531-db20-32867dd47adc-f8c5462b {
  justify-self: end;
}

#w-node-c7634db8-806d-53f2-5158-04d3d76a7920-f8c5462b {
  justify-self: center;
}

#w-node-_084c5743-d9e4-39ef-5aac-88eeb07bcb00-f8c5468e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_084c5743-d9e4-39ef-5aac-88eeb07bcb18-f8c5468e {
  justify-self: start;
}

#w-node-_6b8d3510-b9a8-8338-b0b7-ae71a0c2de10-de59595a {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1c2e2240-bb6a-02e3-1cb1-035564d5aefe-de59595a {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_1c2e2240-bb6a-02e3-1cb1-035564d5af01-de59595a, #w-node-_1c2e2240-bb6a-02e3-1cb1-035564d5af04-de59595a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e5c96e4-704c-22bc-e363-33743c55d032-3c55cfff, #w-node-_0d8f82da-1744-ee91-8268-b48404bda679-2d2ef577 {
  justify-self: end;
}

#w-node-c7634db8-806d-53f2-5158-04d3d76a7920-2d2ef577 {
  justify-self: center;
}

#w-node-_6b8d3510-b9a8-8338-b0b7-ae71a0c2de10-fced4a61 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1c2e2240-bb6a-02e3-1cb1-035564d5aefe-fced4a61 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_1c2e2240-bb6a-02e3-1cb1-035564d5af01-fced4a61, #w-node-_1c2e2240-bb6a-02e3-1cb1-035564d5af04-fced4a61 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_64dcc08d-4753-5500-b37c-acde88af1f3d-88af1f0a, #w-node-d1bdf680-4000-581e-79ec-09f4d8195092-b788e0d3, #w-node-_992736de-e80f-3ba9-7cb2-74d24f331e5e-b788e0d3, #w-node-_6fd2e349-2b40-7a52-fb3f-81a88bc82f04-352169a9 {
  justify-self: end;
}

#w-node-c7634db8-806d-53f2-5158-04d3d76a7920-352169a9 {
  justify-self: center;
}

#w-node-_6b8d3510-b9a8-8338-b0b7-ae71a0c2de10-14f0d02e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_1c2e2240-bb6a-02e3-1cb1-035564d5aefe-14f0d02e {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_1c2e2240-bb6a-02e3-1cb1-035564d5af01-14f0d02e, #w-node-_1c2e2240-bb6a-02e3-1cb1-035564d5af04-14f0d02e {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_294891da-9e42-0711-e568-9777abbac348-abbac315 {
  justify-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-f29e1d22-61b3-0531-db20-32867dd47ade-f8c5462b {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-c7634db8-806d-53f2-5158-04d3d76a7920-f8c5462b {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_0d8f82da-1744-ee91-8268-b48404bda67b-2d2ef577 {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-a73607a7-97c4-d488-a998-afd33722ce9a-2d2ef577 {
    justify-self: center;
  }

  #w-node-c7634db8-806d-53f2-5158-04d3d76a7920-2d2ef577 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-d1bdf680-4000-581e-79ec-09f4d8195094-b788e0d3, #w-node-_992736de-e80f-3ba9-7cb2-74d24f331e60-b788e0d3, #w-node-_6fd2e349-2b40-7a52-fb3f-81a88bc82f06-352169a9 {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-c7634db8-806d-53f2-5158-04d3d76a7920-352169a9 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_223a4aa9-9c60-e363-4998-eb6a387a52d4-f8c5462b, #w-node-_558fcbcd-5e56-0ab0-c3cb-fdab238a1c42-de59595a, #w-node-_223a4aa9-9c60-e363-4998-eb6a387a52d4-2d2ef577, #w-node-_558fcbcd-5e56-0ab0-c3cb-fdab238a1c42-fced4a61, #w-node-_223a4aa9-9c60-e363-4998-eb6a387a52d4-352169a9, #w-node-_558fcbcd-5e56-0ab0-c3cb-fdab238a1c42-14f0d02e {
    order: -9999;
  }
}


@font-face {
  font-family: 'Relative';
  src: url('../fonts/Relative-Book.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Relative';
  src: url('../fonts/Relative-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Relative';
  src: url('../fonts/Relative-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}